wd_newrelic_rpm 3.3.4.1 → 3.5.5
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +20 -0
- data/.project +23 -0
- data/.travis.yml +9 -0
- data/CHANGELOG +317 -39
- data/GUIDELINES_FOR_CONTRIBUTING.md +76 -0
- data/Gemfile +16 -0
- data/LICENSE +1 -1
- data/{README.rdoc → README.md} +71 -55
- data/Rakefile +62 -0
- data/bin/mongrel_rpm +1 -1
- data/config.dot +290 -0
- data/config/database.yml +5 -0
- data/init.rb +31 -0
- data/lib/new_relic/agent.rb +31 -60
- data/lib/new_relic/agent/agent.rb +277 -502
- data/lib/new_relic/agent/agent_logger.rb +165 -0
- data/lib/new_relic/agent/audit_logger.rb +72 -0
- data/lib/new_relic/agent/beacon_configuration.rb +36 -50
- data/lib/new_relic/agent/browser_monitoring.rb +114 -61
- data/lib/new_relic/agent/busy_calculator.rb +14 -6
- data/lib/new_relic/agent/configuration.rb +74 -0
- data/lib/new_relic/agent/configuration/defaults.rb +126 -0
- data/lib/new_relic/agent/configuration/environment_source.rb +49 -0
- data/lib/new_relic/agent/configuration/manager.rb +136 -0
- data/lib/new_relic/agent/configuration/mask_defaults.rb +10 -0
- data/lib/new_relic/agent/configuration/server_source.rb +27 -0
- data/lib/new_relic/agent/configuration/yaml_source.rb +63 -0
- data/lib/new_relic/agent/cross_process_monitoring.rb +43 -0
- data/lib/new_relic/agent/database.rb +39 -26
- data/lib/new_relic/agent/error_collector.rb +48 -49
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_record.rb +4 -7
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +1 -1
- data/lib/new_relic/agent/instrumentation/authlogic.rb +1 -1
- data/lib/new_relic/agent/instrumentation/browser_monitoring_timings.rb +41 -0
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +35 -12
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +4 -12
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +2 -2
- data/lib/new_relic/agent/instrumentation/memcache.rb +6 -6
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +1 -1
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +1 -1
- data/lib/new_relic/agent/instrumentation/metric_frame.rb +4 -14
- data/lib/new_relic/agent/instrumentation/metric_frame/pop.rb +1 -1
- data/lib/new_relic/agent/instrumentation/net.rb +1 -1
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +6 -20
- data/lib/new_relic/agent/instrumentation/queue_time.rb +2 -2
- data/lib/new_relic/agent/instrumentation/rack.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +7 -7
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails/errors.rb +1 -1
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +5 -5
- data/lib/new_relic/agent/instrumentation/rails3/errors.rb +6 -2
- data/lib/new_relic/agent/instrumentation/resque.rb +81 -0
- data/lib/new_relic/agent/instrumentation/sinatra.rb +21 -10
- data/lib/new_relic/agent/instrumentation/sunspot.rb +1 -1
- data/lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb +5 -4
- data/lib/new_relic/agent/method_tracer.rb +11 -9
- data/lib/new_relic/agent/new_relic_service.rb +379 -0
- data/lib/new_relic/agent/pipe_channel_manager.rb +175 -0
- data/lib/new_relic/agent/pipe_service.rb +58 -0
- data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +86 -0
- data/lib/new_relic/agent/samplers/memory_sampler.rb +6 -8
- data/lib/new_relic/agent/sql_sampler.rb +31 -74
- data/lib/new_relic/agent/stats_engine.rb +0 -5
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +40 -24
- data/lib/new_relic/agent/stats_engine/metric_stats.rb +89 -14
- data/lib/new_relic/agent/stats_engine/samplers.rb +9 -7
- data/lib/new_relic/agent/stats_engine/transactions.rb +20 -12
- data/lib/new_relic/agent/thread.rb +32 -0
- data/lib/new_relic/agent/thread_profiler.rb +306 -0
- data/lib/new_relic/agent/transaction_info.rb +24 -4
- data/lib/new_relic/agent/transaction_sample_builder.rb +12 -13
- data/lib/new_relic/agent/transaction_sampler.rb +49 -65
- data/lib/new_relic/agent/worker_loop.rb +31 -25
- data/lib/new_relic/collection_helper.rb +1 -1
- data/lib/new_relic/commands/deployments.rb +19 -10
- data/lib/new_relic/control.rb +1 -3
- data/lib/new_relic/control/class_methods.rb +10 -5
- data/lib/new_relic/control/frameworks/merb.rb +0 -6
- data/lib/new_relic/control/frameworks/rails.rb +30 -45
- data/lib/new_relic/control/frameworks/rails3.rb +23 -18
- data/lib/new_relic/control/frameworks/rails4.rb +23 -0
- data/lib/new_relic/control/frameworks/ruby.rb +2 -23
- data/lib/new_relic/control/instance_methods.rb +35 -73
- data/lib/new_relic/control/instrumentation.rb +7 -12
- data/lib/new_relic/control/server_methods.rb +17 -19
- data/lib/new_relic/delayed_job_injection.rb +2 -2
- data/lib/new_relic/helper.rb +34 -0
- data/lib/new_relic/language_support.rb +56 -37
- data/lib/new_relic/local_environment.rb +32 -67
- data/lib/new_relic/metric_data.rb +10 -2
- data/lib/new_relic/metric_spec.rb +7 -3
- data/lib/new_relic/noticed_error.rb +32 -9
- data/lib/new_relic/rack.rb +4 -0
- data/lib/new_relic/rack/browser_monitoring.rb +34 -25
- data/lib/new_relic/rack/developer_mode.rb +3 -0
- data/lib/new_relic/rack/error_collector.rb +56 -0
- data/lib/new_relic/stats.rb +9 -7
- data/lib/new_relic/transaction_sample.rb +19 -18
- data/lib/new_relic/transaction_sample/segment.rb +13 -15
- data/lib/new_relic/version.rb +19 -3
- data/lib/newrelic_rpm.rb +1 -1
- data/lib/tasks/tests.rake +6 -8
- data/newrelic.yml +15 -32
- data/newrelic_rpm.gemspec +224 -43
- data/newrelic_rpm.gemspec.erb +54 -0
- data/test/config/newrelic.yml +4 -3
- data/test/config/test_control.rb +18 -18
- data/test/fixtures/gemspec_no_build.rb +442 -0
- data/test/fixtures/gemspec_with_build.rb +442 -0
- data/test/fixtures/gemspec_with_build_and_stage.rb +442 -0
- data/test/intentional_fail.rb +10 -0
- data/test/multiverse/.gitignore +10 -0
- data/test/multiverse/README.md +85 -0
- data/test/multiverse/lib/multiverse/color.rb +13 -0
- data/test/multiverse/lib/multiverse/envfile.rb +66 -0
- data/test/multiverse/lib/multiverse/environment.rb +16 -0
- data/test/multiverse/lib/multiverse/output_collector.rb +29 -0
- data/test/multiverse/lib/multiverse/runner.rb +44 -0
- data/test/multiverse/lib/multiverse/suite.rb +162 -0
- data/test/multiverse/script/run_one +3 -0
- data/test/multiverse/script/runner +9 -0
- data/test/multiverse/suites/active_record/Envfile +13 -0
- data/test/multiverse/suites/active_record/ar_method_aliasing.rb +94 -0
- data/test/multiverse/suites/active_record/config/newrelic.yml +22 -0
- data/test/multiverse/suites/active_record/encoding_test.rb +26 -0
- data/test/multiverse/suites/agent_only/Envfile +4 -0
- data/test/multiverse/suites/agent_only/audit_log_test.rb +99 -0
- data/test/multiverse/suites/agent_only/config/newrelic.yml +22 -0
- data/test/multiverse/suites/agent_only/http_response_code_test.rb +53 -0
- data/test/multiverse/suites/agent_only/marshaling_test.rb +109 -0
- data/test/multiverse/suites/agent_only/method_visibility_test.rb +98 -0
- data/test/multiverse/suites/agent_only/pipe_manager_test.rb +33 -0
- data/test/multiverse/suites/agent_only/service_timeout_test.rb +29 -0
- data/test/multiverse/suites/agent_only/test_trace_method_with_punctuation.rb +30 -0
- data/test/multiverse/suites/agent_only/test_trace_transaction_with_punctuation.rb +32 -0
- data/test/multiverse/suites/agent_only/thread_profiling_test.rb +80 -0
- data/test/multiverse/suites/config_file_loading/Envfile +7 -0
- data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +106 -0
- data/test/multiverse/suites/datamapper/Envfile +8 -0
- data/test/multiverse/suites/datamapper/config/newrelic.yml +22 -0
- data/test/multiverse/suites/datamapper/encoding_test.rb +36 -0
- data/test/multiverse/suites/logging/Envfile +4 -0
- data/test/multiverse/suites/logging/config/newrelic.yml +22 -0
- data/test/multiverse/suites/logging/logging_test.rb +143 -0
- data/test/multiverse/suites/monitor_mode_false/Envfile +2 -0
- data/test/multiverse/suites/monitor_mode_false/config/newrelic.yml +25 -0
- data/test/multiverse/suites/monitor_mode_false/no_dns_resolv.rb +29 -0
- data/test/multiverse/suites/no_load/Envfile +2 -0
- data/test/multiverse/suites/no_load/config/newrelic.yml +22 -0
- data/test/multiverse/suites/no_load/start_up_test.rb +14 -0
- data/test/multiverse/suites/rails_3_error_tracing/Envfile +15 -0
- data/test/multiverse/suites/rails_3_error_tracing/config/newrelic.yml +165 -0
- data/test/multiverse/suites/rails_3_error_tracing/error_tracing_test.rb +236 -0
- data/test/multiverse/suites/rails_3_gc/Envfile +8 -0
- data/test/multiverse/suites/rails_3_gc/config/newrelic.yml +167 -0
- data/test/multiverse/suites/rails_3_gc/instrumentation_test.rb +92 -0
- data/test/multiverse/suites/rails_3_queue_time/Envfile +15 -0
- data/test/multiverse/suites/rails_3_queue_time/config/newrelic.yml +165 -0
- data/test/multiverse/suites/rails_3_queue_time/queue_time_test.rb +75 -0
- data/test/multiverse/suites/rails_3_views/.gitignore +3 -0
- data/test/multiverse/suites/rails_3_views/Envfile +16 -0
- data/test/multiverse/suites/rails_3_views/app/views/foos/_foo.html.haml +1 -0
- data/test/multiverse/suites/rails_3_views/app/views/test/_a_partial.html.erb +1 -0
- data/test/multiverse/suites/rails_3_views/app/views/test/_mid_partial.html.erb +1 -0
- data/test/multiverse/suites/rails_3_views/app/views/test/_top_partial.html.erb +3 -0
- data/test/multiverse/suites/rails_3_views/app/views/test/deep_partial.html.erb +3 -0
- data/test/multiverse/suites/rails_3_views/app/views/test/haml_view.html.haml +6 -0
- data/test/multiverse/suites/rails_3_views/app/views/test/index.html.erb +4 -0
- data/test/multiverse/suites/rails_3_views/config/newrelic.yml +164 -0
- data/test/multiverse/suites/rails_3_views/view_instrumentation_test.rb +245 -0
- data/test/multiverse/suites/resque/Envfile +21 -0
- data/test/multiverse/suites/resque/config/newrelic.yml +22 -0
- data/test/multiverse/suites/resque/dump.rdb +0 -0
- data/test/multiverse/suites/resque/instrumentation_test.rb +73 -0
- data/test/multiverse/suites/rum_auto_instrumentation/Envfile +4 -0
- data/test/multiverse/suites/rum_auto_instrumentation/config/newrelic.yml +24 -0
- data/test/multiverse/suites/rum_auto_instrumentation/responses/worst_case_small.html +5000 -0
- data/test/multiverse/suites/rum_auto_instrumentation/sanity_test.rb +102 -0
- data/test/multiverse/suites/sinatra/Envfile +13 -0
- data/test/multiverse/suites/sinatra/config/newrelic.yml +24 -0
- data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +77 -0
- data/test/multiverse/suites/sinatra/sinatra_routes_test.rb +46 -0
- data/test/multiverse/suites/sinatra/sinatra_test.rb +55 -0
- data/test/multiverse/test/multiverse_test.rb +55 -0
- data/test/multiverse/test/suite_examples/one/a/Envfile +3 -0
- data/test/multiverse/test/suite_examples/one/a/a_test.rb +11 -0
- data/test/multiverse/test/suite_examples/one/a/config/newrelic.yml +24 -0
- data/test/multiverse/test/suite_examples/one/b/Envfile +3 -0
- data/test/multiverse/test/suite_examples/one/b/b_test.rb +11 -0
- data/test/multiverse/test/suite_examples/one/b/config/newrelic.yml +24 -0
- data/test/multiverse/test/suite_examples/three/a/Envfile +2 -0
- data/test/multiverse/test/suite_examples/three/a/fail_test.rb +6 -0
- data/test/multiverse/test/suite_examples/three/b/Envfile +2 -0
- data/test/multiverse/test/suite_examples/three/b/win_test.rb +6 -0
- data/test/multiverse/test/suite_examples/two/a/Envfile +1 -0
- data/test/multiverse/test/suite_examples/two/a/fail_test.rb +6 -0
- data/test/new_relic/agent/agent/connect_test.rb +151 -227
- data/test/new_relic/agent/agent/start_test.rb +68 -118
- data/test/new_relic/agent/agent/start_worker_thread_test.rb +12 -74
- data/test/new_relic/agent/agent_logger_test.rb +153 -0
- data/test/new_relic/agent/agent_test.rb +116 -30
- data/test/new_relic/agent/agent_test_controller.rb +1 -1
- data/test/new_relic/agent/agent_test_controller_test.rb +42 -10
- data/test/new_relic/agent/audit_logger_test.rb +105 -0
- data/test/new_relic/agent/beacon_configuration_test.rb +63 -67
- data/test/new_relic/agent/browser_monitoring_test.rb +151 -79
- data/test/new_relic/agent/busy_calculator_test.rb +7 -0
- data/test/new_relic/agent/configuration/environment_source_test.rb +79 -0
- data/test/new_relic/agent/configuration/manager_test.rb +204 -0
- data/test/new_relic/agent/configuration/server_source_test.rb +45 -0
- data/test/new_relic/agent/configuration/yaml_source_test.rb +75 -0
- data/test/new_relic/agent/cross_process_monitoring_test.rb +77 -0
- data/test/new_relic/agent/database_test.rb +12 -11
- data/test/new_relic/agent/error_collector/notice_error_test.rb +64 -53
- data/test/new_relic/agent/error_collector_test.rb +33 -19
- data/test/new_relic/agent/instrumentation/active_record_instrumentation_test.rb +60 -30
- data/test/new_relic/agent/instrumentation/browser_monitoring_timings_test.rb +39 -0
- data/test/new_relic/agent/instrumentation/metric_frame/pop_test.rb +1 -1
- data/test/new_relic/agent/instrumentation/metric_frame_test.rb +6 -0
- data/test/new_relic/agent/instrumentation/queue_time_test.rb +14 -0
- data/test/new_relic/agent/instrumentation/sinatra_test.rb +25 -0
- data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +2 -2
- data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +4 -10
- data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +3 -15
- data/test/new_relic/agent/method_tracer_test.rb +7 -6
- data/test/new_relic/agent/mock_scope_listener.rb +3 -0
- data/test/new_relic/agent/new_relic_service_test.rb +376 -0
- data/test/new_relic/agent/pipe_channel_manager_test.rb +131 -0
- data/test/new_relic/agent/pipe_service_test.rb +113 -0
- data/test/new_relic/agent/rpm_agent_test.rb +27 -50
- data/test/new_relic/agent/sql_sampler_test.rb +81 -56
- data/test/new_relic/agent/stats_engine/metric_stats/harvest_test.rb +3 -20
- data/test/new_relic/agent/stats_engine/metric_stats_test.rb +12 -1
- data/test/new_relic/agent/stats_engine_test.rb +17 -8
- data/test/new_relic/agent/thread_profiler_test.rb +537 -0
- data/test/new_relic/agent/thread_test.rb +89 -0
- data/test/new_relic/agent/threaded_test.rb +65 -0
- data/test/new_relic/agent/transaction_info_test.rb +45 -4
- data/test/new_relic/agent/transaction_sample_builder_test.rb +8 -7
- data/test/new_relic/agent/transaction_sampler_test.rb +193 -204
- data/test/new_relic/agent/worker_loop_test.rb +26 -11
- data/test/new_relic/agent_test.rb +113 -33
- data/test/new_relic/collection_helper_test.rb +7 -8
- data/test/new_relic/command/deployments_test.rb +18 -2
- data/test/new_relic/control/class_methods_test.rb +0 -18
- data/test/new_relic/control/frameworks/rails_test.rb +26 -0
- data/test/new_relic/control_test.rb +96 -137
- data/test/new_relic/delayed_job_injection_test.rb +6 -1
- data/test/new_relic/dispatcher_test.rb +54 -0
- data/test/new_relic/fake_collector.rb +283 -0
- data/test/new_relic/fake_service.rb +53 -0
- data/test/new_relic/fakes_sending_data.rb +30 -0
- data/test/new_relic/framework_test.rb +53 -0
- data/test/new_relic/load_test.rb +13 -0
- data/test/new_relic/local_environment_test.rb +11 -11
- data/test/new_relic/metric_data_test.rb +45 -16
- data/test/new_relic/noticed_error_test.rb +24 -0
- data/test/new_relic/rack/browser_monitoring_test.rb +20 -10
- data/test/new_relic/rack/developer_mode_test.rb +13 -7
- data/test/new_relic/rack/error_collector_test.rb +74 -0
- data/test/new_relic/stats_test.rb +10 -0
- data/test/new_relic/transaction_sample/segment_test.rb +23 -4
- data/test/new_relic/transaction_sample_test.rb +47 -2
- data/test/new_relic/version_number_test.rb +32 -0
- data/test/script/build_test_gem.sh +9 -3
- data/test/script/ci.sh +108 -35
- data/test/script/ci_agent-tests_runner.sh +82 -0
- data/test/script/ci_multiverse_runner.sh +63 -0
- data/test/test_contexts.rb +1 -0
- data/test/test_helper.rb +68 -18
- data/ui/helpers/developer_mode_helper.rb +21 -11
- data/ui/views/layouts/newrelic_default.rhtml +1 -0
- data/ui/views/newrelic/file/images/arrow-close.png +0 -0
- data/ui/views/newrelic/file/images/arrow-open.png +0 -0
- data/ui/views/newrelic/file/images/blue_bar.gif +0 -0
- data/ui/views/newrelic/file/images/file_icon.png +0 -0
- data/ui/views/newrelic/file/images/gray_bar.gif +0 -0
- data/ui/views/newrelic/show_sample.rhtml +1 -1
- data/ui/views/newrelic/threads.rhtml +2 -10
- data/vendor/gems/metric_parser-0.1.0.pre1/.specification +116 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_init.rb +7 -0
- metadata +191 -65
- data/lib/new_relic/agent/samplers/delayed_job_lock_sampler.rb +0 -40
- data/lib/new_relic/control/configuration.rb +0 -206
- data/lib/new_relic/control/logging_methods.rb +0 -143
- data/lib/new_relic/data_serialization.rb +0 -151
- data/test/new_relic/control/configuration_test.rb +0 -84
- data/test/new_relic/control/logging_methods_test.rb +0 -185
- data/test/new_relic/data_serialization_test.rb +0 -208
@@ -0,0 +1,85 @@
|
|
1
|
+
# Multiverse
|
2
|
+
|
3
|
+
## Testing in a multitude of environments
|
4
|
+
|
5
|
+
Multiverse was created to solve a specific problem experienced by the Agent
|
6
|
+
team. Not only does the New Relic Agent run in a wide variety of environments,
|
7
|
+
but its expected behavior *changes* based on the environment. Instrumenation is
|
8
|
+
toggled on and off based on the presence of certain libraries, and some of these
|
9
|
+
libraries are incompatible with each other. Effective testing requires us to
|
10
|
+
specify different environments for different tests; Multiverse aims to make this
|
11
|
+
painless.
|
12
|
+
|
13
|
+
|
14
|
+
## Getting started
|
15
|
+
|
16
|
+
You can invoke this via rake
|
17
|
+
|
18
|
+
rake test:multiverse
|
19
|
+
|
20
|
+
If you only want to run some test suites you can filter by their names
|
21
|
+
|
22
|
+
rake test:multiverse[sinatra]
|
23
|
+
|
24
|
+
You can run tests of multiverse itself with
|
25
|
+
|
26
|
+
rake test:multiverse:self
|
27
|
+
|
28
|
+
### Adding a test suite
|
29
|
+
|
30
|
+
To add tests add a directory to the `suites` directory. This directory should
|
31
|
+
contain at least two files.
|
32
|
+
|
33
|
+
#### Envfile
|
34
|
+
|
35
|
+
The Envfile is a meta gem file. It allows you to specify one or more gemset
|
36
|
+
that the tests in this directory should be run against. For example:
|
37
|
+
|
38
|
+
gemfile <<-GEMFILE
|
39
|
+
gem "rails", "~>3.2.0"
|
40
|
+
GEMFILE
|
41
|
+
|
42
|
+
gemfile <<-GEMFILE
|
43
|
+
gem "rails", "~>3.1.0"
|
44
|
+
GEMFILE
|
45
|
+
|
46
|
+
This will run these tests against 2 environments, one running rails 3.1, the
|
47
|
+
other running rails 3.2.
|
48
|
+
|
49
|
+
New Relic is automatically included in the environment. Specifying it in the
|
50
|
+
Envfile will trigger and error. You can override where newrelic is loaded from
|
51
|
+
using two environment variables.
|
52
|
+
|
53
|
+
The default gemfile line is
|
54
|
+
|
55
|
+
gem 'newrelic_rpm', :path => '../../../ruby_agent'
|
56
|
+
|
57
|
+
`ENV['NEWRELIC_GEMFILE_LINE']` will specify the full line for the gemfile
|
58
|
+
|
59
|
+
`ENV['NEWRELIC_GEM_PATH']` will override the `:path` option in the default line.
|
60
|
+
|
61
|
+
|
62
|
+
#### Test files
|
63
|
+
|
64
|
+
All files in a test suite directory that end with .rb will be executed as test
|
65
|
+
files. These should use test unit.
|
66
|
+
|
67
|
+
For example:
|
68
|
+
|
69
|
+
require 'test/unit'
|
70
|
+
class ATest < Test::Unit::TestCase
|
71
|
+
def test_json_is_loaded
|
72
|
+
assert JSON
|
73
|
+
end
|
74
|
+
|
75
|
+
def test_haml_is_not_loaded
|
76
|
+
assert !defined?(Haml)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
|
81
|
+
## Testing Multiverse
|
82
|
+
|
83
|
+
Multiverse has a suite of tests in the `test` directory for testing the
|
84
|
+
framework itself (sooo meta). These help confirm that the system is working as
|
85
|
+
expected.
|
@@ -0,0 +1,66 @@
|
|
1
|
+
module Multiverse
|
2
|
+
# Reads an envfile.rb and converts it into gemfiles that can be used by
|
3
|
+
# bundler
|
4
|
+
class Envfile
|
5
|
+
attr_accessor :file_path, :condition, :newrelic_gemfile_options
|
6
|
+
attr_reader :before, :after, :mode, :skip_message
|
7
|
+
|
8
|
+
def initialize(file_path)
|
9
|
+
self.file_path = file_path
|
10
|
+
@gemfiles = []
|
11
|
+
@mode = 'fork'
|
12
|
+
if File.exist? file_path
|
13
|
+
@text = File.read self.file_path
|
14
|
+
instance_eval @text
|
15
|
+
end
|
16
|
+
@gemfiles = [''] if @gemfiles.empty?
|
17
|
+
end
|
18
|
+
|
19
|
+
def suite_condition(skip_message, &block)
|
20
|
+
@skip_message = skip_message
|
21
|
+
@condition = block
|
22
|
+
end
|
23
|
+
|
24
|
+
# string representation options hash to append to the newrelic_rpm line
|
25
|
+
# when setting up Gemfile
|
26
|
+
# e.g. ":require => false"
|
27
|
+
def newrelic_gemfile_options=(options_string)
|
28
|
+
@newrelic_gemfile_options = options_string
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
def gemfile(content)
|
33
|
+
@gemfiles.push content
|
34
|
+
end
|
35
|
+
|
36
|
+
def before_suite(&block)
|
37
|
+
@before = block
|
38
|
+
end
|
39
|
+
|
40
|
+
def after_suite(&block)
|
41
|
+
@after = block
|
42
|
+
end
|
43
|
+
|
44
|
+
def execute_mode(mode)
|
45
|
+
valid_modes = %w| fork spawn |
|
46
|
+
unless valid_modes.member? mode
|
47
|
+
raise ArgumentError, "#{mode.inspect} is not a valid execute mode. Valid modes: #{valid_modes.inspect}"
|
48
|
+
end
|
49
|
+
@mode = mode
|
50
|
+
end
|
51
|
+
|
52
|
+
include Enumerable
|
53
|
+
def each(&block)
|
54
|
+
@gemfiles.each(&block)
|
55
|
+
end
|
56
|
+
|
57
|
+
def [](key)
|
58
|
+
@gemfiles[key]
|
59
|
+
end
|
60
|
+
|
61
|
+
def size
|
62
|
+
@gemfiles.size
|
63
|
+
end
|
64
|
+
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'fileutils'
|
2
|
+
require 'test/unit'
|
3
|
+
module Multiverse
|
4
|
+
ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
|
5
|
+
$: << File.expand_path(File.join(ROOT, 'lib'))
|
6
|
+
|
7
|
+
# Include from our unit testing path to share fake_collector and fake_service
|
8
|
+
$: << File.expand_path(File.join(ROOT, '..', 'new_relic'))
|
9
|
+
|
10
|
+
SUITES_DIRECTORY = ENV['SUITES_DIRECTORY'] || File.join(ROOT, '/suites')
|
11
|
+
require 'multiverse/color'
|
12
|
+
require 'multiverse/output_collector'
|
13
|
+
require 'multiverse/runner'
|
14
|
+
require 'multiverse/envfile'
|
15
|
+
require 'multiverse/suite'
|
16
|
+
end
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# This module is responsible for intercepting output made through various stdlib
|
2
|
+
# calls (i.e. puts, print, etc.) and printing summary information (e.g. a list
|
3
|
+
# of failing tests) at the end of the process.
|
4
|
+
#
|
5
|
+
module Multiverse
|
6
|
+
module OutputCollector
|
7
|
+
include Color
|
8
|
+
extend Color
|
9
|
+
def self.buffers
|
10
|
+
@buffer ||= []
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.failing_output
|
14
|
+
@failing ||= []
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.report
|
18
|
+
puts
|
19
|
+
puts
|
20
|
+
if failing_output.empty?
|
21
|
+
puts green("There were no test failures")
|
22
|
+
else
|
23
|
+
puts red("There were failures in #{failing_output.size} test suites")
|
24
|
+
puts "Here is their output"
|
25
|
+
puts *failing_output
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
module Multiverse
|
2
|
+
module Runner
|
3
|
+
extend self
|
4
|
+
extend Color
|
5
|
+
|
6
|
+
def exit_status
|
7
|
+
@exit_status ||= 0
|
8
|
+
end
|
9
|
+
|
10
|
+
def notice_exit_status(i)
|
11
|
+
exit_status # initialize it
|
12
|
+
# we don't want to return exit statuses > 256 since these get converted
|
13
|
+
# to 0
|
14
|
+
if i != 0
|
15
|
+
puts red("FAIL! Exited #{i}")
|
16
|
+
@exit_status = 1
|
17
|
+
else
|
18
|
+
puts green("PASS. Exited #{i}")
|
19
|
+
end
|
20
|
+
@exit_status
|
21
|
+
end
|
22
|
+
|
23
|
+
def run(filter="")
|
24
|
+
Dir.new(SUITES_DIRECTORY).entries.each do |dir|
|
25
|
+
next if dir =~ /\A\./
|
26
|
+
next unless dir.include? filter
|
27
|
+
full_path = File.join(SUITES_DIRECTORY, dir)
|
28
|
+
begin
|
29
|
+
suite = Suite.new full_path
|
30
|
+
suite.execute
|
31
|
+
rescue => e
|
32
|
+
puts red("Error when trying to run suite in #{full_path.inspect}")
|
33
|
+
puts
|
34
|
+
puts "#{e.class}: #{e}"
|
35
|
+
puts *e.backtrace
|
36
|
+
notice_exit_status 1
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
OutputCollector.report
|
41
|
+
exit exit_status
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,162 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require File.expand_path(File.join(File.dirname(__FILE__), 'environment'))
|
3
|
+
module Multiverse
|
4
|
+
class Suite
|
5
|
+
include Color
|
6
|
+
attr_accessor :directory, :include_debugger
|
7
|
+
def initialize(directory, include_debugger=nil)
|
8
|
+
self.directory = directory
|
9
|
+
self.include_debugger = !!include_debugger
|
10
|
+
end
|
11
|
+
|
12
|
+
def clean_gemfiles
|
13
|
+
FileUtils.rm_rf File.join(directory, 'Gemfile')
|
14
|
+
FileUtils.rm_rf File.join(directory, 'Gemfile.lock')
|
15
|
+
end
|
16
|
+
|
17
|
+
|
18
|
+
def environments
|
19
|
+
@environments ||= (
|
20
|
+
Dir.chdir directory
|
21
|
+
Envfile.new(File.join(directory, 'Envfile'))
|
22
|
+
)
|
23
|
+
end
|
24
|
+
|
25
|
+
# load the environment for this suite after we've forked
|
26
|
+
def load_dependencies(gemfile_text)
|
27
|
+
clean_gemfiles
|
28
|
+
begin
|
29
|
+
generate_gemfile(gemfile_text)
|
30
|
+
bundle
|
31
|
+
rescue => e
|
32
|
+
puts "#{e.class}: #{e}"
|
33
|
+
puts "Fast local bundle failed. Attempting to install from rubygems.org"
|
34
|
+
clean_gemfiles
|
35
|
+
generate_gemfile(gemfile_text, false)
|
36
|
+
bundle
|
37
|
+
end
|
38
|
+
print_environment
|
39
|
+
end
|
40
|
+
|
41
|
+
def bundle
|
42
|
+
require 'rubygems'
|
43
|
+
require 'bundler'
|
44
|
+
bundler_out = `bundle`
|
45
|
+
raise "bundle command failed with (#{$?})" unless $? == 0
|
46
|
+
puts bundler_out if verbose?
|
47
|
+
Bundler.require
|
48
|
+
end
|
49
|
+
|
50
|
+
def generate_gemfile(gemfile_text, local = true)
|
51
|
+
gemfile = File.join(Dir.pwd, 'Gemfile')
|
52
|
+
File.open(gemfile,'w') do |f|
|
53
|
+
f.puts ' source :rubygems' unless local
|
54
|
+
f.print gemfile_text
|
55
|
+
f.puts newrelic_gemfile_line unless gemfile_text =~ /^\s*gem .newrelic_rpm./
|
56
|
+
if RUBY_VERSION > '1.8.7'
|
57
|
+
f.puts " gem 'test-unit', :require => 'test/unit'"
|
58
|
+
f.puts " gem 'debugger'" if include_debugger
|
59
|
+
end
|
60
|
+
end
|
61
|
+
puts yellow("Gemfile set to:") if verbose?
|
62
|
+
puts File.open(gemfile).read if verbose?
|
63
|
+
end
|
64
|
+
|
65
|
+
def newrelic_gemfile_line
|
66
|
+
line = ENV['NEWRELIC_GEMFILE_LINE'] if ENV['NEWRELIC_GEMFILE_LINE']
|
67
|
+
path = ENV['NEWRELIC_GEM_PATH'] || '../../../..'
|
68
|
+
line ||= " gem 'newrelic_rpm', :path => '#{path}'"
|
69
|
+
line += ", #{environments.newrelic_gemfile_options}" if environments.newrelic_gemfile_options
|
70
|
+
line
|
71
|
+
end
|
72
|
+
|
73
|
+
def print_environment
|
74
|
+
puts yellow("Environment loaded with:") if verbose?
|
75
|
+
gems = Bundler.definition.specs.inject([]) do |m, s|
|
76
|
+
next m if s.name == 'bundler'
|
77
|
+
m.push "#{s.name} (#{s.version})"
|
78
|
+
m
|
79
|
+
end.sort
|
80
|
+
puts(gems.join(', '))
|
81
|
+
end
|
82
|
+
|
83
|
+
def execute_child_environment(env_index)
|
84
|
+
gemfile_text = environments[env_index]
|
85
|
+
load_dependencies(gemfile_text)
|
86
|
+
execute_ruby_files
|
87
|
+
trigger_test_unit
|
88
|
+
end
|
89
|
+
|
90
|
+
# Load the test suite's environment and execute it.
|
91
|
+
#
|
92
|
+
# Normally we fork to do this, and wait for the child to exit, to avoid
|
93
|
+
# polluting the parent process with test dependencies. JRuby doesn't
|
94
|
+
# implement #fork so we resort to a hack. We exec this lib file, which
|
95
|
+
# loads a new JVM for the tests to run in.
|
96
|
+
def execute
|
97
|
+
if environments.condition && !environments.condition.call
|
98
|
+
puts yellow("SKIPPED #{directory.inspect}: #{environments.skip_message}")
|
99
|
+
return
|
100
|
+
end
|
101
|
+
puts yellow("\nRunning #{directory.inspect} in #{environments.size} environments")
|
102
|
+
environments.before.call if environments.before
|
103
|
+
environments.each_with_index do |gemfile_text, i|
|
104
|
+
execute_with_pipe(i)
|
105
|
+
end
|
106
|
+
environments.after.call if environments.after
|
107
|
+
end
|
108
|
+
|
109
|
+
def execute_with_pipe(env)
|
110
|
+
OutputCollector.buffers.push('')
|
111
|
+
IO.popen("#{__FILE__} #{directory} #{env}") do |io|
|
112
|
+
while chars = io.read(8) do
|
113
|
+
OutputCollector.buffers.last << chars
|
114
|
+
print chars
|
115
|
+
end
|
116
|
+
end
|
117
|
+
if $? != 0
|
118
|
+
OutputCollector.failing_output.push(OutputCollector.buffers.last)
|
119
|
+
end
|
120
|
+
Multiverse::Runner.notice_exit_status $?
|
121
|
+
end
|
122
|
+
|
123
|
+
# something makes Test::Unit not want to run automatically. Seems like the
|
124
|
+
# at_exit hook may be failing to run due to forking.
|
125
|
+
def trigger_test_unit
|
126
|
+
case
|
127
|
+
when defined? Test::Unit::RunCount # 1.9.3
|
128
|
+
# JRuby 1.7 doesn't seem to have a problem triggering test unit. In
|
129
|
+
# contrast to MRI triggering it like this causes an error.
|
130
|
+
return if defined?(JRuby)
|
131
|
+
|
132
|
+
Test::Unit::RunCount.run_once do
|
133
|
+
exit(Test::Unit::Runner.new.run || true)
|
134
|
+
end
|
135
|
+
when defined? MiniTest::Unit # 1.9.2
|
136
|
+
exit(MiniTest::Unit.new.run)
|
137
|
+
when defined? Test::Unit::AutoRunner # 1.8.7
|
138
|
+
exit(Test::Unit::AutoRunner.run)
|
139
|
+
else
|
140
|
+
raise "Can't figure out how to trigger Test::Unit"
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
def execute_ruby_files
|
145
|
+
Dir.chdir directory
|
146
|
+
Dir[File.join(directory, '*.rb')].each do |file|
|
147
|
+
puts yellow("Executing #{file.inspect}") if verbose?
|
148
|
+
load file
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
152
|
+
def verbose?
|
153
|
+
ENV['VERBOSE']
|
154
|
+
end
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
# Exectute the suite. We need this if we want to execute a suite by spawning a
|
159
|
+
# new process instead of forking.
|
160
|
+
if $0 == __FILE__
|
161
|
+
Multiverse::Suite.new(ARGV[0], ARGV[2]).execute_child_environment(ARGV[1].to_i)
|
162
|
+
end
|