summaryrefslogtreecommitdiff
path: root/spec/features/refactor_blob_viewer_disabled/projects/blobs/user_views_pipeline_editor_button_spec.rb
blob: a00e1eaa551e4bcddecd5f3c4a0da11df10006e4 (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
43
44
45
46
# 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) }

  before do
    stub_feature_flags(refactor_blob_viewer: false)
  end

  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