Welcome to mirror list, hosted at ThFree Co, Russian Federation.

lint_spec.rb « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8bad57819c8b625e71d3738a4ad509ed80f5e716 (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
require 'spec_helper'

describe API::API do
  include ApiHelpers

  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
      it 'validates the 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
    end

    context 'with an invalid .gitlab_ci.yml' do
      it 'validates the content and shows an error message' do
        post api('/lint'), { content: 'invalid content' }

        expect(response).to have_http_status(200)
        expect(json_response['status']).to eq('invalid')
        expect(json_response['error']).to eq(['Invalid configuration format'])
      end

      it "validates the content and shows a 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['error']).to eq(['jobs config should contain at least one visible job'])
      end
    end

    context 'without the content parameter' do
      it 'shows an error message' do
        post api('/lint')

        expect(response).to have_http_status(400)
        expect(json_response['error']).to eq('content is missing')
      end
    end
  end
end