2019-12-26 22:10:19 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe API::Version do
|
2019-07-07 11:18:12 +05:30
|
|
|
shared_examples_for 'GET /version' do
|
2016-11-03 12:29:30 +05:30
|
|
|
context 'when unauthenticated' do
|
|
|
|
it 'returns authentication error' do
|
|
|
|
get api('/version')
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
expect(response).to have_gitlab_http_status(:unauthorized)
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
context 'when authenticated as user' do
|
2016-11-03 12:29:30 +05:30
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
it 'returns the version information' do
|
|
|
|
get api('/version', user)
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
expect_version
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
end
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
context 'when authenticated with token' do
|
|
|
|
let(:personal_access_token) { create(:personal_access_token, scopes: scopes) }
|
|
|
|
|
|
|
|
context 'with api scope' do
|
|
|
|
let(:scopes) { %i(api) }
|
|
|
|
|
|
|
|
it 'returns the version information' do
|
|
|
|
get api('/version', personal_access_token: personal_access_token)
|
|
|
|
|
|
|
|
expect_version
|
|
|
|
end
|
2021-03-11 19:13:27 +05:30
|
|
|
|
|
|
|
it 'returns "200" response on head requests' do
|
|
|
|
head api('/version', personal_access_token: personal_access_token)
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
end
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'with read_user scope' do
|
|
|
|
let(:scopes) { %i(read_user) }
|
|
|
|
|
|
|
|
it 'returns the version information' do
|
|
|
|
get api('/version', personal_access_token: personal_access_token)
|
|
|
|
|
|
|
|
expect_version
|
|
|
|
end
|
2021-03-11 19:13:27 +05:30
|
|
|
|
|
|
|
it 'returns "200" response on head requests' do
|
|
|
|
head api('/version', personal_access_token: personal_access_token)
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
end
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'with neither api nor read_user scope' do
|
|
|
|
let(:scopes) { %i(read_repository) }
|
|
|
|
|
|
|
|
it 'returns authorization error' do
|
|
|
|
get api('/version', personal_access_token: personal_access_token)
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:forbidden)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def expect_version
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
expect(json_response['version']).to eq(Gitlab::VERSION)
|
|
|
|
expect(json_response['revision']).to eq(Gitlab.revision)
|
|
|
|
end
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
2019-07-07 11:18:12 +05:30
|
|
|
|
|
|
|
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
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|