123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816 |
- require 'integration_test_helper'
- class MonitoringControllerTest < ActionDispatch::IntegrationTest
- setup do
- # set accept header
- @headers = { 'ACCEPT' => 'application/json', 'CONTENT_TYPE' => 'application/json' }
- # set token
- @token = SecureRandom.urlsafe_base64(64)
- Setting.set('monitoring_token', @token)
- # create agent
- roles = Role.where(name: %w[Admin Agent])
- groups = Group.all
- # channel cleanup
- Channel.where.not(area: 'Email::Notification').destroy_all
- Channel.all.each do |channel|
- channel.status_in = 'ok'
- channel.status_out = 'ok'
- channel.last_log_in = nil
- channel.last_log_out = nil
- channel.save!
- end
- dir = Rails.root.join('tmp', 'unprocessable_mail')
- Dir.glob("#{dir}/*.eml") do |entry|
- File.delete(entry)
- end
- Scheduler.where(active: true).each do |scheduler|
- scheduler.last_run = Time.zone.now
- scheduler.save!
- end
- permission = Permission.find_by(name: 'admin.monitoring')
- permission.active = true
- permission.save!
- UserInfo.current_user_id = 1
- @admin = User.create_or_update(
- login: 'monitoring-admin',
- firstname: 'Monitoring',
- lastname: 'Admin',
- email: 'monitoring-admin@example.com',
- password: 'adminpw',
- active: true,
- roles: roles,
- groups: groups,
- )
- # create agent
- roles = Role.where(name: 'Agent')
- @agent = User.create_or_update(
- login: 'monitoring-agent@example.com',
- firstname: 'Monitoring',
- lastname: 'Agent',
- email: 'monitoring-agent@example.com',
- password: 'agentpw',
- active: true,
- roles: roles,
- groups: groups,
- )
- # create customer without org
- roles = Role.where(name: 'Customer')
- @customer_without_org = User.create_or_update(
- login: 'monitoring-customer1@example.com',
- firstname: 'Monitoring',
- lastname: 'Customer1',
- email: 'monitoring-customer1@example.com',
- password: 'customer1pw',
- active: true,
- roles: roles,
- )
- end
- test '01 monitoring without token' do
- # health_check
- get '/api/v1/monitoring/health_check', params: {}, headers: @headers
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['healthy'])
- assert_equal('Not authorized', result['error'])
- # status
- get '/api/v1/monitoring/status', params: {}, headers: @headers
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['agents'])
- assert_not(result['last_login'])
- assert_not(result['counts'])
- assert_not(result['last_created_at'])
- assert_equal('Not authorized', result['error'])
- # token
- post '/api/v1/monitoring/token', params: {}, headers: @headers
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['token'])
- assert_equal('authentication failed', result['error'])
- end
- test '02 monitoring with wrong token' do
- # health_check
- get '/api/v1/monitoring/health_check?token=abc', params: {}, headers: @headers
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['healthy'])
- assert_equal('Not authorized', result['error'])
- # status
- get '/api/v1/monitoring/status?token=abc', params: {}, headers: @headers
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['agents'])
- assert_not(result['last_login'])
- assert_not(result['counts'])
- assert_not(result['last_created_at'])
- assert_equal('Not authorized', result['error'])
- # token
- post '/api/v1/monitoring/token', params: { token: 'abc' }.to_json, headers: @headers
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['token'])
- assert_equal('authentication failed', result['error'])
- end
- test '03 monitoring with correct token' do
- # test storage usage
- string = ''
- 10.times do
- string += 'Some Text Some Text Some Text Some Text Some Text Some Text Some Text Some Text'
- end
- Store.add(
- object: 'User',
- o_id: 1,
- data: string,
- filename: 'filename.txt',
- )
- # health_check
- get "/api/v1/monitoring/health_check?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['error'])
- assert_equal(true, result['healthy'])
- assert_equal('success', result['message'])
- # status
- get "/api/v1/monitoring/status?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['error'])
- assert(result.key?('agents'))
- assert(result.key?('last_login'))
- assert(result.key?('counts'))
- assert(result.key?('last_created_at'))
- if ActiveRecord::Base.connection_config[:adapter] == 'postgresql'
- assert(result['storage'])
- assert(result['storage'].key?('kB'))
- assert(result['storage'].key?('MB'))
- assert(result['storage'].key?('GB'))
- else
- assert_not(result['storage'])
- end
- # token
- post '/api/v1/monitoring/token', params: { token: @token }.to_json, headers: @headers
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['token'])
- assert_equal('authentication failed', result['error'])
- end
- test '04 monitoring with admin user' do
- credentials = ActionController::HttpAuthentication::Basic.encode_credentials('monitoring-admin@example.com', 'adminpw')
- # health_check
- get '/api/v1/monitoring/health_check', params: {}, headers: @headers.merge('Authorization' => credentials)
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['error'])
- assert_equal(true, result['healthy'])
- assert_equal('success', result['message'])
- # status
- get '/api/v1/monitoring/status', params: {}, headers: @headers.merge('Authorization' => credentials)
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['error'])
- assert(result.key?('agents'))
- assert(result.key?('last_login'))
- assert(result.key?('counts'))
- assert(result.key?('last_created_at'))
- # token
- post '/api/v1/monitoring/token', params: { token: @token }.to_json, headers: @headers.merge('Authorization' => credentials)
- assert_response(201)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert(result['token'])
- @token = result['token']
- assert_not(result['error'])
- end
- test '05 monitoring with agent user' do
- credentials = ActionController::HttpAuthentication::Basic.encode_credentials('monitoring-agent@example.com', 'agentpw')
- # health_check
- get '/api/v1/monitoring/health_check', params: {}, headers: @headers.merge('Authorization' => credentials)
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['healthy'])
- assert_equal('Not authorized (user)!', result['error'])
- # status
- get '/api/v1/monitoring/status', params: {}, headers: @headers.merge('Authorization' => credentials)
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['agents'])
- assert_not(result['last_login'])
- assert_not(result['counts'])
- assert_not(result['last_created_at'])
- assert_equal('Not authorized (user)!', result['error'])
- # token
- post '/api/v1/monitoring/token', params: { token: @token }.to_json, headers: @headers.merge('Authorization' => credentials)
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['token'])
- assert_equal('Not authorized (user)!', result['error'])
- end
- test '06 monitoring with admin user and invalid permission' do
- permission = Permission.find_by(name: 'admin.monitoring')
- permission.active = false
- permission.save!
- credentials = ActionController::HttpAuthentication::Basic.encode_credentials('monitoring-admin@example.com', 'adminpw')
- # health_check
- get '/api/v1/monitoring/health_check', params: {}, headers: @headers.merge('Authorization' => credentials)
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['healthy'])
- assert_equal('Not authorized (user)!', result['error'])
- # status
- get '/api/v1/monitoring/status', params: {}, headers: @headers.merge('Authorization' => credentials)
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['agents'])
- assert_not(result['last_login'])
- assert_not(result['counts'])
- assert_not(result['last_created_at'])
- assert_equal('Not authorized (user)!', result['error'])
- # token
- post '/api/v1/monitoring/token', params: { token: @token }.to_json, headers: @headers.merge('Authorization' => credentials)
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['token'])
- assert_equal('Not authorized (user)!', result['error'])
- permission.active = true
- permission.save!
- end
- test '07 monitoring with correct token and invalid permission' do
- permission = Permission.find_by(name: 'admin.monitoring')
- permission.active = false
- permission.save!
- # health_check
- get "/api/v1/monitoring/health_check?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['error'])
- assert_equal(true, result['healthy'])
- assert_equal('success', result['message'])
- # status
- get "/api/v1/monitoring/status?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['error'])
- assert(result.key?('agents'))
- assert(result.key?('last_login'))
- assert(result.key?('counts'))
- assert(result.key?('last_created_at'))
- # token
- post '/api/v1/monitoring/token', params: { token: @token }.to_json, headers: @headers
- assert_response(401)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_not(result['token'])
- assert_equal('authentication failed', result['error'])
- permission.active = true
- permission.save!
- end
- test '08 check health false' do
- channel = Channel.find_by(active: true)
- channel.status_in = 'ok'
- channel.status_out = 'error'
- channel.last_log_in = nil
- channel.last_log_out = nil
- channel.save!
- # health_check - channel
- get "/api/v1/monitoring/health_check?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert(result['message'])
- assert(result['issues'])
- assert_equal(false, result['healthy'])
- assert_equal('Channel: Email::Notification out ', result['message'])
- # health_check - scheduler may not run
- scheduler = Scheduler.where(active: true).last
- scheduler.last_run = Time.zone.now - 20.minutes
- scheduler.period = 600
- scheduler.save!
- get "/api/v1/monitoring/health_check?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert(result['message'])
- assert(result['issues'])
- assert_equal(false, result['healthy'])
- assert_equal("Channel: Email::Notification out ;scheduler may not run (last execution of #{scheduler.method} 10 minutes over) - please contact your system administrator", result['message'])
- # health_check - scheduler may not run
- scheduler = Scheduler.where(active: true).last
- scheduler.last_run = Time.zone.now - 1.day
- scheduler.period = 600
- scheduler.save!
- get "/api/v1/monitoring/health_check?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert(result['message'])
- assert(result['issues'])
- assert_equal(false, result['healthy'])
- assert_equal("Channel: Email::Notification out ;scheduler may not run (last execution of #{scheduler.method} about 24 hours over) - please contact your system administrator", result['message'])
- # health_check - scheduler job count
- travel 2.seconds
- 8001.times do
- Delayed::Job.enqueue( BackgroundJobSearchIndex.new('Ticket', 1))
- end
- Scheduler.where(active: true).each do |local_scheduler|
- local_scheduler.last_run = Time.zone.now
- local_scheduler.save!
- end
- total_jobs = Delayed::Job.count
- get "/api/v1/monitoring/health_check?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert(result['message'])
- assert(result['issues'])
- assert_equal(false, result['healthy'])
- assert_equal('Channel: Email::Notification out ', result['message'])
- travel 20.minutes
- Scheduler.where(active: true).each do |local_scheduler|
- local_scheduler.last_run = Time.zone.now
- local_scheduler.save!
- end
- get "/api/v1/monitoring/health_check?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert(result['message'])
- assert(result['issues'])
- assert_equal(false, result['healthy'])
- assert_equal("Channel: Email::Notification out ;#{total_jobs} background jobs in queue", result['message'])
- Delayed::Job.delete_all
- travel_back
- # health_check - unprocessable mail
- dir = Rails.root.join('tmp', 'unprocessable_mail')
- FileUtils.mkdir_p(dir)
- FileUtils.touch("#{dir}/test.eml")
- get "/api/v1/monitoring/health_check?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert(result['message'])
- assert(result['issues'])
- assert_equal(false, result['healthy'])
- assert_equal('Channel: Email::Notification out ;unprocessable mails: 1', result['message'])
- # health_check - ldap
- Setting.set('ldap_integration', true)
- ImportJob.create(
- name: 'Import::Ldap',
- started_at: Time.zone.now,
- finished_at: Time.zone.now,
- result: {
- error: 'Some bad error'
- }
- )
- get "/api/v1/monitoring/health_check?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert(result['message'])
- assert(result['issues'])
- assert_equal(false, result['healthy'])
- assert_equal("Channel: Email::Notification out ;unprocessable mails: 1;Failed to run import backend 'Import::Ldap'. Cause: Some bad error", result['message'])
- stuck_updated_at_timestamp = 15.minutes.ago
- ImportJob.create(
- name: 'Import::Ldap',
- started_at: Time.zone.now,
- finished_at: nil,
- updated_at: stuck_updated_at_timestamp,
- )
- # health_check
- get "/api/v1/monitoring/health_check?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert(result['message'])
- assert(result['issues'])
- assert_equal(false, result['healthy'])
- assert_equal("Channel: Email::Notification out ;unprocessable mails: 1;Failed to run import backend 'Import::Ldap'. Cause: Some bad error;Stuck import backend 'Import::Ldap' detected. Last update: #{stuck_updated_at_timestamp}", result['message'])
- Setting.set('ldap_integration', false)
- end
- test '09 check restart_failed_jobs' do
- credentials = ActionController::HttpAuthentication::Basic.encode_credentials('monitoring-admin@example.com', 'adminpw')
- post '/api/v1/monitoring/restart_failed_jobs', params: {}, headers: @headers.merge('Authorization' => credentials)
- assert_response(200)
- end
- test '10 check failed delayed job' do
- credentials = ActionController::HttpAuthentication::Basic.encode_credentials('monitoring-admin@example.com', 'adminpw')
- # disable elasticsearch
- prev_es_config = Setting.get('es_url')
- Setting.set('es_url', 'http://127.0.0.1:92001')
- # add a new object
- object = ObjectManager::Attribute.add(
- name: 'test3',
- object: 'Ticket',
- display: 'Test 3',
- active: true,
- data_type: 'input',
- data_option: {
- default: 'test',
- type: 'text',
- maxlength: 120,
- null: true
- },
- screens: {
- create_middle: {
- 'ticket.customer' => {
- shown: true,
- item_class: 'column'
- },
- 'ticket.agent' => {
- shown: true,
- item_class: 'column'
- }
- },
- edit: {
- 'ticket.customer' => {
- shown: true
- },
- 'ticket.agent' => {
- shown: true
- }
- }
- },
- position: 1550,
- editable: true
- )
- migration = ObjectManager::Attribute.migration_execute
- assert_equal(migration, true)
- post "/api/v1/object_manager_attributes/#{object.id}", params: {}, headers: @headers
- token = @response.headers['CSRF-TOKEN']
- # parameters for updating
- params = {
- 'name': 'test4',
- 'object': 'Ticket',
- 'display': 'Test 4',
- 'active': true,
- 'data_type': 'input',
- 'data_option': {
- 'default': 'test',
- 'type': 'text',
- 'maxlength': 120
- },
- 'screens': {
- 'create_middle': {
- 'ticket.customer': {
- 'shown': true,
- 'item_class': 'column'
- },
- 'ticket.agent': {
- 'shown': true,
- 'item_class': 'column'
- }
- },
- 'edit': {
- 'ticket.customer': {
- 'shown': true
- },
- 'ticket.agent': {
- 'shown': true
- }
- }
- },
- 'id': 'c-196'
- }
- # update the object
- put "/api/v1/object_manager_attributes/#{object.id}", params: params.to_json, headers: @headers.merge('Authorization' => credentials)
- migration = ObjectManager::Attribute.migration_execute
- assert_equal(migration, true)
- assert_response(200)
- result = JSON.parse(@response.body)
- assert(result)
- assert(result['data_option']['null'])
- assert_equal(result['name'], 'test4')
- assert_equal(result['display'], 'Test 4')
- jobs = Delayed::Job.all
- 4.times do
- jobs.each do |job|
- Delayed::Worker.new.run(job)
- end
- end
- # health_check
- get "/api/v1/monitoring/health_check?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert(result['message'])
- assert(result['issues'])
- assert_equal(false, result['healthy'])
- assert_equal("Failed to run background job #1 'BackgroundJobSearchIndex' 1 time(s) with 4 attempt(s).", result['message'])
- # add another job
- manual_added = Delayed::Job.enqueue( BackgroundJobSearchIndex.new('Ticket', 1))
- manual_added.update!(attempts: 10)
- # health_check
- get "/api/v1/monitoring/health_check?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert(result['message'])
- assert(result['issues'])
- assert_equal(false, result['healthy'])
- assert_equal("Failed to run background job #1 'BackgroundJobSearchIndex' 2 time(s) with 14 attempt(s).", result['message'])
- # add another job
- dummy_class = Class.new do
- def perform
- puts 'work work'
- end
- end
- manual_added = Delayed::Job.enqueue( dummy_class.new )
- manual_added.update!(attempts: 5)
- # health_check
- get "/api/v1/monitoring/health_check?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert(result['message'])
- assert(result['issues'])
- assert_equal(false, result['healthy'])
- assert_equal("Failed to run background job #1 'BackgroundJobSearchIndex' 2 time(s) with 14 attempt(s).;Failed to run background job #2 'Object' 1 time(s) with 5 attempt(s).", result['message'])
- # reset settings
- Setting.set('es_url', prev_es_config)
- # add some more failing job
- 10.times do
- manual_added = Delayed::Job.enqueue( dummy_class.new )
- manual_added.update!(attempts: 5)
- end
- # health_check
- get "/api/v1/monitoring/health_check?token=#{@token}", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert(result['message'])
- assert(result['issues'])
- assert_equal(false, result['healthy'])
- assert_equal("13 failing background jobs;Failed to run background job #1 'Object' 8 time(s) with 40 attempt(s).;Failed to run background job #2 'BackgroundJobSearchIndex' 2 time(s) with 14 attempt(s).", result['message'])
- # cleanup
- Delayed::Job.delete_all
- end
- test '11 check amount' do
- Ticket.destroy_all
- # amount_check - ok
- get "/api/v1/monitoring/amount_check?token=#{@token}&periode=1h", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_equal('ok', result['state'])
- assert_equal('', result['message'])
- assert_equal(0, result['count'])
- Ticket.destroy_all
- (1..6).each do |i|
- Ticket.create!(
- title: "Ticket-#{i}",
- group: Group.lookup(name: 'Users'),
- customer_id: 1,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: 1,
- created_by_id: 1,
- )
- travel 10.seconds
- end
- get "/api/v1/monitoring/amount_check?token=#{@token}&periode=1h&min_warning=10&min_critical=8", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_equal('critical', result['state'])
- assert_equal('The minimum of 8 was undercut by 6 in the last 1h', result['message'])
- assert_equal(6, result['count'])
- get "/api/v1/monitoring/amount_check?token=#{@token}&periode=1h&min_warning=7&min_critical=2", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_equal('warning', result['state'])
- assert_equal('The minimum of 7 was undercut by 6 in the last 1h', result['message'])
- assert_equal(6, result['count'])
- get "/api/v1/monitoring/amount_check?token=#{@token}&periode=1h&max_warning=10&max_critical=20", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_equal('ok', result['state'])
- assert_equal('', result['message'])
- assert_equal(6, result['count'])
- (1..6).each do |i|
- Ticket.create!(
- title: "Ticket-#{i}",
- group: Group.lookup(name: 'Users'),
- customer_id: 1,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: 1,
- created_by_id: 1,
- )
- travel 1.second
- end
- get "/api/v1/monitoring/amount_check?token=#{@token}&periode=1h&max_warning=10&max_critical=20", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_equal('warning', result['state'])
- assert_equal('The limit of 10 was exceeded with 12 in the last 1h', result['message'])
- assert_equal(12, result['count'])
- (1..10).each do |i|
- Ticket.create!(
- title: "Ticket-#{i}",
- group: Group.lookup(name: 'Users'),
- customer_id: 1,
- state: Ticket::State.lookup(name: 'new'),
- priority: Ticket::Priority.lookup(name: '2 normal'),
- updated_by_id: 1,
- created_by_id: 1,
- )
- travel 1.second
- end
- get "/api/v1/monitoring/amount_check?token=#{@token}&periode=1h&max_warning=10&max_critical=20", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_equal('critical', result['state'])
- assert_equal('The limit of 20 was exceeded with 22 in the last 1h', result['message'])
- assert_equal(22, result['count'])
- get "/api/v1/monitoring/amount_check?token=#{@token}&periode=1h", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_equal('ok', result['state'])
- assert_equal('', result['message'])
- assert_equal(22, result['count'])
- travel 2.hours
- get "/api/v1/monitoring/amount_check?token=#{@token}&periode=1h", params: {}, headers: @headers
- assert_response(200)
- result = JSON.parse(@response.body)
- assert_equal(Hash, result.class)
- assert_equal('ok', result['state'])
- assert_equal('', result['message'])
- assert_equal(0, result['count'])
- end
- end
|