summaryrefslogtreecommitdiff
path: root/spec/features/projects/files/download_buttons_spec.rb
blob: 03cb3530e2b671c719711e9ec2631b3e1213a34e (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
require 'spec_helper'

describe 'Projects > Files > Download buttons in files tree' do
  let(:project) { create(:project, :repository) }
  let(:user) { project.creator }

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

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

  before do
    sign_in(user)
    project.add_developer(user)

    visit project_tree_path(project, project.default_branch)
  end

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

      expect(page).to have_link "Download '#{build.name}'", href: href
    end
  end
end