2016-10-12 07:32:48 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-04-21 16:32:02 -04:00
|
|
|
describe API::Version do
|
2016-10-12 07:32:48 -04:00
|
|
|
describe 'GET /version' do
|
|
|
|
context 'when unauthenticated' do
|
|
|
|
it 'returns authentication error' do
|
|
|
|
get api('/version')
|
|
|
|
|
2017-07-14 13:43:26 -04:00
|
|
|
expect(response).to have_gitlab_http_status(401)
|
2016-10-12 07:32:48 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when authenticated' do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
it 'returns the version information' do
|
|
|
|
get api('/version', user)
|
|
|
|
|
2017-07-14 13:43:26 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2016-10-12 07:32:48 -04:00
|
|
|
expect(json_response['version']).to eq(Gitlab::VERSION)
|
2018-05-24 03:57:54 -04:00
|
|
|
expect(json_response['revision']).to eq(Gitlab.revision)
|
2016-10-12 07:32:48 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|