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

user_views_pipeline_editor_button_spec.rb « blobs « projects « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15e7a495e606137f9125c1e99333bfbba4565008 (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 'User views pipeline editor button on root ci config file', :js do
  include BlobSpecHelpers

  let_it_be(:user) { create(:user) }
  let_it_be(:project) { create(:project, :public, :repository) }

  context "when the ci config is the root file" do
    before do
      project.add_developer(user)
      sign_in(user)
    end

    it 'shows the button to the Pipeline Editor' do
      project.update!(ci_config_path: '.my-config.yml')
      project.repository.create_file(user, project.ci_config_path_or_default, 'test', message: 'testing', branch_name: 'master')
      visit project_blob_path(project, File.join('master', '.my-config.yml'))

      expect(page).to have_content('Edit in pipeline editor')
    end

    it 'does not shows the Pipeline Editor button' do
      project.repository.create_file(user, '.my-sub-config.yml', 'test', message: 'testing', branch_name: 'master')
      visit project_blob_path(project, File.join('master', '.my-sub-config.yml'))

      expect(page).not_to have_content('Edit in pipeline editor')
    end
  end

  context "when user cannot collaborate" do
    before do
      sign_in(user)
    end
    it 'does not shows the Pipeline Editor button' do
      visit project_blob_path(project, File.join('master', '.my-config.yml'))
      expect(page).not_to have_content('Edit in pipeline editor')
    end
  end
end