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
@@ -0,0 +1,155 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'flapjack/gateways/jsonapi'
|
3
|
+
|
4
|
+
describe 'Flapjack::Gateways::JSONAPI::Methods::CheckLinks', :sinatra => true, :logger => true, :pact_fixture => true do
|
5
|
+
|
6
|
+
include_context "jsonapi"
|
7
|
+
|
8
|
+
let(:check) { double(Flapjack::Data::Check, :id => check_data[:id]) }
|
9
|
+
let(:tag) { double(Flapjack::Data::Tag, :id => tag_data[:id]) }
|
10
|
+
|
11
|
+
let(:check_tags) { double('check_tags') }
|
12
|
+
|
13
|
+
let(:meta) {
|
14
|
+
{
|
15
|
+
:pagination => {
|
16
|
+
:page => 1,
|
17
|
+
:per_page => 20,
|
18
|
+
:total_pages => 1,
|
19
|
+
:total_count => 1
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
it 'adds tags to a check' do
|
25
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
26
|
+
with(Flapjack::Data::Tag).
|
27
|
+
and_yield
|
28
|
+
|
29
|
+
expect(Flapjack::Data::Check).to receive(:find_by_id!).with(check.id).
|
30
|
+
and_return(check)
|
31
|
+
|
32
|
+
expect(check_tags).to receive(:add_ids).with(tag.id)
|
33
|
+
expect(check).to receive(:tags).and_return(check_tags)
|
34
|
+
|
35
|
+
post "/checks/#{check.id}/relationships/tags", Flapjack.dump_json(:data => [{
|
36
|
+
:type => 'tag', :id => tag.id
|
37
|
+
}]), jsonapi_env
|
38
|
+
expect(last_response.status).to eq(204)
|
39
|
+
end
|
40
|
+
|
41
|
+
it 'lists tags for a check' do
|
42
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
43
|
+
with(Flapjack::Data::Tag).
|
44
|
+
and_yield
|
45
|
+
|
46
|
+
sorted = double('sorted')
|
47
|
+
paged = double('paged')
|
48
|
+
expect(paged).to receive(:ids).and_return([tag.id])
|
49
|
+
expect(sorted).to receive(:page).with(1, :per_page => 20).and_return(paged)
|
50
|
+
expect(sorted).to receive(:count).and_return(1)
|
51
|
+
expect(check_tags).to receive(:sort).with(:id => :asc).and_return(sorted)
|
52
|
+
expect(check).to receive(:tags).and_return(check_tags)
|
53
|
+
|
54
|
+
checks = double('checks', :all => [check])
|
55
|
+
expect(checks).to receive(:empty?).and_return(false)
|
56
|
+
expect(Flapjack::Data::Check).to receive(:intersect).
|
57
|
+
with(:id => check.id).and_return(checks)
|
58
|
+
|
59
|
+
get "/checks/#{check.id}/tags"
|
60
|
+
expect(last_response.status).to eq(200)
|
61
|
+
expect(last_response.body).to be_json_eql(Flapjack.dump_json(
|
62
|
+
:data => [{:type => 'tag', :id => tag.id}],
|
63
|
+
:links => {
|
64
|
+
:self => "http://example.org/checks/#{check.id}/relationships/tags",
|
65
|
+
:related => "http://example.org/checks/#{check.id}/tags",
|
66
|
+
},
|
67
|
+
:meta => meta
|
68
|
+
))
|
69
|
+
end
|
70
|
+
|
71
|
+
it 'lists tags for a check, including tag data' do
|
72
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
73
|
+
with(Flapjack::Data::Tag).
|
74
|
+
and_yield
|
75
|
+
|
76
|
+
sorted = double('sorted')
|
77
|
+
paged = double('paged')
|
78
|
+
expect(paged).to receive(:ids).and_return([tag.id])
|
79
|
+
expect(sorted).to receive(:page).with(1, :per_page => 20).and_return(paged)
|
80
|
+
expect(sorted).to receive(:count).and_return(1)
|
81
|
+
expect(check_tags).to receive(:sort).with(:id => :asc).and_return(sorted)
|
82
|
+
expect(check).to receive(:tags).and_return(check_tags)
|
83
|
+
|
84
|
+
full_tags = double('full_tags')
|
85
|
+
expect(full_tags).to receive(:collect) {|&arg| [arg.call(tag)] }
|
86
|
+
|
87
|
+
expect(Flapjack::Data::Tag).to receive(:intersect).
|
88
|
+
with(:id => [tag.id]).and_return(full_tags)
|
89
|
+
|
90
|
+
expect(tag).to receive(:as_json).with(:only => an_instance_of(Array)).
|
91
|
+
and_return(tag_data.merge(:id => tag.id))
|
92
|
+
|
93
|
+
checks = double('checks', :all => [check])
|
94
|
+
expect(checks).to receive(:empty?).and_return(false)
|
95
|
+
expect(checks).to receive(:associated_ids_for).with(:tags).
|
96
|
+
and_return(check.id => [tag.id])
|
97
|
+
expect(checks).to receive(:ids).and_return(Set.new([check.id]))
|
98
|
+
expect(Flapjack::Data::Check).to receive(:intersect).
|
99
|
+
with(:id => Set.new([check.id])).and_return(checks)
|
100
|
+
expect(Flapjack::Data::Check).to receive(:intersect).
|
101
|
+
with(:id => check.id).and_return(checks)
|
102
|
+
|
103
|
+
get "/checks/#{check.id}/tags?include=tags"
|
104
|
+
expect(last_response.status).to eq(200)
|
105
|
+
expect(last_response.body).to be_json_eql(Flapjack.dump_json(
|
106
|
+
:data => [{:type => 'tag', :id => tag.id}],
|
107
|
+
:included => [{
|
108
|
+
:id => tag.id,
|
109
|
+
:type => 'tag',
|
110
|
+
:attributes => tag_data.reject {|k,v| :id.eql?(k) }
|
111
|
+
}],
|
112
|
+
:links => {
|
113
|
+
:self => "http://example.org/checks/#{check.id}/relationships/tags",
|
114
|
+
:related => "http://example.org/checks/#{check.id}/tags",
|
115
|
+
},
|
116
|
+
:meta => meta
|
117
|
+
))
|
118
|
+
end
|
119
|
+
|
120
|
+
it 'updates tags for a check' do
|
121
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
122
|
+
with(Flapjack::Data::Tag).
|
123
|
+
and_yield
|
124
|
+
|
125
|
+
expect(Flapjack::Data::Check).to receive(:find_by_id!).with(check.id).
|
126
|
+
and_return(check)
|
127
|
+
|
128
|
+
expect(check_tags).to receive(:ids).and_return([])
|
129
|
+
expect(check_tags).to receive(:add_ids).with(tag.id)
|
130
|
+
expect(check).to receive(:tags).twice.and_return(check_tags)
|
131
|
+
|
132
|
+
patch "/checks/#{check.id}/relationships/tags", Flapjack.dump_json(:data => [{
|
133
|
+
:type => 'tag', :id => tag.id
|
134
|
+
}]), jsonapi_env
|
135
|
+
expect(last_response.status).to eq(204)
|
136
|
+
end
|
137
|
+
|
138
|
+
it 'deletes a tag from a check' do
|
139
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
140
|
+
with(Flapjack::Data::Tag).
|
141
|
+
and_yield
|
142
|
+
|
143
|
+
expect(Flapjack::Data::Check).to receive(:find_by_id!).with(check.id).
|
144
|
+
and_return(check)
|
145
|
+
|
146
|
+
expect(check_tags).to receive(:remove_ids).with(tag.id)
|
147
|
+
expect(check).to receive(:tags).and_return(check_tags)
|
148
|
+
|
149
|
+
delete "/checks/#{check.id}/relationships/tags", Flapjack.dump_json(:data => [{
|
150
|
+
:type => 'tag', :id => tag.id
|
151
|
+
}]), jsonapi_env
|
152
|
+
expect(last_response.status).to eq(204)
|
153
|
+
end
|
154
|
+
|
155
|
+
end
|
@@ -0,0 +1,426 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'flapjack/gateways/jsonapi'
|
3
|
+
|
4
|
+
describe 'Flapjack::Gateways::JSONAPI::Methods::Checks', :sinatra => true, :logger => true, :pact_fixture => true do
|
5
|
+
|
6
|
+
include_context "jsonapi"
|
7
|
+
|
8
|
+
let(:check) { double(Flapjack::Data::Check, :id => check_data[:id]) }
|
9
|
+
let(:check_2) { double(Flapjack::Data::Check, :id => check_2_data[:id]) }
|
10
|
+
let(:tag) { double(Flapjack::Data::Tag, :id => tag_data[:id]) }
|
11
|
+
|
12
|
+
it "creates a check" do
|
13
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
14
|
+
with(no_args).
|
15
|
+
and_yield
|
16
|
+
|
17
|
+
empty_ids = double('empty_ids')
|
18
|
+
expect(empty_ids).to receive(:ids).and_return([])
|
19
|
+
expect(Flapjack::Data::Check).to receive(:intersect).
|
20
|
+
with(:id => [check_data[:id]]).and_return(empty_ids)
|
21
|
+
|
22
|
+
expect(check).to receive(:invalid?).and_return(false)
|
23
|
+
expect(check).to receive(:save!).and_return(true)
|
24
|
+
expect(Flapjack::Data::Check).to receive(:new).with(check_data).
|
25
|
+
and_return(check)
|
26
|
+
|
27
|
+
expect(check).to receive(:as_json).with(:only => an_instance_of(Array)).
|
28
|
+
and_return(check_data.reject {|k,v| :id.eql?(k)})
|
29
|
+
|
30
|
+
req_data = check_json(check_data)
|
31
|
+
resp_data = req_data.merge(:relationships => check_rel(check_data))
|
32
|
+
|
33
|
+
post "/checks", Flapjack.dump_json(:data => req_data), jsonapi_env
|
34
|
+
expect(last_response.status).to eq(201)
|
35
|
+
|
36
|
+
expect(last_response.body).to be_json_eql(Flapjack.dump_json(:data =>
|
37
|
+
resp_data))
|
38
|
+
end
|
39
|
+
|
40
|
+
it 'creates two checks' do
|
41
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
42
|
+
with(no_args).
|
43
|
+
and_yield
|
44
|
+
|
45
|
+
empty_ids = double('empty_ids')
|
46
|
+
expect(empty_ids).to receive(:ids).and_return([])
|
47
|
+
expect(Flapjack::Data::Check).to receive(:intersect).
|
48
|
+
with(:id => [check_data[:id], check_2_data[:id]]).and_return(empty_ids)
|
49
|
+
|
50
|
+
expect(check).to receive(:invalid?).and_return(false)
|
51
|
+
expect(check).to receive(:save!).and_return(true)
|
52
|
+
expect(Flapjack::Data::Check).to receive(:new).with(check_data).
|
53
|
+
and_return(check)
|
54
|
+
|
55
|
+
expect(check_2).to receive(:invalid?).and_return(false)
|
56
|
+
expect(check_2).to receive(:save!).and_return(true)
|
57
|
+
expect(Flapjack::Data::Check).to receive(:new).with(check_2_data).
|
58
|
+
and_return(check_2)
|
59
|
+
|
60
|
+
expect(check).to receive(:as_json).with(:only => an_instance_of(Array)).
|
61
|
+
and_return(check_data.reject {|k,v| :id.eql?(k)})
|
62
|
+
|
63
|
+
expect(check_2).to receive(:as_json).with(:only => an_instance_of(Array)).
|
64
|
+
and_return(check_2_data.reject {|k,v| :id.eql?(k)})
|
65
|
+
|
66
|
+
req_data = [check_json(check_data), check_json(check_2_data)]
|
67
|
+
resp_data = [
|
68
|
+
req_data[0].merge(:relationships => check_rel(check_data)),
|
69
|
+
req_data[1].merge(:relationships => check_rel(check_2_data))
|
70
|
+
]
|
71
|
+
|
72
|
+
post "/checks", Flapjack.dump_json(:data => req_data), jsonapi_bulk_env
|
73
|
+
expect(last_response.status).to eq(201)
|
74
|
+
|
75
|
+
expect(last_response.body).to be_json_eql(Flapjack.dump_json(:data => resp_data))
|
76
|
+
end
|
77
|
+
|
78
|
+
it 'creates a link to a tag along with a check' do
|
79
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
80
|
+
with(Flapjack::Data::Tag).
|
81
|
+
and_yield
|
82
|
+
|
83
|
+
empty_ids = double('empty_ids')
|
84
|
+
expect(empty_ids).to receive(:ids).and_return([])
|
85
|
+
expect(Flapjack::Data::Check).to receive(:intersect).
|
86
|
+
with(:id => [check_data[:id]]).and_return(empty_ids)
|
87
|
+
|
88
|
+
expect(check).to receive(:invalid?).and_return(false)
|
89
|
+
expect(check).to receive(:save!).and_return(true)
|
90
|
+
expect(Flapjack::Data::Check).to receive(:new).with(check_data).
|
91
|
+
and_return(check)
|
92
|
+
|
93
|
+
expect(Flapjack::Data::Tag).to receive(:find_by_ids!).
|
94
|
+
with(tag.id).and_return([tag])
|
95
|
+
|
96
|
+
tags = double('tags')
|
97
|
+
expect(tags).to receive(:add).with(tag)
|
98
|
+
expect(check).to receive(:tags).and_return(tags)
|
99
|
+
|
100
|
+
expect(check).to receive(:as_json).with(:only => an_instance_of(Array)).
|
101
|
+
and_return(check_data.reject {|k,v| :id.eql?(k)})
|
102
|
+
|
103
|
+
req_data = check_json(check_data).merge(
|
104
|
+
:relationships => {
|
105
|
+
:tags => {
|
106
|
+
:data => [{:type => 'tag', :id => tag_data[:id]}]
|
107
|
+
}
|
108
|
+
}
|
109
|
+
)
|
110
|
+
resp_data = req_data.merge(:relationships => check_rel(check_data))
|
111
|
+
|
112
|
+
post "/checks", Flapjack.dump_json(:data => req_data), jsonapi_env
|
113
|
+
|
114
|
+
expect(last_response.status).to eq(201)
|
115
|
+
expect(last_response.body).to be_json_eql(Flapjack.dump_json(:data => resp_data))
|
116
|
+
end
|
117
|
+
|
118
|
+
it 'rejects a request to create a check with an invalid bulk MIME type' do
|
119
|
+
req_data = check_json(check_data)
|
120
|
+
|
121
|
+
post "/checks", Flapjack.dump_json(:data => req_data), jsonapi_bulk_env
|
122
|
+
expect(last_response.status).to eq(406)
|
123
|
+
expect(last_response.body).to be_json_eql(Flapjack.dump_json(
|
124
|
+
:errors => [{:detail => 'JSONAPI Bulk Extension was set in headers', :status => "406"}]
|
125
|
+
))
|
126
|
+
end
|
127
|
+
|
128
|
+
it 'rejects a request to create two checks with an invalid bulk MIME type' do
|
129
|
+
req_data = [check_json(check_data), check_json(check_2_data)]
|
130
|
+
|
131
|
+
post "/checks", Flapjack.dump_json(:data => req_data), jsonapi_env
|
132
|
+
expect(last_response.status).to eq(406)
|
133
|
+
expect(last_response.body).to be_json_eql(Flapjack.dump_json(
|
134
|
+
:errors => [{:detail => 'JSONAPI Bulk Extension not set in headers', :status => "406"}]
|
135
|
+
))
|
136
|
+
end
|
137
|
+
|
138
|
+
it "retrieves paginated checks" do
|
139
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
140
|
+
with(no_args).
|
141
|
+
and_yield
|
142
|
+
|
143
|
+
meta = {
|
144
|
+
:pagination => {
|
145
|
+
:page => 1,
|
146
|
+
:per_page => 20,
|
147
|
+
:total_pages => 1,
|
148
|
+
:total_count => 1
|
149
|
+
}
|
150
|
+
}
|
151
|
+
|
152
|
+
links = {
|
153
|
+
:self => 'http://example.org/checks',
|
154
|
+
:first => 'http://example.org/checks?page=1',
|
155
|
+
:last => 'http://example.org/checks?page=1'
|
156
|
+
}
|
157
|
+
|
158
|
+
page = double('page')
|
159
|
+
expect(page).to receive(:empty?).and_return(false)
|
160
|
+
expect(page).to receive(:ids).and_return([check.id])
|
161
|
+
expect(page).to receive(:collect) {|&arg| [arg.call(check)] }
|
162
|
+
sorted = double('sorted')
|
163
|
+
expect(sorted).to receive(:page).with(1, :per_page => 20).
|
164
|
+
and_return(page)
|
165
|
+
expect(sorted).to receive(:count).and_return(1)
|
166
|
+
expect(Flapjack::Data::Check).to receive(:sort).
|
167
|
+
with(:id).and_return(sorted)
|
168
|
+
|
169
|
+
expect(check).to receive(:as_json).with(:only => an_instance_of(Array)).
|
170
|
+
and_return(check_data.reject {|k,v| :id.eql?(k)})
|
171
|
+
|
172
|
+
resp_data = [check_json(check_data).merge(:relationships => check_rel(check_data))]
|
173
|
+
|
174
|
+
get '/checks'
|
175
|
+
expect(last_response).to be_ok
|
176
|
+
expect(last_response.body).to be_json_eql(Flapjack.dump_json(:data =>
|
177
|
+
resp_data, :links => links, :meta => meta))
|
178
|
+
end
|
179
|
+
|
180
|
+
it "retrieves paginated checks matching a filter" do
|
181
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
182
|
+
with(no_args).
|
183
|
+
and_yield
|
184
|
+
|
185
|
+
meta = {
|
186
|
+
:pagination => {
|
187
|
+
:page => 1,
|
188
|
+
:per_page => 20,
|
189
|
+
:total_pages => 1,
|
190
|
+
:total_count => 1
|
191
|
+
}
|
192
|
+
}
|
193
|
+
|
194
|
+
links = {
|
195
|
+
:self => 'http://example.org/checks?filter%5B%5D=enabled%3At',
|
196
|
+
:first => 'http://example.org/checks?filter%5B%5D=enabled%3At&page=1',
|
197
|
+
:last => 'http://example.org/checks?filter%5B%5D=enabled%3At&page=1'
|
198
|
+
}
|
199
|
+
|
200
|
+
filtered = double('filtered')
|
201
|
+
expect(Flapjack::Data::Check).to receive(:intersect).with(:enabled => true).
|
202
|
+
and_return(filtered)
|
203
|
+
|
204
|
+
page = double('page')
|
205
|
+
expect(page).to receive(:empty?).and_return(false)
|
206
|
+
expect(page).to receive(:ids).and_return([check.id])
|
207
|
+
expect(page).to receive(:collect) {|&arg| [arg.call(check)] }
|
208
|
+
sorted = double('sorted')
|
209
|
+
expect(sorted).to receive(:page).with(1, :per_page => 20).and_return(page)
|
210
|
+
expect(sorted).to receive(:count).and_return(1)
|
211
|
+
expect(filtered).to receive(:sort).with(:id).and_return(sorted)
|
212
|
+
|
213
|
+
expect(check).to receive(:as_json).with(:only => an_instance_of(Array)).
|
214
|
+
and_return(check_data.reject {|k,v| :id.eql?(k)})
|
215
|
+
|
216
|
+
resp_data = [check_json(check_data).merge(:relationships => check_rel(check_data))]
|
217
|
+
|
218
|
+
get '/checks?filter=enabled%3At'
|
219
|
+
expect(last_response).to be_ok
|
220
|
+
expect(last_response.body).to be_json_eql(Flapjack.dump_json(:data =>
|
221
|
+
resp_data, :links => links, :meta => meta))
|
222
|
+
end
|
223
|
+
|
224
|
+
it "retrieves one check" do
|
225
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
226
|
+
with(no_args).
|
227
|
+
and_yield
|
228
|
+
|
229
|
+
expect(Flapjack::Data::Check).to receive(:intersect).
|
230
|
+
with(:id => Set.new([check.id])).and_return([check])
|
231
|
+
|
232
|
+
expect(check).to receive(:as_json).with(:only => an_instance_of(Array)).
|
233
|
+
and_return(check_data.reject {|k,v| :id.eql?(k)})
|
234
|
+
|
235
|
+
resp_data = check_json(check_data).merge(:relationships => check_rel(check_data))
|
236
|
+
|
237
|
+
get "/checks/#{check.id}"
|
238
|
+
expect(last_response).to be_ok
|
239
|
+
expect(last_response.body).to be_json_eql(Flapjack.dump_json(
|
240
|
+
:data => resp_data,
|
241
|
+
:links => {:self => "http://example.org/checks/#{check.id}"}))
|
242
|
+
end
|
243
|
+
|
244
|
+
it "retrieves one check with a subset of fields" do
|
245
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
246
|
+
with(no_args).
|
247
|
+
and_yield
|
248
|
+
|
249
|
+
expect(Flapjack::Data::Check).to receive(:intersect).
|
250
|
+
with(:id => Set.new([check.id])).and_return([check])
|
251
|
+
|
252
|
+
expect(check).to receive(:as_json).with(:only => [:name, :enabled]).
|
253
|
+
and_return(:name => check_data[:name], :enabled => check_data[:enabled])
|
254
|
+
|
255
|
+
resp_data = check_json(check_data.select {|k, v| [:name, :enabled].include?(k)}).
|
256
|
+
merge(:relationships => check_rel(check_data))
|
257
|
+
|
258
|
+
get "/checks/#{check.id}?fields[check]=name%2Cenabled"
|
259
|
+
expect(last_response).to be_ok
|
260
|
+
|
261
|
+
expect(last_response.body).to be_json_eql(Flapjack.dump_json(
|
262
|
+
:data => resp_data,
|
263
|
+
:links => {:self => "http://example.org/checks/#{check.id}?fields%5Bcheck%5D=name%2Cenabled"}))
|
264
|
+
end
|
265
|
+
|
266
|
+
it "retrieves one check and all its linked tag records" do
|
267
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
268
|
+
with(Flapjack::Data::Tag).
|
269
|
+
and_yield
|
270
|
+
|
271
|
+
checks = double('checks')
|
272
|
+
expect(checks).to receive(:empty?).and_return(false)
|
273
|
+
expect(checks).to receive(:collect) {|&arg| [arg.call(check)] }
|
274
|
+
expect(checks).to receive(:associated_ids_for).with(:tags).
|
275
|
+
and_return(check.id => [tag.id])
|
276
|
+
expect(checks).to receive(:ids).and_return(Set.new([check.id]))
|
277
|
+
expect(Flapjack::Data::Check).to receive(:intersect).
|
278
|
+
with(:id => Set.new([check.id])).twice.and_return(checks)
|
279
|
+
|
280
|
+
full_tags = double('full_tags')
|
281
|
+
expect(full_tags).to receive(:collect) {|&arg| [arg.call(tag)] }
|
282
|
+
|
283
|
+
expect(Flapjack::Data::Tag).to receive(:intersect).
|
284
|
+
with(:id => [tag.id]).and_return(full_tags)
|
285
|
+
|
286
|
+
expect(tag).to receive(:as_json).with(:only => an_instance_of(Array)).
|
287
|
+
and_return(tag_data)
|
288
|
+
|
289
|
+
expect(check).to receive(:as_json).with(:only => an_instance_of(Array)).
|
290
|
+
and_return(check_data.reject {|k,v| :id.eql?(k)})
|
291
|
+
|
292
|
+
get "/checks/#{check.id}?include=tags"
|
293
|
+
expect(last_response).to be_ok
|
294
|
+
|
295
|
+
resp_data = check_json(check_data).merge(:relationships => check_rel(check_data))
|
296
|
+
resp_data[:relationships][:tags][:data] = [{:type => 'tag', :id => tag.id}]
|
297
|
+
|
298
|
+
expect(last_response.body).to be_json_eql(Flapjack.dump_json(
|
299
|
+
:data => resp_data,
|
300
|
+
:included => [{
|
301
|
+
:id => tag.id,
|
302
|
+
:type => 'tag',
|
303
|
+
:attributes => tag_data.reject {|k,v| :id.eql?(k) }
|
304
|
+
}],
|
305
|
+
:links => {:self => "http://example.org/checks/#{check.id}?include=tags"}))
|
306
|
+
end
|
307
|
+
|
308
|
+
it 'retrieves two checks' do
|
309
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
310
|
+
with(no_args).
|
311
|
+
and_yield
|
312
|
+
|
313
|
+
meta = {
|
314
|
+
:pagination => {
|
315
|
+
:page => 1,
|
316
|
+
:per_page => 20,
|
317
|
+
:total_pages => 1,
|
318
|
+
:total_count => 2
|
319
|
+
}
|
320
|
+
}
|
321
|
+
|
322
|
+
links = {
|
323
|
+
:self => "http://example.org/checks?filter%5B%5D=id%3A#{check.id}%7C#{check_2.id}",
|
324
|
+
:first => "http://example.org/checks?filter%5B%5D=id%3A#{check.id}%7C#{check_2.id}&page=1",
|
325
|
+
:last => "http://example.org/checks?filter%5B%5D=id%3A#{check.id}%7C#{check_2.id}&page=1"
|
326
|
+
}
|
327
|
+
|
328
|
+
check_2 = double(Flapjack::Data::Check, :id => check_2_data[:id])
|
329
|
+
|
330
|
+
page = double('page')
|
331
|
+
expect(page).to receive(:empty?).and_return(false)
|
332
|
+
expect(page).to receive(:ids).and_return([check.id, check_2.id])
|
333
|
+
expect(page).to receive(:collect) {|&arg| [arg.call(check), arg.call(check_2)] }
|
334
|
+
|
335
|
+
sorted = double('sorted')
|
336
|
+
expect(sorted).to receive(:page).with(1, :per_page => 20).and_return(page)
|
337
|
+
expect(sorted).to receive(:count).and_return(2)
|
338
|
+
|
339
|
+
filtered = double('filtered')
|
340
|
+
expect(filtered).to receive(:sort).with(:id).and_return(sorted)
|
341
|
+
expect(Flapjack::Data::Check).to receive(:intersect).with(:id => [check.id, check_2.id]).
|
342
|
+
and_return(filtered)
|
343
|
+
|
344
|
+
expect(check).to receive(:as_json).with(:only => an_instance_of(Array)).
|
345
|
+
and_return(check_data.reject {|k,v| :id.eql?(k)})
|
346
|
+
|
347
|
+
expect(check_2).to receive(:as_json).with(:only => an_instance_of(Array)).
|
348
|
+
and_return(check_2_data.reject {|k,v| :id.eql?(k)})
|
349
|
+
|
350
|
+
resp_data = [
|
351
|
+
check_json(check_data).merge(:relationships => check_rel(check_data)),
|
352
|
+
check_json(check_2_data).merge(:relationships => check_rel(check_2_data))
|
353
|
+
]
|
354
|
+
|
355
|
+
get "/checks?filter=id%3A#{check.id}%7C#{check_2.id}"
|
356
|
+
expect(last_response).to be_ok
|
357
|
+
expect(last_response.body).to be_json_eql(Flapjack.dump_json(
|
358
|
+
:data => resp_data, :links => links, :meta => meta))
|
359
|
+
end
|
360
|
+
|
361
|
+
it 'disables a check' do
|
362
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
363
|
+
with(no_args).
|
364
|
+
and_yield
|
365
|
+
|
366
|
+
expect(Flapjack::Data::Check).to receive(:find_by_id!).
|
367
|
+
with(check.id).and_return(check)
|
368
|
+
|
369
|
+
expect(check).to receive(:enabled=).with(false)
|
370
|
+
expect(check).to receive(:invalid?).and_return(false)
|
371
|
+
expect(check).to receive(:save!).and_return(true)
|
372
|
+
|
373
|
+
patch "/checks/#{check.id}",
|
374
|
+
Flapjack.dump_json(:data => {:id => check.id, :type => 'check', :attributes => {:enabled => false}}),
|
375
|
+
jsonapi_env
|
376
|
+
expect(last_response.status).to eq(204)
|
377
|
+
end
|
378
|
+
|
379
|
+
it 'disables two checks' do
|
380
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
381
|
+
with(no_args).
|
382
|
+
and_yield
|
383
|
+
|
384
|
+
expect(Flapjack::Data::Check).to receive(:find_by_ids!).
|
385
|
+
with(check.id, check_2.id).and_return([check, check_2])
|
386
|
+
|
387
|
+
expect(check).to receive(:enabled=).with(false)
|
388
|
+
expect(check).to receive(:invalid?).and_return(false)
|
389
|
+
expect(check).to receive(:save!).and_return(true)
|
390
|
+
|
391
|
+
expect(check_2).to receive(:enabled=).with(false)
|
392
|
+
expect(check_2).to receive(:invalid?).and_return(false)
|
393
|
+
expect(check_2).to receive(:save!).and_return(true)
|
394
|
+
|
395
|
+
patch "/checks",
|
396
|
+
Flapjack.dump_json(:data => [{:id => check.id, :type => 'check', :attributes => {:enabled => false}},
|
397
|
+
{:id => check_2.id, :type => 'check', :attributes => {:enabled => false}}]),
|
398
|
+
jsonapi_bulk_env
|
399
|
+
expect(last_response.status).to eq(204)
|
400
|
+
end
|
401
|
+
|
402
|
+
it "replaces the tags for a check" do
|
403
|
+
expect(Flapjack::Data::Check).to receive(:lock).
|
404
|
+
with(Flapjack::Data::Tag).
|
405
|
+
and_yield
|
406
|
+
|
407
|
+
expect(Flapjack::Data::Check).to receive(:find_by_id!).
|
408
|
+
with(check.id).and_return(check)
|
409
|
+
|
410
|
+
expect(check).to receive(:invalid?).and_return(false)
|
411
|
+
expect(check).to receive(:save!).and_return(true)
|
412
|
+
|
413
|
+
tags = double('tags', :ids => [])
|
414
|
+
expect(tags).to receive(:add).with(tag)
|
415
|
+
expect(check).to receive(:tags).twice.and_return(tags)
|
416
|
+
|
417
|
+
expect(Flapjack::Data::Tag).to receive(:find_by_ids!).with(tag.id).and_return([tag])
|
418
|
+
|
419
|
+
patch "/checks/#{check.id}",
|
420
|
+
Flapjack.dump_json(:data => {:id => check.id, :type => 'check', :relationships =>
|
421
|
+
{:tags => {:data => [{:type => 'tag', :id => tag.id}]}}}),
|
422
|
+
jsonapi_env
|
423
|
+
expect(last_response.status).to eq(204)
|
424
|
+
end
|
425
|
+
|
426
|
+
end
|