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,58 @@
|
|
1
|
+
Feature: Send code
|
2
|
+
|
3
|
+
Background:
|
4
|
+
Given I set environment variable "MAZE_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
5
|
+
And I set environment variable "APP_PATH" to "/usr/src"
|
6
|
+
And I configure the bugsnag endpoint
|
7
|
+
|
8
|
+
Scenario Outline: Send_code can be updated in an initializer
|
9
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby_version>"
|
10
|
+
And I set environment variable "MAZE_SEND_CODE" to "false"
|
11
|
+
And I start the service "rails<rails_version>"
|
12
|
+
And I wait for the app to respond on port "6128<rails_version>"
|
13
|
+
When I navigate to the route "/send_code/initializer" on port "6128<rails_version>"
|
14
|
+
Then I should receive a request
|
15
|
+
And the request is a valid for the error reporting API
|
16
|
+
And the payload field "events" is an array with 1 element
|
17
|
+
And the event "exceptions.0.stacktrace.0.code" is null
|
18
|
+
|
19
|
+
Examples:
|
20
|
+
| ruby_version | rails_version |
|
21
|
+
| 2.0 | 3 |
|
22
|
+
| 2.1 | 3 |
|
23
|
+
| 2.2 | 3 |
|
24
|
+
| 2.2 | 4 |
|
25
|
+
| 2.2 | 5 |
|
26
|
+
| 2.3 | 3 |
|
27
|
+
| 2.3 | 4 |
|
28
|
+
| 2.3 | 5 |
|
29
|
+
| 2.4 | 3 |
|
30
|
+
| 2.4 | 5 |
|
31
|
+
| 2.5 | 3 |
|
32
|
+
| 2.5 | 5 |
|
33
|
+
|
34
|
+
Scenario Outline: Send_code can be updated after an initializer
|
35
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby_version>"
|
36
|
+
And I start the service "rails<rails_version>"
|
37
|
+
And I wait for the app to respond on port "6128<rails_version>"
|
38
|
+
When I navigate to the route "/send_code/after" on port "6128<rails_version>"
|
39
|
+
Then I should receive a request
|
40
|
+
And the request is a valid for the error reporting API
|
41
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
42
|
+
And the payload field "events" is an array with 1 element
|
43
|
+
And the event "exceptions.0.stacktrace.0.code" is null
|
44
|
+
|
45
|
+
Examples:
|
46
|
+
| ruby_version | rails_version |
|
47
|
+
| 2.0 | 3 |
|
48
|
+
| 2.1 | 3 |
|
49
|
+
| 2.2 | 3 |
|
50
|
+
| 2.2 | 4 |
|
51
|
+
| 2.2 | 5 |
|
52
|
+
| 2.3 | 3 |
|
53
|
+
| 2.3 | 4 |
|
54
|
+
| 2.3 | 5 |
|
55
|
+
| 2.4 | 3 |
|
56
|
+
| 2.4 | 5 |
|
57
|
+
| 2.5 | 3 |
|
58
|
+
| 2.5 | 5 |
|
@@ -0,0 +1,38 @@
|
|
1
|
+
Feature: Send environment
|
2
|
+
|
3
|
+
Background:
|
4
|
+
Given I set environment variable "MAZE_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
5
|
+
And I set environment variable "APP_PATH" to "/usr/src"
|
6
|
+
And I configure the bugsnag endpoint
|
7
|
+
|
8
|
+
Scenario Outline: Send_environment should send environment in handled errors when true
|
9
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby_version>"
|
10
|
+
And I set environment variable "MAZE_SEND_ENVIRONMENT" to "true"
|
11
|
+
And I start the service "rails<rails_version>"
|
12
|
+
And I wait for the app to respond on port "6128<rails_version>"
|
13
|
+
When I navigate to the route "/send_environment/initializer" on port "6128<rails_version>"
|
14
|
+
Then I should receive a request
|
15
|
+
And the request is a valid for the error reporting API
|
16
|
+
And the request used the Ruby notifier
|
17
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
18
|
+
And the payload field "events" is an array with 1 element
|
19
|
+
And the exception "errorClass" equals "RuntimeError"
|
20
|
+
And the exception "message" starts with "handled string"
|
21
|
+
And the event "metaData.environment.REQUEST_METHOD" equals "GET"
|
22
|
+
And the event "metaData.environment.railsVersion" is not null
|
23
|
+
And the event "app.type" equals "rails"
|
24
|
+
|
25
|
+
Examples:
|
26
|
+
| ruby_version | rails_version |
|
27
|
+
| 2.0 | 3 |
|
28
|
+
| 2.1 | 3 |
|
29
|
+
| 2.2 | 3 |
|
30
|
+
| 2.2 | 4 |
|
31
|
+
| 2.2 | 5 |
|
32
|
+
| 2.3 | 3 |
|
33
|
+
| 2.3 | 4 |
|
34
|
+
| 2.3 | 5 |
|
35
|
+
| 2.4 | 3 |
|
36
|
+
| 2.4 | 5 |
|
37
|
+
| 2.5 | 3 |
|
38
|
+
| 2.5 | 5 |
|
@@ -0,0 +1,40 @@
|
|
1
|
+
Feature: Unhandled exceptions support
|
2
|
+
|
3
|
+
Background:
|
4
|
+
Given I set environment variable "MAZE_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
5
|
+
And I set environment variable "APP_PATH" to "/usr/src"
|
6
|
+
And I configure the bugsnag endpoint
|
7
|
+
|
8
|
+
Scenario Outline: Unhandled RuntimeError
|
9
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby_version>"
|
10
|
+
And I start the service "rails<rails_version>"
|
11
|
+
And I wait for the app to respond on port "6128<rails_version>"
|
12
|
+
When I navigate to the route "/unhandled/error" on port "6128<rails_version>"
|
13
|
+
Then I should receive a request
|
14
|
+
And the request is a valid for the error reporting API
|
15
|
+
And the request used the Ruby notifier
|
16
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
17
|
+
And the payload field "events" is an array with 1 element
|
18
|
+
And the event "unhandled" is true
|
19
|
+
And the exception "errorClass" equals "NameError"
|
20
|
+
And the exception "message" starts with "undefined local variable or method `generate_unhandled_error' for #<UnhandledController"
|
21
|
+
And the event "app.type" equals "rails"
|
22
|
+
And the event "metaData.request.url" ends with "/unhandled/error"
|
23
|
+
And the event "severity" equals "error"
|
24
|
+
And the event "severityReason.type" is "unhandledExceptionMiddleware"
|
25
|
+
And the event "severityReason.attributes.framework" is "Rack"
|
26
|
+
|
27
|
+
Examples:
|
28
|
+
| ruby_version | rails_version |
|
29
|
+
| 2.0 | 3 |
|
30
|
+
| 2.1 | 3 |
|
31
|
+
| 2.2 | 3 |
|
32
|
+
| 2.2 | 4 |
|
33
|
+
| 2.2 | 5 |
|
34
|
+
| 2.3 | 3 |
|
35
|
+
| 2.3 | 4 |
|
36
|
+
| 2.3 | 5 |
|
37
|
+
| 2.4 | 3 |
|
38
|
+
| 2.4 | 5 |
|
39
|
+
| 2.5 | 3 |
|
40
|
+
| 2.5 | 5 |
|
@@ -0,0 +1,88 @@
|
|
1
|
+
Feature: Capture user information
|
2
|
+
|
3
|
+
Background:
|
4
|
+
Given I set environment variable "MAZE_API_KEY" to "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
5
|
+
And I set environment variable "APP_PATH" to "/usr/src"
|
6
|
+
And I configure the bugsnag endpoint
|
7
|
+
|
8
|
+
Scenario Outline: Warden user information is sent
|
9
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby_version>"
|
10
|
+
And I start the service "rails<rails_version>"
|
11
|
+
And I wait for the app to respond on port "6128<rails_version>"
|
12
|
+
When I navigate to the route "/warden/create" on port "6128<rails_version>"
|
13
|
+
And I navigate to the route "/warden/<route>?email=testtest@test.test" on port "6128<rails_version>"
|
14
|
+
Then I should receive a request
|
15
|
+
And the request is a valid for the error reporting API
|
16
|
+
And the request used the Ruby notifier
|
17
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
18
|
+
And the payload field "events" is an array with 1 element
|
19
|
+
And the event "user.email" equals "testtest@test.test"
|
20
|
+
And the event "user.name" equals "Warden User"
|
21
|
+
And the event "user.first_name" equals "Warden"
|
22
|
+
And the event "user.last_name" equals "User"
|
23
|
+
|
24
|
+
Examples:
|
25
|
+
| ruby_version | rails_version | route |
|
26
|
+
| 2.0 | 3 | handled |
|
27
|
+
| 2.0 | 3 | unhandled |
|
28
|
+
| 2.1 | 3 | handled |
|
29
|
+
| 2.1 | 3 | unhandled |
|
30
|
+
| 2.2 | 3 | handled |
|
31
|
+
| 2.2 | 3 | unhandled |
|
32
|
+
| 2.3 | 3 | handled |
|
33
|
+
| 2.3 | 3 | unhandled |
|
34
|
+
| 2.4 | 3 | handled |
|
35
|
+
| 2.4 | 3 | unhandled |
|
36
|
+
| 2.5 | 3 | handled |
|
37
|
+
| 2.5 | 3 | unhandled |
|
38
|
+
|
39
|
+
|
40
|
+
Scenario Outline: Devise user information is sent
|
41
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby_version>"
|
42
|
+
And I start the service "rails<rails_version>"
|
43
|
+
And I wait for the app to respond on port "6128<rails_version>"
|
44
|
+
When I navigate to the route "/devise/create" on port "6128<rails_version>"
|
45
|
+
And I navigate to the route "/devise/<route>" on port "6128<rails_version>"
|
46
|
+
Then I should receive a request
|
47
|
+
And the request is a valid for the error reporting API
|
48
|
+
And the request used the Ruby notifier
|
49
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
50
|
+
And the payload field "events" is an array with 1 element
|
51
|
+
And the event "user.email" equals "test+test@test.test"
|
52
|
+
And the event "user.name" equals "Devise User"
|
53
|
+
And the event "user.first_name" equals "Devise"
|
54
|
+
And the event "user.last_name" equals "User"
|
55
|
+
|
56
|
+
Examples:
|
57
|
+
| ruby_version | rails_version | route |
|
58
|
+
| 2.2 | 4 | handled |
|
59
|
+
| 2.2 | 4 | unhandled |
|
60
|
+
| 2.3 | 4 | handled |
|
61
|
+
| 2.3 | 4 | unhandled |
|
62
|
+
|
63
|
+
Scenario Outline: Clearance user information is sent
|
64
|
+
Given I set environment variable "RUBY_VERSION" to "<ruby_version>"
|
65
|
+
And I start the service "rails<rails_version>"
|
66
|
+
And I wait for the app to respond on port "6128<rails_version>"
|
67
|
+
When I navigate to the route "/clearance/create" on port "6128<rails_version>"
|
68
|
+
And I navigate to the route "/clearance/<route>" on port "6128<rails_version>"
|
69
|
+
Then I should receive a request
|
70
|
+
And the request is a valid for the error reporting API
|
71
|
+
And the request used the Ruby notifier
|
72
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
73
|
+
And the payload field "events" is an array with 1 element
|
74
|
+
And the event "user.email" equals "testtest@test.test"
|
75
|
+
And the event "user.name" equals "Clearance User"
|
76
|
+
And the event "user.first_name" equals "Clearance"
|
77
|
+
And the event "user.last_name" equals "User"
|
78
|
+
|
79
|
+
Examples:
|
80
|
+
| ruby_version | rails_version | route |
|
81
|
+
| 2.2 | 5 | handled |
|
82
|
+
| 2.2 | 5 | unhandled |
|
83
|
+
| 2.3 | 5 | handled |
|
84
|
+
| 2.3 | 5 | unhandled |
|
85
|
+
| 2.4 | 5 | handled |
|
86
|
+
| 2.4 | 5 | unhandled |
|
87
|
+
| 2.5 | 5 | handled |
|
88
|
+
| 2.5 | 5 | unhandled |
|
@@ -0,0 +1,96 @@
|
|
1
|
+
Feature: Bugsnag raises errors in Sidekiq workers
|
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 unhandled RuntimeError sends a report
|
10
|
+
And I set environment variable "RUBY_VERSION" to "<ruby version>"
|
11
|
+
And I set environment variable "SIDEKIQ_VERSION" to "<sidekiq_version>"
|
12
|
+
And I start the service "sidekiq"
|
13
|
+
And I run the command "bundle exec ruby initializers/UnhandledError.rb" on the service "sidekiq"
|
14
|
+
And I wait for 1 seconds
|
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 "unhandled" is true
|
20
|
+
And the event "severity" is "error"
|
21
|
+
And the event "severityReason.type" is "unhandledExceptionMiddleware"
|
22
|
+
And the event "severityReason.attributes.framework" is "Sidekiq"
|
23
|
+
And the exception "errorClass" equals "RuntimeError"
|
24
|
+
And the "file" of stack frame 0 equals "/usr/src/app.rb"
|
25
|
+
And the "lineNumber" of stack frame 0 equals 33
|
26
|
+
And the payload field "events.0.metaData.sidekiq" matches the JSON fixture in "features/fixtures/sidekiq/payloads/unhandled_metadata_ca_<created_at_present>.json"
|
27
|
+
And the event "metaData.sidekiq.msg.created_at" is a parsable timestamp in seconds
|
28
|
+
And the event "metaData.sidekiq.msg.enqueued_at" is a parsable timestamp in seconds
|
29
|
+
|
30
|
+
Examples:
|
31
|
+
| ruby version | sidekiq_version | created_at_present |
|
32
|
+
| 1.9.3 | ~> 2 | false |
|
33
|
+
| 2.0 | ~> 2 | false |
|
34
|
+
| 2.0 | ~> 3 | true |
|
35
|
+
| 2.1 | ~> 2 | false |
|
36
|
+
| 2.1 | ~> 3 | true |
|
37
|
+
| 2.2 | ~> 2 | false |
|
38
|
+
| 2.2 | ~> 3 | true |
|
39
|
+
| 2.2 | ~> 4 | true |
|
40
|
+
| 2.2 | ~> 5 | true |
|
41
|
+
| 2.3 | ~> 2 | false |
|
42
|
+
| 2.3 | ~> 3 | true |
|
43
|
+
| 2.3 | ~> 4 | true |
|
44
|
+
| 2.3 | ~> 5 | true |
|
45
|
+
| 2.4 | ~> 2 | false |
|
46
|
+
| 2.4 | ~> 3 | true |
|
47
|
+
| 2.4 | ~> 4 | true |
|
48
|
+
| 2.4 | ~> 5 | true |
|
49
|
+
| 2.5 | ~> 2 | false |
|
50
|
+
| 2.5 | ~> 3 | true |
|
51
|
+
| 2.5 | ~> 4 | true |
|
52
|
+
| 2.5 | ~> 5 | true |
|
53
|
+
|
54
|
+
Scenario Outline: A handled RuntimeError can be notified
|
55
|
+
And I set environment variable "RUBY_VERSION" to "<ruby version>"
|
56
|
+
And I set environment variable "SIDEKIQ_VERSION" to "<sidekiq_version>"
|
57
|
+
And I start the service "sidekiq"
|
58
|
+
And I run the command "bundle exec ruby initializers/HandledError.rb" on the service "sidekiq"
|
59
|
+
And I wait for 1 seconds
|
60
|
+
Then I should receive a request
|
61
|
+
And the request used the Ruby notifier
|
62
|
+
And the request used payload v4 headers
|
63
|
+
And the request contained the api key "a35a2a72bd230ac0aa0f52715bbdc6aa"
|
64
|
+
And the event "unhandled" is false
|
65
|
+
And the event "severity" is "warning"
|
66
|
+
And the event "severityReason.type" is "handledException"
|
67
|
+
And the exception "errorClass" equals "RuntimeError"
|
68
|
+
And the "file" of stack frame 0 equals "/usr/src/app.rb"
|
69
|
+
And the "lineNumber" of stack frame 0 equals 24
|
70
|
+
And the payload field "events.0.metaData.sidekiq" matches the JSON fixture in "features/fixtures/sidekiq/payloads/handled_metadata_ca_<created_at_present>.json"
|
71
|
+
And the event "metaData.sidekiq.msg.created_at" is a parsable timestamp in seconds
|
72
|
+
And the event "metaData.sidekiq.msg.enqueued_at" is a parsable timestamp in seconds
|
73
|
+
|
74
|
+
Examples:
|
75
|
+
| ruby version | sidekiq_version | created_at_present |
|
76
|
+
| 1.9.3 | ~> 2 | false |
|
77
|
+
| 2.0 | ~> 2 | false |
|
78
|
+
| 2.0 | ~> 3 | true |
|
79
|
+
| 2.1 | ~> 2 | false |
|
80
|
+
| 2.1 | ~> 3 | true |
|
81
|
+
| 2.2 | ~> 2 | false |
|
82
|
+
| 2.2 | ~> 3 | true |
|
83
|
+
| 2.2 | ~> 4 | true |
|
84
|
+
| 2.2 | ~> 5 | true |
|
85
|
+
| 2.3 | ~> 2 | false |
|
86
|
+
| 2.3 | ~> 3 | true |
|
87
|
+
| 2.3 | ~> 4 | true |
|
88
|
+
| 2.3 | ~> 5 | true |
|
89
|
+
| 2.4 | ~> 2 | false |
|
90
|
+
| 2.4 | ~> 3 | true |
|
91
|
+
| 2.4 | ~> 4 | true |
|
92
|
+
| 2.4 | ~> 5 | true |
|
93
|
+
| 2.5 | ~> 2 | false |
|
94
|
+
| 2.5 | ~> 3 | true |
|
95
|
+
| 2.5 | ~> 4 | true |
|
96
|
+
| 2.5 | ~> 5 | true |
|
@@ -0,0 +1,77 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
require 'open3'
|
3
|
+
|
4
|
+
When("I configure the bugsnag endpoint") do
|
5
|
+
steps %Q{
|
6
|
+
When I set environment variable "MAZE_ENDPOINT" to "http://#{current_ip}:#{MOCK_API_PORT}"
|
7
|
+
}
|
8
|
+
end
|
9
|
+
|
10
|
+
When("I wait for the app to respond on port {string}") do |port|
|
11
|
+
max_attempts = ENV.include?('MAX_MAZE_CONNECT_ATTEMPTS')? ENV['MAX_MAZE_CONNECT_ATTEMPTS'].to_i : 10
|
12
|
+
attempts = 0
|
13
|
+
up = false
|
14
|
+
until (attempts >= max_attempts) || up
|
15
|
+
attempts += 1
|
16
|
+
begin
|
17
|
+
uri = URI("http://localhost:#{port}/")
|
18
|
+
response = Net::HTTP.get_response(uri)
|
19
|
+
up = (response.code == "200")
|
20
|
+
rescue EOFError
|
21
|
+
end
|
22
|
+
sleep 1
|
23
|
+
end
|
24
|
+
raise "App not ready in time!" unless up
|
25
|
+
end
|
26
|
+
|
27
|
+
When("I navigate to the route {string} on port {string}") do |route, port|
|
28
|
+
steps %Q{
|
29
|
+
When I open the URL "http://localhost:#{port}#{route}"
|
30
|
+
And I wait for 1 second
|
31
|
+
}
|
32
|
+
end
|
33
|
+
|
34
|
+
When("I set environment variable {string} to the current IP") do |env_var|
|
35
|
+
steps %Q{
|
36
|
+
When I set environment variable "#{env_var}" to "#{current_ip}"
|
37
|
+
}
|
38
|
+
end
|
39
|
+
When("I set environment variable {string} to the mock API port") do |env_var|
|
40
|
+
steps %Q{
|
41
|
+
When I set environment variable "#{env_var}" to "#{MOCK_API_PORT}"
|
42
|
+
}
|
43
|
+
end
|
44
|
+
When("I set environment variable {string} to the proxy settings with credentials {string}") do |env_var, credentials|
|
45
|
+
steps %Q{
|
46
|
+
When I set environment variable "#{env_var}" to "#{credentials}@#{current_ip}:#{MOCK_API_PORT}"
|
47
|
+
}
|
48
|
+
end
|
49
|
+
|
50
|
+
Then("the request used payload v4 headers") do
|
51
|
+
steps %Q{
|
52
|
+
Then the "bugsnag-api-key" header is not null
|
53
|
+
And the "bugsnag-payload-version" header equals "4.0"
|
54
|
+
And the "bugsnag-sent-at" header is a timestamp
|
55
|
+
}
|
56
|
+
end
|
57
|
+
|
58
|
+
Then("the request contained the api key {string}") do |api_key|
|
59
|
+
steps %Q{
|
60
|
+
Then the "bugsnag-api-key" header equals "#{api_key}"
|
61
|
+
And the payload field "apiKey" equals "#{api_key}"
|
62
|
+
}
|
63
|
+
end
|
64
|
+
|
65
|
+
Then("the request used the Ruby notifier") do
|
66
|
+
bugsnag_regex = /^http(s?):\/\/www.bugsnag.com/
|
67
|
+
steps %Q{
|
68
|
+
Then the payload field "notifier.name" equals "Ruby Bugsnag Notifier"
|
69
|
+
And the payload field "notifier.url" matches the regex "#{bugsnag_regex}"
|
70
|
+
}
|
71
|
+
end
|
72
|
+
|
73
|
+
Then("the event {string} is {string}") do |key, value|
|
74
|
+
steps %Q{
|
75
|
+
Then the event "#{key}" equals "#{value}"
|
76
|
+
}
|
77
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'open3'
|
2
|
+
require 'os'
|
3
|
+
|
4
|
+
Before do
|
5
|
+
find_default_docker_compose
|
6
|
+
end
|
7
|
+
|
8
|
+
def output_logs
|
9
|
+
$docker_services.each do |service|
|
10
|
+
logged_service = service[:service] == :all ? '' : service[:service]
|
11
|
+
command = "logs -t #{logged_service}"
|
12
|
+
begin
|
13
|
+
response = run_docker_compose_command(service[:file], command)
|
14
|
+
rescue => exception
|
15
|
+
response = "Couldn't retreive logs for #{service[:file]}:#{logged_service}"
|
16
|
+
end
|
17
|
+
STDOUT.puts response.is_a?(String) ? response : response.to_a
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def current_ip
|
22
|
+
if OS.mac?
|
23
|
+
'host.docker.internal'
|
24
|
+
else
|
25
|
+
ip_addr = `ifconfig | grep -Eo 'inet (addr:)?([0-9]*\\\.){3}[0-9]*' | grep -v '127.0.0.1'`
|
26
|
+
ip_list = /((?:[0-9]*\.){3}[0-9]*)/.match(ip_addr)
|
27
|
+
ip_list.captures.first
|
28
|
+
end
|
29
|
+
end
|
data/lib/bugsnag.rb
CHANGED
@@ -43,6 +43,8 @@ module Bugsnag
|
|
43
43
|
yield(configuration) if block_given?
|
44
44
|
|
45
45
|
check_key_valid if validate_api_key
|
46
|
+
|
47
|
+
register_at_exit
|
46
48
|
end
|
47
49
|
|
48
50
|
##
|
@@ -111,6 +113,30 @@ module Bugsnag
|
|
111
113
|
end
|
112
114
|
end
|
113
115
|
|
116
|
+
##
|
117
|
+
# Registers an at_exit function to automatically catch errors on exit
|
118
|
+
def register_at_exit
|
119
|
+
return if at_exit_handler_installed?
|
120
|
+
@exit_handler_added = true
|
121
|
+
at_exit do
|
122
|
+
if $!
|
123
|
+
Bugsnag.notify($!, true) do |report|
|
124
|
+
report.severity = 'error'
|
125
|
+
report.severity_reason = {
|
126
|
+
:type => Bugsnag::Report::UNHANDLED_EXCEPTION
|
127
|
+
}
|
128
|
+
end
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
##
|
134
|
+
# Checks if an at_exit handler has been added
|
135
|
+
def at_exit_handler_installed?
|
136
|
+
@exit_handler_added ||= false
|
137
|
+
end
|
138
|
+
|
139
|
+
# Configuration getters
|
114
140
|
##
|
115
141
|
# Returns the client's Configuration object, or creates one if not yet created.
|
116
142
|
def configuration
|