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: f025ffba85a953eeebd040e211532cf4151eda3b (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Download buttons in tags page', feature_category: :source_code_management do
  let(:user) { create(:user) }
  let(:role) { :developer }
  let(:status) { 'success' }
  let(:tag) { 'v1.0.0' }
  let(:project) { create(:project, :repository) }

  let(:pipeline) do
    create(
      :ci_pipeline,
      project: project,
      sha: project.commit(tag).sha,
      ref: tag,
      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 tags' do
    it_behaves_like 'archive download buttons' do
      let(:path_to_visit) { project_tags_path(project) }
      let(:ref) { tag }
    end
  end
end