Commit aff71398 authored by Grzegorz Bizon's avatar Grzegorz Bizon

Improve CI Lint specs (refactoring)

parent 25bf3eb8
require 'spec_helper' require 'spec_helper'
describe "Lint" do describe 'CI Lint' do
before do before do
login_as :user login_as :user
end end
it "Yaml parsing", js: true do describe 'YAML parsing', js: true do
content = File.read(Rails.root.join('spec/support/gitlab_stubs/gitlab_ci.yml')) before do
visit ci_lint_path visit ci_lint_path
fill_in "content", with: content fill_in 'content', with: yaml_content
click_on "Validate" click_on 'Validate'
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
it "Yaml parsing with error", js: true do context 'YAML is correct' do
visit ci_lint_path let(:yaml_content) do
fill_in "content", with: "" File.read(Rails.root.join('spec/support/gitlab_stubs/gitlab_ci.yml'))
click_on "Validate" end
expect(page).to have_content("Status: syntax is incorrect")
expect(page).to have_content("Error: Please provide content of .gitlab-ci.yml") it 'Yaml parsing' do
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
end end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment