55 lines
1.6 KiB
Ruby
55 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe API::SidekiqMetrics do
|
|
let(:admin) { create(:user, :admin) }
|
|
|
|
describe 'GET sidekiq/*' do
|
|
it 'defines the `queue_metrics` endpoint' do
|
|
get api('/sidekiq/queue_metrics', admin)
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(json_response).to match a_hash_including(
|
|
'queues' => a_hash_including(
|
|
'default' => {
|
|
'backlog' => be_a(Integer),
|
|
'latency' => be_a(Integer)
|
|
},
|
|
'mailers' => {
|
|
'backlog' => be_a(Integer),
|
|
'latency' => be_a(Integer)
|
|
}
|
|
)
|
|
)
|
|
end
|
|
|
|
it 'defines the `process_metrics` endpoint' do
|
|
get api('/sidekiq/process_metrics', admin)
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(json_response['processes']).to be_an Array
|
|
end
|
|
|
|
it 'defines the `job_stats` endpoint' do
|
|
get api('/sidekiq/job_stats', admin)
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(json_response).to be_a Hash
|
|
expect(json_response['jobs']).to be_a Hash
|
|
expect(json_response['jobs'].keys)
|
|
.to contain_exactly(*%w[processed failed enqueued dead])
|
|
expect(json_response['jobs'].values).to all(be_an(Integer))
|
|
end
|
|
|
|
it 'defines the `compound_metrics` endpoint' do
|
|
get api('/sidekiq/compound_metrics', admin)
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
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
|