bugsnag 6.15.0 → 6.27.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +12 -0
- data/CHANGELOG.md +289 -0
- data/README.md +1 -2
- data/VERSION +1 -1
- data/bugsnag.gemspec +19 -2
- data/lib/bugsnag/breadcrumb_type.rb +14 -0
- data/lib/bugsnag/breadcrumbs/breadcrumb.rb +35 -2
- data/lib/bugsnag/breadcrumbs/breadcrumbs.rb +1 -0
- data/lib/bugsnag/breadcrumbs/on_breadcrumb_callback_list.rb +48 -0
- data/lib/bugsnag/breadcrumbs/validator.rb +0 -24
- data/lib/bugsnag/cleaner.rb +70 -29
- data/lib/bugsnag/configuration.rb +445 -47
- data/lib/bugsnag/delivery/synchronous.rb +3 -4
- data/lib/bugsnag/delivery/thread_queue.rb +18 -5
- data/lib/bugsnag/endpoint_configuration.rb +11 -0
- data/lib/bugsnag/endpoint_validator.rb +80 -0
- data/lib/bugsnag/error.rb +25 -0
- data/lib/bugsnag/event.rb +5 -0
- data/lib/bugsnag/feature_flag.rb +74 -0
- data/lib/bugsnag/helpers.rb +17 -9
- data/lib/bugsnag/integrations/delayed_job.rb +13 -1
- data/lib/bugsnag/integrations/mailman.rb +2 -1
- data/lib/bugsnag/integrations/mongo.rb +5 -4
- data/lib/bugsnag/integrations/que.rb +2 -1
- data/lib/bugsnag/integrations/rack.rb +6 -4
- data/lib/bugsnag/integrations/rails/active_job.rb +100 -0
- data/lib/bugsnag/integrations/rails/rails_breadcrumbs.rb +2 -2
- data/lib/bugsnag/integrations/railtie.rb +93 -35
- data/lib/bugsnag/integrations/rake.rb +8 -3
- data/lib/bugsnag/integrations/resque.rb +30 -9
- data/lib/bugsnag/integrations/shoryuken.rb +2 -1
- data/lib/bugsnag/integrations/sidekiq.rb +3 -3
- data/lib/bugsnag/middleware/active_job.rb +18 -0
- data/lib/bugsnag/middleware/classify_error.rb +1 -0
- data/lib/bugsnag/middleware/delayed_job.rb +21 -1
- data/lib/bugsnag/middleware/exception_meta_data.rb +2 -0
- data/lib/bugsnag/middleware/rack_request.rb +103 -20
- data/lib/bugsnag/middleware/rails3_request.rb +2 -2
- data/lib/bugsnag/middleware/rake.rb +1 -1
- data/lib/bugsnag/middleware/session_data.rb +3 -1
- data/lib/bugsnag/middleware/sidekiq.rb +1 -1
- data/lib/bugsnag/middleware/suggestion_data.rb +9 -7
- data/lib/bugsnag/middleware/warden_user.rb +3 -0
- data/lib/bugsnag/middleware_stack.rb +6 -6
- data/lib/bugsnag/report.rb +292 -8
- data/lib/bugsnag/session_tracker.rb +52 -12
- data/lib/bugsnag/stacktrace.rb +14 -3
- data/lib/bugsnag/tasks/bugsnag.rake +1 -1
- data/lib/bugsnag/utility/duplicator.rb +124 -0
- data/lib/bugsnag/utility/feature_data_store.rb +41 -0
- data/lib/bugsnag/utility/feature_flag_delegate.rb +89 -0
- data/lib/bugsnag/utility/metadata_delegate.rb +102 -0
- data/lib/bugsnag.rb +256 -37
- metadata +25 -635
- data/.buildkite/pipeline.yml +0 -470
- data/.github/PULL_REQUEST_TEMPLATE.md +0 -84
- data/.gitignore +0 -55
- data/.rdoc_options +0 -27
- data/.rspec +0 -3
- data/.rubocop.yml +0 -57
- data/.rubocop_todo.yml +0 -1049
- data/CONTRIBUTING.md +0 -64
- data/Gemfile +0 -50
- data/Rakefile +0 -37
- data/TESTING.md +0 -81
- data/UPGRADING.md +0 -91
- data/docker-compose.yml +0 -46
- data/dockerfiles/Dockerfile.jruby-unit-tests +0 -13
- data/dockerfiles/Dockerfile.ruby-maze-runner +0 -26
- data/dockerfiles/Dockerfile.ruby-unit-tests +0 -12
- data/features/.gitignore +0 -1
- data/features/delayed_job.feature +0 -36
- data/features/fixtures/delayed_job/Dockerfile +0 -15
- data/features/fixtures/delayed_job/app/.gitignore +0 -21
- data/features/fixtures/delayed_job/app/Gemfile +0 -57
- data/features/fixtures/delayed_job/app/README.md +0 -24
- data/features/fixtures/delayed_job/app/Rakefile +0 -24
- data/features/fixtures/delayed_job/app/app/assets/config/manifest.js +0 -3
- data/features/fixtures/delayed_job/app/app/assets/images/.keep +0 -0
- data/features/fixtures/delayed_job/app/app/assets/javascripts/application.js +0 -16
- data/features/fixtures/delayed_job/app/app/assets/javascripts/cable.js +0 -13
- data/features/fixtures/delayed_job/app/app/assets/javascripts/channels/.keep +0 -0
- data/features/fixtures/delayed_job/app/app/assets/stylesheets/application.css +0 -15
- data/features/fixtures/delayed_job/app/app/channels/application_cable/channel.rb +0 -4
- data/features/fixtures/delayed_job/app/app/channels/application_cable/connection.rb +0 -4
- data/features/fixtures/delayed_job/app/app/controllers/application_controller.rb +0 -3
- data/features/fixtures/delayed_job/app/app/controllers/concerns/.keep +0 -0
- data/features/fixtures/delayed_job/app/app/helpers/application_helper.rb +0 -2
- data/features/fixtures/delayed_job/app/app/jobs/application_job.rb +0 -2
- data/features/fixtures/delayed_job/app/app/mailers/application_mailer.rb +0 -4
- data/features/fixtures/delayed_job/app/app/models/application_record.rb +0 -3
- data/features/fixtures/delayed_job/app/app/models/concerns/.keep +0 -0
- data/features/fixtures/delayed_job/app/app/models/test_model.rb +0 -10
- data/features/fixtures/delayed_job/app/app/views/layouts/application.html.erb +0 -14
- data/features/fixtures/delayed_job/app/app/views/layouts/mailer.html.erb +0 -13
- data/features/fixtures/delayed_job/app/app/views/layouts/mailer.text.erb +0 -1
- data/features/fixtures/delayed_job/app/config/application.rb +0 -15
- data/features/fixtures/delayed_job/app/config/boot.rb +0 -3
- data/features/fixtures/delayed_job/app/config/cable.yml +0 -9
- data/features/fixtures/delayed_job/app/config/database.yml +0 -25
- data/features/fixtures/delayed_job/app/config/environment.rb +0 -5
- data/features/fixtures/delayed_job/app/config/environments/development.rb +0 -54
- data/features/fixtures/delayed_job/app/config/environments/production.rb +0 -86
- data/features/fixtures/delayed_job/app/config/environments/test.rb +0 -42
- data/features/fixtures/delayed_job/app/config/initializers/application_controller_renderer.rb +0 -8
- data/features/fixtures/delayed_job/app/config/initializers/assets.rb +0 -11
- data/features/fixtures/delayed_job/app/config/initializers/backtrace_silencers.rb +0 -7
- data/features/fixtures/delayed_job/app/config/initializers/bugsnag.rb +0 -14
- data/features/fixtures/delayed_job/app/config/initializers/cookies_serializer.rb +0 -5
- data/features/fixtures/delayed_job/app/config/initializers/delayed_job.rb +0 -3
- data/features/fixtures/delayed_job/app/config/initializers/filter_parameter_logging.rb +0 -4
- data/features/fixtures/delayed_job/app/config/initializers/inflections.rb +0 -16
- data/features/fixtures/delayed_job/app/config/initializers/mime_types.rb +0 -4
- data/features/fixtures/delayed_job/app/config/initializers/new_framework_defaults.rb +0 -26
- data/features/fixtures/delayed_job/app/config/initializers/session_store.rb +0 -3
- data/features/fixtures/delayed_job/app/config/initializers/wrap_parameters.rb +0 -14
- data/features/fixtures/delayed_job/app/config/locales/en.yml +0 -23
- data/features/fixtures/delayed_job/app/config/puma.rb +0 -47
- data/features/fixtures/delayed_job/app/config/routes.rb +0 -3
- data/features/fixtures/delayed_job/app/config/secrets.yml +0 -22
- data/features/fixtures/delayed_job/app/config/spring.rb +0 -6
- data/features/fixtures/delayed_job/app/config.ru +0 -5
- data/features/fixtures/delayed_job/app/db/migrate/20181024232549_create_delayed_jobs.rb +0 -22
- data/features/fixtures/delayed_job/app/db/migrate/20181024232817_create_test_models.rb +0 -8
- data/features/fixtures/delayed_job/app/db/schema.rb +0 -30
- data/features/fixtures/delayed_job/app/db/seeds.rb +0 -7
- data/features/fixtures/delayed_job/app/lib/assets/.keep +0 -0
- data/features/fixtures/delayed_job/app/lib/tasks/.keep +0 -0
- data/features/fixtures/delayed_job/app/log/.keep +0 -0
- data/features/fixtures/delayed_job/app/public/404.html +0 -67
- data/features/fixtures/delayed_job/app/public/422.html +0 -67
- data/features/fixtures/delayed_job/app/public/500.html +0 -66
- data/features/fixtures/delayed_job/app/public/apple-touch-icon-precomposed.png +0 -0
- data/features/fixtures/delayed_job/app/public/apple-touch-icon.png +0 -0
- data/features/fixtures/delayed_job/app/public/favicon.ico +0 -0
- data/features/fixtures/delayed_job/app/public/robots.txt +0 -5
- data/features/fixtures/delayed_job/app/test/controllers/.keep +0 -0
- data/features/fixtures/delayed_job/app/test/fixtures/.keep +0 -0
- data/features/fixtures/delayed_job/app/test/fixtures/files/.keep +0 -0
- data/features/fixtures/delayed_job/app/test/fixtures/test_models.yml +0 -11
- data/features/fixtures/delayed_job/app/test/helpers/.keep +0 -0
- data/features/fixtures/delayed_job/app/test/integration/.keep +0 -0
- data/features/fixtures/delayed_job/app/test/mailers/.keep +0 -0
- data/features/fixtures/delayed_job/app/test/models/.keep +0 -0
- data/features/fixtures/delayed_job/app/test/models/test_model_test.rb +0 -7
- data/features/fixtures/delayed_job/app/test/test_helper.rb +0 -10
- data/features/fixtures/delayed_job/app/tmp/.keep +0 -0
- data/features/fixtures/docker-compose.yml +0 -303
- data/features/fixtures/expected_breadcrumbs/active_job.json +0 -9
- data/features/fixtures/expected_breadcrumbs/mongo_failed.json +0 -15
- data/features/fixtures/expected_breadcrumbs/mongo_filtered_request.json +0 -15
- data/features/fixtures/expected_breadcrumbs/mongo_filtered_result.json +0 -15
- data/features/fixtures/expected_breadcrumbs/mongo_success.json +0 -14
- data/features/fixtures/expected_breadcrumbs/request.json +0 -13
- data/features/fixtures/expected_breadcrumbs/sql_with_bindings.json +0 -12
- data/features/fixtures/expected_breadcrumbs/sql_without_bindings.json +0 -11
- data/features/fixtures/plain/.dockerignore +0 -2
- data/features/fixtures/plain/Dockerfile +0 -11
- data/features/fixtures/plain/app/Gemfile +0 -3
- data/features/fixtures/plain/app/app.rb +0 -38
- data/features/fixtures/plain/app/configuration/api_key.rb +0 -9
- data/features/fixtures/plain/app/configuration/proxy.rb +0 -14
- data/features/fixtures/plain/app/configuration/send_handled.rb +0 -7
- data/features/fixtures/plain/app/configuration/send_unhandled.rb +0 -9
- data/features/fixtures/plain/app/delivery/fork_threadpool.rb +0 -27
- data/features/fixtures/plain/app/delivery/synchronous.rb +0 -14
- data/features/fixtures/plain/app/delivery/threadpool.rb +0 -14
- data/features/fixtures/plain/app/exception_data/crash.rb +0 -34
- data/features/fixtures/plain/app/exception_data/handled_context.rb +0 -10
- data/features/fixtures/plain/app/exception_data/handled_hash.rb +0 -10
- data/features/fixtures/plain/app/exception_data/handled_meta_data.rb +0 -10
- data/features/fixtures/plain/app/exception_data/handled_user_id.rb +0 -10
- data/features/fixtures/plain/app/exception_data/unhandled_context.rb +0 -7
- data/features/fixtures/plain/app/exception_data/unhandled_hash.rb +0 -7
- data/features/fixtures/plain/app/exception_data/unhandled_meta_data.rb +0 -7
- data/features/fixtures/plain/app/exception_data/unhandled_user_id.rb +0 -7
- data/features/fixtures/plain/app/filters/additional_filters.rb +0 -11
- data/features/fixtures/plain/app/filters/default_filters.rb +0 -15
- data/features/fixtures/plain/app/handled/block_metadata.rb +0 -15
- data/features/fixtures/plain/app/handled/ignore_exception.rb +0 -12
- data/features/fixtures/plain/app/handled/notify_exception.rb +0 -9
- data/features/fixtures/plain/app/handled/notify_string.rb +0 -9
- data/features/fixtures/plain/app/ignore_classes/handled.rb +0 -8
- data/features/fixtures/plain/app/ignore_classes/ignore_error.rb +0 -8
- data/features/fixtures/plain/app/ignore_classes/unhandled.rb +0 -4
- data/features/fixtures/plain/app/report_modification/add_tab.rb +0 -16
- data/features/fixtures/plain/app/report_modification/add_tab_existing.rb +0 -22
- data/features/fixtures/plain/app/report_modification/add_tab_override.rb +0 -19
- data/features/fixtures/plain/app/report_modification/ignore_report.rb +0 -9
- data/features/fixtures/plain/app/report_modification/initiators/handled_before_notify.rb +0 -10
- data/features/fixtures/plain/app/report_modification/initiators/handled_block.rb +0 -8
- data/features/fixtures/plain/app/report_modification/initiators/handled_on_error.rb +0 -10
- data/features/fixtures/plain/app/report_modification/initiators/unhandled_before_notify.rb +0 -11
- data/features/fixtures/plain/app/report_modification/initiators/unhandled_on_error.rb +0 -11
- data/features/fixtures/plain/app/report_modification/modify_api_key.rb +0 -9
- data/features/fixtures/plain/app/report_modification/modify_severity.rb +0 -9
- data/features/fixtures/plain/app/report_modification/remove_user_details.rb +0 -14
- data/features/fixtures/plain/app/report_modification/set_custom_user_details.rb +0 -16
- data/features/fixtures/plain/app/report_modification/set_user_details.rb +0 -13
- data/features/fixtures/plain/app/stack_frame_modification/initiators/handled_before_notify.rb +0 -29
- data/features/fixtures/plain/app/stack_frame_modification/initiators/handled_block.rb +0 -24
- data/features/fixtures/plain/app/stack_frame_modification/initiators/handled_on_error.rb +0 -29
- data/features/fixtures/plain/app/stack_frame_modification/initiators/unhandled_before_notify.rb +0 -26
- data/features/fixtures/plain/app/stack_frame_modification/initiators/unhandled_on_error.rb +0 -26
- data/features/fixtures/plain/app/stack_frame_modification/mark_frames_in_project.rb +0 -13
- data/features/fixtures/plain/app/stack_frame_modification/remove_stack_frame.rb +0 -9
- data/features/fixtures/plain/app/unhandled/bad_syntax.rb +0 -1
- data/features/fixtures/plain/app/unhandled/custom_error.rb +0 -9
- data/features/fixtures/plain/app/unhandled/interrupt.rb +0 -6
- data/features/fixtures/plain/app/unhandled/load_error.rb +0 -6
- data/features/fixtures/plain/app/unhandled/local_jump_error.rb +0 -10
- data/features/fixtures/plain/app/unhandled/name_error.rb +0 -6
- data/features/fixtures/plain/app/unhandled/no_method_error.rb +0 -6
- data/features/fixtures/plain/app/unhandled/runtime_error.rb +0 -6
- data/features/fixtures/plain/app/unhandled/syntax_error.rb +0 -6
- data/features/fixtures/plain/app/unhandled/system_call_error.rb +0 -6
- data/features/fixtures/plain/app/unhandled/system_exit.rb +0 -6
- data/features/fixtures/plain/json/delivery_fork.json +0 -4
- data/features/fixtures/plain/json/delivery_synchronous.json +0 -4
- data/features/fixtures/plain/json/delivery_threadpool.json +0 -4
- data/features/fixtures/plain/json/filters_default_metadata_filters.json +0 -9
- data/features/fixtures/rack1/.dockerignore +0 -1
- data/features/fixtures/rack1/Dockerfile +0 -13
- data/features/fixtures/rack1/Gemfile +0 -4
- data/features/fixtures/rack1/app.rb +0 -8
- data/features/fixtures/rack2/.dockerignore +0 -1
- data/features/fixtures/rack2/Dockerfile +0 -13
- data/features/fixtures/rack2/Gemfile +0 -4
- data/features/fixtures/rack2/app.rb +0 -8
- data/features/fixtures/rails3/.dockerignore +0 -1
- data/features/fixtures/rails3/Dockerfile +0 -15
- data/features/fixtures/rails3/app/.gitignore +0 -15
- data/features/fixtures/rails3/app/Gemfile +0 -17
- data/features/fixtures/rails3/app/Rakefile +0 -7
- data/features/fixtures/rails3/app/app/assets/images/rails.png +0 -0
- data/features/fixtures/rails3/app/app/assets/javascripts/application.js +0 -15
- data/features/fixtures/rails3/app/app/assets/stylesheets/application.css +0 -13
- data/features/fixtures/rails3/app/app/controllers/api_key_controller.rb +0 -20
- data/features/fixtures/rails3/app/app/controllers/app_type_controller.rb +0 -20
- data/features/fixtures/rails3/app/app/controllers/app_version_controller.rb +0 -25
- data/features/fixtures/rails3/app/app/controllers/application_controller.rb +0 -7
- data/features/fixtures/rails3/app/app/controllers/auto_notify_controller.rb +0 -31
- data/features/fixtures/rails3/app/app/controllers/before_notify_controller.rb +0 -44
- data/features/fixtures/rails3/app/app/controllers/breadcrumbs_controller.rb +0 -19
- data/features/fixtures/rails3/app/app/controllers/handled_controller.rb +0 -26
- data/features/fixtures/rails3/app/app/controllers/ignore_classes_controller.rb +0 -23
- data/features/fixtures/rails3/app/app/controllers/metadata_filters_controller.rb +0 -16
- data/features/fixtures/rails3/app/app/controllers/project_root_controller.rb +0 -25
- data/features/fixtures/rails3/app/app/controllers/release_stage_controller.rb +0 -20
- data/features/fixtures/rails3/app/app/controllers/send_code_controller.rb +0 -20
- data/features/fixtures/rails3/app/app/controllers/send_environment_controller.rb +0 -12
- data/features/fixtures/rails3/app/app/controllers/session_tracking_controller.rb +0 -24
- data/features/fixtures/rails3/app/app/controllers/unhandled_controller.rb +0 -11
- data/features/fixtures/rails3/app/app/controllers/warden_controller.rb +0 -30
- data/features/fixtures/rails3/app/app/helpers/application_helper.rb +0 -2
- 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 +0 -6
- data/features/fixtures/rails3/app/app/views/layouts/application.html.erb +0 -14
- data/features/fixtures/rails3/app/config/application.rb +0 -67
- data/features/fixtures/rails3/app/config/boot.rb +0 -6
- data/features/fixtures/rails3/app/config/database.yml +0 -31
- data/features/fixtures/rails3/app/config/environment.rb +0 -5
- data/features/fixtures/rails3/app/config/environments/development.rb +0 -37
- data/features/fixtures/rails3/app/config/environments/production.rb +0 -67
- data/features/fixtures/rails3/app/config/environments/rails_env.rb +0 -37
- data/features/fixtures/rails3/app/config/initializers/bugsnag.rb +0 -29
- data/features/fixtures/rails3/app/config/initializers/secret_token.rb +0 -7
- data/features/fixtures/rails3/app/config/initializers/session_store.rb +0 -8
- data/features/fixtures/rails3/app/config/initializers/warden.rb +0 -3
- data/features/fixtures/rails3/app/config/initializers/wrap_parameters.rb +0 -14
- data/features/fixtures/rails3/app/config/locales/en.yml +0 -5
- data/features/fixtures/rails3/app/config/routes.rb +0 -19
- data/features/fixtures/rails3/app/config.ru +0 -4
- data/features/fixtures/rails3/app/db/migrate/20180423142727_create_users.rb +0 -45
- data/features/fixtures/rails3/app/db/schema.rb +0 -37
- data/features/fixtures/rails3/app/db/seeds.rb +0 -7
- data/features/fixtures/rails3/app/lib/assets/.gitkeep +0 -0
- data/features/fixtures/rails3/app/lib/strategies/token_strategy.rb +0 -12
- 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 +0 -26
- data/features/fixtures/rails3/app/public/422.html +0 -26
- data/features/fixtures/rails3/app/public/500.html +0 -25
- data/features/fixtures/rails3/app/public/favicon.ico +0 -0
- data/features/fixtures/rails3/app/public/index.html +0 -241
- data/features/fixtures/rails3/app/public/robots.txt +0 -5
- data/features/fixtures/rails3/app/script/rails +0 -6
- data/features/fixtures/rails4/.dockerignore +0 -1
- data/features/fixtures/rails4/Dockerfile +0 -17
- data/features/fixtures/rails4/app/.gitignore +0 -16
- data/features/fixtures/rails4/app/Gemfile +0 -46
- data/features/fixtures/rails4/app/README.rdoc +0 -28
- data/features/fixtures/rails4/app/Rakefile +0 -6
- data/features/fixtures/rails4/app/app/assets/images/.keep +0 -0
- data/features/fixtures/rails4/app/app/assets/javascripts/application.js +0 -16
- data/features/fixtures/rails4/app/app/assets/stylesheets/application.css +0 -13
- data/features/fixtures/rails4/app/app/controllers/api_key_controller.rb +0 -20
- data/features/fixtures/rails4/app/app/controllers/app_type_controller.rb +0 -20
- data/features/fixtures/rails4/app/app/controllers/app_version_controller.rb +0 -25
- data/features/fixtures/rails4/app/app/controllers/application_controller.rb +0 -7
- data/features/fixtures/rails4/app/app/controllers/auto_notify_controller.rb +0 -31
- data/features/fixtures/rails4/app/app/controllers/before_notify_controller.rb +0 -44
- data/features/fixtures/rails4/app/app/controllers/breadcrumbs_controller.rb +0 -26
- data/features/fixtures/rails4/app/app/controllers/concerns/.keep +0 -0
- data/features/fixtures/rails4/app/app/controllers/devise_controller.rb +0 -32
- data/features/fixtures/rails4/app/app/controllers/handled_controller.rb +0 -26
- data/features/fixtures/rails4/app/app/controllers/ignore_classes_controller.rb +0 -23
- data/features/fixtures/rails4/app/app/controllers/metadata_filters_controller.rb +0 -16
- data/features/fixtures/rails4/app/app/controllers/mongo_controller.rb +0 -23
- data/features/fixtures/rails4/app/app/controllers/project_root_controller.rb +0 -25
- data/features/fixtures/rails4/app/app/controllers/release_stage_controller.rb +0 -20
- data/features/fixtures/rails4/app/app/controllers/send_code_controller.rb +0 -20
- data/features/fixtures/rails4/app/app/controllers/send_environment_controller.rb +0 -12
- data/features/fixtures/rails4/app/app/controllers/session_tracking_controller.rb +0 -24
- data/features/fixtures/rails4/app/app/controllers/unhandled_controller.rb +0 -11
- data/features/fixtures/rails4/app/app/helpers/application_helper.rb +0 -2
- data/features/fixtures/rails4/app/app/jobs/application_job.rb +0 -2
- data/features/fixtures/rails4/app/app/jobs/notify_job.rb +0 -5
- 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/mongo_model.rb +0 -6
- data/features/fixtures/rails4/app/app/models/user.rb +0 -6
- data/features/fixtures/rails4/app/app/views/layouts/application.html.erb +0 -14
- data/features/fixtures/rails4/app/config/application.rb +0 -23
- data/features/fixtures/rails4/app/config/boot.rb +0 -4
- data/features/fixtures/rails4/app/config/database.yml +0 -31
- data/features/fixtures/rails4/app/config/environment.rb +0 -5
- data/features/fixtures/rails4/app/config/environments/development.rb +0 -31
- data/features/fixtures/rails4/app/config/environments/production.rb +0 -81
- data/features/fixtures/rails4/app/config/environments/rails_env.rb +0 -30
- data/features/fixtures/rails4/app/config/environments/test.rb +0 -31
- data/features/fixtures/rails4/app/config/initializers/backtrace_silencers.rb +0 -7
- data/features/fixtures/rails4/app/config/initializers/bugsnag.rb +0 -29
- data/features/fixtures/rails4/app/config/initializers/devise.rb +0 -283
- data/features/fixtures/rails4/app/config/initializers/filter_parameter_logging.rb +0 -5
- data/features/fixtures/rails4/app/config/initializers/inflections.rb +0 -16
- data/features/fixtures/rails4/app/config/initializers/mime_types.rb +0 -5
- data/features/fixtures/rails4/app/config/initializers/secret_token.rb +0 -12
- data/features/fixtures/rails4/app/config/initializers/session_store.rb +0 -3
- data/features/fixtures/rails4/app/config/initializers/wrap_parameters.rb +0 -14
- data/features/fixtures/rails4/app/config/locales/devise.en.yml +0 -64
- data/features/fixtures/rails4/app/config/locales/en.yml +0 -23
- data/features/fixtures/rails4/app/config/mongoid.yml +0 -22
- data/features/fixtures/rails4/app/config/routes.rb +0 -21
- data/features/fixtures/rails4/app/config.ru +0 -4
- data/features/fixtures/rails4/app/db/migrate/20180420160315_devise_create_users.rb +0 -47
- data/features/fixtures/rails4/app/db/seeds.rb +0 -7
- 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 +0 -58
- data/features/fixtures/rails4/app/public/422.html +0 -58
- data/features/fixtures/rails4/app/public/500.html +0 -57
- data/features/fixtures/rails4/app/public/favicon.ico +0 -0
- data/features/fixtures/rails4/app/public/robots.txt +0 -5
- 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 +0 -15
- data/features/fixtures/rails5/.dockerignore +0 -1
- data/features/fixtures/rails5/Dockerfile +0 -17
- data/features/fixtures/rails5/app/.gitignore +0 -21
- data/features/fixtures/rails5/app/Gemfile +0 -52
- data/features/fixtures/rails5/app/README.md +0 -24
- data/features/fixtures/rails5/app/Rakefile +0 -6
- data/features/fixtures/rails5/app/app/assets/config/manifest.js +0 -3
- data/features/fixtures/rails5/app/app/assets/images/.keep +0 -0
- data/features/fixtures/rails5/app/app/assets/javascripts/application.js +0 -16
- data/features/fixtures/rails5/app/app/assets/javascripts/cable.js +0 -13
- data/features/fixtures/rails5/app/app/assets/javascripts/channels/.keep +0 -0
- data/features/fixtures/rails5/app/app/assets/stylesheets/application.css +0 -15
- data/features/fixtures/rails5/app/app/channels/application_cable/channel.rb +0 -4
- data/features/fixtures/rails5/app/app/channels/application_cable/connection.rb +0 -4
- data/features/fixtures/rails5/app/app/controllers/api_key_controller.rb +0 -16
- data/features/fixtures/rails5/app/app/controllers/app_type_controller.rb +0 -16
- data/features/fixtures/rails5/app/app/controllers/app_version_controller.rb +0 -21
- data/features/fixtures/rails5/app/app/controllers/application_controller.rb +0 -7
- data/features/fixtures/rails5/app/app/controllers/auto_notify_controller.rb +0 -27
- data/features/fixtures/rails5/app/app/controllers/before_notify_controller.rb +0 -40
- data/features/fixtures/rails5/app/app/controllers/breadcrumbs_controller.rb +0 -24
- data/features/fixtures/rails5/app/app/controllers/clearance_controller.rb +0 -33
- data/features/fixtures/rails5/app/app/controllers/concerns/.keep +0 -0
- data/features/fixtures/rails5/app/app/controllers/handled_controller.rb +0 -22
- data/features/fixtures/rails5/app/app/controllers/ignore_classes_controller.rb +0 -19
- data/features/fixtures/rails5/app/app/controllers/metadata_filters_controller.rb +0 -12
- data/features/fixtures/rails5/app/app/controllers/mongo_controller.rb +0 -22
- data/features/fixtures/rails5/app/app/controllers/project_root_controller.rb +0 -21
- data/features/fixtures/rails5/app/app/controllers/release_stage_controller.rb +0 -16
- data/features/fixtures/rails5/app/app/controllers/send_code_controller.rb +0 -16
- data/features/fixtures/rails5/app/app/controllers/send_environment_controller.rb +0 -8
- data/features/fixtures/rails5/app/app/controllers/session_tracking_controller.rb +0 -20
- data/features/fixtures/rails5/app/app/controllers/unhandled_controller.rb +0 -7
- data/features/fixtures/rails5/app/app/helpers/application_helper.rb +0 -2
- data/features/fixtures/rails5/app/app/jobs/application_job.rb +0 -2
- data/features/fixtures/rails5/app/app/jobs/notify_job.rb +0 -5
- data/features/fixtures/rails5/app/app/mailers/application_mailer.rb +0 -4
- data/features/fixtures/rails5/app/app/models/application_record.rb +0 -3
- data/features/fixtures/rails5/app/app/models/concerns/.keep +0 -0
- data/features/fixtures/rails5/app/app/models/mongo_model.rb +0 -6
- data/features/fixtures/rails5/app/app/models/user.rb +0 -3
- data/features/fixtures/rails5/app/app/views/layouts/application.html.erb +0 -14
- data/features/fixtures/rails5/app/app/views/layouts/mailer.html.erb +0 -13
- data/features/fixtures/rails5/app/app/views/layouts/mailer.text.erb +0 -1
- data/features/fixtures/rails5/app/config/application.rb +0 -15
- data/features/fixtures/rails5/app/config/boot.rb +0 -3
- data/features/fixtures/rails5/app/config/cable.yml +0 -9
- data/features/fixtures/rails5/app/config/database.yml +0 -29
- data/features/fixtures/rails5/app/config/environment.rb +0 -5
- data/features/fixtures/rails5/app/config/environments/development.rb +0 -55
- data/features/fixtures/rails5/app/config/environments/production.rb +0 -87
- data/features/fixtures/rails5/app/config/environments/rails_env.rb +0 -55
- data/features/fixtures/rails5/app/config/environments/test.rb +0 -55
- data/features/fixtures/rails5/app/config/initializers/assets.rb +0 -11
- data/features/fixtures/rails5/app/config/initializers/backtrace_silencers.rb +0 -7
- data/features/fixtures/rails5/app/config/initializers/bugsnag.rb +0 -29
- data/features/fixtures/rails5/app/config/initializers/clearance.rb +0 -5
- data/features/fixtures/rails5/app/config/initializers/cookies_serializer.rb +0 -5
- data/features/fixtures/rails5/app/config/initializers/filter_parameter_logging.rb +0 -5
- data/features/fixtures/rails5/app/config/initializers/inflections.rb +0 -16
- data/features/fixtures/rails5/app/config/initializers/mime_types.rb +0 -4
- data/features/fixtures/rails5/app/config/initializers/new_framework_defaults.rb +0 -24
- data/features/fixtures/rails5/app/config/initializers/session_store.rb +0 -3
- data/features/fixtures/rails5/app/config/initializers/wrap_parameters.rb +0 -14
- data/features/fixtures/rails5/app/config/locales/devise.en.yml +0 -64
- data/features/fixtures/rails5/app/config/locales/en.yml +0 -23
- data/features/fixtures/rails5/app/config/mongoid.yml +0 -23
- data/features/fixtures/rails5/app/config/puma.rb +0 -47
- data/features/fixtures/rails5/app/config/routes.rb +0 -62
- data/features/fixtures/rails5/app/config/secrets.yml +0 -25
- data/features/fixtures/rails5/app/config/spring.rb +0 -6
- data/features/fixtures/rails5/app/config.ru +0 -5
- data/features/fixtures/rails5/app/db/migrate/20180426095545_create_users.rb +0 -17
- data/features/fixtures/rails5/app/db/schema.rb +0 -29
- data/features/fixtures/rails5/app/db/seeds.rb +0 -7
- 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 +0 -67
- data/features/fixtures/rails5/app/public/422.html +0 -67
- data/features/fixtures/rails5/app/public/500.html +0 -66
- 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 +0 -5
- 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 +0 -10
- data/features/fixtures/rails5/app/tmp/.keep +0 -0
- data/features/fixtures/rails6/.dockerignore +0 -1
- data/features/fixtures/rails6/Dockerfile +0 -26
- data/features/fixtures/rails6/app/.browserslistrc +0 -1
- data/features/fixtures/rails6/app/.gitignore +0 -35
- data/features/fixtures/rails6/app/.ruby-version +0 -1
- data/features/fixtures/rails6/app/Gemfile +0 -58
- data/features/fixtures/rails6/app/README.md +0 -24
- data/features/fixtures/rails6/app/Rakefile +0 -6
- data/features/fixtures/rails6/app/app/assets/config/manifest.js +0 -2
- data/features/fixtures/rails6/app/app/assets/images/.keep +0 -0
- data/features/fixtures/rails6/app/app/assets/stylesheets/application.css +0 -15
- data/features/fixtures/rails6/app/app/channels/application_cable/channel.rb +0 -4
- data/features/fixtures/rails6/app/app/channels/application_cable/connection.rb +0 -4
- data/features/fixtures/rails6/app/app/controllers/api_key_controller.rb +0 -16
- data/features/fixtures/rails6/app/app/controllers/app_type_controller.rb +0 -16
- data/features/fixtures/rails6/app/app/controllers/app_version_controller.rb +0 -21
- data/features/fixtures/rails6/app/app/controllers/application_controller.rb +0 -7
- data/features/fixtures/rails6/app/app/controllers/auto_notify_controller.rb +0 -27
- data/features/fixtures/rails6/app/app/controllers/before_notify_controller.rb +0 -40
- data/features/fixtures/rails6/app/app/controllers/breadcrumbs_controller.rb +0 -24
- data/features/fixtures/rails6/app/app/controllers/clearance_controller.rb +0 -33
- data/features/fixtures/rails6/app/app/controllers/concerns/.keep +0 -0
- data/features/fixtures/rails6/app/app/controllers/handled_controller.rb +0 -22
- data/features/fixtures/rails6/app/app/controllers/ignore_classes_controller.rb +0 -19
- data/features/fixtures/rails6/app/app/controllers/metadata_filters_controller.rb +0 -12
- data/features/fixtures/rails6/app/app/controllers/mongo_controller.rb +0 -22
- data/features/fixtures/rails6/app/app/controllers/project_root_controller.rb +0 -21
- data/features/fixtures/rails6/app/app/controllers/release_stage_controller.rb +0 -16
- data/features/fixtures/rails6/app/app/controllers/send_code_controller.rb +0 -16
- data/features/fixtures/rails6/app/app/controllers/send_environment_controller.rb +0 -8
- data/features/fixtures/rails6/app/app/controllers/session_tracking_controller.rb +0 -20
- data/features/fixtures/rails6/app/app/controllers/unhandled_controller.rb +0 -7
- data/features/fixtures/rails6/app/app/helpers/application_helper.rb +0 -2
- data/features/fixtures/rails6/app/app/javascript/channels/consumer.js +0 -6
- data/features/fixtures/rails6/app/app/javascript/channels/index.js +0 -5
- data/features/fixtures/rails6/app/app/javascript/packs/application.js +0 -9
- data/features/fixtures/rails6/app/app/jobs/application_job.rb +0 -7
- data/features/fixtures/rails6/app/app/jobs/notify_job.rb +0 -5
- data/features/fixtures/rails6/app/app/mailers/application_mailer.rb +0 -4
- data/features/fixtures/rails6/app/app/models/application_record.rb +0 -3
- data/features/fixtures/rails6/app/app/models/concerns/.keep +0 -0
- data/features/fixtures/rails6/app/app/models/mongo_model.rb +0 -6
- data/features/fixtures/rails6/app/app/models/user.rb +0 -3
- data/features/fixtures/rails6/app/app/views/layouts/application.html.erb +0 -15
- data/features/fixtures/rails6/app/app/views/layouts/mailer.html.erb +0 -13
- data/features/fixtures/rails6/app/app/views/layouts/mailer.text.erb +0 -1
- data/features/fixtures/rails6/app/babel.config.js +0 -70
- data/features/fixtures/rails6/app/config/application.rb +0 -19
- data/features/fixtures/rails6/app/config/boot.rb +0 -4
- data/features/fixtures/rails6/app/config/cable.yml +0 -13
- data/features/fixtures/rails6/app/config/credentials.yml.enc +0 -1
- data/features/fixtures/rails6/app/config/database.yml +0 -29
- data/features/fixtures/rails6/app/config/environment.rb +0 -5
- data/features/fixtures/rails6/app/config/environments/development.rb +0 -64
- data/features/fixtures/rails6/app/config/environments/production.rb +0 -113
- data/features/fixtures/rails6/app/config/environments/rails_env.rb +0 -56
- data/features/fixtures/rails6/app/config/environments/test.rb +0 -48
- data/features/fixtures/rails6/app/config/initializers/application_controller_renderer.rb +0 -8
- data/features/fixtures/rails6/app/config/initializers/assets.rb +0 -14
- data/features/fixtures/rails6/app/config/initializers/backtrace_silencers.rb +0 -7
- data/features/fixtures/rails6/app/config/initializers/bugsnag.rb +0 -29
- data/features/fixtures/rails6/app/config/initializers/content_security_policy.rb +0 -27
- data/features/fixtures/rails6/app/config/initializers/cookies_serializer.rb +0 -5
- data/features/fixtures/rails6/app/config/initializers/filter_parameter_logging.rb +0 -5
- data/features/fixtures/rails6/app/config/initializers/inflections.rb +0 -16
- data/features/fixtures/rails6/app/config/initializers/mime_types.rb +0 -4
- data/features/fixtures/rails6/app/config/initializers/wrap_parameters.rb +0 -14
- data/features/fixtures/rails6/app/config/locales/en.yml +0 -33
- data/features/fixtures/rails6/app/config/mongoid.yml +0 -23
- data/features/fixtures/rails6/app/config/puma.rb +0 -35
- data/features/fixtures/rails6/app/config/routes.rb +0 -62
- data/features/fixtures/rails6/app/config/secrets.yml +0 -25
- data/features/fixtures/rails6/app/config/spring.rb +0 -6
- data/features/fixtures/rails6/app/config/storage.yml +0 -34
- data/features/fixtures/rails6/app/config/webpack/development.js +0 -5
- data/features/fixtures/rails6/app/config/webpack/environment.js +0 -3
- data/features/fixtures/rails6/app/config/webpack/production.js +0 -5
- data/features/fixtures/rails6/app/config/webpack/rails_env.js +0 -5
- data/features/fixtures/rails6/app/config/webpack/test.js +0 -5
- data/features/fixtures/rails6/app/config/webpacker.yml +0 -121
- data/features/fixtures/rails6/app/config.ru +0 -5
- data/features/fixtures/rails6/app/db/migrate/20180426095545_create_users.rb +0 -17
- data/features/fixtures/rails6/app/db/schema.rb +0 -29
- data/features/fixtures/rails6/app/db/seeds.rb +0 -7
- data/features/fixtures/rails6/app/lib/assets/.keep +0 -0
- data/features/fixtures/rails6/app/lib/tasks/.keep +0 -0
- data/features/fixtures/rails6/app/log/.keep +0 -0
- data/features/fixtures/rails6/app/package.json +0 -15
- data/features/fixtures/rails6/app/postcss.config.js +0 -12
- data/features/fixtures/rails6/app/public/404.html +0 -67
- data/features/fixtures/rails6/app/public/422.html +0 -67
- data/features/fixtures/rails6/app/public/500.html +0 -66
- data/features/fixtures/rails6/app/public/apple-touch-icon-precomposed.png +0 -0
- data/features/fixtures/rails6/app/public/apple-touch-icon.png +0 -0
- data/features/fixtures/rails6/app/public/favicon.ico +0 -0
- data/features/fixtures/rails6/app/public/robots.txt +0 -1
- data/features/fixtures/rails6/app/storage/.keep +0 -0
- data/features/fixtures/rails6/app/test/application_system_test_case.rb +0 -5
- data/features/fixtures/rails6/app/test/channels/application_cable/connection_test.rb +0 -11
- data/features/fixtures/rails6/app/test/controllers/.keep +0 -0
- data/features/fixtures/rails6/app/test/fixtures/.keep +0 -0
- data/features/fixtures/rails6/app/test/fixtures/files/.keep +0 -0
- data/features/fixtures/rails6/app/test/helpers/.keep +0 -0
- data/features/fixtures/rails6/app/test/integration/.keep +0 -0
- data/features/fixtures/rails6/app/test/mailers/.keep +0 -0
- data/features/fixtures/rails6/app/test/models/.keep +0 -0
- data/features/fixtures/rails6/app/test/system/.keep +0 -0
- data/features/fixtures/rails6/app/test/test_helper.rb +0 -13
- data/features/fixtures/rails6/app/tmp/.keep +0 -0
- data/features/fixtures/rails6/app/yarn.lock +0 -6082
- data/features/fixtures/resque/.dockerignore +0 -1
- data/features/fixtures/resque/Dockerfile +0 -14
- data/features/fixtures/resque/Gemfile +0 -6
- data/features/fixtures/resque/Rakefile +0 -4
- data/features/fixtures/resque/app.rb +0 -12
- data/features/fixtures/sidekiq/.dockerignore +0 -2
- data/features/fixtures/sidekiq/Dockerfile +0 -17
- data/features/fixtures/sidekiq/app/Gemfile +0 -7
- data/features/fixtures/sidekiq/app/Rakefile.rb +0 -14
- data/features/fixtures/sidekiq/app/app.rb +0 -35
- data/features/fixtures/sidekiq/app/initializers/HandledError.rb +0 -3
- data/features/fixtures/sidekiq/app/initializers/UnhandledError.rb +0 -3
- data/features/fixtures/sidekiq/payloads/handled_metadata_ca_false.json +0 -11
- data/features/fixtures/sidekiq/payloads/handled_metadata_ca_true.json +0 -12
- data/features/fixtures/sidekiq/payloads/unhandled_metadata_ca_false.json +0 -11
- data/features/fixtures/sidekiq/payloads/unhandled_metadata_ca_true.json +0 -12
- data/features/fixtures/sinatra1/.dockerignore +0 -1
- data/features/fixtures/sinatra1/Dockerfile +0 -13
- data/features/fixtures/sinatra1/Gemfile +0 -4
- data/features/fixtures/sinatra1/app.rb +0 -9
- data/features/fixtures/sinatra2/.dockerignore +0 -1
- data/features/fixtures/sinatra2/Dockerfile +0 -13
- data/features/fixtures/sinatra2/Gemfile +0 -4
- data/features/fixtures/sinatra2/app.rb +0 -9
- data/features/plain_features/add_tab.feature +0 -55
- data/features/plain_features/app_type.feature +0 -8
- data/features/plain_features/app_version.feature +0 -8
- data/features/plain_features/auto_notify.feature +0 -7
- data/features/plain_features/delivery.feature +0 -20
- data/features/plain_features/exception_data.feature +0 -50
- data/features/plain_features/filters.feature +0 -14
- data/features/plain_features/handled_errors.feature +0 -42
- data/features/plain_features/ignore_classes.feature +0 -11
- data/features/plain_features/ignore_report.feature +0 -14
- data/features/plain_features/proxies.feature +0 -25
- data/features/plain_features/release_stages.feature +0 -20
- data/features/plain_features/report_api_key.feature +0 -16
- data/features/plain_features/report_severity.feature +0 -17
- data/features/plain_features/report_stack_frames.feature +0 -53
- data/features/plain_features/report_user.feature +0 -51
- data/features/plain_features/unhandled_errors.feature +0 -33
- data/features/rails_features/api_key.feature +0 -15
- data/features/rails_features/app_type.feature +0 -24
- data/features/rails_features/app_version.feature +0 -26
- data/features/rails_features/auto_capture_sessions.feature +0 -34
- data/features/rails_features/auto_notify.feature +0 -41
- data/features/rails_features/before_notify.feature +0 -44
- data/features/rails_features/breadcrumbs.feature +0 -43
- data/features/rails_features/handled.feature +0 -42
- data/features/rails_features/ignore_classes.feature +0 -14
- data/features/rails_features/meta_data_filters.feature +0 -16
- data/features/rails_features/mongo_breadcrumbs.feature +0 -26
- data/features/rails_features/on_error.feature +0 -29
- data/features/rails_features/project_root.feature +0 -35
- data/features/rails_features/release_stage.feature +0 -27
- data/features/rails_features/send_code.feature +0 -18
- data/features/rails_features/send_environment.feature +0 -13
- data/features/rails_features/unhandled.feature +0 -16
- data/features/rails_features/user_info.feature +0 -52
- data/features/sidekiq.feature +0 -30
- data/features/steps/ruby_notifier_steps.rb +0 -75
- data/features/support/env.rb +0 -23
- data/issue_template.md +0 -48
- data/spec/breadcrumbs/breadcrumb_spec.rb +0 -93
- data/spec/breadcrumbs/validator_spec.rb +0 -176
- data/spec/bugsnag_spec.rb +0 -366
- data/spec/cleaner_spec.rb +0 -350
- data/spec/code_extractor_spec.rb +0 -129
- data/spec/configuration_spec.rb +0 -445
- data/spec/fixtures/apps/rails-initializer-config/Gemfile +0 -9
- data/spec/fixtures/apps/rails-initializer-config/config/initializers/bugsnag.rb +0 -3
- data/spec/fixtures/apps/rails-initializer-config/config.ru +0 -16
- data/spec/fixtures/apps/rails-invalid-initializer-config/Gemfile +0 -9
- data/spec/fixtures/apps/rails-invalid-initializer-config/config/initializers/bugsnag.rb +0 -3
- data/spec/fixtures/apps/rails-invalid-initializer-config/config.ru +0 -16
- data/spec/fixtures/apps/rails-no-config/Gemfile +0 -9
- data/spec/fixtures/apps/rails-no-config/config.ru +0 -16
- data/spec/fixtures/apps/scripts/Gemfile +0 -3
- data/spec/fixtures/apps/scripts/configure_invalid_key.rb +0 -5
- data/spec/fixtures/apps/scripts/configure_key.rb +0 -5
- data/spec/fixtures/apps/scripts/no_config.rb +0 -3
- data/spec/fixtures/crashes/end_of_file.rb +0 -9
- data/spec/fixtures/crashes/file1.rb +0 -29
- data/spec/fixtures/crashes/file2.rb +0 -25
- data/spec/fixtures/crashes/file_with_long_lines.rb +0 -7
- data/spec/fixtures/crashes/functions.rb +0 -29
- data/spec/fixtures/crashes/short_file.rb +0 -3
- data/spec/fixtures/crashes/start_of_file.rb +0 -9
- data/spec/fixtures/middleware/internal_info_setter.rb +0 -11
- data/spec/fixtures/middleware/public_info_setter.rb +0 -11
- data/spec/fixtures/tasks/Rakefile +0 -26
- data/spec/helper_spec.rb +0 -131
- data/spec/integration_spec.rb +0 -107
- data/spec/integrations/clearance_user_spec.rb +0 -38
- data/spec/integrations/logger_spec.rb +0 -134
- data/spec/integrations/mailman_spec.rb +0 -83
- data/spec/integrations/mongo_spec.rb +0 -262
- data/spec/integrations/que_spec.rb +0 -94
- data/spec/integrations/rack_spec.rb +0 -232
- data/spec/integrations/rails3_request_spec.rb +0 -67
- data/spec/integrations/rake_spec.rb +0 -71
- data/spec/integrations/resque_spec.rb +0 -99
- data/spec/integrations/shoryuken_spec.rb +0 -70
- data/spec/integrations/sidekiq_spec.rb +0 -137
- data/spec/integrations/warden_user_spec.rb +0 -41
- data/spec/middleware/exception_meta_data_spec.rb +0 -104
- data/spec/middleware_spec.rb +0 -254
- data/spec/middleware_stack_spec.rb +0 -151
- data/spec/on_error_spec.rb +0 -332
- data/spec/report_spec.rb +0 -1583
- data/spec/session_tracker_spec.rb +0 -156
- data/spec/spec_helper.rb +0 -99
- data/spec/stacktrace_spec.rb +0 -443
- data/spec/utility/circular_buffer_spec.rb +0 -98
@@ -1,51 +0,0 @@
|
|
1
|
-
Feature: Plain report modify user
|
2
|
-
|
3
|
-
Scenario Outline: A report can have a user name, email, and id set
|
4
|
-
Given I set environment variable "CALLBACK_INITIATOR" to "<initiator>"
|
5
|
-
When I run the service "plain-ruby" with the command "bundle exec ruby report_modification/set_user_details.rb"
|
6
|
-
And I wait to receive a request
|
7
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
8
|
-
And the event "user.name" equals "leo testman"
|
9
|
-
And the event "user.email" equals "test@test.com"
|
10
|
-
And the event "user.id" equals "0001"
|
11
|
-
|
12
|
-
Examples:
|
13
|
-
| initiator |
|
14
|
-
| handled_before_notify |
|
15
|
-
| handled_block |
|
16
|
-
| unhandled_before_notify |
|
17
|
-
| handled_on_error |
|
18
|
-
| unhandled_on_error |
|
19
|
-
|
20
|
-
Scenario Outline: A report can have custom info set
|
21
|
-
Given I set environment variable "CALLBACK_INITIATOR" to "<initiator>"
|
22
|
-
And I run the service "plain-ruby" with the command "bundle exec ruby report_modification/set_custom_user_details.rb"
|
23
|
-
And I wait to receive a request
|
24
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
25
|
-
And the event "user.type" equals "amateur"
|
26
|
-
And the event "user.location" equals "testville"
|
27
|
-
And the event "user.details.a" equals "foo"
|
28
|
-
And the event "user.details.b" equals "bar"
|
29
|
-
|
30
|
-
Examples:
|
31
|
-
| initiator |
|
32
|
-
| handled_before_notify |
|
33
|
-
| handled_block |
|
34
|
-
| unhandled_before_notify |
|
35
|
-
| handled_on_error |
|
36
|
-
| unhandled_on_error |
|
37
|
-
|
38
|
-
Scenario Outline: A report can have its user info removed
|
39
|
-
Given I set environment variable "CALLBACK_INITIATOR" to "<initiator>"
|
40
|
-
When I run the service "plain-ruby" with the command "bundle exec ruby report_modification/remove_user_details.rb"
|
41
|
-
And I wait to receive a request
|
42
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
43
|
-
And the event "user" is null
|
44
|
-
|
45
|
-
Examples:
|
46
|
-
| initiator |
|
47
|
-
| handled_before_notify |
|
48
|
-
| handled_block |
|
49
|
-
| unhandled_before_notify |
|
50
|
-
| handled_on_error |
|
51
|
-
| unhandled_on_error |
|
@@ -1,33 +0,0 @@
|
|
1
|
-
Feature: Plain unhandled errors
|
2
|
-
|
3
|
-
Scenario Outline: An unhandled error sends a report
|
4
|
-
Given I run the service "plain-ruby" with the command "bundle exec ruby unhandled/<file>.rb"
|
5
|
-
And I wait to receive a request
|
6
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
7
|
-
And the event "unhandled" is true
|
8
|
-
And the event "severity" equals "error"
|
9
|
-
And the event "severityReason.type" equals "unhandledException"
|
10
|
-
And the exception "errorClass" equals "<error>"
|
11
|
-
And the "file" of stack frame 0 equals "/usr/src/app/unhandled/<file>.rb"
|
12
|
-
And the "lineNumber" of stack frame 0 equals <lineNumber>
|
13
|
-
|
14
|
-
Examples:
|
15
|
-
| file | error | lineNumber |
|
16
|
-
| runtime_error | RuntimeError | 6 |
|
17
|
-
| load_error | LoadError | 6 |
|
18
|
-
| syntax_error | SyntaxError | 6 |
|
19
|
-
| local_jump_error | LocalJumpError | 7 |
|
20
|
-
| name_error | NameError | 6 |
|
21
|
-
| no_method_error | NoMethodError | 6 |
|
22
|
-
| system_call_error | Errno::ENOENT | 6 |
|
23
|
-
| custom_error | CustomError | 9 |
|
24
|
-
|
25
|
-
Scenario Outline: An unhandled error doesn't send a report
|
26
|
-
When I run the service "plain-ruby" with the command "bundle exec ruby unhandled/<file>.rb"
|
27
|
-
And I wait for 1 second
|
28
|
-
Then I should receive no requests
|
29
|
-
|
30
|
-
Examples:
|
31
|
-
| file |
|
32
|
-
| interrupt |
|
33
|
-
| system_exit |
|
@@ -1,15 +0,0 @@
|
|
1
|
-
Feature: API key
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Setting api_key in environment variable works
|
5
|
-
Given I start the rails service
|
6
|
-
When I navigate to the route "/api_key/environment" on the rails app
|
7
|
-
And I wait to receive a request
|
8
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
9
|
-
|
10
|
-
@rails3 @rails4 @rails5 @rails6
|
11
|
-
Scenario Outline: Changing api_key after initializer works
|
12
|
-
Given I start the rails service
|
13
|
-
When I navigate to the route "/api_key/changing?api_key=c35a2a72bd230ac0aa0f52715bbdc6ac" on the rails app
|
14
|
-
And I wait to receive a request
|
15
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
@@ -1,24 +0,0 @@
|
|
1
|
-
Feature: App type configuration
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Setting app_type in initializer works
|
5
|
-
Given I set environment variable "BUGSNAG_APP_TYPE" to "custom_app_type"
|
6
|
-
And I start the rails service
|
7
|
-
When I navigate to the route "/app_type/initializer" on the rails app
|
8
|
-
And I wait to receive a request
|
9
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
10
|
-
And the exception "errorClass" equals "RuntimeError"
|
11
|
-
And the exception "message" starts with "handled string"
|
12
|
-
And the event "metaData.request.url" ends with "/app_type/initializer"
|
13
|
-
And the event "app.type" equals "custom_app_type"
|
14
|
-
|
15
|
-
@rails3 @rails4 @rails5 @rails6
|
16
|
-
Scenario: Changing app_type after initializer works
|
17
|
-
Given I start the rails service
|
18
|
-
When I navigate to the route "/app_type/after?type=maze_after_initializer" on the rails app
|
19
|
-
And I wait to receive a request
|
20
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
21
|
-
And the exception "errorClass" equals "RuntimeError"
|
22
|
-
And the exception "message" starts with "handled string"
|
23
|
-
And the event "metaData.request.url" ends with "/app_type/after?type=maze_after_initializer"
|
24
|
-
And the event "app.type" equals "maze_after_initializer"
|
@@ -1,26 +0,0 @@
|
|
1
|
-
Feature: App version configuration
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: App_version is nil by default
|
5
|
-
Given I start the rails service
|
6
|
-
When I navigate to the route "/app_version/default" on the rails app
|
7
|
-
And I wait to receive a request
|
8
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
9
|
-
And the event "app.version" is null
|
10
|
-
|
11
|
-
@rails3 @rails4 @rails5 @rails6
|
12
|
-
Scenario: Setting app_version in initializer works
|
13
|
-
Given I set environment variable "BUGSNAG_APP_VERSION" to "1.0.0"
|
14
|
-
And I start the rails service
|
15
|
-
When I navigate to the route "/app_version/initializer" on the rails app
|
16
|
-
And I wait to receive a request
|
17
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
18
|
-
And the event "app.version" equals "1.0.0"
|
19
|
-
|
20
|
-
@rails3 @rails4 @rails5 @rails6
|
21
|
-
Scenario: Setting app_version after initializer works
|
22
|
-
Given I start the rails service
|
23
|
-
When I navigate to the route "/app_version/after?version=1.1.0" on the rails app
|
24
|
-
And I wait to receive a request
|
25
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
26
|
-
And the event "app.version" equals "1.1.0"
|
@@ -1,34 +0,0 @@
|
|
1
|
-
Feature: Auto capture sessions
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Auto_capture_sessions defaults to true
|
5
|
-
Given I set environment variable "USE_DEFAULT_AUTO_CAPTURE_SESSIONS" to "true"
|
6
|
-
And I start the rails service
|
7
|
-
When I navigate to the route "/session_tracking/initializer" on the rails app
|
8
|
-
And I wait to receive a request
|
9
|
-
Then the request is valid for the session reporting API version "1.0" for the "Ruby Bugsnag Notifier" notifier
|
10
|
-
|
11
|
-
@rails3 @rails4 @rails5 @rails6
|
12
|
-
Scenario: Auto_capture_sessions can be set to false in the initializer
|
13
|
-
Given I set environment variable "BUGSNAG_AUTO_CAPTURE_SESSIONS" to "false"
|
14
|
-
And I start the rails service
|
15
|
-
When I navigate to the route "/session_tracking/initializer" on the rails app
|
16
|
-
And I wait for 3 seconds
|
17
|
-
Then I should receive no requests
|
18
|
-
|
19
|
-
@rails3 @rails4 @rails5 @rails6
|
20
|
-
Scenario: Manual sessions are still sent if Auto_capture_sessions is false
|
21
|
-
Given I set environment variable "BUGSNAG_AUTO_CAPTURE_SESSIONS" to "false"
|
22
|
-
And I start the rails service
|
23
|
-
When I navigate to the route "/session_tracking/manual" on the rails app
|
24
|
-
And I wait to receive a request
|
25
|
-
Then the request is valid for the session reporting API version "1.0" for the "Ruby Bugsnag Notifier" notifier
|
26
|
-
|
27
|
-
@rails3 @rails4 @rails5 @rails6
|
28
|
-
Scenario: 100 session calls results in 100 sessions
|
29
|
-
Given I set environment variable "BUGSNAG_AUTO_CAPTURE_SESSIONS" to "false"
|
30
|
-
And I start the rails service
|
31
|
-
When I navigate to the route "/session_tracking/multi_sessions" on the rails app
|
32
|
-
And I wait to receive a request
|
33
|
-
Then the request is valid for the session reporting API version "1.0" for the "Ruby Bugsnag Notifier" notifier
|
34
|
-
And the total sessionStarted count equals 100
|
@@ -1,41 +0,0 @@
|
|
1
|
-
Feature: Auto notify
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Auto_notify set to false in the initializer prevents unhandled error sending
|
5
|
-
Given I set environment variable "BUGSNAG_AUTO_NOTIFY" to "false"
|
6
|
-
And I start the rails service
|
7
|
-
When I navigate to the route "/auto_notify/unhandled" on the rails app
|
8
|
-
And I wait for 3 seconds
|
9
|
-
Then I should receive no requests
|
10
|
-
|
11
|
-
@rails3 @rails4 @rails5 @rails6
|
12
|
-
Scenario: Auto_notify set to false in the initializer still sends handled errors
|
13
|
-
Given I set environment variable "BUGSNAG_AUTO_NOTIFY" to "false"
|
14
|
-
And I start the rails service
|
15
|
-
When I navigate to the route "/auto_notify/handled" on the rails app
|
16
|
-
And I wait to receive a request
|
17
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
18
|
-
And the event "unhandled" is false
|
19
|
-
And the exception "errorClass" equals "RuntimeError"
|
20
|
-
And the exception "message" starts with "handled string"
|
21
|
-
And the event "app.type" equals "rails"
|
22
|
-
And the event "metaData.request.url" ends with "/auto_notify/handled"
|
23
|
-
|
24
|
-
@rails3 @rails4 @rails5 @rails6
|
25
|
-
Scenario: Auto_notify set to false after the initializer prevents unhandled error sending
|
26
|
-
Given I start the rails service
|
27
|
-
When I navigate to the route "/auto_notify/unhandled_after" on the rails app
|
28
|
-
And I wait for 3 seconds
|
29
|
-
Then I should receive no requests
|
30
|
-
|
31
|
-
@rails3 @rails4 @rails5 @rails6
|
32
|
-
Scenario: Auto_notify set to false after the initializer still sends handled errors
|
33
|
-
Given I start the rails service
|
34
|
-
When I navigate to the route "/auto_notify/handled_after" on the rails app
|
35
|
-
And I wait to receive a request
|
36
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
37
|
-
And the exception "errorClass" equals "RuntimeError"
|
38
|
-
And the exception "message" starts with "handled string"
|
39
|
-
And the event "unhandled" is false
|
40
|
-
And the event "metaData.request.url" ends with "/auto_notify/handled_after"
|
41
|
-
And the event "app.type" equals "rails"
|
@@ -1,44 +0,0 @@
|
|
1
|
-
Feature: Before notify callbacks
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Rails before_notify controller method works on handled errors
|
5
|
-
Given I start the rails service
|
6
|
-
When I navigate to the route "/before_notify/handled" on the rails app
|
7
|
-
And I wait to receive a request
|
8
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
9
|
-
And the exception "errorClass" equals "RuntimeError"
|
10
|
-
And the exception "message" starts with "handled string"
|
11
|
-
And the event "unhandled" is false
|
12
|
-
And the event "app.type" equals "rails"
|
13
|
-
And the event "metaData.request.url" ends with "/before_notify/handled"
|
14
|
-
And the event "metaData.before_notify.source" equals "rails_before_handled"
|
15
|
-
And the event "metaData.controller.name" equals "BeforeNotifyController"
|
16
|
-
|
17
|
-
@rails3 @rails4 @rails5 @rails6
|
18
|
-
Scenario: Rails before_notify controller method works on unhandled errors
|
19
|
-
Given I start the rails service
|
20
|
-
When I navigate to the route "/before_notify/unhandled" on the rails app
|
21
|
-
And I wait to receive a request
|
22
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
23
|
-
And the exception "errorClass" equals "NameError"
|
24
|
-
And the exception "message" starts with "undefined local variable or method `generate_unhandled_error' for #<BeforeNotifyController"
|
25
|
-
And the event "unhandled" is true
|
26
|
-
And the event "app.type" equals "rails"
|
27
|
-
And the event "metaData.request.url" ends with "/before_notify/unhandled"
|
28
|
-
And the event "metaData.before_notify.source" equals "rails_before_unhandled"
|
29
|
-
And the event "metaData.controller.name" equals "BeforeNotifyController"
|
30
|
-
|
31
|
-
@rails3 @rails4 @rails5 @rails6
|
32
|
-
Scenario: Inline block on handled errors is called
|
33
|
-
Given I start the rails service
|
34
|
-
When I navigate to the route "/before_notify/inline" on the rails app
|
35
|
-
And I wait to receive a request
|
36
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
37
|
-
And the exception "errorClass" equals "RuntimeError"
|
38
|
-
And the exception "message" starts with "handled string"
|
39
|
-
And the event "unhandled" is false
|
40
|
-
And the event "app.type" equals "rails"
|
41
|
-
And the event "metaData.request.url" ends with "/before_notify/inline"
|
42
|
-
And the event "metaData.before_notify.source" equals "rails_inline"
|
43
|
-
And the event "metaData.controller.name" equals "BeforeNotifyController"
|
44
|
-
|
@@ -1,43 +0,0 @@
|
|
1
|
-
Feature: Rails automatic breadcrumbs
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Request breadcrumb
|
5
|
-
Given I start the rails service
|
6
|
-
When I navigate to the route "/breadcrumbs/handled" on the rails app
|
7
|
-
And I wait to receive a request
|
8
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
9
|
-
And the event contains a breadcrumb matching the JSON fixture in "features/fixtures/expected_breadcrumbs/request.json"
|
10
|
-
|
11
|
-
@rails3 @rails4
|
12
|
-
Scenario: SQL Breadcrumb without bindings
|
13
|
-
Given I set environment variable "SQL_ONLY_BREADCRUMBS" to "true"
|
14
|
-
And I start the rails service
|
15
|
-
When I navigate to the route "/breadcrumbs/sql_breadcrumb" on the rails app
|
16
|
-
And I wait to receive a request
|
17
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
18
|
-
And the event contains a breadcrumb matching the JSON fixture in "features/fixtures/expected_breadcrumbs/sql_without_bindings.json"
|
19
|
-
|
20
|
-
@rails5 @rails6
|
21
|
-
Scenario: SQL Breadcrumb with bindings
|
22
|
-
Given I set environment variable "SQL_ONLY_BREADCRUMBS" to "true"
|
23
|
-
And I start the rails service
|
24
|
-
When I navigate to the route "/breadcrumbs/sql_breadcrumb" on the rails app
|
25
|
-
And I wait to receive a request
|
26
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
27
|
-
And the event contains a breadcrumb matching the JSON fixture in "features/fixtures/expected_breadcrumbs/sql_with_bindings.json"
|
28
|
-
|
29
|
-
@rails4 @rails5 @rails6
|
30
|
-
Scenario: Active job breadcrumb
|
31
|
-
Given I start the rails service
|
32
|
-
When I navigate to the route "/breadcrumbs/active_job" on the rails app
|
33
|
-
And I wait to receive a request
|
34
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
35
|
-
And the event contains a breadcrumb matching the JSON fixture in "features/fixtures/expected_breadcrumbs/active_job.json"
|
36
|
-
|
37
|
-
@rails4 @rails5 @rails6
|
38
|
-
Scenario: Cache read
|
39
|
-
Given I start the rails service
|
40
|
-
When I navigate to the route "/breadcrumbs/cache_read" on the rails app
|
41
|
-
And I wait to receive a request
|
42
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
43
|
-
And the event has a "process" breadcrumb named "Read cache"
|
@@ -1,42 +0,0 @@
|
|
1
|
-
Feature: Rails handled errors
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Unhandled RuntimeError
|
5
|
-
Given I start the rails service
|
6
|
-
When I navigate to the route "/handled/unthrown" on the rails app
|
7
|
-
And I wait to receive a request
|
8
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
9
|
-
And the event "unhandled" is false
|
10
|
-
And the exception "errorClass" equals "RuntimeError"
|
11
|
-
And the exception "message" starts with "handled unthrown error"
|
12
|
-
And the event "app.type" equals "rails"
|
13
|
-
And the event "metaData.request.url" ends with "/handled/unthrown"
|
14
|
-
And the event "severity" equals "warning"
|
15
|
-
And the event "severityReason.type" equals "handledException"
|
16
|
-
|
17
|
-
@rails3 @rails4 @rails5 @rails6
|
18
|
-
Scenario: Thrown handled NameError
|
19
|
-
Given I start the rails service
|
20
|
-
When I navigate to the route "/handled/thrown" on the rails app
|
21
|
-
And I wait to receive a request
|
22
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
23
|
-
And the exception "errorClass" equals "NameError"
|
24
|
-
And the exception "message" starts with "undefined local variable or method `generate_unhandled_error' for #<HandledController"
|
25
|
-
And the event "unhandled" is false
|
26
|
-
And the event "metaData.request.url" ends with "/handled/thrown"
|
27
|
-
And the event "app.type" equals "rails"
|
28
|
-
And the event "severity" equals "warning"
|
29
|
-
And the event "severityReason.type" equals "handledException"
|
30
|
-
|
31
|
-
@rails3 @rails4 @rails5 @rails6
|
32
|
-
Scenario: Manual string notify
|
33
|
-
Given I start the rails service
|
34
|
-
When I navigate to the route "/handled/string_notify" on the rails app
|
35
|
-
And I wait to receive a request
|
36
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
37
|
-
And the exception "errorClass" equals "RuntimeError"
|
38
|
-
And the exception "message" starts with "handled string"
|
39
|
-
And the event "unhandled" is false
|
40
|
-
And the event "metaData.request.url" ends with "/handled/string_notify"
|
41
|
-
And the event "app.type" equals "rails"
|
42
|
-
|
@@ -1,14 +0,0 @@
|
|
1
|
-
Feature: Ignore classes
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Ignore_classes can be set to a different value in initializer
|
5
|
-
Given I set environment variable "BUGSNAG_IGNORE_CLASS" to "IgnoredError"
|
6
|
-
And I start the rails service
|
7
|
-
When I navigate to the route "/ignore_classes/initializer" on the rails app
|
8
|
-
Then I should receive no requests
|
9
|
-
|
10
|
-
@rails3 @rails4 @rails5 @rails6
|
11
|
-
Scenario: Ignore_classes can be set to a different value after initializer
|
12
|
-
Given I start the rails service
|
13
|
-
When I navigate to the route "/ignore_classes/after?ignore=IgnoredError" on the rails app
|
14
|
-
Then I should receive no requests
|
@@ -1,16 +0,0 @@
|
|
1
|
-
Feature: Metadata filters
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Meta_data_filters should include Rails.configuration.filter_parameters
|
5
|
-
Given I start the rails service
|
6
|
-
When I navigate to the route "/metadata_filters/filter?filtered_parameter=foo&other_parameter=bar" on the rails app
|
7
|
-
And I wait to receive a request
|
8
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
9
|
-
And the event "unhandled" is false
|
10
|
-
And the exception "errorClass" equals "RuntimeError"
|
11
|
-
And the exception "message" starts with "handled string"
|
12
|
-
And the event "app.type" equals "rails"
|
13
|
-
And the event "metaData.request.url" ends with "/metadata_filters/filter?filtered_parameter=[FILTERED]&other_parameter=bar"
|
14
|
-
And the event "metaData.my_specific_filter" equals "[FILTERED]"
|
15
|
-
And the event "metaData.request.params.filtered_parameter" equals "[FILTERED]"
|
16
|
-
And the event "metaData.request.params.other_parameter" equals "bar"
|
@@ -1,26 +0,0 @@
|
|
1
|
-
Feature: Mongo automatic breadcrumbs
|
2
|
-
|
3
|
-
@rails4 @rails5 @rails6
|
4
|
-
Scenario: Successful breadcrumbs
|
5
|
-
Given I start the rails service
|
6
|
-
When I navigate to the route "/mongo/success_crash" on the rails app
|
7
|
-
And I wait to receive a request
|
8
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
9
|
-
And the event contains a breadcrumb matching the JSON fixture in "features/fixtures/expected_breadcrumbs/mongo_success.json"
|
10
|
-
|
11
|
-
@rails4 @rails5 @rails6
|
12
|
-
Scenario: Breadcrumb with filter parameters
|
13
|
-
Given I start the rails service
|
14
|
-
When I navigate to the route "/mongo/get_crash" on the rails app
|
15
|
-
And I wait to receive a request
|
16
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
17
|
-
And the event contains a breadcrumb matching the JSON fixture in "features/fixtures/expected_breadcrumbs/mongo_filtered_request.json"
|
18
|
-
And the event contains a breadcrumb matching the JSON fixture in "features/fixtures/expected_breadcrumbs/mongo_filtered_result.json"
|
19
|
-
|
20
|
-
@rails4 @rails5 @rails6
|
21
|
-
Scenario: Failure breadcrumbs
|
22
|
-
Given I start the rails service
|
23
|
-
When I navigate to the route "/mongo/failure_crash" on the rails app
|
24
|
-
And I wait to receive a request
|
25
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
26
|
-
And the event contains a breadcrumb matching the JSON fixture in "features/fixtures/expected_breadcrumbs/mongo_failed.json"
|
@@ -1,29 +0,0 @@
|
|
1
|
-
Feature: On error callbacks
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Rails on_error works on handled errors
|
5
|
-
Given I set environment variable "ADD_ON_ERROR" to "true"
|
6
|
-
And I start the rails service
|
7
|
-
When I navigate to the route "/handled/unthrown" on the rails app
|
8
|
-
And I wait to receive a request
|
9
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
10
|
-
And the exception "errorClass" equals "RuntimeError"
|
11
|
-
And the exception "message" starts with "handled unthrown error"
|
12
|
-
And the event "unhandled" is false
|
13
|
-
And the event "app.type" equals "rails"
|
14
|
-
And the event "metaData.request.url" ends with "/handled/unthrown"
|
15
|
-
And the event "metaData.on_error.source" equals "on_error handled"
|
16
|
-
|
17
|
-
@rails3 @rails4 @rails5 @rails6
|
18
|
-
Scenario: Rails on_error works on unhandled errors
|
19
|
-
Given I set environment variable "ADD_ON_ERROR" to "true"
|
20
|
-
And I start the rails service
|
21
|
-
When I navigate to the route "/unhandled/error" on the rails app
|
22
|
-
And I wait to receive a request
|
23
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
24
|
-
And the exception "errorClass" equals "NameError"
|
25
|
-
And the exception "message" starts with "undefined local variable or method `generate_unhandled_error' for #<UnhandledController"
|
26
|
-
And the event "unhandled" is true
|
27
|
-
And the event "app.type" equals "rails"
|
28
|
-
And the event "metaData.request.url" ends with "/unhandled/error"
|
29
|
-
And the event "metaData.on_error.source" equals "on_error unhandled"
|
@@ -1,35 +0,0 @@
|
|
1
|
-
Feature: Project root configuration
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Project_root should default to Rails.root
|
5
|
-
Given I start the rails service
|
6
|
-
When I navigate to the route "/project_root/default" on the rails app
|
7
|
-
And I wait to receive a request
|
8
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
9
|
-
And the exception "errorClass" equals "RuntimeError"
|
10
|
-
And the exception "message" starts with "handled string"
|
11
|
-
And the event "metaData.request.url" ends with "/project_root/default"
|
12
|
-
And the "file" of the top non-bugsnag stackframe equals "app/controllers/project_root_controller.rb"
|
13
|
-
|
14
|
-
@rails3 @rails4 @rails5 @rails6
|
15
|
-
Scenario: Project_root can be set in an initializer
|
16
|
-
Given I set environment variable "BUGSNAG_PROJECT_ROOT" to "/foo/bar"
|
17
|
-
And I start the rails service
|
18
|
-
When I navigate to the route "/project_root/initializer" on the rails app
|
19
|
-
And I wait to receive a request
|
20
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
21
|
-
And the exception "errorClass" equals "RuntimeError"
|
22
|
-
And the exception "message" starts with "handled string"
|
23
|
-
And the event "metaData.request.url" ends with "/project_root/initializer"
|
24
|
-
And the "file" of the top non-bugsnag stackframe equals "/usr/src/app/controllers/project_root_controller.rb"
|
25
|
-
|
26
|
-
@rails3 @rails4 @rails5 @rails6
|
27
|
-
Scenario: Project_root can be set after an initializer
|
28
|
-
Given I start the rails service
|
29
|
-
When I navigate to the route "/project_root/after" on the rails app
|
30
|
-
And I wait to receive a request
|
31
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
32
|
-
And the exception "errorClass" equals "RuntimeError"
|
33
|
-
And the exception "message" starts with "handled string"
|
34
|
-
And the event "metaData.request.url" ends with "/project_root/after"
|
35
|
-
And the "file" of the top non-bugsnag stackframe equals "/usr/src/app/controllers/project_root_controller.rb"
|
@@ -1,27 +0,0 @@
|
|
1
|
-
Feature: Release stage
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Release_stage should default to RAILS_ENV
|
5
|
-
Given I set environment variable "RAILS_ENV" to "rails_env"
|
6
|
-
And I start the rails service
|
7
|
-
When I navigate to the route "/release_stage/default" on the rails app
|
8
|
-
And I wait to receive a request
|
9
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
10
|
-
And the event "app.releaseStage" equals "rails_env"
|
11
|
-
|
12
|
-
@rails3 @rails4 @rails5 @rails6
|
13
|
-
Scenario: Release_stage can be set in an initializer
|
14
|
-
Given I set environment variable "BUGSNAG_RELEASE_STAGE" to "maze_release_stage_env"
|
15
|
-
And I start the rails service
|
16
|
-
When I navigate to the route "/release_stage/default" on the rails app
|
17
|
-
And I wait to receive a request
|
18
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
19
|
-
And the event "app.releaseStage" equals "maze_release_stage_env"
|
20
|
-
|
21
|
-
@rails3 @rails4 @rails5 @rails6
|
22
|
-
Scenario: Release_stage can be set after an initializer
|
23
|
-
Given I start the rails service
|
24
|
-
When I navigate to the route "/release_stage/after?stage=set_after_env" on the rails app
|
25
|
-
And I wait to receive a request
|
26
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
27
|
-
And the event "app.releaseStage" equals "set_after_env"
|
@@ -1,18 +0,0 @@
|
|
1
|
-
Feature: Send code
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Send_code can be updated in an initializer
|
5
|
-
Given I set environment variable "BUGSNAG_SEND_CODE" to "false"
|
6
|
-
And I start the rails service
|
7
|
-
When I navigate to the route "/send_code/initializer" on the rails app
|
8
|
-
And I wait to receive a request
|
9
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
10
|
-
And the event "exceptions.0.stacktrace.0.code" is null
|
11
|
-
|
12
|
-
@rails3 @rails4 @rails5 @rails6
|
13
|
-
Scenario: Send_code can be updated after an initializer
|
14
|
-
Given I start the rails service
|
15
|
-
When I navigate to the route "/send_code/after" on the rails app
|
16
|
-
And I wait to receive a request
|
17
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
18
|
-
And the event "exceptions.0.stacktrace.0.code" is null
|
@@ -1,13 +0,0 @@
|
|
1
|
-
Feature: Send environment
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Send_environment should send environment in handled errors when true
|
5
|
-
Given I set environment variable "BUGSNAG_SEND_ENVIRONMENT" to "true"
|
6
|
-
And I start the rails service
|
7
|
-
When I navigate to the route "/send_environment/initializer" on the rails app
|
8
|
-
And I wait to receive a request
|
9
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
10
|
-
And the exception "errorClass" equals "RuntimeError"
|
11
|
-
And the exception "message" starts with "handled string"
|
12
|
-
And the event "metaData.environment.REQUEST_METHOD" equals "GET"
|
13
|
-
And the event "app.type" equals "rails"
|
@@ -1,16 +0,0 @@
|
|
1
|
-
Feature: Unhandled exceptions support
|
2
|
-
|
3
|
-
@rails3 @rails4 @rails5 @rails6
|
4
|
-
Scenario: Unhandled RuntimeError
|
5
|
-
Given I start the rails service
|
6
|
-
When I navigate to the route "/unhandled/error" on the rails app
|
7
|
-
And I wait to receive a request
|
8
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
9
|
-
And the event "unhandled" is true
|
10
|
-
And the exception "errorClass" equals "NameError"
|
11
|
-
And the exception "message" starts with "undefined local variable or method `generate_unhandled_error' for #<UnhandledController"
|
12
|
-
And the event "app.type" equals "rails"
|
13
|
-
And the event "metaData.request.url" ends with "/unhandled/error"
|
14
|
-
And the event "severity" equals "error"
|
15
|
-
And the event "severityReason.type" equals "unhandledExceptionMiddleware"
|
16
|
-
And the event "severityReason.attributes.framework" equals "Rack"
|
@@ -1,52 +0,0 @@
|
|
1
|
-
Feature: Capture user information
|
2
|
-
|
3
|
-
@rails3
|
4
|
-
Scenario Outline: Warden user information is sent
|
5
|
-
Given I start the rails service
|
6
|
-
When I navigate to the route "/warden/create" on the rails app
|
7
|
-
And I navigate to the route "/warden/<route>?email=testtest@test.test" on the rails app
|
8
|
-
And I wait to receive a request
|
9
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
10
|
-
And the event "user.email" equals "testtest@test.test"
|
11
|
-
And the event "user.name" equals "Warden User"
|
12
|
-
And the event "user.first_name" equals "Warden"
|
13
|
-
And the event "user.last_name" equals "User"
|
14
|
-
|
15
|
-
Examples:
|
16
|
-
| route |
|
17
|
-
| handled |
|
18
|
-
| unhandled |
|
19
|
-
|
20
|
-
@rails4
|
21
|
-
Scenario Outline: Devise user information is sent
|
22
|
-
Given I start the rails service
|
23
|
-
When I navigate to the route "/devise/create" on the rails app
|
24
|
-
And I navigate to the route "/devise/<route>" on the rails app
|
25
|
-
And I wait to receive a request
|
26
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
27
|
-
And the event "user.email" equals "test+test@test.test"
|
28
|
-
And the event "user.name" equals "Devise User"
|
29
|
-
And the event "user.first_name" equals "Devise"
|
30
|
-
And the event "user.last_name" equals "User"
|
31
|
-
|
32
|
-
Examples:
|
33
|
-
| route |
|
34
|
-
| handled |
|
35
|
-
| unhandled |
|
36
|
-
|
37
|
-
@rails5 @rails6
|
38
|
-
Scenario Outline: Clearance user information is sent
|
39
|
-
Given I start the rails service
|
40
|
-
When I navigate to the route "/clearance/create" on the rails app
|
41
|
-
And I navigate to the route "/clearance/<route>" on the rails app
|
42
|
-
And I wait to receive a request
|
43
|
-
Then the request is valid for the error reporting API version "4.0" for the "Ruby Bugsnag Notifier"
|
44
|
-
And the event "user.email" equals "testtest@test.test"
|
45
|
-
And the event "user.name" equals "Clearance User"
|
46
|
-
And the event "user.first_name" equals "Clearance"
|
47
|
-
And the event "user.last_name" equals "User"
|
48
|
-
|
49
|
-
Examples:
|
50
|
-
| route |
|
51
|
-
| handled |
|
52
|
-
| unhandled |
|