2016-11-03 12:29:30 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
describe API::Version do
|
2016-11-03 12:29:30 +05:30
|
|
|
describe 'GET /version' do
|
|
|
|
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
|
|
|
|
end
|