2016-01-14 18:37:52 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
describe 'CI Lint', js: true do
|
2016-01-14 18:37:52 +05:30
|
|
|
before do
|
2017-09-10 17:25:29 +05:30
|
|
|
sign_in(create(:user))
|
2016-01-14 18:37:52 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe 'YAML parsing' do
|
|
|
|
before do
|
|
|
|
visit ci_lint_path
|
2017-08-17 22:00:37 +05:30
|
|
|
# Ace editor updates a hidden textarea and it happens asynchronously
|
|
|
|
# `sleep 0.1` is actually needed here because of this
|
|
|
|
execute_script("ace.edit('ci-editor').setValue(" + yaml_content.to_json + ");")
|
|
|
|
sleep 0.1
|
2016-01-14 18:37:52 +05:30
|
|
|
click_on 'Validate'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'YAML is correct' do
|
|
|
|
let(:yaml_content) do
|
|
|
|
File.read(Rails.root.join('spec/support/gitlab_stubs/gitlab_ci.yml'))
|
|
|
|
end
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
it 'parses Yaml' do
|
2016-01-14 18:37:52 +05:30
|
|
|
within "table" do
|
|
|
|
expect(page).to have_content('Job - rspec')
|
|
|
|
expect(page).to have_content('Job - spinach')
|
|
|
|
expect(page).to have_content('Deploy Job - staging')
|
|
|
|
expect(page).to have_content('Deploy Job - production')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'YAML is incorrect' do
|
|
|
|
let(:yaml_content) { '' }
|
|
|
|
|
|
|
|
it 'displays information about an error' do
|
|
|
|
expect(page).to have_content('Status: syntax is incorrect')
|
|
|
|
expect(page).to have_content('Error: Please provide content of .gitlab-ci.yml')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'YAML revalidate' do
|
|
|
|
let(:yaml_content) { 'my yaml content' }
|
|
|
|
|
|
|
|
it 'loads previous YAML content after validation' do
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).to have_field('content', with: 'my yaml content', visible: false, type: 'textarea')
|
2016-01-14 18:37:52 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|