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

download_buttons_spec.rb « tags « projects « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e0022c179fa855c3cb7f159e9730c8d15b53f16 (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
require 'spec_helper'

feature 'Download buttons in tags page', feature: true do
  given(:user) { create(:user) }
  given(:role) { :developer }
  given(:status) { 'success' }
  given(:tag) { 'v1.0.0' }
  given(:project) { create(:project) }

  given(:pipeline) do
    create(:ci_pipeline,
           project: project,
           sha: project.commit(tag).sha,
           ref: tag,
           status: status)
  end

  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 tags' do
    context 'with artifacts' do
      before do
        visit namespace_project_tags_path(project.namespace, project)
      end

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