2016-06-22 15:30:34 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
describe API::SidekiqMetrics do
|
2016-06-22 15:30:34 +05:30
|
|
|
let(:admin) { create(:user, :admin) }
|
|
|
|
|
|
|
|
describe 'GET sidekiq/*' do
|
|
|
|
it 'defines the `queue_metrics` endpoint' do
|
|
|
|
get api('/sidekiq/queue_metrics', admin)
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2016-06-22 15:30:34 +05:30
|
|
|
expect(json_response).to be_a Hash
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'defines the `process_metrics` endpoint' do
|
|
|
|
get api('/sidekiq/process_metrics', admin)
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2016-06-22 15:30:34 +05:30
|
|
|
expect(json_response['processes']).to be_an Array
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'defines the `job_stats` endpoint' do
|
|
|
|
get api('/sidekiq/job_stats', admin)
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2016-06-22 15:30:34 +05:30
|
|
|
expect(json_response).to be_a Hash
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'defines the `compound_metrics` endpoint' do
|
|
|
|
get api('/sidekiq/compound_metrics', admin)
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2016-06-22 15:30:34 +05:30
|
|
|
expect(json_response).to be_a Hash
|
|
|
|
expect(json_response['queues']).to be_a Hash
|
|
|
|
expect(json_response['processes']).to be_an Array
|
|
|
|
expect(json_response['jobs']).to be_a Hash
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|