summaryrefslogtreecommitdiff
path: root/spec/requests/api/version_spec.rb
blob: e06f8bbc09577193683f7f1f78c14f16cbbeaf4e (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
require 'spec_helper'

describe API::Version do
  shared_examples_for 'GET /version' do
    context 'when unauthenticated' do
      it 'returns authentication error' do
        get api('/version')

        expect(response).to have_gitlab_http_status(401)
      end
    end

    context 'when authenticated' do
      let(:user) { create(:user) }

      it 'returns the version information' do
        get api('/version', user)

        expect(response).to have_gitlab_http_status(200)
        expect(json_response['version']).to eq(Gitlab::VERSION)
        expect(json_response['revision']).to eq(Gitlab.revision)
      end
    end
  end

  context 'with graphql enabled' do
    before do
      stub_feature_flags(graphql: true)
    end

    include_examples 'GET /version'
  end

  context 'with graphql disabled' do
    before do
      stub_feature_flags(graphql: false)
    end

    include_examples 'GET /version'
  end
end