download_buttons_spec.rb 957 Bytes
Newer Older
1 2 3 4 5 6 7
require 'spec_helper'

feature 'Download buttons in branches page', feature: true do
  given(:user) { create(:user) }
  given(:role) { :developer }
  given(:status) { 'success' }
  given(:project) { create(:project) }
Lin Jen-Shin's avatar
Lin Jen-Shin committed
8

9
  given(:pipeline) do
Lin Jen-Shin's avatar
Lin Jen-Shin committed
10 11 12 13 14
    create(:ci_pipeline,
           project: project,
           sha: project.commit.sha,
           ref: project.default_branch,
           status: status)
15
  end
Lin Jen-Shin's avatar
Lin Jen-Shin committed
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
  given!(:build) do
    create(:ci_build, :success, :artifacts,
           pipeline: pipeline,
           status: pipeline.status,
           name: 'build')
  end

  background do
    login_as(user)
    project.team << [user, role]
  end

  describe 'when checking branches' do
    context 'with artifacts' do
      before do
        visit namespace_project_branches_path(project.namespace, project)
      end

      scenario 'shows download artifacts button' do
        expect(page).to have_link "Download '#{build.name}'"
      end
    end
  end
end