Add tests for yaml content with errors

This commit is contained in:
Katarzyna Kobierska 2016-08-24 14:36:14 +02:00
parent ca1f5ede84
commit de2e8d4a55
1 changed files with 16 additions and 10 deletions

View File

@ -3,30 +3,36 @@ require 'spec_helper'
describe API::API do
include ApiHelpers
let(:user) { create(:user) }
let(:yaml_content) do
File.read(Rails.root.join('spec/support/gitlab_stubs/gitlab_ci.yml'))
end
describe 'POST /lint' do
context 'with valid .gitlab-ci.yaml content' do
context 'authorized user' do
it 'validate content' do
post api('/lint'), { content: yaml_content }
it 'validates content' do
post api('/lint'), { content: yaml_content }
expect(response).to have_http_status(200)
expect(json_response).to be_an Hash
expect(json_response['status']).to eq('valid')
end
expect(response).to have_http_status(200)
expect(json_response).to be_an Hash
expect(json_response['status']).to eq('valid')
end
end
context 'with invalid .gitlab_ci.yml content' do
it 'validate content' do
context 'with invalid .gitlab_ci.yml' do
it 'validates content and shows correct errors' do
post api('/lint'), { content: 'invalid content' }
expect(response).to have_http_status(200)
expect(json_response['status']).to eq('invalid')
expect(json_response['errors']).to eq(['Invalid configuration format'])
end
it "validates content and shows configuration error" do
post api('/lint'), { content: '{ image: "ruby:2.1", services: ["postgres"] }' }
expect(response).to have_http_status(200)
expect(json_response['status']).to eq('invalid')
expect(json_response['errors']).to eq(['jobs config should contain at least one visible job'])
end
end