2017-08-30 00:49:07 +08:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Api::ApiController, type: :controller do
|
|
|
|
describe 'GET #status' do
|
|
|
|
before do
|
|
|
|
get :status
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'Returns HTTP success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'Response with correct JSON status structure' do
|
|
|
|
hash_body = nil
|
|
|
|
expect { hash_body = json }.not_to raise_exception
|
2018-11-13 00:51:23 +08:00
|
|
|
expect(hash_body).to include(message: I18n.t('api.core.status_ok'))
|
2018-11-13 00:17:22 +08:00
|
|
|
expect(hash_body).to include('versions')
|
|
|
|
|
2018-11-13 00:51:23 +08:00
|
|
|
Extends::API_VERSIONS.each do |ver|
|
2018-11-13 00:17:22 +08:00
|
|
|
expect(hash_body['versions']).to include(
|
2018-11-13 00:51:23 +08:00
|
|
|
'version' => ver,
|
|
|
|
'baseUrl' => "/api/#{ver}/"
|
2018-11-13 00:17:22 +08:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #health' do
|
|
|
|
before do
|
2019-05-31 22:48:10 +08:00
|
|
|
stub_request(:get, Rails.application.secrets.system_notifications_uri + '/api/system_notifications')
|
|
|
|
.with(query: hash_including('channels_slug': Rails.application.secrets.system_notifications_channel),
|
|
|
|
headers: { 'Accept': 'application/vnd.system-notifications.1+json' })
|
|
|
|
.to_return(status: 200, body: '', headers: {})
|
2018-11-13 00:17:22 +08:00
|
|
|
get :health
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'Returns HTTP success' do
|
|
|
|
expect(response).to have_http_status(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'Response with the correct plain text' do
|
|
|
|
expect(response.body).to match('RUNNING')
|
2017-08-30 00:49:07 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|