summaryrefslogtreecommitdiff
path: root/spec/features/projects/files/gitlab_ci_yml_dropdown_spec.rb
blob: b0ccb5fca946a8d717e9c6aebab704679cfe0cd7 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Projects > Files > User wants to add a .gitlab-ci.yml file', :js do
  include Spec::Support::Helpers::Features::EditorLiteSpecHelpers

  let(:params) { {} }
  let(:filename) { '.gitlab-ci.yml' }

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

  before do
    sign_in project.owner
    visit project_new_blob_path(project, 'master', file_name: filename, **params)
  end

  it 'user can pick a template from the dropdown' do
    expect(page).to have_css('.gitlab-ci-yml-selector')

    find('.js-gitlab-ci-yml-selector').click

    wait_for_requests

    within '.gitlab-ci-yml-selector' do
      find('.dropdown-input-field').set('Jekyll')
      find('.dropdown-content li', text: 'Jekyll').click
    end

    wait_for_requests

    expect(page).to have_css('.gitlab-ci-yml-selector .dropdown-toggle-text', text: 'Apply a template')
    expect(editor_get_value).to have_content('This file is a template, and might need editing before it works on your project')
    expect(editor_get_value).to have_content('jekyll build -d test')
  end

  context 'when template param is provided' do
    let(:params) { { template: 'Jekyll' } }

    it 'uses the given template' do
      wait_for_requests

      expect(page).to have_css('.gitlab-ci-yml-selector .dropdown-toggle-text', text: 'Apply a template')
      expect(editor_get_value).to have_content('This file is a template, and might need editing before it works on your project')
      expect(editor_get_value).to have_content('jekyll build -d test')
    end
  end

  context 'when provided template param is not a valid template name' do
    let(:params) { { template: 'non-existing-template' } }

    it 'leaves the editor empty' do
      wait_for_requests

      expect(page).to have_css('.gitlab-ci-yml-selector .dropdown-toggle-text', text: 'Apply a template')
      expect(editor_get_value).to have_content('')
    end
  end

  context 'when template is not available for the given file' do
    let(:filename) { 'Dockerfile' }
    let(:params) { { template: 'Jekyll' } }

    it 'leaves the editor empty' do
      wait_for_requests

      expect(editor_get_value).to have_content('')
    end
  end
end