mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 01:58:41 -05:00
This is a re-architect of the vmpooler initialisation code to: 1. Allow an API service for both manager and the api 2. Add the Prometheus endpoints to the web service. Needed to change the way the Rack Service is started as instantiating using ".New" leads to a failure to initialise the http Stats collection. 3. Selectively load the pooler api and/or Prometheus endpoints. 4. Rework API Spec tests for revised API loading. Needed to tidy up the initialisation and perform a reset! after each test to avoid "leaks" and dependencies between the tests.
187 lines
5.6 KiB
Ruby
187 lines
5.6 KiB
Ruby
require 'spec_helper'
|
|
require 'rack/test'
|
|
|
|
describe Vmpooler::API do
|
|
include Rack::Test::Methods
|
|
|
|
def app()
|
|
Vmpooler::API
|
|
end
|
|
|
|
# Added to ensure no leakage in rack state from previous tests.
|
|
# Removes all routes, filters, middleware and extension hooks from the current class
|
|
# https://rubydoc.info/gems/sinatra/Sinatra/Base#reset!-class_method
|
|
before(:each) do
|
|
app.reset!
|
|
end
|
|
|
|
describe 'Dashboard' do
|
|
|
|
let(:config) { {
|
|
pools: [
|
|
{'name' => 'pool1', 'size' => 5}
|
|
],
|
|
graphite: {}
|
|
} }
|
|
|
|
before(:each) do
|
|
expect(app).to receive(:run!)
|
|
app.execute(['api'], config, redis, nil)
|
|
app.settings.set :config, auth: false
|
|
end
|
|
|
|
context '/' do
|
|
before(:each) do
|
|
get '/'
|
|
end
|
|
|
|
it { expect(last_response.status).to eq(302) }
|
|
it { expect(last_response.location).to eq('http://example.org/dashboard/') }
|
|
end
|
|
|
|
context '/dashboard/' do
|
|
ENV['SITE_NAME'] = 'test pooler'
|
|
ENV['VMPOOLER_CONFIG'] = 'thing'
|
|
|
|
before(:each) do
|
|
get '/dashboard/'
|
|
end
|
|
|
|
it { expect(last_response).to be_ok }
|
|
it { expect(last_response.body).to match(/test pooler/) }
|
|
it { expect(last_response.body).not_to match(/<b>vmpooler<\/b>/) }
|
|
end
|
|
|
|
context 'unknown route' do
|
|
before(:each) do
|
|
get '/doesnotexist'
|
|
end
|
|
|
|
it { expect(last_response.header['Content-Type']).to eq('application/json') }
|
|
it { expect(last_response.status).to eq(404) }
|
|
it { expect(last_response.body).to eq(JSON.pretty_generate({ok: false})) }
|
|
end
|
|
|
|
describe '/dashboard/stats/vmpooler/pool' do
|
|
let(:config) { {
|
|
pools: [
|
|
{'name' => 'pool1', 'size' => 5},
|
|
{'name' => 'pool2', 'size' => 1}
|
|
],
|
|
graphite: {}
|
|
} }
|
|
|
|
before(:each) do
|
|
app.settings.set :config, config
|
|
app.settings.set :environment, :test
|
|
end
|
|
|
|
context 'without history param' do
|
|
it 'returns basic JSON' do
|
|
create_ready_vm('pool1', 'vm1', redis)
|
|
create_ready_vm('pool1', 'vm2', redis)
|
|
create_ready_vm('pool1', 'vm3', redis)
|
|
create_ready_vm('pool2', 'vm4', redis)
|
|
create_ready_vm('pool2', 'vm5', redis)
|
|
|
|
get '/dashboard/stats/vmpooler/pool'
|
|
|
|
json_hash = {
|
|
pool1: {size: 5, ready: 3},
|
|
pool2: {size: 1, ready: 2}
|
|
}
|
|
|
|
expect(last_response).to be_ok
|
|
expect(last_response.body).to eq(JSON.pretty_generate(json_hash))
|
|
expect(last_response.header['Content-Type']).to eq('application/json')
|
|
end
|
|
end
|
|
|
|
context 'with history param' do
|
|
it 'returns JSON with zeroed history when redis does not have values' do
|
|
get '/dashboard/stats/vmpooler/pool', :history => true
|
|
|
|
json_hash = {
|
|
pool1: {size: 5, ready: 0, history: [0]},
|
|
pool2: {size: 1, ready: 0, history: [0]}
|
|
}
|
|
|
|
expect(last_response).to be_ok
|
|
expect(last_response.body).to eq(JSON.pretty_generate(json_hash))
|
|
expect(last_response.header['Content-Type']).to eq('application/json')
|
|
end
|
|
|
|
it 'returns JSON with history when redis has values' do
|
|
create_ready_vm('pool1', 'vm1', redis)
|
|
create_ready_vm('pool1', 'vm2', redis)
|
|
create_ready_vm('pool1', 'vm3', redis)
|
|
create_ready_vm('pool2', 'vm4', redis)
|
|
create_ready_vm('pool2', 'vm5', redis)
|
|
|
|
get '/dashboard/stats/vmpooler/pool', :history => true
|
|
|
|
json_hash = {
|
|
pool1: {size: 5, ready: 3, history: [3]},
|
|
pool2: {size: 1, ready: 2, history: [2]}
|
|
}
|
|
|
|
expect(last_response).to be_ok
|
|
expect(last_response.body).to eq(JSON.pretty_generate(json_hash))
|
|
expect(last_response.header['Content-Type']).to eq('application/json')
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '/dashboard/stats/vmpooler/running' do
|
|
let(:config) { {
|
|
pools: [
|
|
{'name' => 'pool-1', 'size' => 5},
|
|
{'name' => 'pool-2', 'size' => 1},
|
|
{'name' => 'diffpool-1', 'size' => 3}
|
|
],
|
|
graphite: {}
|
|
} }
|
|
|
|
before(:each) do
|
|
app.settings.set :config, config
|
|
app.settings.set :environment, :test
|
|
end
|
|
|
|
context 'without history param' do
|
|
|
|
it 'returns basic JSON' do
|
|
get '/dashboard/stats/vmpooler/running'
|
|
|
|
json_hash = {pool: {running: 0}, diffpool: {running: 0}}
|
|
|
|
expect(last_response).to be_ok
|
|
expect(last_response.body).to eq(JSON.pretty_generate(json_hash))
|
|
expect(last_response.header['Content-Type']).to eq('application/json')
|
|
end
|
|
|
|
it 'adds major correctly' do
|
|
create_running_vm('pool-1', 'vm1', redis)
|
|
create_running_vm('pool-1', 'vm2', redis)
|
|
create_running_vm('pool-1', 'vm3', redis)
|
|
|
|
create_running_vm('pool-2', 'vm4', redis)
|
|
create_running_vm('pool-2', 'vm5', redis)
|
|
create_running_vm('pool-2', 'vm6', redis)
|
|
create_running_vm('pool-2', 'vm7', redis)
|
|
create_running_vm('pool-2', 'vm8', redis)
|
|
|
|
create_running_vm('diffpool-1', 'vm9', redis)
|
|
create_running_vm('diffpool-1', 'vm10', redis)
|
|
|
|
get '/dashboard/stats/vmpooler/running'
|
|
|
|
json_hash = {pool: {running: 8}, diffpool: {running: 2}}
|
|
|
|
expect(last_response).to be_ok
|
|
expect(last_response.body).to eq(JSON.pretty_generate(json_hash))
|
|
expect(last_response.header['Content-Type']).to eq('application/json')
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|