Welcome to mirror list, hosted at ThFree Co, Russian Federation.

download_buttons_spec.rb « show « projects « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8e27b4b2edea5578d050c6fd63d15bcacefbff99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Projects > Show > Download buttons', feature_category: :groups_and_projects do
  let(:user) { create(:user) }
  let(:role) { :developer }
  let(:status) { 'success' }
  let(:project) { create(:project, :repository) }

  let(:pipeline) do
    create(
      :ci_pipeline,
      project: project,
      sha: project.commit.sha,
      ref: project.default_branch,
      status: status
    )
  end

  let!(:build) do
    create(
      :ci_build,
      :success,
      :artifacts,
      pipeline: pipeline,
      status: pipeline.status,
      name: 'build'
    )
  end

  before do
    sign_in(user)
    project.add_role(user, role)
  end

  describe 'when checking project main page' do
    it_behaves_like 'archive download buttons'

    context 'with artifacts' do
      before do
        visit project_path(project)
      end

      it 'shows download artifacts button' do
        href = latest_succeeded_project_artifacts_path(project, "#{project.default_branch}/download", job: 'build')

        expect(page).to have_link build.name, href: href
      end

      it 'download links have download attribute' do
        page.all('a', text: 'Download').each do |link|
          expect(link[:download]).to eq ''
        end
      end
    end
  end
end