Commit 257c2acd authored by Katarzyna Kobierska's avatar Katarzyna Kobierska

Add params requires to lint

parent 0e4c0e78
...@@ -22,9 +22,9 @@ module Ci ...@@ -22,9 +22,9 @@ module Ci
helpers Gitlab::CurrentSettings helpers Gitlab::CurrentSettings
mount ::Ci::API::Builds mount ::Ci::API::Builds
mount ::Ci::API::Lint
mount ::Ci::API::Runners mount ::Ci::API::Runners
mount ::Ci::API::Triggers mount ::Ci::API::Triggers
mount ::Ci::API::Lint
end end
end end
end end
module Ci module Ci
module API module API
class Lint < Grape::API class Lint < Grape::API
before { authenticate! } resource :lint do
resources :lint do
post do post do
begin status 200
response = {} params do
@content = params[:content] requires :content, type: String, desc: 'content of .gitlab-ci.yml'
end
if @content
@config_processor = Ci::GitlabCiYamlProcessor.new(@content)
@stages = @config_processor.stages
@builds = @config_processor.builds
begin
response = { response = {
content: @content, status: '',
status: "syntax is correct" errors: [],
jobs: []
} }
@stages.each do |stage| config_processor = Ci::GitlabCiYamlProcessor.new(params[:content])
response["#{stage}"] = @builds.select { |build| build[:stage] == stage }
end config_processor.builds.each do |build|
else response[:jobs].push("#{build[:name]}")
render_api_error!("Please provide content of .gitlab-ci.yml", 400) response[:status] = 'valid'
end end
response response
rescue Ci::GitlabCiYamlProcessor::ValidationError, Psych::SyntaxError => e rescue Ci::GitlabCiYamlProcessor::ValidationError, Psych::SyntaxError => e
error!({ content: @content, status: "syntax is incorrect", message: e.message }) status 200
response[:errors].push(e.message)
response[:status] = 'invalid'
response
end end
end end
end end
......
...@@ -9,41 +9,32 @@ describe Ci::API::API do ...@@ -9,41 +9,32 @@ describe Ci::API::API do
end end
describe 'POST /ci/lint' do describe 'POST /ci/lint' do
context "with valid .gitlab-ci.yaml content" do context 'with valid .gitlab-ci.yaml content' do
context "authorized user" do context 'authorized user' do
it "validate content" do it 'validate content' do
post ci_api('/lint'), { private_token: user.private_token, content: yaml_content }
expect(response).to have_http_status(201)
expect(json_response).to be_an Hash
expect(json_response['status']).to eq('syntax is correct')
end
end
context "unauthorized user" do
it "does not validate content" do
post ci_api('/lint'), { content: yaml_content } post ci_api('/lint'), { content: yaml_content }
expect(response).to have_http_status(401) expect(response).to have_http_status(200)
expect(json_response).to be_an Hash
expect(json_response['status']).to eq('valid')
end end
end end
end end
context "with invalid .gitlab_ci.yml content" do context 'with invalid .gitlab_ci.yml content' do
it "validate content" do it 'validate content' do
post ci_api('/lint'), { private_token: user.private_token, content: 'invalid content' } post ci_api('/lint'), { content: 'invalid content' }
expect(response).to have_http_status(500) expect(response).to have_http_status(200)
expect(json_response['status']).to eq('syntax is incorrect') expect(json_response['status']).to eq('invalid')
end end
end end
context "no content" do context 'no content parameters' do
it "shows error message" do it 'shows error message' do
post ci_api('/lint'), { private_token: user.private_token } post ci_api('/lint')
expect(response).to have_http_status(400) expect(response).to have_http_status(400)
expect(json_response['message']).to eq('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