debian-mirror-gitlab/spec/requests/api/version_spec.rb

42 lines
927 B
Ruby
Raw Normal View History

2016-11-03 12:29:30 +05:30
require 'spec_helper'
2017-08-17 22:00:37 +05:30
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')
2017-09-10 17:25:29 +05:30
expect(response).to have_gitlab_http_status(401)
2016-11-03 12:29:30 +05:30
end
end
context 'when authenticated' do
let(:user) { create(:user) }
it 'returns the version information' do
get api('/version', user)
2017-09-10 17:25:29 +05:30
expect(response).to have_gitlab_http_status(200)
2016-11-03 12:29:30 +05:30
expect(json_response['version']).to eq(Gitlab::VERSION)
2018-10-15 14:42:47 +05:30
expect(json_response['revision']).to eq(Gitlab.revision)
2016-11-03 12:29:30 +05:30
end
end
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