bugsnag 6.7.3 → 6.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +3 -0
- data/.rubocop_todo.yml +3 -1
- data/.travis.yml +40 -0
- data/CHANGELOG.md +22 -0
- data/Gemfile +9 -4
- data/VERSION +1 -1
- data/features/fixtures/delayed_job/.dockerignore +1 -0
- data/features/fixtures/delayed_job/Dockerfile +12 -0
- data/features/fixtures/delayed_job/Gemfile +4 -0
- data/features/fixtures/docker-compose.yml +247 -0
- data/features/fixtures/plain/.dockerignore +2 -0
- data/features/fixtures/plain/Dockerfile +12 -0
- data/features/fixtures/plain/app/Gemfile +3 -0
- data/features/fixtures/plain/app/app.rb +40 -0
- data/features/fixtures/plain/app/configuration/api_key.rb +9 -0
- data/features/fixtures/plain/app/configuration/proxy.rb +14 -0
- data/features/fixtures/plain/app/configuration/send_handled.rb +7 -0
- data/features/fixtures/plain/app/configuration/send_unhandled.rb +9 -0
- data/features/fixtures/plain/app/delivery/fork_threadpool.rb +25 -0
- data/features/fixtures/plain/app/delivery/synchronous.rb +14 -0
- data/features/fixtures/plain/app/delivery/threadpool.rb +14 -0
- data/features/fixtures/plain/app/exception_data/crash.rb +34 -0
- data/features/fixtures/plain/app/exception_data/handled_context.rb +10 -0
- data/features/fixtures/plain/app/exception_data/handled_hash.rb +10 -0
- data/features/fixtures/plain/app/exception_data/handled_meta_data.rb +10 -0
- data/features/fixtures/plain/app/exception_data/handled_user_id.rb +10 -0
- data/features/fixtures/plain/app/exception_data/unhandled_context.rb +7 -0
- data/features/fixtures/plain/app/exception_data/unhandled_hash.rb +7 -0
- data/features/fixtures/plain/app/exception_data/unhandled_meta_data.rb +7 -0
- data/features/fixtures/plain/app/exception_data/unhandled_user_id.rb +7 -0
- data/features/fixtures/plain/app/filters/additional_filters.rb +11 -0
- data/features/fixtures/plain/app/filters/default_filters.rb +15 -0
- data/features/fixtures/plain/app/handled/block_metadata.rb +15 -0
- data/features/fixtures/plain/app/handled/ignore_exception.rb +12 -0
- data/features/fixtures/plain/app/handled/notify_exception.rb +9 -0
- data/features/fixtures/plain/app/handled/notify_string.rb +9 -0
- data/features/fixtures/plain/app/ignore_classes/handled.rb +8 -0
- data/features/fixtures/plain/app/ignore_classes/ignore_error.rb +8 -0
- data/features/fixtures/plain/app/ignore_classes/unhandled.rb +4 -0
- data/features/fixtures/plain/app/report_modification/add_tab.rb +16 -0
- data/features/fixtures/plain/app/report_modification/add_tab_existing.rb +22 -0
- data/features/fixtures/plain/app/report_modification/add_tab_override.rb +19 -0
- data/features/fixtures/plain/app/report_modification/ignore_report.rb +9 -0
- data/features/fixtures/plain/app/report_modification/initiators/handled_before_notify.rb +10 -0
- data/features/fixtures/plain/app/report_modification/initiators/handled_block.rb +8 -0
- data/features/fixtures/plain/app/report_modification/initiators/unhandled_before_notify.rb +11 -0
- data/features/fixtures/plain/app/report_modification/modify_api_key.rb +9 -0
- data/features/fixtures/plain/app/report_modification/modify_severity.rb +9 -0
- data/features/fixtures/plain/app/report_modification/remove_user_details.rb +14 -0
- data/features/fixtures/plain/app/report_modification/set_custom_user_details.rb +16 -0
- data/features/fixtures/plain/app/report_modification/set_user_details.rb +13 -0
- data/features/fixtures/plain/app/stack_frame_modification/initiators/handled_before_notify.rb +25 -0
- data/features/fixtures/plain/app/stack_frame_modification/initiators/handled_block.rb +24 -0
- data/features/fixtures/plain/app/stack_frame_modification/initiators/unhandled_before_notify.rb +26 -0
- data/features/fixtures/plain/app/stack_frame_modification/mark_frames_in_project.rb +13 -0
- data/features/fixtures/plain/app/stack_frame_modification/remove_stack_frame.rb +9 -0
- data/features/fixtures/plain/app/unhandled/Interrupt.rb +6 -0
- data/features/fixtures/plain/app/unhandled/bad_syntax.rb +1 -0
- data/features/fixtures/plain/app/unhandled/custom_error.rb +9 -0
- data/features/fixtures/plain/app/unhandled/load_error.rb +6 -0
- data/features/fixtures/plain/app/unhandled/local_jump_error.rb +10 -0
- data/features/fixtures/plain/app/unhandled/name_error.rb +6 -0
- data/features/fixtures/plain/app/unhandled/no_method_error.rb +6 -0
- data/features/fixtures/plain/app/unhandled/runtime_error.rb +6 -0
- data/features/fixtures/plain/app/unhandled/syntax_error.rb +6 -0
- data/features/fixtures/plain/app/unhandled/system_call_error.rb +6 -0
- data/features/fixtures/plain/app/unhandled/system_exit.rb +6 -0
- data/features/fixtures/plain/json/delivery_fork.json +4 -0
- data/features/fixtures/plain/json/delivery_synchronous.json +4 -0
- data/features/fixtures/plain/json/delivery_threadpool.json +4 -0
- data/features/fixtures/plain/json/filters_default_metadata_filters.json +9 -0
- data/features/fixtures/rack1/.dockerignore +1 -0
- data/features/fixtures/rack1/Dockerfile +12 -0
- data/features/fixtures/rack1/Gemfile +4 -0
- data/features/fixtures/rack1/app.rb +8 -0
- data/features/fixtures/rack2/.dockerignore +1 -0
- data/features/fixtures/rack2/Dockerfile +12 -0
- data/features/fixtures/rack2/Gemfile +4 -0
- data/features/fixtures/rack2/app.rb +8 -0
- data/features/fixtures/rails3/.dockerignore +1 -0
- data/features/fixtures/rails3/Dockerfile +16 -0
- data/features/fixtures/rails3/app/.gitignore +15 -0
- data/features/fixtures/rails3/app/Gemfile +13 -0
- data/features/fixtures/rails3/app/Rakefile +7 -0
- data/features/fixtures/rails3/app/app/assets/images/rails.png +0 -0
- data/features/fixtures/rails3/app/app/assets/javascripts/application.js +15 -0
- data/features/fixtures/rails3/app/app/assets/stylesheets/application.css +13 -0
- data/features/fixtures/rails3/app/app/controllers/api_key_controller.rb +20 -0
- data/features/fixtures/rails3/app/app/controllers/app_type_controller.rb +20 -0
- data/features/fixtures/rails3/app/app/controllers/app_version_controller.rb +25 -0
- data/features/fixtures/rails3/app/app/controllers/application_controller.rb +7 -0
- data/features/fixtures/rails3/app/app/controllers/auto_notify_controller.rb +31 -0
- data/features/fixtures/rails3/app/app/controllers/before_notify_controller.rb +44 -0
- data/features/fixtures/rails3/app/app/controllers/handled_controller.rb +26 -0
- data/features/fixtures/rails3/app/app/controllers/ignore_classes_controller.rb +23 -0
- data/features/fixtures/rails3/app/app/controllers/metadata_filters_controller.rb +16 -0
- data/features/fixtures/rails3/app/app/controllers/project_root_controller.rb +25 -0
- data/features/fixtures/rails3/app/app/controllers/release_stage_controller.rb +20 -0
- data/features/fixtures/rails3/app/app/controllers/send_code_controller.rb +20 -0
- data/features/fixtures/rails3/app/app/controllers/send_environment_controller.rb +12 -0
- data/features/fixtures/rails3/app/app/controllers/session_tracking_controller.rb +20 -0
- data/features/fixtures/rails3/app/app/controllers/unhandled_controller.rb +11 -0
- data/features/fixtures/rails3/app/app/controllers/warden_controller.rb +30 -0
- data/features/fixtures/rails3/app/app/helpers/application_helper.rb +2 -0
- data/features/fixtures/rails3/app/app/mailers/.gitkeep +0 -0
- data/features/fixtures/rails3/app/app/models/.gitkeep +0 -0
- data/features/fixtures/rails3/app/app/models/user.rb +6 -0
- data/features/fixtures/rails3/app/app/views/layouts/application.html.erb +14 -0
- data/features/fixtures/rails3/app/config.ru +4 -0
- data/features/fixtures/rails3/app/config/application.rb +67 -0
- data/features/fixtures/rails3/app/config/boot.rb +6 -0
- data/features/fixtures/rails3/app/config/database.yml +31 -0
- data/features/fixtures/rails3/app/config/environment.rb +5 -0
- data/features/fixtures/rails3/app/config/environments/development.rb +37 -0
- data/features/fixtures/rails3/app/config/environments/production.rb +67 -0
- data/features/fixtures/rails3/app/config/environments/rails_env.rb +37 -0
- data/features/fixtures/rails3/app/config/initializers/bugsnag.rb +14 -0
- data/features/fixtures/rails3/app/config/initializers/secret_token.rb +7 -0
- data/features/fixtures/rails3/app/config/initializers/session_store.rb +8 -0
- data/features/fixtures/rails3/app/config/initializers/warden.rb +3 -0
- data/features/fixtures/rails3/app/config/initializers/wrap_parameters.rb +14 -0
- data/features/fixtures/rails3/app/config/locales/en.yml +5 -0
- data/features/fixtures/rails3/app/config/routes.rb +18 -0
- data/features/fixtures/rails3/app/db/migrate/20180423142727_create_users.rb +45 -0
- data/features/fixtures/rails3/app/db/schema.rb +37 -0
- data/features/fixtures/rails3/app/db/seeds.rb +7 -0
- data/features/fixtures/rails3/app/lib/assets/.gitkeep +0 -0
- data/features/fixtures/rails3/app/lib/strategies/token_strategy.rb +12 -0
- data/features/fixtures/rails3/app/lib/tasks/.gitkeep +0 -0
- data/features/fixtures/rails3/app/log/.gitkeep +0 -0
- data/features/fixtures/rails3/app/public/404.html +26 -0
- data/features/fixtures/rails3/app/public/422.html +26 -0
- data/features/fixtures/rails3/app/public/500.html +25 -0
- data/features/fixtures/rails3/app/public/favicon.ico +0 -0
- data/features/fixtures/rails3/app/public/index.html +241 -0
- data/features/fixtures/rails3/app/public/robots.txt +5 -0
- data/features/fixtures/rails3/app/script/rails +6 -0
- data/features/fixtures/rails4/.dockerignore +1 -0
- data/features/fixtures/rails4/Dockerfile +18 -0
- data/features/fixtures/rails4/app/.gitignore +16 -0
- data/features/fixtures/rails4/app/Gemfile +42 -0
- data/features/fixtures/rails4/app/README.rdoc +28 -0
- data/features/fixtures/rails4/app/Rakefile +6 -0
- data/features/fixtures/rails4/app/app/assets/images/.keep +0 -0
- data/features/fixtures/rails4/app/app/assets/javascripts/application.js +16 -0
- data/features/fixtures/rails4/app/app/assets/stylesheets/application.css +13 -0
- data/features/fixtures/rails4/app/app/controllers/api_key_controller.rb +20 -0
- data/features/fixtures/rails4/app/app/controllers/app_type_controller.rb +20 -0
- data/features/fixtures/rails4/app/app/controllers/app_version_controller.rb +25 -0
- data/features/fixtures/rails4/app/app/controllers/application_controller.rb +7 -0
- data/features/fixtures/rails4/app/app/controllers/auto_notify_controller.rb +31 -0
- data/features/fixtures/rails4/app/app/controllers/before_notify_controller.rb +44 -0
- data/features/fixtures/rails4/app/app/controllers/concerns/.keep +0 -0
- data/features/fixtures/rails4/app/app/controllers/devise_controller.rb +32 -0
- data/features/fixtures/rails4/app/app/controllers/handled_controller.rb +26 -0
- data/features/fixtures/rails4/app/app/controllers/ignore_classes_controller.rb +23 -0
- data/features/fixtures/rails4/app/app/controllers/metadata_filters_controller.rb +16 -0
- data/features/fixtures/rails4/app/app/controllers/project_root_controller.rb +25 -0
- data/features/fixtures/rails4/app/app/controllers/release_stage_controller.rb +20 -0
- data/features/fixtures/rails4/app/app/controllers/send_code_controller.rb +20 -0
- data/features/fixtures/rails4/app/app/controllers/send_environment_controller.rb +12 -0
- data/features/fixtures/rails4/app/app/controllers/session_tracking_controller.rb +20 -0
- data/features/fixtures/rails4/app/app/controllers/unhandled_controller.rb +11 -0
- data/features/fixtures/rails4/app/app/helpers/application_helper.rb +2 -0
- data/features/fixtures/rails4/app/app/mailers/.keep +0 -0
- data/features/fixtures/rails4/app/app/models/.keep +0 -0
- data/features/fixtures/rails4/app/app/models/concerns/.keep +0 -0
- data/features/fixtures/rails4/app/app/models/user.rb +6 -0
- data/features/fixtures/rails4/app/app/views/layouts/application.html.erb +14 -0
- data/features/fixtures/rails4/app/config.ru +4 -0
- data/features/fixtures/rails4/app/config/application.rb +23 -0
- data/features/fixtures/rails4/app/config/boot.rb +4 -0
- data/features/fixtures/rails4/app/config/database.yml +31 -0
- data/features/fixtures/rails4/app/config/environment.rb +5 -0
- data/features/fixtures/rails4/app/config/environments/development.rb +31 -0
- data/features/fixtures/rails4/app/config/environments/production.rb +81 -0
- data/features/fixtures/rails4/app/config/environments/rails_env.rb +30 -0
- data/features/fixtures/rails4/app/config/environments/test.rb +31 -0
- data/features/fixtures/rails4/app/config/initializers/backtrace_silencers.rb +7 -0
- data/features/fixtures/rails4/app/config/initializers/bugsnag.rb +14 -0
- data/features/fixtures/rails4/app/config/initializers/devise.rb +283 -0
- data/features/fixtures/rails4/app/config/initializers/filter_parameter_logging.rb +5 -0
- data/features/fixtures/rails4/app/config/initializers/inflections.rb +16 -0
- data/features/fixtures/rails4/app/config/initializers/mime_types.rb +5 -0
- data/features/fixtures/rails4/app/config/initializers/secret_token.rb +12 -0
- data/features/fixtures/rails4/app/config/initializers/session_store.rb +3 -0
- data/features/fixtures/rails4/app/config/initializers/wrap_parameters.rb +14 -0
- data/features/fixtures/rails4/app/config/locales/devise.en.yml +64 -0
- data/features/fixtures/rails4/app/config/locales/en.yml +23 -0
- data/features/fixtures/rails4/app/config/routes.rb +19 -0
- data/features/fixtures/rails4/app/db/migrate/20180420160315_devise_create_users.rb +47 -0
- data/features/fixtures/rails4/app/db/seeds.rb +7 -0
- data/features/fixtures/rails4/app/lib/assets/.keep +0 -0
- data/features/fixtures/rails4/app/lib/tasks/.keep +0 -0
- data/features/fixtures/rails4/app/log/.keep +0 -0
- data/features/fixtures/rails4/app/public/404.html +58 -0
- data/features/fixtures/rails4/app/public/422.html +58 -0
- data/features/fixtures/rails4/app/public/500.html +57 -0
- data/features/fixtures/rails4/app/public/favicon.ico +0 -0
- data/features/fixtures/rails4/app/public/robots.txt +5 -0
- data/features/fixtures/rails4/app/test/controllers/.keep +0 -0
- data/features/fixtures/rails4/app/test/fixtures/.keep +0 -0
- data/features/fixtures/rails4/app/test/helpers/.keep +0 -0
- data/features/fixtures/rails4/app/test/integration/.keep +0 -0
- data/features/fixtures/rails4/app/test/mailers/.keep +0 -0
- data/features/fixtures/rails4/app/test/models/.keep +0 -0
- data/features/fixtures/rails4/app/test/test_helper.rb +15 -0
- data/features/fixtures/rails5/.dockerignore +1 -0
- data/features/fixtures/rails5/Dockerfile +18 -0
- data/features/fixtures/rails5/app/.gitignore +21 -0
- data/features/fixtures/rails5/app/Gemfile +47 -0
- data/features/fixtures/rails5/app/README.md +24 -0
- data/features/fixtures/rails5/app/Rakefile +6 -0
- data/features/fixtures/rails5/app/app/assets/config/manifest.js +3 -0
- data/features/fixtures/rails5/app/app/assets/images/.keep +0 -0
- data/features/fixtures/rails5/app/app/assets/javascripts/application.js +16 -0
- data/features/fixtures/rails5/app/app/assets/javascripts/cable.js +13 -0
- data/features/fixtures/rails5/app/app/assets/javascripts/channels/.keep +0 -0
- data/features/fixtures/rails5/app/app/assets/stylesheets/application.css +15 -0
- data/features/fixtures/rails5/app/app/channels/application_cable/channel.rb +4 -0
- data/features/fixtures/rails5/app/app/channels/application_cable/connection.rb +4 -0
- data/features/fixtures/rails5/app/app/controllers/api_key_controller.rb +16 -0
- data/features/fixtures/rails5/app/app/controllers/app_type_controller.rb +16 -0
- data/features/fixtures/rails5/app/app/controllers/app_version_controller.rb +21 -0
- data/features/fixtures/rails5/app/app/controllers/application_controller.rb +7 -0
- data/features/fixtures/rails5/app/app/controllers/auto_notify_controller.rb +27 -0
- data/features/fixtures/rails5/app/app/controllers/before_notify_controller.rb +40 -0
- data/features/fixtures/rails5/app/app/controllers/clearance_controller.rb +33 -0
- data/features/fixtures/rails5/app/app/controllers/concerns/.keep +0 -0
- data/features/fixtures/rails5/app/app/controllers/handled_controller.rb +22 -0
- data/features/fixtures/rails5/app/app/controllers/ignore_classes_controller.rb +19 -0
- data/features/fixtures/rails5/app/app/controllers/metadata_filters_controller.rb +12 -0
- data/features/fixtures/rails5/app/app/controllers/project_root_controller.rb +21 -0
- data/features/fixtures/rails5/app/app/controllers/release_stage_controller.rb +16 -0
- data/features/fixtures/rails5/app/app/controllers/send_code_controller.rb +16 -0
- data/features/fixtures/rails5/app/app/controllers/send_environment_controller.rb +8 -0
- data/features/fixtures/rails5/app/app/controllers/session_tracking_controller.rb +16 -0
- data/features/fixtures/rails5/app/app/controllers/unhandled_controller.rb +7 -0
- data/features/fixtures/rails5/app/app/helpers/application_helper.rb +2 -0
- data/features/fixtures/rails5/app/app/jobs/application_job.rb +2 -0
- data/features/fixtures/rails5/app/app/mailers/application_mailer.rb +4 -0
- data/features/fixtures/rails5/app/app/models/application_record.rb +3 -0
- data/features/fixtures/rails5/app/app/models/concerns/.keep +0 -0
- data/features/fixtures/rails5/app/app/models/user.rb +3 -0
- data/features/fixtures/rails5/app/app/views/layouts/application.html.erb +14 -0
- data/features/fixtures/rails5/app/app/views/layouts/mailer.html.erb +13 -0
- data/features/fixtures/rails5/app/app/views/layouts/mailer.text.erb +1 -0
- data/features/fixtures/rails5/app/config.ru +5 -0
- data/features/fixtures/rails5/app/config/application.rb +15 -0
- data/features/fixtures/rails5/app/config/boot.rb +3 -0
- data/features/fixtures/rails5/app/config/cable.yml +9 -0
- data/features/fixtures/rails5/app/config/database.yml +29 -0
- data/features/fixtures/rails5/app/config/environment.rb +5 -0
- data/features/fixtures/rails5/app/config/environments/development.rb +55 -0
- data/features/fixtures/rails5/app/config/environments/production.rb +87 -0
- data/features/fixtures/rails5/app/config/environments/rails_env.rb +55 -0
- data/features/fixtures/rails5/app/config/environments/test.rb +55 -0
- data/features/fixtures/rails5/app/config/initializers/assets.rb +11 -0
- data/features/fixtures/rails5/app/config/initializers/backtrace_silencers.rb +7 -0
- data/features/fixtures/rails5/app/config/initializers/bugsnag.rb +14 -0
- data/features/fixtures/rails5/app/config/initializers/clearance.rb +5 -0
- data/features/fixtures/rails5/app/config/initializers/cookies_serializer.rb +5 -0
- data/features/fixtures/rails5/app/config/initializers/filter_parameter_logging.rb +5 -0
- data/features/fixtures/rails5/app/config/initializers/inflections.rb +16 -0
- data/features/fixtures/rails5/app/config/initializers/mime_types.rb +4 -0
- data/features/fixtures/rails5/app/config/initializers/new_framework_defaults.rb +24 -0
- data/features/fixtures/rails5/app/config/initializers/session_store.rb +3 -0
- data/features/fixtures/rails5/app/config/initializers/wrap_parameters.rb +14 -0
- data/features/fixtures/rails5/app/config/locales/devise.en.yml +64 -0
- data/features/fixtures/rails5/app/config/locales/en.yml +23 -0
- data/features/fixtures/rails5/app/config/puma.rb +47 -0
- data/features/fixtures/rails5/app/config/routes.rb +52 -0
- data/features/fixtures/rails5/app/config/secrets.yml +25 -0
- data/features/fixtures/rails5/app/config/spring.rb +6 -0
- data/features/fixtures/rails5/app/db/migrate/20180426095545_create_users.rb +17 -0
- data/features/fixtures/rails5/app/db/schema.rb +29 -0
- data/features/fixtures/rails5/app/db/seeds.rb +7 -0
- data/features/fixtures/rails5/app/lib/assets/.keep +0 -0
- data/features/fixtures/rails5/app/lib/tasks/.keep +0 -0
- data/features/fixtures/rails5/app/log/.keep +0 -0
- data/features/fixtures/rails5/app/public/404.html +67 -0
- data/features/fixtures/rails5/app/public/422.html +67 -0
- data/features/fixtures/rails5/app/public/500.html +66 -0
- data/features/fixtures/rails5/app/public/apple-touch-icon-precomposed.png +0 -0
- data/features/fixtures/rails5/app/public/apple-touch-icon.png +0 -0
- data/features/fixtures/rails5/app/public/favicon.ico +0 -0
- data/features/fixtures/rails5/app/public/robots.txt +5 -0
- data/features/fixtures/rails5/app/test/controllers/.keep +0 -0
- data/features/fixtures/rails5/app/test/fixtures/.keep +0 -0
- data/features/fixtures/rails5/app/test/fixtures/files/.keep +0 -0
- data/features/fixtures/rails5/app/test/helpers/.keep +0 -0
- data/features/fixtures/rails5/app/test/integration/.keep +0 -0
- data/features/fixtures/rails5/app/test/mailers/.keep +0 -0
- data/features/fixtures/rails5/app/test/models/.keep +0 -0
- data/features/fixtures/rails5/app/test/test_helper.rb +10 -0
- data/features/fixtures/rails5/app/tmp/.keep +0 -0
- data/features/fixtures/resque/.dockerignore +1 -0
- data/features/fixtures/resque/Dockerfile +13 -0
- data/features/fixtures/resque/Gemfile +6 -0
- data/features/fixtures/resque/Rakefile +4 -0
- data/features/fixtures/resque/app.rb +12 -0
- data/features/fixtures/sidekiq/.dockerignore +2 -0
- data/features/fixtures/sidekiq/Dockerfile +17 -0
- data/features/fixtures/sidekiq/app/Gemfile +4 -0
- data/features/fixtures/sidekiq/app/app.rb +35 -0
- data/features/fixtures/sidekiq/app/initializers/HandledError.rb +3 -0
- data/features/fixtures/sidekiq/app/initializers/UnhandledError.rb +3 -0
- data/features/fixtures/sidekiq/payloads/handled_metadata_ca_false.json +11 -0
- data/features/fixtures/sidekiq/payloads/handled_metadata_ca_true.json +12 -0
- data/features/fixtures/sidekiq/payloads/unhandled_metadata_ca_false.json +11 -0
- data/features/fixtures/sidekiq/payloads/unhandled_metadata_ca_true.json +12 -0
- data/features/fixtures/sinatra1/.dockerignore +1 -0
- data/features/fixtures/sinatra1/Dockerfile +12 -0
- data/features/fixtures/sinatra1/Gemfile +4 -0
- data/features/fixtures/sinatra1/app.rb +9 -0
- data/features/fixtures/sinatra2/.dockerignore +1 -0
- data/features/fixtures/sinatra2/Dockerfile +12 -0
- data/features/fixtures/sinatra2/Gemfile +4 -0
- data/features/fixtures/sinatra2/app.rb +9 -0
- data/features/plain_features/add_tab.feature +124 -0
- data/features/plain_features/api_key.feature +26 -0
- data/features/plain_features/app_type.feature +29 -0
- data/features/plain_features/app_version.feature +29 -0
- data/features/plain_features/auto_notify.feature +25 -0
- data/features/plain_features/delivery.feature +70 -0
- data/features/plain_features/exception_data.feature +122 -0
- data/features/plain_features/filters.feature +50 -0
- data/features/plain_features/handled_errors.feature +86 -0
- data/features/plain_features/ignore_classes.feature +31 -0
- data/features/plain_features/ignore_report.feature +32 -0
- data/features/plain_features/proxies.feature +70 -0
- data/features/plain_features/release_stages.feature +53 -0
- data/features/plain_features/report_api_key.feature +42 -0
- data/features/plain_features/report_severity.feature +44 -0
- data/features/plain_features/report_stack_frames.feature +84 -0
- data/features/plain_features/report_user.feature +120 -0
- data/features/plain_features/unhandled_errors.feature +106 -0
- data/features/rails_features/api_key.feature +59 -0
- data/features/rails_features/app_type.feature +67 -0
- data/features/rails_features/app_version.feature +84 -0
- data/features/rails_features/auto_capture_sessions.feature +61 -0
- data/features/rails_features/auto_notify.feature +114 -0
- data/features/rails_features/before_notify.feature +106 -0
- data/features/rails_features/handled.feature +103 -0
- data/features/rails_features/ignore_classes.feature +51 -0
- data/features/rails_features/meta_data_filters.feature +39 -0
- data/features/rails_features/project_root.feature +97 -0
- data/features/rails_features/release_stage.feature +86 -0
- data/features/rails_features/send_code.feature +58 -0
- data/features/rails_features/send_environment.feature +38 -0
- data/features/rails_features/unhandled.feature +40 -0
- data/features/rails_features/user_info.feature +88 -0
- data/features/sidekiq.feature +96 -0
- data/features/steps/ruby_notifier_steps.rb +77 -0
- data/features/support/env.rb +29 -0
- data/lib/bugsnag.rb +26 -0
- data/lib/bugsnag/helpers.rb +69 -7
- data/lib/bugsnag/integrations/delayed_job.rb +2 -2
- data/lib/bugsnag/integrations/railtie.rb +0 -17
- data/lib/bugsnag/stacktrace.rb +1 -0
- data/spec/bugsnag_spec.rb +56 -0
- data/spec/configuration_spec.rb +1 -0
- data/spec/fixtures/apps/rails-initializer-config/Gemfile +1 -0
- data/spec/fixtures/apps/rails-invalid-initializer-config/Gemfile +1 -0
- data/spec/fixtures/apps/rails-no-config/Gemfile +1 -0
- data/spec/helper_spec.rb +77 -91
- data/spec/report_spec.rb +9 -11
- metadata +352 -3
@@ -0,0 +1,26 @@
|
|
1
|
+
Feature: API Key configuration options
|
2
|
+
|
3
|
+
Background:
|
4
|
+
And I set environment variable "APP_PATH" to "/usr/src"
|
5
|
+
And I configure the bugsnag endpoint
|
6
|
+
|
7
|
+
Scenario Outline: The API key configuration option can be set
|
8
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby version>"
|
9
|
+
And I set environment variable "MAZE_API_KEY" to "b35a2a72bd230ac0aa0f52715bbdc6aa"
|
10
|
+
And I have built the service "plain-ruby"
|
11
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby configuration/api_key.rb"
|
12
|
+
And I wait for 1 second
|
13
|
+
Then I should receive a request
|
14
|
+
And the request used the Ruby notifier
|
15
|
+
And the request used payload v4 headers
|
16
|
+
And the request contained the api key "b35a2a72bd230ac0aa0f52715bbdc6aa"
|
17
|
+
|
18
|
+
Examples:
|
19
|
+
| ruby version |
|
20
|
+
| 1.9.3 |
|
21
|
+
| 2.0 |
|
22
|
+
| 2.1 |
|
23
|
+
| 2.2 |
|
24
|
+
| 2.3 |
|
25
|
+
| 2.4 |
|
26
|
+
| 2.5 |
|
@@ -0,0 +1,29 @@
|
|
1
|
+
Feature: App type configuration option
|
2
|
+
|
3
|
+
Background:
|
4
|
+
Given I set environment variable "BUGSNAG_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
5
|
+
And I set environment variable "MAZE_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
6
|
+
And I set environment variable "APP_PATH" to "/usr/src"
|
7
|
+
And I configure the bugsnag endpoint
|
8
|
+
|
9
|
+
Scenario Outline: The App type configuration option can be set
|
10
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby version>"
|
11
|
+
And I set environment variable "MAZE_APP_TYPE" to "test_app"
|
12
|
+
And I have built the service "plain-ruby"
|
13
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby configuration/send_handled.rb"
|
14
|
+
And I wait for 1 second
|
15
|
+
Then I should receive a request
|
16
|
+
And the request used the Ruby notifier
|
17
|
+
And the request used payload v4 headers
|
18
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
19
|
+
And the event "app.type" is "test_app"
|
20
|
+
|
21
|
+
Examples:
|
22
|
+
| ruby version |
|
23
|
+
| 1.9.3 |
|
24
|
+
| 2.0 |
|
25
|
+
| 2.1 |
|
26
|
+
| 2.2 |
|
27
|
+
| 2.3 |
|
28
|
+
| 2.4 |
|
29
|
+
| 2.5 |
|
@@ -0,0 +1,29 @@
|
|
1
|
+
Feature: App version configuration option
|
2
|
+
|
3
|
+
Background:
|
4
|
+
Given I set environment variable "BUGSNAG_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
5
|
+
And I set environment variable "MAZE_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
6
|
+
And I set environment variable "APP_PATH" to "/usr/src"
|
7
|
+
And I configure the bugsnag endpoint
|
8
|
+
|
9
|
+
Scenario Outline: The App version configuration option can be set
|
10
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby version>"
|
11
|
+
And I set environment variable "MAZE_APP_VERSION" to "9.9.8"
|
12
|
+
And I have built the service "plain-ruby"
|
13
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby configuration/send_handled.rb"
|
14
|
+
And I wait for 1 second
|
15
|
+
Then I should receive a request
|
16
|
+
And the request used the Ruby notifier
|
17
|
+
And the request used payload v4 headers
|
18
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
19
|
+
And the event "app.version" is "9.9.8"
|
20
|
+
|
21
|
+
Examples:
|
22
|
+
| ruby version |
|
23
|
+
| 1.9.3 |
|
24
|
+
| 2.0 |
|
25
|
+
| 2.1 |
|
26
|
+
| 2.2 |
|
27
|
+
| 2.3 |
|
28
|
+
| 2.4 |
|
29
|
+
| 2.5 |
|
@@ -0,0 +1,25 @@
|
|
1
|
+
Feature: Auto notify configuration option
|
2
|
+
|
3
|
+
Background:
|
4
|
+
Given I set environment variable "BUGSNAG_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
5
|
+
And I set environment variable "MAZE_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
6
|
+
And I set environment variable "APP_PATH" to "/usr/src"
|
7
|
+
And I configure the bugsnag endpoint
|
8
|
+
|
9
|
+
Scenario Outline: When Auto-notify is false notifications are not sent
|
10
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby version>"
|
11
|
+
And I set environment variable "MAZE_AUTO_NOTIFY" to "false"
|
12
|
+
And I have built the service "plain-ruby"
|
13
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby configuration/send_unhandled.rb"
|
14
|
+
And I wait for 1 second
|
15
|
+
Then I should receive 0 requests
|
16
|
+
|
17
|
+
Examples:
|
18
|
+
| ruby version |
|
19
|
+
| 1.9.3 |
|
20
|
+
| 2.0 |
|
21
|
+
| 2.1 |
|
22
|
+
| 2.2 |
|
23
|
+
| 2.3 |
|
24
|
+
| 2.4 |
|
25
|
+
| 2.5 |
|
@@ -0,0 +1,70 @@
|
|
1
|
+
Feature: delivery_method configuration option
|
2
|
+
|
3
|
+
Background:
|
4
|
+
Given I set environment variable "BUGSNAG_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
5
|
+
And I set environment variable "MAZE_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
6
|
+
And I set environment variable "APP_PATH" to "/usr/src"
|
7
|
+
And I configure the bugsnag endpoint
|
8
|
+
|
9
|
+
Scenario Outline: When the delivery_method is set to :synchronous
|
10
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby version>"
|
11
|
+
And I have built the service "plain-ruby"
|
12
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby delivery/synchronous.rb"
|
13
|
+
And I wait for 1 second
|
14
|
+
Then I should receive a request
|
15
|
+
And the request used the Ruby notifier
|
16
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
17
|
+
And the exception "errorClass" equals "RuntimeError"
|
18
|
+
And the event "metaData.config" matches the JSON fixture in "features/fixtures/plain/json/delivery_synchronous.json"
|
19
|
+
|
20
|
+
Examples:
|
21
|
+
| ruby version |
|
22
|
+
| 1.9.3 |
|
23
|
+
| 2.0 |
|
24
|
+
| 2.1 |
|
25
|
+
| 2.2 |
|
26
|
+
| 2.3 |
|
27
|
+
| 2.4 |
|
28
|
+
| 2.5 |
|
29
|
+
|
30
|
+
Scenario Outline: When the delivery_method is set to :thread_queue
|
31
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby version>"
|
32
|
+
And I have built the service "plain-ruby"
|
33
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby delivery/threadpool.rb"
|
34
|
+
And I wait for 1 second
|
35
|
+
Then I should receive a request
|
36
|
+
And the request used the Ruby notifier
|
37
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
38
|
+
And the exception "errorClass" equals "RuntimeError"
|
39
|
+
And the event "metaData.config" matches the JSON fixture in "features/fixtures/plain/json/delivery_threadpool.json"
|
40
|
+
|
41
|
+
Examples:
|
42
|
+
| ruby version |
|
43
|
+
| 1.9.3 |
|
44
|
+
| 2.0 |
|
45
|
+
| 2.1 |
|
46
|
+
| 2.2 |
|
47
|
+
| 2.3 |
|
48
|
+
| 2.4 |
|
49
|
+
| 2.5 |
|
50
|
+
|
51
|
+
Scenario Outline: When the delivery_method is set to :thread_queue in a fork
|
52
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby version>"
|
53
|
+
And I have built the service "plain-ruby"
|
54
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby delivery/fork_threadpool.rb"
|
55
|
+
And I wait for 1 second
|
56
|
+
Then I should receive 2 requests
|
57
|
+
And the request used the Ruby notifier
|
58
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
59
|
+
And the exception "errorClass" equals "RuntimeError"
|
60
|
+
And the event "metaData.config" matches the JSON fixture in "features/fixtures/plain/json/delivery_fork.json"
|
61
|
+
|
62
|
+
Examples:
|
63
|
+
| ruby version |
|
64
|
+
| 1.9.3 |
|
65
|
+
| 2.0 |
|
66
|
+
| 2.1 |
|
67
|
+
| 2.2 |
|
68
|
+
| 2.3 |
|
69
|
+
| 2.4 |
|
70
|
+
| 2.5 |
|
@@ -0,0 +1,122 @@
|
|
1
|
+
Feature: Plain exception data
|
2
|
+
|
3
|
+
Background:
|
4
|
+
Given I set environment variable "BUGSNAG_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
5
|
+
Given I set environment variable "MAZE_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
6
|
+
And I set environment variable "APP_PATH" to "/usr/src"
|
7
|
+
And I configure the bugsnag endpoint
|
8
|
+
|
9
|
+
Scenario Outline: An error has built in meta-data
|
10
|
+
And I set environment variable "RUBY_VERSION" to "<ruby version>"
|
11
|
+
And I have built the service "plain-ruby"
|
12
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby exception_data/<state>_meta_data.rb"
|
13
|
+
And I wait for 1 second
|
14
|
+
Then I should receive a request
|
15
|
+
And the request used the Ruby notifier
|
16
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
17
|
+
And the exception "errorClass" equals "CustomError"
|
18
|
+
And the event "metaData.exception.exception_type" equals "FATAL"
|
19
|
+
And the event "metaData.exception.exception_base" equals "RuntimeError"
|
20
|
+
|
21
|
+
Examples:
|
22
|
+
| ruby version | state |
|
23
|
+
| 1.9.3 | unhandled |
|
24
|
+
| 1.9.3 | handled |
|
25
|
+
| 2.0 | unhandled |
|
26
|
+
| 2.0 | handled |
|
27
|
+
| 2.1 | unhandled |
|
28
|
+
| 2.1 | handled |
|
29
|
+
| 2.2 | unhandled |
|
30
|
+
| 2.2 | handled |
|
31
|
+
| 2.3 | unhandled |
|
32
|
+
| 2.3 | handled |
|
33
|
+
| 2.4 | unhandled |
|
34
|
+
| 2.4 | handled |
|
35
|
+
| 2.5 | unhandled |
|
36
|
+
| 2.5 | handled |
|
37
|
+
|
38
|
+
Scenario Outline: An error has built in context
|
39
|
+
And I set environment variable "RUBY_VERSION" to "<ruby version>"
|
40
|
+
And I have built the service "plain-ruby"
|
41
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby exception_data/<state>_context.rb"
|
42
|
+
And I wait for 1 second
|
43
|
+
Then I should receive a request
|
44
|
+
And the request used the Ruby notifier
|
45
|
+
And the request used payload v4 headers
|
46
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
47
|
+
And the exception "errorClass" equals "CustomError"
|
48
|
+
And the event "context" equals "IntegrationTests"
|
49
|
+
|
50
|
+
Examples:
|
51
|
+
| ruby version | state |
|
52
|
+
| 1.9.3 | unhandled |
|
53
|
+
| 1.9.3 | handled |
|
54
|
+
| 2.0 | unhandled |
|
55
|
+
| 2.0 | handled |
|
56
|
+
| 2.1 | unhandled |
|
57
|
+
| 2.1 | handled |
|
58
|
+
| 2.2 | unhandled |
|
59
|
+
| 2.2 | handled |
|
60
|
+
| 2.3 | unhandled |
|
61
|
+
| 2.3 | handled |
|
62
|
+
| 2.4 | unhandled |
|
63
|
+
| 2.4 | handled |
|
64
|
+
| 2.5 | unhandled |
|
65
|
+
| 2.5 | handled |
|
66
|
+
|
67
|
+
Scenario Outline: An error has built in grouping hash
|
68
|
+
And I set environment variable "RUBY_VERSION" to "<ruby version>"
|
69
|
+
And I have built the service "plain-ruby"
|
70
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby exception_data/<state>_hash.rb"
|
71
|
+
And I wait for 1 second
|
72
|
+
Then I should receive a request
|
73
|
+
And the request used the Ruby notifier
|
74
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
75
|
+
And the exception "errorClass" equals "CustomError"
|
76
|
+
And the event "groupingHash" equals "ABCDE12345"
|
77
|
+
|
78
|
+
Examples:
|
79
|
+
| ruby version | state |
|
80
|
+
| 1.9.3 | unhandled |
|
81
|
+
| 1.9.3 | handled |
|
82
|
+
| 2.0 | unhandled |
|
83
|
+
| 2.0 | handled |
|
84
|
+
| 2.1 | unhandled |
|
85
|
+
| 2.1 | handled |
|
86
|
+
| 2.2 | unhandled |
|
87
|
+
| 2.2 | handled |
|
88
|
+
| 2.3 | unhandled |
|
89
|
+
| 2.3 | handled |
|
90
|
+
| 2.4 | unhandled |
|
91
|
+
| 2.4 | handled |
|
92
|
+
| 2.5 | unhandled |
|
93
|
+
| 2.5 | handled |
|
94
|
+
|
95
|
+
Scenario Outline: An error has built in user id
|
96
|
+
And I set environment variable "RUBY_VERSION" to "<ruby version>"
|
97
|
+
And I have built the service "plain-ruby"
|
98
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby exception_data/<state>_user_id.rb"
|
99
|
+
And I wait for 1 second
|
100
|
+
Then I should receive a request
|
101
|
+
And the request used the Ruby notifier
|
102
|
+
And the request used payload v4 headers
|
103
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
104
|
+
And the exception "errorClass" equals "CustomError"
|
105
|
+
And the event "user.id" equals "000001"
|
106
|
+
|
107
|
+
Examples:
|
108
|
+
| ruby version | state |
|
109
|
+
| 1.9.3 | unhandled |
|
110
|
+
| 1.9.3 | handled |
|
111
|
+
| 2.0 | unhandled |
|
112
|
+
| 2.0 | handled |
|
113
|
+
| 2.1 | unhandled |
|
114
|
+
| 2.1 | handled |
|
115
|
+
| 2.2 | unhandled |
|
116
|
+
| 2.2 | handled |
|
117
|
+
| 2.3 | unhandled |
|
118
|
+
| 2.3 | handled |
|
119
|
+
| 2.4 | unhandled |
|
120
|
+
| 2.4 | handled |
|
121
|
+
| 2.5 | unhandled |
|
122
|
+
| 2.5 | handled |
|
@@ -0,0 +1,50 @@
|
|
1
|
+
Feature: Plain filtering of metadata
|
2
|
+
|
3
|
+
Background:
|
4
|
+
Given I set environment variable "BUGSNAG_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
5
|
+
Given I set environment variable "MAZE_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
6
|
+
And I set environment variable "APP_PATH" to "/usr/src"
|
7
|
+
And I configure the bugsnag endpoint
|
8
|
+
|
9
|
+
Scenario Outline: Metadata is filtered through the default filters
|
10
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby version>"
|
11
|
+
And I have built the service "plain-ruby"
|
12
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby filters/default_filters.rb"
|
13
|
+
And I wait for 1 second
|
14
|
+
Then I should receive a request
|
15
|
+
And the request used the Ruby notifier
|
16
|
+
And the request used payload v4 headers
|
17
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
18
|
+
And the event "metaData.filter" matches the JSON fixture in "features/fixtures/plain/json/filters_default_metadata_filters.json"
|
19
|
+
|
20
|
+
Examples:
|
21
|
+
| ruby version |
|
22
|
+
| 1.9.3 |
|
23
|
+
| 2.0 |
|
24
|
+
| 2.1 |
|
25
|
+
| 2.2 |
|
26
|
+
| 2.3 |
|
27
|
+
| 2.4 |
|
28
|
+
| 2.5 |
|
29
|
+
|
30
|
+
Scenario Outline: Additional filters can be added to the filter list
|
31
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby version>"
|
32
|
+
And I set environment variable "MAZE_META_DATA_FILTERS" to "filter_me"
|
33
|
+
And I have built the service "plain-ruby"
|
34
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby filters/additional_filters.rb"
|
35
|
+
And I wait for 1 second
|
36
|
+
Then I should receive a request
|
37
|
+
And the request used the Ruby notifier
|
38
|
+
And the request used payload v4 headers
|
39
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
40
|
+
And the event "metaData.filter.filter_me" is "[FILTERED]"
|
41
|
+
|
42
|
+
Examples:
|
43
|
+
| ruby version |
|
44
|
+
| 1.9.3 |
|
45
|
+
| 2.0 |
|
46
|
+
| 2.1 |
|
47
|
+
| 2.2 |
|
48
|
+
| 2.3 |
|
49
|
+
| 2.4 |
|
50
|
+
| 2.5 |
|
@@ -0,0 +1,86 @@
|
|
1
|
+
Feature: Plain handled errors
|
2
|
+
|
3
|
+
Background:
|
4
|
+
Given I set environment variable "BUGSNAG_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
5
|
+
And I set environment variable "MAZE_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
6
|
+
And I set environment variable "APP_PATH" to "/usr/src"
|
7
|
+
And I configure the bugsnag endpoint
|
8
|
+
|
9
|
+
Scenario Outline: A handled error sends a report
|
10
|
+
And I set environment variable "RUBY_VERSION" to "<ruby version>"
|
11
|
+
And I have built the service "plain-ruby"
|
12
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby handled/<file>.rb"
|
13
|
+
And I wait for 1 second
|
14
|
+
Then I should receive a request
|
15
|
+
And the request used the Ruby notifier
|
16
|
+
And the request used payload v4 headers
|
17
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
18
|
+
And the event "unhandled" is false
|
19
|
+
And the event "severity" is "warning"
|
20
|
+
And the event "severityReason.type" is "handledException"
|
21
|
+
And the exception "errorClass" equals "RuntimeError"
|
22
|
+
And the "file" of stack frame 0 equals "/usr/src/handled/<file>.rb"
|
23
|
+
And the "lineNumber" of stack frame 0 equals <lineNumber>
|
24
|
+
|
25
|
+
Examples:
|
26
|
+
| ruby version | file | lineNumber |
|
27
|
+
| 1.9.3 | notify_exception | 6 |
|
28
|
+
| 1.9.3 | notify_string | 8 |
|
29
|
+
| 2.0 | notify_exception | 6 |
|
30
|
+
| 2.0 | notify_string | 8 |
|
31
|
+
| 2.1 | notify_exception | 6 |
|
32
|
+
| 2.1 | notify_string | 8 |
|
33
|
+
| 2.2 | notify_exception | 6 |
|
34
|
+
| 2.2 | notify_string | 8 |
|
35
|
+
| 2.3 | notify_exception | 6 |
|
36
|
+
| 2.3 | notify_string | 8 |
|
37
|
+
| 2.4 | notify_exception | 6 |
|
38
|
+
| 2.4 | notify_string | 8 |
|
39
|
+
| 2.5 | notify_exception | 6 |
|
40
|
+
| 2.5 | notify_string | 8 |
|
41
|
+
|
42
|
+
Scenario Outline: A handled error doesn't send a report when the :skip_bugsnag flag is set
|
43
|
+
And I set environment variable "RUBY_VERSION" to "<ruby version>"
|
44
|
+
And I have built the service "plain-ruby"
|
45
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby handled/ignore_exception.rb"
|
46
|
+
And I wait for 1 second
|
47
|
+
Then I should receive 0 requests
|
48
|
+
|
49
|
+
Examples:
|
50
|
+
| ruby version |
|
51
|
+
| 1.9.3 |
|
52
|
+
| 2.0 |
|
53
|
+
| 2.1 |
|
54
|
+
| 2.2 |
|
55
|
+
| 2.3 |
|
56
|
+
| 2.4 |
|
57
|
+
| 2.5 |
|
58
|
+
|
59
|
+
Scenario Outline: A handled error can attach metadata in a block
|
60
|
+
And I set environment variable "RUBY_VERSION" to "<ruby version>"
|
61
|
+
And I have built the service "plain-ruby"
|
62
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby handled/block_metadata.rb"
|
63
|
+
And I wait for 1 second
|
64
|
+
Then I should receive a request
|
65
|
+
And the request used the Ruby notifier
|
66
|
+
And the request used payload v4 headers
|
67
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
68
|
+
And the event "unhandled" is false
|
69
|
+
And the event "severity" is "warning"
|
70
|
+
And the event "severityReason.type" is "handledException"
|
71
|
+
And the exception "errorClass" equals "RuntimeError"
|
72
|
+
And the "file" of stack frame 0 equals "/usr/src/handled/block_metadata.rb"
|
73
|
+
And the "lineNumber" of stack frame 0 equals 6
|
74
|
+
And the event "metaData.account.id" is "1234abcd"
|
75
|
+
And the event "metaData.account.name" is "Acme Co"
|
76
|
+
And the event "metaData.account.support" is true
|
77
|
+
|
78
|
+
Examples:
|
79
|
+
| ruby version |
|
80
|
+
| 1.9.3 |
|
81
|
+
| 2.0 |
|
82
|
+
| 2.1 |
|
83
|
+
| 2.2 |
|
84
|
+
| 2.3 |
|
85
|
+
| 2.4 |
|
86
|
+
| 2.5 |
|
@@ -0,0 +1,31 @@
|
|
1
|
+
Feature: Plain ignore classes
|
2
|
+
|
3
|
+
Background:
|
4
|
+
Given I set environment variable "BUGSNAG_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
5
|
+
Given I set environment variable "MAZE_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
6
|
+
And I set environment variable "APP_PATH" to "/usr/src"
|
7
|
+
And I configure the bugsnag endpoint
|
8
|
+
|
9
|
+
Scenario Outline: An errors class is in the ignore_classes array
|
10
|
+
And I set environment variable "RUBY_VERSION" to "<ruby version>"
|
11
|
+
And I have built the service "plain-ruby"
|
12
|
+
And I run the service "plain-ruby" with the command "bundle exec ruby ignore_classes/<state>.rb"
|
13
|
+
And I wait for 1 second
|
14
|
+
Then I should receive 0 requests
|
15
|
+
|
16
|
+
Examples:
|
17
|
+
| ruby version | state |
|
18
|
+
| 1.9.3 | unhandled |
|
19
|
+
| 1.9.3 | handled |
|
20
|
+
| 2.0 | unhandled |
|
21
|
+
| 2.0 | handled |
|
22
|
+
| 2.1 | unhandled |
|
23
|
+
| 2.1 | handled |
|
24
|
+
| 2.2 | unhandled |
|
25
|
+
| 2.2 | handled |
|
26
|
+
| 2.3 | unhandled |
|
27
|
+
| 2.3 | handled |
|
28
|
+
| 2.4 | unhandled |
|
29
|
+
| 2.4 | handled |
|
30
|
+
| 2.5 | unhandled |
|
31
|
+
| 2.5 | handled |
|