wd_newrelic_rpm 3.3.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +591 -0
- data/LICENSE +64 -0
- data/README.rdoc +179 -0
- data/bin/mongrel_rpm +33 -0
- data/bin/newrelic +13 -0
- data/bin/newrelic_cmd +5 -0
- data/cert/cacert.pem +118 -0
- data/cert/oldsite.pem +28 -0
- data/cert/site.pem +27 -0
- data/install.rb +9 -0
- data/lib/conditional_vendored_dependency_detection.rb +3 -0
- data/lib/conditional_vendored_metric_parser.rb +5 -0
- data/lib/new_relic/agent.rb +467 -0
- data/lib/new_relic/agent/agent.rb +1325 -0
- data/lib/new_relic/agent/beacon_configuration.rb +121 -0
- data/lib/new_relic/agent/browser_monitoring.rb +142 -0
- data/lib/new_relic/agent/busy_calculator.rb +99 -0
- data/lib/new_relic/agent/chained_call.rb +13 -0
- data/lib/new_relic/agent/database.rb +223 -0
- data/lib/new_relic/agent/error_collector.rb +251 -0
- data/lib/new_relic/agent/instrumentation.rb +9 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +29 -0
- data/lib/new_relic/agent/instrumentation/active_record.rb +137 -0
- data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +68 -0
- data/lib/new_relic/agent/instrumentation/authlogic.rb +19 -0
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +443 -0
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +238 -0
- data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +52 -0
- data/lib/new_relic/agent/instrumentation/memcache.rb +80 -0
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +41 -0
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +29 -0
- data/lib/new_relic/agent/instrumentation/metric_frame.rb +353 -0
- data/lib/new_relic/agent/instrumentation/metric_frame/pop.rb +80 -0
- data/lib/new_relic/agent/instrumentation/net.rb +29 -0
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +37 -0
- data/lib/new_relic/agent/instrumentation/queue_time.rb +210 -0
- data/lib/new_relic/agent/instrumentation/rack.rb +98 -0
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +114 -0
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +42 -0
- data/lib/new_relic/agent/instrumentation/rails/errors.rb +42 -0
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +180 -0
- data/lib/new_relic/agent/instrumentation/rails3/errors.rb +37 -0
- data/lib/new_relic/agent/instrumentation/sinatra.rb +78 -0
- data/lib/new_relic/agent/instrumentation/sunspot.rb +29 -0
- data/lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb +21 -0
- data/lib/new_relic/agent/method_tracer.rb +528 -0
- data/lib/new_relic/agent/sampler.rb +50 -0
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +58 -0
- data/lib/new_relic/agent/samplers/delayed_job_lock_sampler.rb +40 -0
- data/lib/new_relic/agent/samplers/memory_sampler.rb +143 -0
- data/lib/new_relic/agent/samplers/object_sampler.rb +26 -0
- data/lib/new_relic/agent/shim_agent.rb +29 -0
- data/lib/new_relic/agent/sql_sampler.rb +286 -0
- data/lib/new_relic/agent/stats_engine.rb +26 -0
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +123 -0
- data/lib/new_relic/agent/stats_engine/metric_stats.rb +187 -0
- data/lib/new_relic/agent/stats_engine/samplers.rb +95 -0
- data/lib/new_relic/agent/stats_engine/transactions.rb +125 -0
- data/lib/new_relic/agent/transaction_info.rb +74 -0
- data/lib/new_relic/agent/transaction_sample_builder.rb +116 -0
- data/lib/new_relic/agent/transaction_sampler.rb +468 -0
- data/lib/new_relic/agent/worker_loop.rb +89 -0
- data/lib/new_relic/collection_helper.rb +77 -0
- data/lib/new_relic/command.rb +85 -0
- data/lib/new_relic/commands/deployments.rb +105 -0
- data/lib/new_relic/commands/install.rb +80 -0
- data/lib/new_relic/control.rb +46 -0
- data/lib/new_relic/control/class_methods.rb +53 -0
- data/lib/new_relic/control/configuration.rb +206 -0
- data/lib/new_relic/control/frameworks.rb +10 -0
- data/lib/new_relic/control/frameworks/external.rb +16 -0
- data/lib/new_relic/control/frameworks/merb.rb +31 -0
- data/lib/new_relic/control/frameworks/rails.rb +164 -0
- data/lib/new_relic/control/frameworks/rails3.rb +75 -0
- data/lib/new_relic/control/frameworks/ruby.rb +42 -0
- data/lib/new_relic/control/frameworks/sinatra.rb +20 -0
- data/lib/new_relic/control/instance_methods.rb +179 -0
- data/lib/new_relic/control/instrumentation.rb +100 -0
- data/lib/new_relic/control/logging_methods.rb +143 -0
- data/lib/new_relic/control/profiling.rb +25 -0
- data/lib/new_relic/control/server_methods.rb +114 -0
- data/lib/new_relic/data_serialization.rb +151 -0
- data/lib/new_relic/delayed_job_injection.rb +51 -0
- data/lib/new_relic/language_support.rb +73 -0
- data/lib/new_relic/local_environment.rb +428 -0
- data/lib/new_relic/merbtasks.rb +6 -0
- data/lib/new_relic/metric_data.rb +51 -0
- data/lib/new_relic/metric_spec.rb +76 -0
- data/lib/new_relic/metrics.rb +9 -0
- data/lib/new_relic/noticed_error.rb +29 -0
- data/lib/new_relic/rack/browser_monitoring.rb +76 -0
- data/lib/new_relic/rack/developer_mode.rb +268 -0
- data/lib/new_relic/recipes.rb +77 -0
- data/lib/new_relic/stats.rb +335 -0
- data/lib/new_relic/timer_lib.rb +27 -0
- data/lib/new_relic/transaction_analysis.rb +77 -0
- data/lib/new_relic/transaction_analysis/segment_summary.rb +49 -0
- data/lib/new_relic/transaction_sample.rb +261 -0
- data/lib/new_relic/transaction_sample/composite_segment.rb +27 -0
- data/lib/new_relic/transaction_sample/fake_segment.rb +9 -0
- data/lib/new_relic/transaction_sample/segment.rb +203 -0
- data/lib/new_relic/transaction_sample/summary_segment.rb +21 -0
- data/lib/new_relic/url_rule.rb +14 -0
- data/lib/new_relic/version.rb +55 -0
- data/lib/newrelic_rpm.rb +49 -0
- data/lib/tasks/all.rb +4 -0
- data/lib/tasks/install.rake +7 -0
- data/lib/tasks/tests.rake +19 -0
- data/newrelic.yml +265 -0
- data/newrelic_rpm.gemspec +312 -0
- data/recipes/newrelic.rb +6 -0
- data/test/active_record_fixtures.rb +77 -0
- data/test/config/newrelic.yml +48 -0
- data/test/config/test_control.rb +48 -0
- data/test/fixtures/proc_cpuinfo.txt +575 -0
- data/test/new_relic/agent/agent/connect_test.rb +403 -0
- data/test/new_relic/agent/agent/start_test.rb +255 -0
- data/test/new_relic/agent/agent/start_worker_thread_test.rb +153 -0
- data/test/new_relic/agent/agent_test.rb +140 -0
- data/test/new_relic/agent/agent_test_controller.rb +77 -0
- data/test/new_relic/agent/agent_test_controller_test.rb +382 -0
- data/test/new_relic/agent/apdex_from_server_test.rb +9 -0
- data/test/new_relic/agent/beacon_configuration_test.rb +111 -0
- data/test/new_relic/agent/browser_monitoring_test.rb +323 -0
- data/test/new_relic/agent/busy_calculator_test.rb +81 -0
- data/test/new_relic/agent/database_test.rb +149 -0
- data/test/new_relic/agent/error_collector/notice_error_test.rb +257 -0
- data/test/new_relic/agent/error_collector_test.rb +192 -0
- data/test/new_relic/agent/instrumentation/active_record_instrumentation_test.rb +576 -0
- data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +34 -0
- data/test/new_relic/agent/instrumentation/instrumentation_test.rb +11 -0
- data/test/new_relic/agent/instrumentation/metric_frame/pop_test.rb +171 -0
- data/test/new_relic/agent/instrumentation/metric_frame_test.rb +50 -0
- data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +84 -0
- data/test/new_relic/agent/instrumentation/queue_time_test.rb +382 -0
- data/test/new_relic/agent/instrumentation/rack_test.rb +35 -0
- data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +184 -0
- data/test/new_relic/agent/memcache_instrumentation_test.rb +143 -0
- data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +164 -0
- data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +234 -0
- data/test/new_relic/agent/method_tracer_test.rb +386 -0
- data/test/new_relic/agent/mock_scope_listener.rb +23 -0
- data/test/new_relic/agent/rpm_agent_test.rb +149 -0
- data/test/new_relic/agent/sampler_test.rb +19 -0
- data/test/new_relic/agent/shim_agent_test.rb +20 -0
- data/test/new_relic/agent/sql_sampler_test.rb +192 -0
- data/test/new_relic/agent/stats_engine/metric_stats/harvest_test.rb +150 -0
- data/test/new_relic/agent/stats_engine/metric_stats_test.rb +82 -0
- data/test/new_relic/agent/stats_engine/samplers_test.rb +99 -0
- data/test/new_relic/agent/stats_engine_test.rb +220 -0
- data/test/new_relic/agent/transaction_info_test.rb +13 -0
- data/test/new_relic/agent/transaction_sample_builder_test.rb +219 -0
- data/test/new_relic/agent/transaction_sampler_test.rb +967 -0
- data/test/new_relic/agent/worker_loop_test.rb +66 -0
- data/test/new_relic/agent_test.rb +187 -0
- data/test/new_relic/collection_helper_test.rb +149 -0
- data/test/new_relic/command/deployments_test.rb +68 -0
- data/test/new_relic/control/class_methods_test.rb +62 -0
- data/test/new_relic/control/configuration_test.rb +84 -0
- data/test/new_relic/control/logging_methods_test.rb +185 -0
- data/test/new_relic/control_test.rb +256 -0
- data/test/new_relic/data_serialization_test.rb +208 -0
- data/test/new_relic/delayed_job_injection_test.rb +16 -0
- data/test/new_relic/local_environment_test.rb +85 -0
- data/test/new_relic/metric_data_test.rb +125 -0
- data/test/new_relic/metric_parser/metric_parser_test.rb +11 -0
- data/test/new_relic/metric_spec_test.rb +95 -0
- data/test/new_relic/rack/all_test.rb +11 -0
- data/test/new_relic/rack/browser_monitoring_test.rb +142 -0
- data/test/new_relic/rack/developer_mode_helper_test.rb +141 -0
- data/test/new_relic/rack/developer_mode_test.rb +74 -0
- data/test/new_relic/stats_test.rb +411 -0
- data/test/new_relic/transaction_analysis/segment_summary_test.rb +91 -0
- data/test/new_relic/transaction_analysis_test.rb +121 -0
- data/test/new_relic/transaction_sample/composite_segment_test.rb +35 -0
- data/test/new_relic/transaction_sample/fake_segment_test.rb +17 -0
- data/test/new_relic/transaction_sample/segment_test.rb +389 -0
- data/test/new_relic/transaction_sample/summary_segment_test.rb +31 -0
- data/test/new_relic/transaction_sample_subtest_test.rb +56 -0
- data/test/new_relic/transaction_sample_test.rb +177 -0
- data/test/new_relic/version_number_test.rb +89 -0
- data/test/script/build_test_gem.sh +51 -0
- data/test/script/ci.sh +94 -0
- data/test/script/ci_bench.sh +52 -0
- data/test/test_contexts.rb +29 -0
- data/test/test_helper.rb +155 -0
- data/ui/helpers/developer_mode_helper.rb +357 -0
- data/ui/helpers/google_pie_chart.rb +48 -0
- data/ui/views/layouts/newrelic_default.rhtml +47 -0
- data/ui/views/newrelic/_explain_plans.rhtml +27 -0
- data/ui/views/newrelic/_sample.rhtml +20 -0
- data/ui/views/newrelic/_segment.rhtml +28 -0
- data/ui/views/newrelic/_segment_limit_message.rhtml +1 -0
- data/ui/views/newrelic/_segment_row.rhtml +12 -0
- data/ui/views/newrelic/_show_sample_detail.rhtml +24 -0
- data/ui/views/newrelic/_show_sample_sql.rhtml +24 -0
- data/ui/views/newrelic/_show_sample_summary.rhtml +3 -0
- data/ui/views/newrelic/_sql_row.rhtml +16 -0
- data/ui/views/newrelic/_stack_trace.rhtml +15 -0
- data/ui/views/newrelic/_table.rhtml +12 -0
- data/ui/views/newrelic/explain_sql.rhtml +43 -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/file/images/new-relic-rpm-desktop.gif +0 -0
- data/ui/views/newrelic/file/images/new_relic_rpm_desktop.gif +0 -0
- data/ui/views/newrelic/file/images/textmate.png +0 -0
- data/ui/views/newrelic/file/javascript/jquery-1.4.2.js +6240 -0
- data/ui/views/newrelic/file/javascript/transaction_sample.js +120 -0
- data/ui/views/newrelic/file/stylesheets/style.css +490 -0
- data/ui/views/newrelic/index.rhtml +71 -0
- data/ui/views/newrelic/sample_not_found.rhtml +2 -0
- data/ui/views/newrelic/show_sample.rhtml +80 -0
- data/ui/views/newrelic/show_source.rhtml +3 -0
- data/ui/views/newrelic/threads.rhtml +53 -0
- data/vendor/gems/dependency_detection-0.0.1.build/LICENSE +5 -0
- data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb +67 -0
- data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb +3 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb +1 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb +64 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb +14 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb +31 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb +33 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb +89 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb +46 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb +67 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb +43 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb +17 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb +48 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb +24 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb +28 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb +17 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb +11 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb +55 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb +40 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb +20 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb +31 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb +17 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb +34 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb +55 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb +135 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb +27 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb +40 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb +7 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb +27 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb +15 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb +54 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb +6 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb +6 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb +20 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb +20 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb +5 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb +70 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb +18 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb +14 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb +133 -0
- metadata +376 -0
@@ -0,0 +1,95 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__),'..', 'test_helper'))
|
2
|
+
class NewRelic::MetricSpecTest < Test::Unit::TestCase
|
3
|
+
|
4
|
+
def test_equal
|
5
|
+
spec1 = NewRelic::MetricSpec.new('Controller')
|
6
|
+
spec2 = NewRelic::MetricSpec.new('Controller', nil)
|
7
|
+
|
8
|
+
assert spec1.eql?(NewRelic::MetricSpec.new('Controller'))
|
9
|
+
assert spec2.eql?(NewRelic::MetricSpec.new('Controller', nil))
|
10
|
+
assert spec1.eql?(spec2)
|
11
|
+
assert !spec2.eql?(NewRelic::MetricSpec.new('Controller', '/dude'))
|
12
|
+
end
|
13
|
+
|
14
|
+
define_method(:'test_<=>') do
|
15
|
+
s1 = NewRelic::MetricSpec.new('ActiveRecord')
|
16
|
+
s2 = NewRelic::MetricSpec.new('Controller')
|
17
|
+
assert_equal [s1, s2].sort, [s1,s2]
|
18
|
+
assert_equal [s2, s1].sort, [s1,s2]
|
19
|
+
|
20
|
+
s1 = NewRelic::MetricSpec.new('Controller', nil)
|
21
|
+
s2 = NewRelic::MetricSpec.new('Controller', 'hap')
|
22
|
+
assert_equal [s2, s1].sort, [s1, s2]
|
23
|
+
assert_equal [s1, s2].sort, [s1, s2]
|
24
|
+
|
25
|
+
s1 = NewRelic::MetricSpec.new('Controller', 'hap')
|
26
|
+
s2 = NewRelic::MetricSpec.new('Controller', nil)
|
27
|
+
assert_equal [s2, s1].sort, [s2, s1]
|
28
|
+
assert_equal [s1, s2].sort, [s2, s1]
|
29
|
+
|
30
|
+
s1 = NewRelic::MetricSpec.new('Controller')
|
31
|
+
s2 = NewRelic::MetricSpec.new('Controller')
|
32
|
+
assert_equal [s2, s1].sort, [s2, s1] # unchanged due to no sort criteria
|
33
|
+
assert_equal [s1, s2].sort, [s1, s2] # unchanged due to no sort criteria
|
34
|
+
|
35
|
+
s1 = NewRelic::MetricSpec.new('Controller', nil)
|
36
|
+
s2 = NewRelic::MetricSpec.new('Controller', nil)
|
37
|
+
assert_equal [s2, s1].sort, [s2, s1] # unchanged due to no sort criteria
|
38
|
+
assert_equal [s1, s2].sort, [s1, s2] # unchanged due to no sort criteria
|
39
|
+
end
|
40
|
+
|
41
|
+
# test to make sure the MetricSpec class can serialize to json
|
42
|
+
def test_json
|
43
|
+
spec = NewRelic::MetricSpec.new("controller", "metric#find")
|
44
|
+
|
45
|
+
import = ::ActiveSupport::JSON.decode(spec.to_json)
|
46
|
+
|
47
|
+
compare_spec(spec, import)
|
48
|
+
|
49
|
+
stats = NewRelic::MethodTraceStats.new
|
50
|
+
|
51
|
+
import = ::ActiveSupport::JSON.decode(stats.to_json)
|
52
|
+
|
53
|
+
compare_stat(stats, import)
|
54
|
+
|
55
|
+
metric_data = NewRelic::MetricData.new(spec, stats, 10)
|
56
|
+
|
57
|
+
import = ::ActiveSupport::JSON.decode(metric_data.to_json)
|
58
|
+
|
59
|
+
compare_metric_data(metric_data, import)
|
60
|
+
end
|
61
|
+
|
62
|
+
def test_truncate!
|
63
|
+
spec = NewRelic::MetricSpec.new('a', 'b')
|
64
|
+
spec.name = "a" * 300
|
65
|
+
spec.scope = "b" * 300
|
66
|
+
spec.truncate!
|
67
|
+
assert_equal("a" * 255, spec.name, "should have shortened the name")
|
68
|
+
assert_equal("b" * 255, spec.scope, "should have shortened the scope")
|
69
|
+
end
|
70
|
+
|
71
|
+
private
|
72
|
+
|
73
|
+
def compare_spec(spec, import)
|
74
|
+
assert_equal 2, import.length
|
75
|
+
assert_equal spec.name, import['name']
|
76
|
+
assert_equal spec.scope, import['scope']
|
77
|
+
end
|
78
|
+
|
79
|
+
def compare_stat(stats, import)
|
80
|
+
assert_equal 6, import.length
|
81
|
+
assert_equal stats.total_call_time, import['total_call_time']
|
82
|
+
assert_equal stats.max_call_time, import['max_call_time']
|
83
|
+
assert_equal stats.min_call_time, import['min_call_time']
|
84
|
+
assert_equal stats.sum_of_squares, import['sum_of_squares']
|
85
|
+
assert_equal stats.call_count, import['call_count']
|
86
|
+
assert_equal stats.total_exclusive_time, import['total_exclusive_time']
|
87
|
+
end
|
88
|
+
|
89
|
+
def compare_metric_data(metric_data, import)
|
90
|
+
assert_equal 3, import.length
|
91
|
+
assert_equal metric_data.metric_id, import['metric_id']
|
92
|
+
compare_spec(metric_data.metric_spec, import['metric_spec']) unless metric_data.metric_id
|
93
|
+
compare_stat(metric_data.stats, import['stats'])
|
94
|
+
end
|
95
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__),'..','..','test_helper'))
|
2
|
+
require 'new_relic/rack/browser_monitoring'
|
3
|
+
require 'new_relic/rack/developer_mode'
|
4
|
+
class NewRelic::Rack::AllTest < Test::Unit::TestCase
|
5
|
+
# just here to load the files above
|
6
|
+
|
7
|
+
def test_truth
|
8
|
+
assert true
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
@@ -0,0 +1,142 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__),'..', '..',
|
2
|
+
'test_helper'))
|
3
|
+
require 'rack/test'
|
4
|
+
require 'new_relic/rack/browser_monitoring'
|
5
|
+
|
6
|
+
ENV['RACK_ENV'] = 'test'
|
7
|
+
|
8
|
+
# we should expand the environments we support, any rack app could
|
9
|
+
# benefit from auto-rum, but the truth of the matter is that atm
|
10
|
+
# we only support Rails >= 2.3
|
11
|
+
def middleware_supported?
|
12
|
+
::Rails::VERSION::MAJOR >= 2 && ::Rails::VERSION::MINOR >= 3
|
13
|
+
end
|
14
|
+
|
15
|
+
if middleware_supported?
|
16
|
+
class BrowserMonitoringTest < Test::Unit::TestCase
|
17
|
+
include Rack::Test::Methods
|
18
|
+
|
19
|
+
class TestApp
|
20
|
+
def self.doc=(other)
|
21
|
+
@@doc = other
|
22
|
+
end
|
23
|
+
|
24
|
+
def call(env)
|
25
|
+
@@doc ||= <<-EOL
|
26
|
+
<html>
|
27
|
+
<head>
|
28
|
+
<title>im a title</title>
|
29
|
+
<meta some-crap="1"/>
|
30
|
+
<script>
|
31
|
+
junk
|
32
|
+
</script>
|
33
|
+
</head>
|
34
|
+
<body>im some body text</body>
|
35
|
+
</html>
|
36
|
+
EOL
|
37
|
+
[200, {'Content-Type' => 'text/html'}, Rack::Response.new(@@doc)]
|
38
|
+
end
|
39
|
+
include NewRelic::Agent::Instrumentation::Rack
|
40
|
+
end
|
41
|
+
|
42
|
+
def app
|
43
|
+
NewRelic::Rack::BrowserMonitoring.new(TestApp.new)
|
44
|
+
end
|
45
|
+
|
46
|
+
def setup
|
47
|
+
super
|
48
|
+
clear_cookies
|
49
|
+
NewRelic::Agent.manual_start
|
50
|
+
config = NewRelic::Agent::BeaconConfiguration.new("browser_key" => "browserKey",
|
51
|
+
"application_id" => "apId",
|
52
|
+
"beacon"=>"beacon",
|
53
|
+
"episodes_url"=>"this_is_my_file")
|
54
|
+
NewRelic::Agent.instance.stubs(:beacon_configuration).returns(config)
|
55
|
+
NewRelic::Agent.stubs(:is_transaction_traced?).returns(true)
|
56
|
+
end
|
57
|
+
|
58
|
+
def teardown
|
59
|
+
super
|
60
|
+
clear_cookies
|
61
|
+
mocha_teardown
|
62
|
+
TestApp.doc = nil
|
63
|
+
end
|
64
|
+
|
65
|
+
def test_make_sure_header_is_set
|
66
|
+
assert NewRelic::Agent.browser_timing_header.size > 0
|
67
|
+
end
|
68
|
+
|
69
|
+
def test_make_sure_footer_is_set
|
70
|
+
assert NewRelic::Agent.browser_timing_footer.size > 0
|
71
|
+
end
|
72
|
+
|
73
|
+
def test_should_only_instrument_successfull_html_requests
|
74
|
+
assert app.should_instrument?(200, {'Content-Type' => 'text/html'})
|
75
|
+
assert !app.should_instrument?(500, {'Content-Type' => 'text/html'})
|
76
|
+
assert !app.should_instrument?(200, {'Content-Type' => 'text/xhtml'})
|
77
|
+
end
|
78
|
+
|
79
|
+
def test_should_not_instrument_when_content_disposition
|
80
|
+
assert !app.should_instrument?(200, {'Content-Type' => 'text/html', 'Content-Disposition' => 'attachment; filename=test.html'})
|
81
|
+
end
|
82
|
+
|
83
|
+
def test_insert_timing_header_right_after_open_head_if_no_meta_tags
|
84
|
+
get '/'
|
85
|
+
|
86
|
+
assert(last_response.body.include?("head>#{NewRelic::Agent.browser_timing_header}"),
|
87
|
+
last_response.body)
|
88
|
+
TestApp.doc = nil
|
89
|
+
end
|
90
|
+
|
91
|
+
def test_insert_timing_header_right_before_head_close_if_ua_compatible_found
|
92
|
+
TestApp.doc = <<-EOL
|
93
|
+
<html>
|
94
|
+
<head>
|
95
|
+
<title>im a title</title>
|
96
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
97
|
+
<script>
|
98
|
+
junk
|
99
|
+
</script>
|
100
|
+
</head>
|
101
|
+
<body>im some body text</body>
|
102
|
+
</html>
|
103
|
+
EOL
|
104
|
+
get '/'
|
105
|
+
|
106
|
+
assert(last_response.body.include?("#{NewRelic::Agent.browser_timing_header}</head>"),
|
107
|
+
last_response.body)
|
108
|
+
end
|
109
|
+
|
110
|
+
def test_insert_timing_footer_right_before_html_body_close
|
111
|
+
get '/'
|
112
|
+
|
113
|
+
assert_match(/.*NREUMQ\.push.*new Date\(\)\.getTime\(\),"","","","",""\]\)<\/script><\/body>/,
|
114
|
+
last_response.body)
|
115
|
+
end
|
116
|
+
|
117
|
+
def test_should_not_throw_exception_on_empty_reponse
|
118
|
+
TestApp.doc = ''
|
119
|
+
get '/'
|
120
|
+
|
121
|
+
assert last_response.ok?
|
122
|
+
end
|
123
|
+
|
124
|
+
def test_token_is_set_in_footer_when_set_by_cookie
|
125
|
+
token = '1234567890987654321'
|
126
|
+
set_cookie "NRAGENT=tk=#{token}"
|
127
|
+
get '/'
|
128
|
+
|
129
|
+
assert(last_response.body.include?(token), last_response.body)
|
130
|
+
end
|
131
|
+
|
132
|
+
def test_guid_is_set_in_footer_when_token_is_set
|
133
|
+
guid = 'abcdefgfedcba'
|
134
|
+
NewRelic::TransactionSample.any_instance.stubs(:generate_guid).returns(guid)
|
135
|
+
NewRelic::Control.instance.stubs(:apdex_t).returns(0.0001)
|
136
|
+
set_cookie "NRAGENT=tk=token"
|
137
|
+
get '/'
|
138
|
+
|
139
|
+
assert(last_response.body.include?(guid), last_response.body)
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
@@ -0,0 +1,141 @@
|
|
1
|
+
# ENV['SKIP_RAILS'] = 'true'
|
2
|
+
require File.expand_path(File.join(File.dirname(__FILE__),'..', '..',
|
3
|
+
'test_helper'))
|
4
|
+
require File.expand_path(File.join(File.dirname(__FILE__),'..','..','..','ui',
|
5
|
+
'helpers','developer_mode_helper.rb'))
|
6
|
+
|
7
|
+
ENV['RACK_ENV'] = 'test'
|
8
|
+
class DeveloperModeTest < Test::Unit::TestCase
|
9
|
+
include NewRelic::DeveloperModeHelper
|
10
|
+
|
11
|
+
|
12
|
+
def test_application_caller
|
13
|
+
assert_equal "/opt/ruby/lib/ruby/1.8/net/protocol.rb:135:in `rbuf_fill'", application_caller(Fixtures::NORMAL_TRACE)
|
14
|
+
assert_equal "c:/Ruby192/lib/ruby/1.9.1/erb.rb:753:in `eval'", application_caller(Fixtures::WINDOWS_TRACE)
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_application_stack_trace
|
18
|
+
trace = application_stack_trace(Fixtures::NORMAL_TRACE)
|
19
|
+
assert_equal 29, trace.size
|
20
|
+
trace = application_stack_trace(Fixtures::WINDOWS_TRACE)
|
21
|
+
assert_equal 14, trace.size
|
22
|
+
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_url_for_source
|
26
|
+
for line in Fixtures::NORMAL_TRACE + Fixtures::WINDOWS_TRACE do
|
27
|
+
line = url_for_source(line)
|
28
|
+
assert line =~ /^show_source\?file=.*&line=\d+&/, line
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
private
|
33
|
+
def params; {} end
|
34
|
+
module Fixtures
|
35
|
+
WINDOWS_TRACE = <<-EOF.split("\n")
|
36
|
+
newrelic_rpm (3.1.1) ui/helpers/developer_mode_helper.rb:234:in `file_and_line'
|
37
|
+
newrelic_rpm (3.1.1) ui/helpers/developer_mode_helper.rb:30:in `block in application_caller'
|
38
|
+
newrelic_rpm (3.1.1) ui/helpers/developer_mode_helper.rb:29:in `each'
|
39
|
+
newrelic_rpm (3.1.1) ui/helpers/developer_mode_helper.rb:29:in `application_caller'
|
40
|
+
newrelic_rpm (3.1.1) ui/helpers/developer_mode_helper.rb:111:in `link_to_source'
|
41
|
+
(erb):5:in `render'
|
42
|
+
c:/Ruby192/lib/ruby/1.9.1/erb.rb:753:in `eval'
|
43
|
+
c:/Ruby192/lib/ruby/1.9.1/erb.rb:753:in `result'
|
44
|
+
newrelic_rpm (3.1.1) lib/new_relic/rack/developer_mode.rb:155:in `render_without_layout'
|
45
|
+
newrelic_rpm (3.1.1) lib/new_relic/rack/developer_mode.rb:136:in `render'
|
46
|
+
newrelic_rpm (3.1.1) lib/new_relic/rack/developer_mode.rb:121:in `block in render'
|
47
|
+
newrelic_rpm (3.1.1) lib/new_relic/rack/developer_mode.rb:120:in `map'
|
48
|
+
newrelic_rpm (3.1.1) lib/new_relic/rack/developer_mode.rb:120:in `render'
|
49
|
+
(erb):22:in `render'
|
50
|
+
c:/Ruby192/lib/ruby/1.9.1/erb.rb:753:in `eval'
|
51
|
+
c:/Ruby192/lib/ruby/1.9.1/erb.rb:753:in `result'
|
52
|
+
newrelic_rpm (3.1.1) lib/new_relic/rack/developer_mode.rb:155:in `render_without_layout'
|
53
|
+
newrelic_rpm (3.1.1) lib/new_relic/rack/developer_mode.rb:136:in `render'
|
54
|
+
(erb):77:in `block in render'
|
55
|
+
(erb):74:in `collect'
|
56
|
+
(erb):74:in `render'
|
57
|
+
c:/Ruby192/lib/ruby/1.9.1/erb.rb:753:in `eval'
|
58
|
+
c:/Ruby192/lib/ruby/1.9.1/erb.rb:753:in `result'
|
59
|
+
newrelic_rpm (3.1.1) lib/new_relic/rack/developer_mode.rb:155:in `render_without_layout'
|
60
|
+
newrelic_rpm (3.1.1) lib/new_relic/rack/developer_mode.rb:133:in `block in render'
|
61
|
+
(erb):38:in `render_with_layout'
|
62
|
+
c:/Ruby192/lib/ruby/1.9.1/erb.rb:753:in `eval'
|
63
|
+
c:/Ruby192/lib/ruby/1.9.1/erb.rb:753:in `result'
|
64
|
+
newrelic_rpm (3.1.1) lib/new_relic/rack/developer_mode.rb:149:in `render_with_layout'
|
65
|
+
newrelic_rpm (3.1.1) lib/new_relic/rack/developer_mode.rb:132:in `render'
|
66
|
+
newrelic_rpm (3.1.1) lib/new_relic/rack/developer_mode.rb:232:in `show_sample_data'
|
67
|
+
newrelic_rpm (3.1.1) lib/new_relic/rack/developer_mode.rb:47:in `_call'
|
68
|
+
newrelic_rpm (3.1.1) lib/new_relic/rack/developer_mode.rb:25:in `call'
|
69
|
+
warden (1.0.5) lib/warden/manager.rb:35:in `block in call'
|
70
|
+
warden (1.0.5) lib/warden/manager.rb:34:in `catch'
|
71
|
+
warden (1.0.5) lib/warden/manager.rb:34:in `call'
|
72
|
+
actionpack (3.0.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
73
|
+
actionpack (3.0.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
74
|
+
rack (1.2.3) lib/rack/methodoverride.rb:24:in `call'
|
75
|
+
actionpack (3.0.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
76
|
+
actionpack (3.0.9) lib/action_dispatch/middleware/flash.rb:182:in `call'
|
77
|
+
actionpack (3.0.9) lib/action_dispatch/middleware/session/abstract_store.rb:149:in `call'
|
78
|
+
actionpack (3.0.9) lib/action_dispatch/middleware/cookies.rb:302:in `call'
|
79
|
+
activerecord (3.0.9) lib/active_record/query_cache.rb:32:in `block in call'
|
80
|
+
activerecord (3.0.9) lib/active_record/connection_adapters/abstract/query_cache.rb:28:in `cache'
|
81
|
+
activerecord (3.0.9) lib/active_record/query_cache.rb:12:in `cache'
|
82
|
+
activerecord (3.0.9) lib/active_record/query_cache.rb:31:in `call'
|
83
|
+
activerecord (3.0.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:354:in `call'
|
84
|
+
actionpack (3.0.9) lib/action_dispatch/middleware/callbacks.rb:46:in `block in call'
|
85
|
+
activesupport (3.0.9) lib/active_support/callbacks.rb:416:in `_run_call_callbacks'
|
86
|
+
actionpack (3.0.9) lib/action_dispatch/middleware/callbacks.rb:44:in `call'
|
87
|
+
rack (1.2.3) lib/rack/sendfile.rb:107:in `call'
|
88
|
+
actionpack (3.0.9) lib/action_dispatch/middleware/remote_ip.rb:48:in `call'
|
89
|
+
actionpack (3.0.9) lib/action_dispatch/middleware/show_exceptions.rb:47:in `call'
|
90
|
+
railties (3.0.9) lib/rails/rack/logger.rb:13:in `call'
|
91
|
+
rack (1.2.3) lib/rack/runtime.rb:17:in `call'
|
92
|
+
activesupport (3.0.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
93
|
+
rack (1.2.3) lib/rack/lock.rb:11:in `block in call'
|
94
|
+
<internal:prelude>:10:in `synchronize'
|
95
|
+
rack (1.2.3) lib/rack/lock.rb:11:in `call'
|
96
|
+
actionpack (3.0.9) lib/action_dispatch/middleware/static.rb:30:in `call'
|
97
|
+
railties (3.0.9) lib/rails/application.rb:168:in `call'
|
98
|
+
railties (3.0.9) lib/rails/application.rb:77:in `method_missing'
|
99
|
+
railties (3.0.9) lib/rails/rack/log_tailer.rb:14:in `call'
|
100
|
+
rack (1.2.3) lib/rack/content_length.rb:13:in `call'
|
101
|
+
rack (1.2.3) lib/rack/handler/webrick.rb:52:in `service'
|
102
|
+
c:/Ruby192/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
103
|
+
c:/Ruby192/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
104
|
+
c:/Ruby192/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
105
|
+
EOF
|
106
|
+
|
107
|
+
NORMAL_TRACE = <<-EOF.split("\n")
|
108
|
+
/opt/ruby/lib/ruby/1.8/net/protocol.rb:135:in `rbuf_fill'
|
109
|
+
/opt/ruby/lib/ruby/1.8/timeout.rb:101:in `timeout'
|
110
|
+
/opt/ruby/lib/ruby/1.8/net/protocol.rb:126:in `readline'
|
111
|
+
/opt/ruby/lib/ruby/1.8/net/http.rb:2028:in `read_status_line'
|
112
|
+
/opt/ruby/lib/ruby/1.8/net/http.rb:1051:in `request_without_newrelic_trace'
|
113
|
+
/opt/bundler/gems/ruby_agent-705a7cf29207/lib/new_relic/agent/instrumentation/net.rb:20:in `request_without_fakeweb'
|
114
|
+
/opt/bundler/gems/ruby_agent-705a7cf29207/lib/new_relic/agent/method_tracer.rb:242:in `trace_execution_scoped'
|
115
|
+
/opt/bundler/gems/ruby_agent-705a7cf29207/lib/new_relic/agent/instrumentation/net.rb:19:in `request_without_fakeweb'
|
116
|
+
/opt/ruby/gems/fakeweb-1.3.0/lib/fake_web/ext/net_http.rb:50:in `request'
|
117
|
+
/opt/ruby/lib/ruby/1.8/net/http.rb:1037:in `request_without_newrelic_trace'
|
118
|
+
/opt/ruby/lib/ruby/1.8/net/http.rb:543:in `start'
|
119
|
+
/opt/ruby/lib/ruby/1.8/net/http.rb:1035:in `request_without_newrelic_trace'
|
120
|
+
/opt/bundler/gems/ruby_agent-705a7cf29207/lib/new_relic/agent/instrumentation/net.rb:20:in `request_without_fakeweb'
|
121
|
+
/opt/bundler/gems/ruby_agent-705a7cf29207/lib/new_relic/agent/method_tracer.rb:242:in `trace_execution_scoped'
|
122
|
+
/opt/bundler/gems/ruby_agent-705a7cf29207/lib/new_relic/agent/instrumentation/net.rb:19:in `request_without_fakeweb'
|
123
|
+
/opt/ruby/gems/fakeweb-1.3.0/lib/fake_web/ext/net_http.rb:50:in `request'
|
124
|
+
/opt/ruby/lib/ruby/1.8/net/http.rb:992:in `post2'
|
125
|
+
/opt/ruby/gems/rforce-0.4.1/lib/rforce/binding.rb:141:in `call_remote'
|
126
|
+
/opt/ruby/gems/rforce-0.4.1/lib/rforce/binding.rb:208:in `method_missing'
|
127
|
+
/Users/joe/dev/workspace/lib/lead_lover/base.rb:135:in `update'
|
128
|
+
/Users/joe/dev/workspace/lib/lead_lover/base.rb:123:in `update_filtered_attributes'
|
129
|
+
/Users/joe/dev/workspace/lib/lead_lover/lead.rb:62:in `assign_to_owner'
|
130
|
+
/Users/joe/dev/workspace/app/models/account.rb:1968:in `link_to_leadlover_lead'
|
131
|
+
/Users/joe/dev/workspace/app/models/account.rb:1956:in `link_to_leadlover'
|
132
|
+
/opt/ruby/gems/activerecord-2.3.14/lib/active_record/associations/association_proxy.rb:215:in `send'
|
133
|
+
/opt/ruby/gems/activerecord-2.3.14/lib/active_record/associations/association_proxy.rb:215:in `method_missing'
|
134
|
+
/Users/joe/dev/workspace/app/models/subscription.rb:883:in `link_to_leadlover'
|
135
|
+
/opt/ruby/gems/delayed_job-2.0.6/lib/delayed/performable_method.rb:35:in `send'
|
136
|
+
/opt/ruby/gems/delayed_job-2.0.6/lib/delayed/performable_method.rb:35:in `perform'
|
137
|
+
/Users/joe/dev/workspace/config/initializers/delayed_job_with_shards.rb:17:in `perform'
|
138
|
+
/opt/ruby/gems/delayed_job-2.0.6/lib/delayed/backend/base.rb:74:in `invoke_job'
|
139
|
+
EOF
|
140
|
+
end
|
141
|
+
end
|
@@ -0,0 +1,74 @@
|
|
1
|
+
# ENV['SKIP_RAILS'] = 'true'
|
2
|
+
require File.expand_path(File.join(File.dirname(__FILE__),'..', '..',
|
3
|
+
'test_helper'))
|
4
|
+
require 'rack/test'
|
5
|
+
require 'new_relic/rack/developer_mode'
|
6
|
+
|
7
|
+
ENV['RACK_ENV'] = 'test'
|
8
|
+
|
9
|
+
class DeveloperModeTest < Test::Unit::TestCase
|
10
|
+
include Rack::Test::Methods
|
11
|
+
include TransactionSampleTestHelper
|
12
|
+
|
13
|
+
def app
|
14
|
+
mock_app = lambda { |env| [500, {}, "Don't touch me!"] }
|
15
|
+
NewRelic::Rack::DeveloperMode.new(mock_app)
|
16
|
+
end
|
17
|
+
|
18
|
+
def setup
|
19
|
+
@sampler = NewRelic::Agent::TransactionSampler.new
|
20
|
+
run_sample_trace_on(@sampler, '/here')
|
21
|
+
run_sample_trace_on(@sampler, '/there')
|
22
|
+
run_sample_trace_on(@sampler, '/somewhere')
|
23
|
+
NewRelic::Agent.instance.stubs(:transaction_sampler).returns(@sampler)
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_index_displays_all_samples
|
27
|
+
get '/newrelic'
|
28
|
+
|
29
|
+
assert last_response.ok?
|
30
|
+
assert last_response.body.include?('/here')
|
31
|
+
assert last_response.body.include?('/there')
|
32
|
+
assert last_response.body.include?('/somewhere')
|
33
|
+
end
|
34
|
+
|
35
|
+
def test_show_sample_summary_displays_sample_details
|
36
|
+
get "/newrelic/show_sample_summary?id=#{@sampler.samples[0].sample_id}"
|
37
|
+
|
38
|
+
assert last_response.ok?
|
39
|
+
assert last_response.body.include?('/here')
|
40
|
+
assert last_response.body.include?('SandwichesController')
|
41
|
+
assert last_response.body.include?('index')
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_explain_sql_displays_query_plan
|
45
|
+
sample = @sampler.samples[0]
|
46
|
+
sql_segment = sample.sql_segments[0]
|
47
|
+
explain_results = NewRelic::Agent::Database.process_resultset(example_explain_as_hashes)
|
48
|
+
|
49
|
+
NewRelic::TransactionSample::Segment.any_instance.expects(:explain_sql).returns(explain_results)
|
50
|
+
get "/newrelic/explain_sql?id=#{sample.sample_id}&segment=#{sql_segment.segment_id}"
|
51
|
+
|
52
|
+
assert last_response.ok?
|
53
|
+
assert last_response.body.include?('PRIMARY')
|
54
|
+
assert last_response.body.include?('Key Length')
|
55
|
+
assert last_response.body.include?('Using index')
|
56
|
+
end
|
57
|
+
|
58
|
+
private
|
59
|
+
|
60
|
+
def example_explain_as_hashes
|
61
|
+
[{
|
62
|
+
'Id' => '1',
|
63
|
+
'Select Type' => 'SIMPLE',
|
64
|
+
'Table' => 'sandwiches',
|
65
|
+
'Type' => 'range',
|
66
|
+
'Possible Keys' => 'PRIMARY',
|
67
|
+
'Key' => 'PRIMARY',
|
68
|
+
'Key Length' => '4',
|
69
|
+
'Ref' => '',
|
70
|
+
'Rows' => '1',
|
71
|
+
'Extra' => 'Using index'
|
72
|
+
}]
|
73
|
+
end
|
74
|
+
end
|