summaryrefslogtreecommitdiff
path: root/spec/features/projects/files/undo_template_spec.rb
blob: 5479ea34610ae40899ce600437d66f27d2c0078f (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
require 'spec_helper'
include WaitForAjax

feature 'Template Undo Button', js: true do 
  let(:project) { create(:project) }
  let(:user) { create(:user) }

  before do
    project.team << [user, :master]
    login_as user  
  end
  
  context 'editing a matching file and applying a template' do 
    before do
      visit namespace_project_edit_blob_path(project.namespace, project, File.join(project.default_branch, "LICENSE"))      
      select_file_template('.js-license-selector', 'Apache License 2.0')
    end
    
    scenario 'reverts template application' do
      try_template_undo('http://www.apache.org/licenses/', 'Apply a License template')
    end
  end
  
  context 'creating a non-matching file' do 
    before do
      visit namespace_project_new_blob_path(project.namespace, project, 'master')
      select_file_template_type('LICENSE')
      select_file_template('.js-license-selector', 'Apache License 2.0')
    end

    scenario 'reverts template application' do
      try_template_undo('http://www.apache.org/licenses/', 'Apply a License template')
    end
  end
end

def try_template_undo(template_content, toggle_text)
  check_undo_button_display
  check_content_reverted(template_content)
  check_toggle_text_set(toggle_text)
end

def check_toggle_text_set(neutral_toggle_text)
  expect(page).to have_content(neutral_toggle_text)
end

def check_undo_button_display
  expect(page).to have_content('Template applied')
  expect(page).to have_css('.template-selectors-undo-menu .btn-info')
end

def check_content_reverted(template_content)
  find('.template-selectors-undo-menu .btn-info').click
  expect(page).not_to have_content(template_content)
  expect(find('.template-type-selector .dropdown-toggle-text')).to have_content()
end

def select_file_template(template_selector_selector, template_name)
  find(template_selector_selector).click
  find('.dropdown-content li', text: template_name).click
  wait_for_ajax
end

def select_file_template_type(template_type)
  find('.js-template-type-selector').click
  find('.dropdown-content li', text: template_type).click
end