flapjack 1.6.0 → 2.0.0b1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +4 -6
- data/.gitmodules +1 -1
- data/.rspec +1 -1
- data/.ruby-version +1 -1
- data/.travis.yml +12 -13
- data/CHANGELOG.md +2 -9
- data/CONTRIBUTING.md +7 -2
- data/Gemfile +4 -13
- data/LICENCE +1 -0
- data/README.md +8 -2
- data/Rakefile +2 -2
- data/bin/flapjack +3 -12
- data/build.sh +4 -2
- data/etc/flapjack_config.toml.example +273 -0
- data/features/ack_after_sched_maint.feature +18 -21
- data/features/cli.feature +11 -71
- data/features/cli_flapjack-feed-events.feature +14 -15
- data/features/cli_flapjack-nagios-receiver.feature +12 -41
- data/features/cli_flapper.feature +12 -41
- data/features/cli_purge.feature +5 -6
- data/features/cli_receive-events.feature +6 -7
- data/features/cli_simulate-failed-check.feature +5 -6
- data/features/events.feature +206 -181
- data/features/events_check_names.feature +4 -7
- data/features/notification_rules.feature +144 -223
- data/features/notifications.feature +65 -57
- data/features/rollup.feature +45 -47
- data/features/steps/cli_steps.rb +4 -5
- data/features/steps/events_steps.rb +163 -373
- data/features/steps/notifications_steps.rb +408 -264
- data/features/steps/packaging-lintian_steps.rb +0 -4
- data/features/steps/time_travel_steps.rb +0 -26
- data/features/support/daemons.rb +6 -31
- data/features/support/env.rb +65 -74
- data/flapjack.gemspec +22 -24
- data/lib/flapjack.rb +14 -7
- data/lib/flapjack/cli/flapper.rb +74 -173
- data/lib/flapjack/cli/maintenance.rb +278 -109
- data/lib/flapjack/cli/migrate.rb +950 -0
- data/lib/flapjack/cli/purge.rb +19 -22
- data/lib/flapjack/cli/receiver.rb +150 -326
- data/lib/flapjack/cli/server.rb +8 -235
- data/lib/flapjack/cli/simulate.rb +42 -57
- data/lib/flapjack/configuration.rb +51 -37
- data/lib/flapjack/coordinator.rb +138 -129
- data/lib/flapjack/data/acknowledgement.rb +177 -0
- data/lib/flapjack/data/alert.rb +97 -158
- data/lib/flapjack/data/check.rb +611 -0
- data/lib/flapjack/data/condition.rb +70 -0
- data/lib/flapjack/data/contact.rb +226 -456
- data/lib/flapjack/data/event.rb +96 -184
- data/lib/flapjack/data/extensions/associations.rb +59 -0
- data/lib/flapjack/data/extensions/short_name.rb +25 -0
- data/lib/flapjack/data/medium.rb +428 -0
- data/lib/flapjack/data/metrics.rb +194 -0
- data/lib/flapjack/data/notification.rb +22 -281
- data/lib/flapjack/data/rule.rb +473 -0
- data/lib/flapjack/data/scheduled_maintenance.rb +244 -0
- data/lib/flapjack/data/state.rb +221 -0
- data/lib/flapjack/data/statistic.rb +112 -0
- data/lib/flapjack/data/tag.rb +277 -0
- data/lib/flapjack/data/test_notification.rb +182 -0
- data/lib/flapjack/data/unscheduled_maintenance.rb +159 -0
- data/lib/flapjack/data/validators/id_validator.rb +20 -0
- data/lib/flapjack/exceptions.rb +6 -0
- data/lib/flapjack/filters/acknowledgement.rb +23 -16
- data/lib/flapjack/filters/base.rb +0 -5
- data/lib/flapjack/filters/delays.rb +53 -43
- data/lib/flapjack/filters/ok.rb +23 -14
- data/lib/flapjack/filters/scheduled_maintenance.rb +3 -3
- data/lib/flapjack/filters/unscheduled_maintenance.rb +12 -3
- data/lib/flapjack/gateways/aws_sns.rb +65 -49
- data/lib/flapjack/gateways/aws_sns/alert.text.erb +2 -2
- data/lib/flapjack/gateways/aws_sns/alert_subject.text.erb +2 -2
- data/lib/flapjack/gateways/aws_sns/rollup_subject.text.erb +1 -1
- data/lib/flapjack/gateways/email.rb +107 -90
- data/lib/flapjack/gateways/email/alert.html.erb +19 -18
- data/lib/flapjack/gateways/email/alert.text.erb +20 -14
- data/lib/flapjack/gateways/email/alert_subject.text.erb +2 -1
- data/lib/flapjack/gateways/email/rollup.html.erb +14 -13
- data/lib/flapjack/gateways/email/rollup.text.erb +13 -10
- data/lib/flapjack/gateways/jabber.rb +679 -671
- data/lib/flapjack/gateways/jabber/alert.text.erb +9 -6
- data/lib/flapjack/gateways/jsonapi.rb +164 -350
- data/lib/flapjack/gateways/jsonapi/data/join_descriptor.rb +44 -0
- data/lib/flapjack/gateways/jsonapi/data/method_descriptor.rb +21 -0
- data/lib/flapjack/gateways/jsonapi/helpers/headers.rb +63 -0
- data/lib/flapjack/gateways/jsonapi/helpers/miscellaneous.rb +136 -0
- data/lib/flapjack/gateways/jsonapi/helpers/resources.rb +227 -0
- data/lib/flapjack/gateways/jsonapi/helpers/serialiser.rb +313 -0
- data/lib/flapjack/gateways/jsonapi/helpers/swagger_docs.rb +322 -0
- data/lib/flapjack/gateways/jsonapi/methods/association_delete.rb +115 -0
- data/lib/flapjack/gateways/jsonapi/methods/association_get.rb +288 -0
- data/lib/flapjack/gateways/jsonapi/methods/association_patch.rb +178 -0
- data/lib/flapjack/gateways/jsonapi/methods/association_post.rb +116 -0
- data/lib/flapjack/gateways/jsonapi/methods/metrics.rb +71 -0
- data/lib/flapjack/gateways/jsonapi/methods/resource_delete.rb +119 -0
- data/lib/flapjack/gateways/jsonapi/methods/resource_get.rb +186 -0
- data/lib/flapjack/gateways/jsonapi/methods/resource_patch.rb +239 -0
- data/lib/flapjack/gateways/jsonapi/methods/resource_post.rb +197 -0
- data/lib/flapjack/gateways/jsonapi/middleware/array_param_fixer.rb +27 -0
- data/lib/flapjack/gateways/jsonapi/{rack → middleware}/json_params_parser.rb +7 -6
- data/lib/flapjack/gateways/jsonapi/middleware/request_timestamp.rb +18 -0
- data/lib/flapjack/gateways/oobetet.rb +222 -170
- data/lib/flapjack/gateways/pager_duty.rb +388 -0
- data/lib/flapjack/gateways/pager_duty/alert.text.erb +13 -0
- data/lib/flapjack/gateways/slack.rb +56 -48
- data/lib/flapjack/gateways/slack/alert.text.erb +1 -1
- data/lib/flapjack/gateways/slack/rollup.text.erb +1 -1
- data/lib/flapjack/gateways/sms_aspsms.rb +155 -0
- data/lib/flapjack/gateways/sms_aspsms/alert.text.erb +7 -0
- data/lib/flapjack/gateways/sms_aspsms/rollup.text.erb +2 -0
- data/lib/flapjack/gateways/sms_messagenet.rb +77 -57
- data/lib/flapjack/gateways/sms_messagenet/alert.text.erb +3 -2
- data/lib/flapjack/gateways/sms_nexmo.rb +53 -51
- data/lib/flapjack/gateways/sms_nexmo/alert.text.erb +2 -2
- data/lib/flapjack/gateways/sms_nexmo/rollup.text.erb +1 -1
- data/lib/flapjack/gateways/sms_twilio.rb +79 -62
- data/lib/flapjack/gateways/sms_twilio/alert.text.erb +3 -2
- data/lib/flapjack/gateways/web.rb +437 -345
- data/lib/flapjack/gateways/web/middleware/request_timestamp.rb +18 -0
- data/lib/flapjack/gateways/web/public/css/bootstrap.css +3793 -4340
- data/lib/flapjack/gateways/web/public/css/bootstrap.css.map +1 -0
- data/lib/flapjack/gateways/web/public/fonts/glyphicons-halflings-regular.eot +0 -0
- data/lib/flapjack/gateways/web/public/fonts/glyphicons-halflings-regular.svg +273 -214
- data/lib/flapjack/gateways/web/public/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/lib/flapjack/gateways/web/public/fonts/glyphicons-halflings-regular.woff +0 -0
- data/lib/flapjack/gateways/web/public/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/lib/flapjack/gateways/web/public/js/bootstrap.js +1637 -1607
- data/lib/flapjack/gateways/web/public/js/self_stats.js +1 -2
- data/lib/flapjack/gateways/web/views/_pagination.html.erb +19 -0
- data/lib/flapjack/gateways/web/views/check.html.erb +159 -121
- data/lib/flapjack/gateways/web/views/checks.html.erb +82 -41
- data/lib/flapjack/gateways/web/views/contact.html.erb +59 -71
- data/lib/flapjack/gateways/web/views/contacts.html.erb +32 -8
- data/lib/flapjack/gateways/web/views/index.html.erb +2 -2
- data/lib/flapjack/gateways/web/views/{layout.erb → layout.html.erb} +7 -23
- data/lib/flapjack/gateways/web/views/self_stats.html.erb +32 -33
- data/lib/flapjack/gateways/web/views/tag.html.erb +32 -0
- data/lib/flapjack/gateways/web/views/tags.html.erb +51 -0
- data/lib/flapjack/logger.rb +34 -3
- data/lib/flapjack/notifier.rb +180 -112
- data/lib/flapjack/patches.rb +8 -63
- data/lib/flapjack/pikelet.rb +185 -143
- data/lib/flapjack/processor.rb +323 -191
- data/lib/flapjack/record_queue.rb +33 -0
- data/lib/flapjack/redis_proxy.rb +66 -0
- data/lib/flapjack/utility.rb +21 -15
- data/lib/flapjack/version.rb +2 -1
- data/libexec/httpbroker.go +218 -14
- data/libexec/oneoff.go +13 -10
- data/spec/lib/flapjack/configuration_spec.rb +286 -0
- data/spec/lib/flapjack/coordinator_spec.rb +103 -157
- data/spec/lib/flapjack/data/check_spec.rb +175 -0
- data/spec/lib/flapjack/data/contact_spec.rb +26 -349
- data/spec/lib/flapjack/data/event_spec.rb +76 -291
- data/spec/lib/flapjack/data/medium_spec.rb +19 -0
- data/spec/lib/flapjack/data/rule_spec.rb +43 -0
- data/spec/lib/flapjack/data/scheduled_maintenance_spec.rb +976 -0
- data/spec/lib/flapjack/data/unscheduled_maintenance_spec.rb +34 -0
- data/spec/lib/flapjack/gateways/aws_sns_spec.rb +111 -60
- data/spec/lib/flapjack/gateways/email_spec.rb +194 -161
- data/spec/lib/flapjack/gateways/jabber_spec.rb +961 -162
- data/spec/lib/flapjack/gateways/jsonapi/methods/check_links_spec.rb +155 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/checks_spec.rb +426 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/contact_links_spec.rb +217 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/contacts_spec.rb +425 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/events_spec.rb +271 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/media_spec.rb +257 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/medium_links_spec.rb +163 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/metrics_spec.rb +8 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/rule_links_spec.rb +212 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/rules_spec.rb +289 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/scheduled_maintenance_links_spec.rb +49 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/scheduled_maintenances_spec.rb +242 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/tag_links_spec.rb +274 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/tags_spec.rb +302 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/unscheduled_maintenance_links_spec.rb +49 -0
- data/spec/lib/flapjack/gateways/jsonapi/methods/unscheduled_maintenances_spec.rb +339 -0
- data/spec/lib/flapjack/gateways/jsonapi_spec.rb +1 -1
- data/spec/lib/flapjack/gateways/oobetet_spec.rb +151 -79
- data/spec/lib/flapjack/gateways/pager_duty_spec.rb +353 -0
- data/spec/lib/flapjack/gateways/slack_spec.rb +53 -53
- data/spec/lib/flapjack/gateways/sms_aspsms_spec.rb +106 -0
- data/spec/lib/flapjack/gateways/sms_messagenet_spec.rb +111 -54
- data/spec/lib/flapjack/gateways/sms_nexmo_spec.rb +50 -51
- data/spec/lib/flapjack/gateways/sms_twilio_spec.rb +108 -48
- data/spec/lib/flapjack/gateways/web_spec.rb +144 -216
- data/spec/lib/flapjack/notifier_spec.rb +132 -1
- data/spec/lib/flapjack/pikelet_spec.rb +111 -50
- data/spec/lib/flapjack/processor_spec.rb +210 -40
- data/spec/lib/flapjack/redis_proxy_spec.rb +45 -0
- data/spec/lib/flapjack/utility_spec.rb +11 -15
- data/spec/service_consumers/fixture_data.rb +547 -0
- data/spec/service_consumers/pact_helper.rb +21 -32
- data/spec/service_consumers/pacts/flapjack-diner_v2.0.json +4652 -0
- data/spec/service_consumers/provider_states_for_flapjack-diner.rb +279 -322
- data/spec/service_consumers/provider_support.rb +8 -0
- data/spec/spec_helper.rb +34 -44
- data/spec/support/erb_view_helper.rb +1 -1
- data/spec/support/factories.rb +58 -0
- data/spec/support/jsonapi_helper.rb +15 -26
- data/spec/support/mock_logger.rb +43 -0
- data/spec/support/xmpp_comparable.rb +24 -0
- data/src/flapjack/transport_test.go +30 -1
- data/tasks/dump_keys.rake +82 -0
- data/tasks/events.rake +7 -7
- data/tasks/support/flapjack_config_benchmark.toml +28 -0
- data/tasks/support/flapjack_config_benchmark.yaml +0 -2
- metadata +175 -222
- data/Guardfile +0 -14
- data/etc/flapjack_config.yaml.example +0 -477
- data/features/cli_flapjack-populator.feature +0 -90
- data/features/support/silent_system.rb +0 -4
- data/lib/flapjack/cli/import.rb +0 -108
- data/lib/flapjack/data/entity.rb +0 -652
- data/lib/flapjack/data/entity_check.rb +0 -1044
- data/lib/flapjack/data/message.rb +0 -56
- data/lib/flapjack/data/migration.rb +0 -234
- data/lib/flapjack/data/notification_rule.rb +0 -425
- data/lib/flapjack/data/semaphore.rb +0 -44
- data/lib/flapjack/data/tagged.rb +0 -48
- data/lib/flapjack/gateways/jsonapi/check_methods.rb +0 -206
- data/lib/flapjack/gateways/jsonapi/check_presenter.rb +0 -221
- data/lib/flapjack/gateways/jsonapi/contact_methods.rb +0 -186
- data/lib/flapjack/gateways/jsonapi/entity_methods.rb +0 -223
- data/lib/flapjack/gateways/jsonapi/medium_methods.rb +0 -185
- data/lib/flapjack/gateways/jsonapi/metrics_methods.rb +0 -132
- data/lib/flapjack/gateways/jsonapi/notification_rule_methods.rb +0 -141
- data/lib/flapjack/gateways/jsonapi/pagerduty_credential_methods.rb +0 -139
- data/lib/flapjack/gateways/jsonapi/report_methods.rb +0 -146
- data/lib/flapjack/gateways/pagerduty.rb +0 -318
- data/lib/flapjack/gateways/pagerduty/alert.text.erb +0 -10
- data/lib/flapjack/gateways/web/public/css/select2-bootstrap.css +0 -87
- data/lib/flapjack/gateways/web/public/css/select2.css +0 -615
- data/lib/flapjack/gateways/web/public/css/tablesort.css +0 -67
- data/lib/flapjack/gateways/web/public/img/select2-spinner.gif +0 -0
- data/lib/flapjack/gateways/web/public/img/select2.png +0 -0
- data/lib/flapjack/gateways/web/public/img/select2x2.png +0 -0
- data/lib/flapjack/gateways/web/public/js/backbone.js +0 -1581
- data/lib/flapjack/gateways/web/public/js/backbone.jsonapi.js +0 -322
- data/lib/flapjack/gateways/web/public/js/flapjack.js +0 -82
- data/lib/flapjack/gateways/web/public/js/jquery.tablesorter.js +0 -1640
- data/lib/flapjack/gateways/web/public/js/jquery.tablesorter.widgets.js +0 -1390
- data/lib/flapjack/gateways/web/public/js/modules/contact.js +0 -520
- data/lib/flapjack/gateways/web/public/js/modules/entity.js +0 -28
- data/lib/flapjack/gateways/web/public/js/modules/medium.js +0 -40
- data/lib/flapjack/gateways/web/public/js/select2.js +0 -3397
- data/lib/flapjack/gateways/web/public/js/tablesort.js +0 -44
- data/lib/flapjack/gateways/web/public/js/underscore.js +0 -1276
- data/lib/flapjack/gateways/web/views/edit_contacts.html.erb +0 -173
- data/lib/flapjack/gateways/web/views/entities.html.erb +0 -30
- data/lib/flapjack/gateways/web/views/entity.html.erb +0 -51
- data/lib/flapjack/rack_logger.rb +0 -47
- data/lib/flapjack/redis_pool.rb +0 -42
- data/spec/lib/flapjack/data/entity_check_spec.rb +0 -1418
- data/spec/lib/flapjack/data/entity_spec.rb +0 -872
- data/spec/lib/flapjack/data/message_spec.rb +0 -30
- data/spec/lib/flapjack/data/migration_spec.rb +0 -104
- data/spec/lib/flapjack/data/notification_rule_spec.rb +0 -232
- data/spec/lib/flapjack/data/notification_spec.rb +0 -53
- data/spec/lib/flapjack/data/semaphore_spec.rb +0 -24
- data/spec/lib/flapjack/filters/acknowledgement_spec.rb +0 -6
- data/spec/lib/flapjack/filters/delays_spec.rb +0 -6
- data/spec/lib/flapjack/filters/ok_spec.rb +0 -6
- data/spec/lib/flapjack/filters/scheduled_maintenance_spec.rb +0 -6
- data/spec/lib/flapjack/filters/unscheduled_maintenance_spec.rb +0 -6
- data/spec/lib/flapjack/gateways/jsonapi/check_methods_spec.rb +0 -315
- data/spec/lib/flapjack/gateways/jsonapi/check_presenter_spec.rb +0 -223
- data/spec/lib/flapjack/gateways/jsonapi/contact_methods_spec.rb +0 -131
- data/spec/lib/flapjack/gateways/jsonapi/entity_methods_spec.rb +0 -389
- data/spec/lib/flapjack/gateways/jsonapi/medium_methods_spec.rb +0 -231
- data/spec/lib/flapjack/gateways/jsonapi/notification_rule_methods_spec.rb +0 -169
- data/spec/lib/flapjack/gateways/jsonapi/pagerduty_credential_methods_spec.rb +0 -114
- data/spec/lib/flapjack/gateways/jsonapi/report_methods_spec.rb +0 -590
- data/spec/lib/flapjack/gateways/pagerduty_spec.rb +0 -249
- data/spec/lib/flapjack/gateways/web/views/check.html.erb_spec.rb +0 -21
- data/spec/lib/flapjack/gateways/web/views/contact.html.erb_spec.rb +0 -24
- data/spec/lib/flapjack/gateways/web/views/index.html.erb_spec.rb +0 -16
- data/spec/lib/flapjack/redis_pool_spec.rb +0 -29
- data/spec/service_consumers/pacts/flapjack-diner_v1.0.json +0 -4702
- data/tasks/entities.rake +0 -151
- data/tasks/profile.rake +0 -282
- data/tmp/acknowledge.rb +0 -13
- data/tmp/create_config_yaml.rb +0 -16
- data/tmp/create_event_ok.rb +0 -30
- data/tmp/create_event_unknown.rb +0 -30
- data/tmp/create_events_failure.rb +0 -34
- data/tmp/create_events_ok.rb +0 -32
- data/tmp/create_events_ok_fail_ack_ok.rb +0 -53
- data/tmp/create_events_ok_failure.rb +0 -41
- data/tmp/create_events_ok_failure_ack.rb +0 -53
- data/tmp/dummy_contacts.json +0 -43
- data/tmp/dummy_entities.json +0 -37
- data/tmp/generate_nagios_test_hosts.rb +0 -16
- data/tmp/notification_rules.rb +0 -73
- data/tmp/parse_config_yaml.rb +0 -7
- data/tmp/redis_find_spurious_unknown_states.rb +0 -52
- data/tmp/test_json_post.rb +0 -19
- data/tmp/test_notification_rules_api.rb +0 -171
@@ -6,7 +6,7 @@ describe 'Flapjack::Gateways::JSONAPI', :sinatra => true, :logger => true do
|
|
6
6
|
include_context "jsonapi"
|
7
7
|
|
8
8
|
it "handles a route matching failure" do
|
9
|
-
|
9
|
+
get "/this/route/doesn't/exist"
|
10
10
|
expect(last_response.status).to eq(404)
|
11
11
|
end
|
12
12
|
|
@@ -10,121 +10,193 @@ describe Flapjack::Gateways::Oobetet, :logger => true do
|
|
10
10
|
'alias' => 'flapjack',
|
11
11
|
'watched_check' => 'PING',
|
12
12
|
'watched_entity' => 'foo.bar.net',
|
13
|
+
'pagerduty_contact' => 'pdservicekey',
|
13
14
|
'rooms' => ['flapjacktest@conference.example.com']
|
14
15
|
}
|
15
16
|
}
|
16
17
|
|
17
|
-
let(:
|
18
|
+
let(:now) { Time.now }
|
18
19
|
|
19
|
-
|
20
|
-
expect(Socket).to receive(:gethostname).and_return('thismachine')
|
20
|
+
let(:lock) { double(Monitor) }
|
21
21
|
|
22
|
-
|
22
|
+
context 'notifications' do
|
23
23
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
24
|
+
it "raises an error if a required config setting is not set" do
|
25
|
+
expect {
|
26
|
+
Flapjack::Gateways::Oobetet::Notifier.new(:config => config.delete('watched_check'))
|
27
|
+
}.to raise_error("Flapjack::Oobetet: watched_check must be defined in the config")
|
28
|
+
end
|
28
29
|
|
29
|
-
|
30
|
-
|
30
|
+
it "starts and is stopped by an exception" do
|
31
|
+
expect(Kernel).to receive(:sleep).with(10).and_raise(Flapjack::PikeletStop)
|
31
32
|
|
32
|
-
|
33
|
+
expect(lock).to receive(:synchronize).and_yield
|
33
34
|
|
34
|
-
|
35
|
-
|
35
|
+
fon = Flapjack::Gateways::Oobetet::Notifier.new(:lock => lock,
|
36
|
+
:config => config)
|
37
|
+
expect(fon).to receive(:check_timers)
|
38
|
+
expect { fon.start }.to raise_error(Flapjack::PikeletStop)
|
39
|
+
end
|
36
40
|
|
37
|
-
|
38
|
-
|
41
|
+
it "checks for a breach and emits notifications" do
|
42
|
+
time_check = double(Flapjack::Gateways::Oobetet::TimeChecker)
|
43
|
+
expect(time_check).to receive(:respond_to?).with(:announce).and_return(false)
|
44
|
+
expect(time_check).to receive(:respond_to?).with(:breach?).and_return(true)
|
45
|
+
expect(time_check).to receive(:breach?).
|
46
|
+
and_return("haven't seen a test problem notification in the last 300 seconds")
|
39
47
|
|
40
|
-
|
41
|
-
|
48
|
+
bot = double(Flapjack::Gateways::Oobetet::Bot)
|
49
|
+
expect(bot).to receive(:respond_to?).with(:announce).and_return(true)
|
50
|
+
expect(bot).to receive(:announce).with(/^Flapjack Self Monitoring is Critical/)
|
42
51
|
|
43
|
-
|
44
|
-
|
52
|
+
# TODO be more specific about the request body
|
53
|
+
req = stub_request(:post, "https://events.pagerduty.com/generic/2010-04-15/create_event.json").
|
54
|
+
to_return(:status => 200, :body => Flapjack.dump_json('status' => 'success'))
|
45
55
|
|
46
|
-
|
47
|
-
|
56
|
+
fon = Flapjack::Gateways::Oobetet::Notifier.new(:lock => lock, :config => config)
|
57
|
+
fon.instance_variable_set('@siblings', [time_check, bot])
|
58
|
+
fon.send(:check_timers)
|
48
59
|
|
49
|
-
|
50
|
-
|
60
|
+
expect(req).to have_been_requested
|
61
|
+
end
|
51
62
|
|
52
|
-
fo.on_ready(stanza)
|
53
63
|
end
|
54
64
|
|
55
|
-
|
56
|
-
|
65
|
+
context 'time checking' do
|
66
|
+
|
67
|
+
let(:now) { Time.now }
|
68
|
+
let(:a_minute_ago) { now.to_i - 60 }
|
69
|
+
let(:a_day_ago) { now.to_i - (60 * 60 * 24) }
|
70
|
+
|
71
|
+
it "starts and is stopped by a signal" do
|
72
|
+
expect(lock).to receive(:synchronize).and_yield
|
73
|
+
stop_cond = double(MonitorMixin::ConditionVariable)
|
74
|
+
expect(stop_cond).to receive(:wait_until)
|
75
|
+
|
76
|
+
fot = Flapjack::Gateways::Oobetet::TimeChecker.new(:lock => lock, :stop_condition => stop_cond,
|
77
|
+
:config => config)
|
78
|
+
fot.start
|
79
|
+
end
|
80
|
+
|
81
|
+
it "records times of a problem status message" do
|
82
|
+
expect(lock).to receive(:synchronize).and_yield
|
83
|
+
fot = Flapjack::Gateways::Oobetet::TimeChecker.new(:lock => lock, :config => config)
|
84
|
+
fot.send(:receive_status, 'problem', now.to_i)
|
85
|
+
fot_times = fot.instance_variable_get('@times')
|
86
|
+
expect(fot_times).not_to be_nil
|
87
|
+
expect(fot_times).to have_key(:last_problem)
|
88
|
+
expect(fot_times[:last_problem]).to eq(now.to_i)
|
89
|
+
end
|
90
|
+
|
91
|
+
it "records times of a recovery status message" do
|
92
|
+
expect(lock).to receive(:synchronize).and_yield
|
93
|
+
fot = Flapjack::Gateways::Oobetet::TimeChecker.new(:lock => lock, :config => config)
|
94
|
+
fot.send(:receive_status, 'recovery', now.to_i)
|
95
|
+
fot_times = fot.instance_variable_get('@times')
|
96
|
+
expect(fot_times).not_to be_nil
|
97
|
+
expect(fot_times).to have_key(:last_recovery)
|
98
|
+
expect(fot_times[:last_recovery]).to eq(now.to_i)
|
99
|
+
end
|
100
|
+
|
101
|
+
it "records times of an acknowledgement status message" do
|
102
|
+
expect(lock).to receive(:synchronize).and_yield
|
103
|
+
fot = Flapjack::Gateways::Oobetet::TimeChecker.new(:lock => lock, :config => config)
|
104
|
+
fot.send(:receive_status, 'acknowledgement', now.to_i)
|
105
|
+
fot_times = fot.instance_variable_get('@times')
|
106
|
+
expect(fot_times).not_to be_nil
|
107
|
+
expect(fot_times).to have_key(:last_ack)
|
108
|
+
expect(fot_times[:last_ack]).to eq(now.to_i)
|
109
|
+
end
|
110
|
+
|
111
|
+
it "detects a time period with no test problem alerts" do
|
112
|
+
expect(lock).to receive(:synchronize).and_yield
|
113
|
+
fot = Flapjack::Gateways::Oobetet::TimeChecker.new(:lock => lock, :config => config)
|
114
|
+
fot_times = fot.instance_variable_get('@times')
|
115
|
+
|
116
|
+
fot_times[:last_problem] = a_day_ago
|
117
|
+
fot_times[:last_recovery] = a_minute_ago
|
118
|
+
fot_times[:last_ack] = a_minute_ago
|
119
|
+
fot_times[:last_ack_sent] = a_minute_ago
|
120
|
+
|
121
|
+
breach = fot.breach?(now.to_i)
|
122
|
+
expect(breach).not_to be_nil
|
123
|
+
expect(breach).to eq("haven't seen a test problem notification in the last 300 seconds")
|
124
|
+
end
|
125
|
+
|
126
|
+
it "detects a time period with no test recovery alerts" do
|
127
|
+
expect(lock).to receive(:synchronize).and_yield
|
128
|
+
fot = Flapjack::Gateways::Oobetet::TimeChecker.new(:lock => lock, :config => config)
|
129
|
+
fot_times = fot.instance_variable_get('@times')
|
130
|
+
|
131
|
+
fot_times[:last_problem] = a_minute_ago
|
132
|
+
fot_times[:last_recovery] = a_day_ago
|
133
|
+
fot_times[:last_ack] = a_minute_ago
|
134
|
+
fot_times[:last_ack_sent] = a_minute_ago
|
135
|
+
|
136
|
+
breach = fot.breach?(now.to_i)
|
137
|
+
expect(breach).not_to be_nil
|
138
|
+
expect(breach).to eq("haven't seen a test recovery notification in the last 300 seconds")
|
139
|
+
end
|
57
140
|
|
58
|
-
expect(EventMachine::Timer).to receive(:new).with(1).and_yield
|
59
|
-
expect(fo).to receive(:connect)
|
60
|
-
|
61
|
-
ret = fo.on_disconnect(stanza)
|
62
|
-
expect(ret).to be true
|
63
141
|
end
|
64
142
|
|
65
|
-
|
66
|
-
fo = Flapjack::Gateways::Oobetet.new(:config => config, :logger => @logger)
|
67
|
-
fo.setup
|
143
|
+
context 'XMPP' do
|
68
144
|
|
69
|
-
|
145
|
+
let(:muc_client) { double(::Jabber::MUC::SimpleMUCClient) }
|
70
146
|
|
71
|
-
|
72
|
-
|
147
|
+
it "raises an error if a required config setting is not set" do
|
148
|
+
expect {
|
149
|
+
Flapjack::Gateways::Oobetet::Bot.new(:config => config.delete('watched_check'))
|
150
|
+
}.to raise_error("Flapjack::Oobetet: watched_check must be defined in the config")
|
151
|
+
end
|
73
152
|
|
74
|
-
|
75
|
-
|
76
|
-
expect(fo_times).not_to be_nil
|
77
|
-
expect(fo_times).to have_key(:last_problem)
|
78
|
-
expect(fo_times[:last_problem]).to eq(t.to_i)
|
79
|
-
end
|
153
|
+
it "starts and is stopped by a signal" do
|
154
|
+
t = now.to_i
|
80
155
|
|
81
|
-
|
82
|
-
|
83
|
-
|
156
|
+
time_checker = double(Flapjack::Gateways::Oobetet::TimeChecker)
|
157
|
+
expect(time_checker).to receive(:respond_to?).with(:receive_status).and_return(true)
|
158
|
+
expect(time_checker).to receive(:receive_status).with('recovery', t)
|
84
159
|
|
85
|
-
|
160
|
+
client = double(::Jabber::Client)
|
161
|
+
expect(client).to receive(:connect)
|
162
|
+
expect(client).to receive(:auth).with('password')
|
163
|
+
expect(client).to receive(:send).with(an_instance_of(::Jabber::Presence))
|
86
164
|
|
87
|
-
|
88
|
-
|
165
|
+
expect(muc_client).to receive(:on_message).and_yield(t, 'test', 'Recovery "PING" on foo.bar.net')
|
166
|
+
expect(muc_client).to receive(:join).with('flapjacktest@conference.example.com/flapjack')
|
167
|
+
expect(muc_client).to receive(:say).with(/^flapjack oobetet gateway started/)
|
89
168
|
|
90
|
-
|
91
|
-
|
92
|
-
expect(fo_times).not_to be_nil
|
93
|
-
expect(fo_times).to have_key(:last_recovery)
|
94
|
-
expect(fo_times[:last_recovery]).to eq(t.to_i)
|
95
|
-
end
|
169
|
+
expect(muc_client).to receive(:active?).and_return(true)
|
170
|
+
expect(muc_client).to receive(:exit)
|
96
171
|
|
97
|
-
|
98
|
-
fo = Flapjack::Gateways::Oobetet.new(:config => config, :logger => @logger)
|
99
|
-
fo.setup
|
172
|
+
expect(client).to receive(:close)
|
100
173
|
|
101
|
-
|
174
|
+
expect(::Jabber::Client).to receive(:new).and_return(client)
|
175
|
+
expect(::Jabber::MUC::SimpleMUCClient).to receive(:new).and_return(muc_client)
|
102
176
|
|
103
|
-
|
104
|
-
|
177
|
+
expect(lock).to receive(:synchronize).and_yield
|
178
|
+
stop_cond = double(MonitorMixin::ConditionVariable)
|
179
|
+
expect(stop_cond).to receive(:wait_until)
|
105
180
|
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
181
|
+
fob = Flapjack::Gateways::Oobetet::Bot.new(:lock => lock, :stop_condition => stop_cond,
|
182
|
+
:config => config)
|
183
|
+
fob.instance_variable_set('@siblings', [time_checker])
|
184
|
+
fob.start
|
185
|
+
end
|
186
|
+
|
187
|
+
it "announces to jabber rooms" do
|
188
|
+
muc_client2 = double(::Jabber::MUC::SimpleMUCClient)
|
112
189
|
|
113
|
-
|
114
|
-
|
115
|
-
expect(timer).to receive(:cancel)
|
116
|
-
expect(EM::Synchrony).to receive(:add_periodic_timer).with(60).and_return(timer)
|
190
|
+
expect(muc_client).to receive(:say).with('hello!')
|
191
|
+
expect(muc_client2).to receive(:say).with('hello!')
|
117
192
|
|
118
|
-
|
119
|
-
expect(fo).to receive(:register_handler).exactly(3).times
|
120
|
-
expect(fo).to receive(:connect)
|
193
|
+
expect(lock).to receive(:synchronize).and_yield
|
121
194
|
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
195
|
+
fob = Flapjack::Gateways::Oobetet::Bot.new(:lock => lock, :config => config)
|
196
|
+
fob.instance_variable_set('@muc_clients', {'room1' => muc_client, 'room2' => muc_client2})
|
197
|
+
fob.announce('hello!')
|
198
|
+
end
|
126
199
|
|
127
|
-
fo.start
|
128
200
|
end
|
129
201
|
|
130
202
|
end
|
@@ -0,0 +1,353 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
require 'flapjack/gateways/pager_duty'
|
4
|
+
|
5
|
+
describe Flapjack::Gateways::PagerDuty, :logger => true do
|
6
|
+
|
7
|
+
let(:config) { {
|
8
|
+
'queue' => 'pagerduty_notifications',
|
9
|
+
'credentials' => {'subdomain' => 'flpjck'}
|
10
|
+
} }
|
11
|
+
|
12
|
+
let(:now) { Time.new }
|
13
|
+
|
14
|
+
let(:redis) { double(Redis) }
|
15
|
+
let(:lock) { double(Monitor) }
|
16
|
+
|
17
|
+
let(:check) { double(Flapjack::Data::Check, :id => SecureRandom.uuid,
|
18
|
+
:name => 'app-02:ping') }
|
19
|
+
|
20
|
+
before(:each) do
|
21
|
+
allow(Flapjack).to receive(:redis).and_return(redis)
|
22
|
+
end
|
23
|
+
|
24
|
+
context 'notifications' do
|
25
|
+
|
26
|
+
let(:queue) { double(Flapjack::RecordQueue) }
|
27
|
+
let(:alert) { double(Flapjack::Data::Alert) }
|
28
|
+
|
29
|
+
it "starts and is stopped by an exception" do
|
30
|
+
expect(Kernel).to receive(:sleep).with(10)
|
31
|
+
|
32
|
+
expect(Flapjack::RecordQueue).to receive(:new).with('pagerduty_notifications',
|
33
|
+
Flapjack::Data::Alert).and_return(queue)
|
34
|
+
|
35
|
+
expect(lock).to receive(:synchronize).and_yield
|
36
|
+
expect(queue).to receive(:foreach).and_yield(alert)
|
37
|
+
expect(queue).to receive(:wait).and_raise(Flapjack::PikeletStop)
|
38
|
+
|
39
|
+
expect(redis).to receive(:quit)
|
40
|
+
|
41
|
+
fpn = Flapjack::Gateways::PagerDuty::Notifier.new(:lock => lock,
|
42
|
+
:config => config)
|
43
|
+
expect(fpn).to receive(:handle_alert).with(alert)
|
44
|
+
expect(Flapjack::Gateways::PagerDuty).to receive(:test_pagerduty_connection).twice.and_return(false, true)
|
45
|
+
expect { fpn.start }.to raise_error(Flapjack::PikeletStop)
|
46
|
+
end
|
47
|
+
|
48
|
+
it "tests the pagerduty connection" do
|
49
|
+
req = stub_request(:post, "https://events.pagerduty.com/generic/2010-04-15/create_event.json").
|
50
|
+
with(:body => Flapjack.dump_json(
|
51
|
+
'service_key' => '11111111111111111111111111111111',
|
52
|
+
'incident_key' => 'Flapjack is running a NOOP',
|
53
|
+
'event_type' => 'nop',
|
54
|
+
'description' => 'I love APIs with noops.'
|
55
|
+
)).
|
56
|
+
to_return(:status => 200, :body => Flapjack.dump_json('status' => 'success'))
|
57
|
+
|
58
|
+
Flapjack::Gateways::PagerDuty.send(:test_pagerduty_connection)
|
59
|
+
expect(req).to have_been_requested
|
60
|
+
end
|
61
|
+
|
62
|
+
it "handles notifications received via Redis" do
|
63
|
+
fpn = Flapjack::Gateways::PagerDuty::Notifier.new(:config => config)
|
64
|
+
|
65
|
+
req = stub_request(:post, "https://events.pagerduty.com/generic/2010-04-15/create_event.json").
|
66
|
+
with(:body => Flapjack.dump_json(
|
67
|
+
'service_key' => 'pdservicekey',
|
68
|
+
'incident_key' => check.name,
|
69
|
+
'event_type' => 'trigger',
|
70
|
+
'description' => 'Problem: "app-02:ping" is Critical'
|
71
|
+
)).
|
72
|
+
to_return(:status => 200, :body => Flapjack.dump_json('status' => 'success'))
|
73
|
+
|
74
|
+
expect(check).to receive(:name).exactly(4).times.and_return('app-02:ping')
|
75
|
+
|
76
|
+
expect(alert).to receive(:address).and_return('pdservicekey')
|
77
|
+
expect(alert).to receive(:check).twice.and_return(check)
|
78
|
+
expect(alert).to receive(:state).and_return('critical')
|
79
|
+
expect(alert).to receive(:state_title_case).and_return('Critical')
|
80
|
+
expect(alert).to receive(:summary).twice.and_return('')
|
81
|
+
expect(alert).to receive(:type).twice.and_return('problem')
|
82
|
+
expect(alert).to receive(:type_sentence_case).and_return('Problem')
|
83
|
+
|
84
|
+
fpn.send(:handle_alert, alert)
|
85
|
+
expect(req).to have_been_requested
|
86
|
+
end
|
87
|
+
|
88
|
+
end
|
89
|
+
|
90
|
+
context 'acknowledgements' do
|
91
|
+
|
92
|
+
let(:status_change) { {'id' => 'ABCDEFG',
|
93
|
+
'name' => 'John Smith',
|
94
|
+
'email' => 'johns@example.com',
|
95
|
+
'html_url' => 'http://flpjck.pagerduty.com/users/ABCDEFG'}
|
96
|
+
}
|
97
|
+
|
98
|
+
let (:response) { {"incidents" =>
|
99
|
+
[{"incident_number" => 12,
|
100
|
+
"incident_key"=> check.name,
|
101
|
+
"status" => "acknowledged",
|
102
|
+
"last_status_change_by" => status_change}],
|
103
|
+
"limit"=>100,
|
104
|
+
"offset"=>0,
|
105
|
+
"total"=>1}
|
106
|
+
}
|
107
|
+
|
108
|
+
it "doesn't look for acknowledgements if this search is already running" do
|
109
|
+
expect(redis).to receive(:del).with('sem_pagerduty_acks_running')
|
110
|
+
expect(redis).to receive(:quit)
|
111
|
+
|
112
|
+
expect(Flapjack::Gateways::PagerDuty).to receive(:test_pagerduty_connection).and_return(true)
|
113
|
+
|
114
|
+
expect(redis).to receive(:setnx).with('sem_pagerduty_acks_running', 'true').and_return(0)
|
115
|
+
|
116
|
+
expect(Kernel).to receive(:sleep).with(10).and_raise(Flapjack::PikeletStop.new)
|
117
|
+
|
118
|
+
expect(lock).to receive(:synchronize).and_yield
|
119
|
+
|
120
|
+
fpa = Flapjack::Gateways::PagerDuty::AckFinder.new(:lock => lock,
|
121
|
+
:config => config)
|
122
|
+
expect { fpa.start }.to raise_error(Flapjack::PikeletStop)
|
123
|
+
end
|
124
|
+
|
125
|
+
it "looks for and creates acknowledgements if the search is not already running" do
|
126
|
+
expect(redis).to receive(:del).with('sem_pagerduty_acks_running').twice
|
127
|
+
expect(redis).to receive(:quit)
|
128
|
+
|
129
|
+
expect(Flapjack::Gateways::PagerDuty).to receive(:test_pagerduty_connection).and_return(true)
|
130
|
+
|
131
|
+
expect(redis).to receive(:setnx).with('sem_pagerduty_acks_running', 'true').and_return(1)
|
132
|
+
expect(redis).to receive(:expire).with('sem_pagerduty_acks_running', 3600)
|
133
|
+
|
134
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
135
|
+
with(Flapjack::Data::ScheduledMaintenance, Flapjack::Data::UnscheduledMaintenance).
|
136
|
+
and_yield
|
137
|
+
|
138
|
+
check_scope = double('check_scope')
|
139
|
+
expect(check_scope).to receive(:reject).
|
140
|
+
and_yield(check).
|
141
|
+
and_return([check])
|
142
|
+
|
143
|
+
expect(Flapjack::Data::Check).to receive(:intersect).
|
144
|
+
with(:failing => true).and_return(check_scope)
|
145
|
+
|
146
|
+
expect(Flapjack::Data::Check).to receive(:intersect).
|
147
|
+
with(:id => [check.id]).and_return(check_scope)
|
148
|
+
|
149
|
+
expect(check).to receive(:in_unscheduled_maintenance?).
|
150
|
+
with(an_instance_of(Time)).and_return(false)
|
151
|
+
|
152
|
+
expect(check).to receive(:in_scheduled_maintenance?).
|
153
|
+
with(an_instance_of(Time)).and_return(false)
|
154
|
+
|
155
|
+
expect(Flapjack::Data::Medium).to receive(:lock).
|
156
|
+
with(Flapjack::Data::Check, Flapjack::Data::Rule).
|
157
|
+
and_yield
|
158
|
+
|
159
|
+
medium = double(Flapjack::Data::Medium, :id => SecureRandom.uuid)
|
160
|
+
expect(medium).to receive(:pagerduty_subdomain).and_return('mydomain')
|
161
|
+
expect(medium).to receive(:pagerduty_token).and_return('abc')
|
162
|
+
expect(medium).to receive(:pagerduty_ack_duration).and_return(nil)
|
163
|
+
|
164
|
+
expect(medium).to receive(:checks).with(:initial_scope => check_scope,
|
165
|
+
:time => an_instance_of(Time)).and_return(check_scope)
|
166
|
+
|
167
|
+
expect(check_scope).to receive(:ids).and_return([check.id])
|
168
|
+
|
169
|
+
media_scope = double('media_scope', :all => [medium])
|
170
|
+
|
171
|
+
expect(Flapjack::Data::Medium).to receive(:intersect).
|
172
|
+
with(:transport => 'pagerduty').and_return(media_scope)
|
173
|
+
|
174
|
+
expect(Flapjack::Data::Event).to receive(:create_acknowledgements).with('events',
|
175
|
+
[check],
|
176
|
+
:summary => 'Acknowledged on PagerDuty by John Smith',
|
177
|
+
:duration => 14400)
|
178
|
+
|
179
|
+
expect(Kernel).to receive(:sleep).with(10).and_raise(Flapjack::PikeletStop.new)
|
180
|
+
|
181
|
+
expect(lock).to receive(:synchronize).and_yield
|
182
|
+
|
183
|
+
fpa = Flapjack::Gateways::PagerDuty::AckFinder.new(:lock => lock,
|
184
|
+
:config => config)
|
185
|
+
expect(fpa).to receive(:pagerduty_acknowledgements).
|
186
|
+
with(an_instance_of(Time), 'mydomain', 'abc', [check.name]).
|
187
|
+
and_return(response['incidents'])
|
188
|
+
expect { fpa.start }.to raise_error(Flapjack::PikeletStop)
|
189
|
+
end
|
190
|
+
|
191
|
+
# testing separately and stubbing above
|
192
|
+
it "looks for acknowledgements via the PagerDuty API" do
|
193
|
+
subdomain = 'mydomain'
|
194
|
+
token = 'abc'
|
195
|
+
|
196
|
+
since = (now.utc - (60*60*24*7)).iso8601 # the last week
|
197
|
+
unt = (now.utc + (60*60)).iso8601 # 1 hour in the future
|
198
|
+
|
199
|
+
req = stub_request(:get, "https://#{subdomain}.pagerduty.com/api/v1/incidents").
|
200
|
+
with(:headers => {'Content-type' => 'application/json',
|
201
|
+
'Authorization' => "Token token=#{token}"},
|
202
|
+
:query => {
|
203
|
+
:fields => 'incident_key,incident_number,last_status_change_by',
|
204
|
+
:since => since, :until => unt, :status => 'acknowledged'
|
205
|
+
}
|
206
|
+
).
|
207
|
+
to_return(:status => 200,
|
208
|
+
:body => Flapjack.dump_json(response),
|
209
|
+
:headers => {})
|
210
|
+
|
211
|
+
expect(redis).to receive(:del).with('sem_pagerduty_acks_running')
|
212
|
+
|
213
|
+
fpa = Flapjack::Gateways::PagerDuty::AckFinder.new(:config => config)
|
214
|
+
result = fpa.send(:pagerduty_acknowledgements, now, subdomain, token, [check.name])
|
215
|
+
expect(req).to have_been_requested
|
216
|
+
|
217
|
+
expect(result).to be_a(Array)
|
218
|
+
expect(result.size).to eq(1)
|
219
|
+
incident = result.first
|
220
|
+
expect(incident).to be_a(Hash)
|
221
|
+
pg_acknowledged_by = incident['last_status_change_by']
|
222
|
+
expect(pg_acknowledged_by).to be_a(Hash)
|
223
|
+
expect(pg_acknowledged_by).to have_key('id')
|
224
|
+
expect(pg_acknowledged_by['id']).to eq('ABCDEFG')
|
225
|
+
end
|
226
|
+
|
227
|
+
it 'gets all values in a paginated request for acknowledgements' do
|
228
|
+
subdomain = 'mydomain'
|
229
|
+
token = 'abc'
|
230
|
+
|
231
|
+
since = (now.utc - (60*60*24*7)).iso8601 # the last week
|
232
|
+
unt = (now.utc + (60*60)).iso8601 # 1 hour in the future
|
233
|
+
|
234
|
+
response_1 = {"incidents" => [{'incident_key' => check.name}] * 100,
|
235
|
+
"limit" => 100,
|
236
|
+
"offset" => 0,
|
237
|
+
"total" => 120}
|
238
|
+
|
239
|
+
response_2 = {"incidents" => [{'incident_key' => check.name}] * 20,
|
240
|
+
"limit" => 100,
|
241
|
+
"offset" => 100,
|
242
|
+
"total" => 120}
|
243
|
+
|
244
|
+
req = stub_request(:get, "https://#{subdomain}.pagerduty.com/api/v1/incidents").
|
245
|
+
with(:headers => {'Content-type' => 'application/json',
|
246
|
+
'Authorization' => "Token token=#{token}"},
|
247
|
+
:query => {
|
248
|
+
:fields => 'incident_key,incident_number,last_status_change_by',
|
249
|
+
:since => since, :until => unt, :status => 'acknowledged'
|
250
|
+
}
|
251
|
+
).
|
252
|
+
to_return(:status => 200,
|
253
|
+
:body => Flapjack.dump_json(response_1),
|
254
|
+
:headers => {})
|
255
|
+
|
256
|
+
req = stub_request(:get, "https://#{subdomain}.pagerduty.com/api/v1/incidents").
|
257
|
+
with(:headers => {'Content-type' => 'application/json',
|
258
|
+
'Authorization' => "Token token=#{token}"},
|
259
|
+
:query => {
|
260
|
+
:fields => 'incident_key,incident_number,last_status_change_by',
|
261
|
+
:since => since, :until => unt, :status => 'acknowledged',
|
262
|
+
:offset => 100, :limit => 100
|
263
|
+
}
|
264
|
+
).
|
265
|
+
to_return(:status => 200,
|
266
|
+
:body => Flapjack.dump_json(response_2),
|
267
|
+
:headers => {})
|
268
|
+
|
269
|
+
expect(redis).to receive(:del).with('sem_pagerduty_acks_running')
|
270
|
+
|
271
|
+
fpa = Flapjack::Gateways::PagerDuty::AckFinder.new(:config => config)
|
272
|
+
result = fpa.send(:pagerduty_acknowledgements, now, subdomain, token, [check.name])
|
273
|
+
expect(req).to have_been_requested
|
274
|
+
|
275
|
+
expect(result).to be_a(Array)
|
276
|
+
expect(result.size).to eq(120)
|
277
|
+
end
|
278
|
+
|
279
|
+
it 'uses a smaller time period for follow-up requests' do
|
280
|
+
subdomain = 'mydomain'
|
281
|
+
token = 'abc'
|
282
|
+
|
283
|
+
time_first = now.utc
|
284
|
+
time_second = (now + 10).utc
|
285
|
+
|
286
|
+
since_first = (time_first - (60 * 60 * 24 * 7)).iso8601 # the last week
|
287
|
+
since_second = (time_second - (60 * 15)).iso8601 # the last 15 minutes
|
288
|
+
|
289
|
+
unt_first = (time_first + (60 * 60)).iso8601 # 1 hour in the future
|
290
|
+
unt_second = (time_second + (60 * 60)).iso8601 # 1 hour in the future
|
291
|
+
|
292
|
+
req_first = stub_request(:get, "https://#{subdomain}.pagerduty.com/api/v1/incidents").
|
293
|
+
with(:headers => {'Content-type' => 'application/json',
|
294
|
+
'Authorization' => "Token token=#{token}"},
|
295
|
+
:query => {
|
296
|
+
:fields => 'incident_key,incident_number,last_status_change_by',
|
297
|
+
:since => since_first, :until => unt_first, :status => 'acknowledged'
|
298
|
+
}
|
299
|
+
).
|
300
|
+
to_return(:status => 200,
|
301
|
+
:body => Flapjack.dump_json(response),
|
302
|
+
:headers => {})
|
303
|
+
|
304
|
+
req_second = stub_request(:get, "https://#{subdomain}.pagerduty.com/api/v1/incidents").
|
305
|
+
with(:headers => {'Content-type' => 'application/json',
|
306
|
+
'Authorization' => "Token token=#{token}"},
|
307
|
+
:query => {
|
308
|
+
:fields => 'incident_key,incident_number,last_status_change_by',
|
309
|
+
:since => since_second, :until => unt_second, :status => 'acknowledged'
|
310
|
+
}
|
311
|
+
).
|
312
|
+
to_return(:status => 200,
|
313
|
+
:body => Flapjack.dump_json(response),
|
314
|
+
:headers => {})
|
315
|
+
|
316
|
+
expect(redis).to receive(:del).with('sem_pagerduty_acks_running')
|
317
|
+
|
318
|
+
fpa = Flapjack::Gateways::PagerDuty::AckFinder.new(:config => config)
|
319
|
+
fpa.send(:pagerduty_acknowledgements, now, subdomain, token, [check.name])
|
320
|
+
fpa.send(:pagerduty_acknowledgements, (now + 10), subdomain, token, [check.name])
|
321
|
+
expect(req_first).to have_been_requested
|
322
|
+
expect(req_second).to have_been_requested
|
323
|
+
end
|
324
|
+
|
325
|
+
it 'does not look for acknowledgements if no checks are failing & unacknowledged' do
|
326
|
+
expect(redis).to receive(:del).with('sem_pagerduty_acks_running').twice
|
327
|
+
expect(redis).to receive(:quit)
|
328
|
+
|
329
|
+
expect(Flapjack::Gateways::PagerDuty).to receive(:test_pagerduty_connection).and_return(true)
|
330
|
+
|
331
|
+
expect(redis).to receive(:setnx).with('sem_pagerduty_acks_running', 'true').and_return(1)
|
332
|
+
expect(redis).to receive(:expire).with('sem_pagerduty_acks_running', 3600)
|
333
|
+
|
334
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
335
|
+
with(Flapjack::Data::ScheduledMaintenance, Flapjack::Data::UnscheduledMaintenance).
|
336
|
+
and_yield
|
337
|
+
|
338
|
+
expect(Flapjack::Data::Check).to receive(:intersect).
|
339
|
+
with(:failing => true).and_return([])
|
340
|
+
|
341
|
+
expect(Flapjack::Data::Event).not_to receive(:create_acknowledgements)
|
342
|
+
|
343
|
+
expect(Kernel).to receive(:sleep).with(10).and_raise(Flapjack::PikeletStop.new)
|
344
|
+
|
345
|
+
expect(lock).to receive(:synchronize).and_yield
|
346
|
+
|
347
|
+
fpa = Flapjack::Gateways::PagerDuty::AckFinder.new(:lock => lock,
|
348
|
+
:config => config)
|
349
|
+
expect(fpa).not_to receive(:pagerduty_acknowledgements)
|
350
|
+
expect { fpa.start }.to raise_error(Flapjack::PikeletStop)
|
351
|
+
end
|
352
|
+
end
|
353
|
+
end
|