techarch-newrelic_rpm 2.10.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +335 -0
- data/LICENSE +37 -0
- data/Manifest +159 -0
- data/README.md +138 -0
- data/Rakefile +22 -0
- data/bin/mongrel_rpm +33 -0
- data/bin/newrelic_cmd +4 -0
- data/cert/cacert.pem +34 -0
- data/init.rb +38 -0
- data/install.rb +45 -0
- data/lib/new_relic/agent.rb +281 -0
- data/lib/new_relic/agent/agent.rb +636 -0
- data/lib/new_relic/agent/chained_call.rb +13 -0
- data/lib/new_relic/agent/collection_helper.rb +66 -0
- data/lib/new_relic/agent/error_collector.rb +121 -0
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +18 -0
- data/lib/new_relic/agent/instrumentation/active_record_instrumentation.rb +88 -0
- data/lib/new_relic/agent/instrumentation/authlogic.rb +8 -0
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +437 -0
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +90 -0
- data/lib/new_relic/agent/instrumentation/dispatcher_instrumentation.rb +167 -0
- data/lib/new_relic/agent/instrumentation/memcache.rb +24 -0
- data/lib/new_relic/agent/instrumentation/merb/controller.rb +26 -0
- data/lib/new_relic/agent/instrumentation/merb/dispatcher.rb +13 -0
- data/lib/new_relic/agent/instrumentation/merb/errors.rb +8 -0
- data/lib/new_relic/agent/instrumentation/net.rb +23 -0
- data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +20 -0
- data/lib/new_relic/agent/instrumentation/rack.rb +108 -0
- data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +59 -0
- data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +27 -0
- data/lib/new_relic/agent/instrumentation/rails/dispatcher.rb +41 -0
- data/lib/new_relic/agent/instrumentation/rails/errors.rb +27 -0
- data/lib/new_relic/agent/instrumentation/sinatra.rb +39 -0
- data/lib/new_relic/agent/method_tracer.rb +349 -0
- data/lib/new_relic/agent/patch_const_missing.rb +125 -0
- data/lib/new_relic/agent/sampler.rb +12 -0
- data/lib/new_relic/agent/samplers/cpu_sampler.rb +49 -0
- data/lib/new_relic/agent/samplers/memory_sampler.rb +138 -0
- data/lib/new_relic/agent/samplers/mongrel_sampler.rb +22 -0
- data/lib/new_relic/agent/shim_agent.rb +21 -0
- data/lib/new_relic/agent/stats_engine.rb +22 -0
- data/lib/new_relic/agent/stats_engine/metric_stats.rb +111 -0
- data/lib/new_relic/agent/stats_engine/samplers.rb +71 -0
- data/lib/new_relic/agent/stats_engine/transactions.rb +152 -0
- data/lib/new_relic/agent/transaction_sampler.rb +310 -0
- data/lib/new_relic/agent/worker_loop.rb +118 -0
- data/lib/new_relic/commands/deployments.rb +145 -0
- data/lib/new_relic/commands/new_relic_commands.rb +30 -0
- data/lib/new_relic/control.rb +473 -0
- data/lib/new_relic/control/external.rb +13 -0
- data/lib/new_relic/control/merb.rb +22 -0
- data/lib/new_relic/control/rails.rb +145 -0
- data/lib/new_relic/control/ruby.rb +36 -0
- data/lib/new_relic/control/sinatra.rb +14 -0
- data/lib/new_relic/histogram.rb +89 -0
- data/lib/new_relic/local_environment.rb +328 -0
- data/lib/new_relic/merbtasks.rb +6 -0
- data/lib/new_relic/metric_data.rb +42 -0
- data/lib/new_relic/metric_parser.rb +124 -0
- data/lib/new_relic/metric_parser/action_mailer.rb +9 -0
- data/lib/new_relic/metric_parser/active_merchant.rb +26 -0
- data/lib/new_relic/metric_parser/active_record.rb +25 -0
- data/lib/new_relic/metric_parser/controller.rb +54 -0
- data/lib/new_relic/metric_parser/controller_cpu.rb +38 -0
- data/lib/new_relic/metric_parser/errors.rb +6 -0
- data/lib/new_relic/metric_parser/external.rb +50 -0
- data/lib/new_relic/metric_parser/mem_cache.rb +12 -0
- data/lib/new_relic/metric_parser/view.rb +61 -0
- data/lib/new_relic/metric_parser/web_frontend.rb +14 -0
- data/lib/new_relic/metric_parser/web_service.rb +9 -0
- data/lib/new_relic/metric_spec.rb +52 -0
- data/lib/new_relic/metrics.rb +7 -0
- data/lib/new_relic/noticed_error.rb +23 -0
- data/lib/new_relic/rack/metric_app.rb +56 -0
- data/lib/new_relic/rack/newrelic.ru +25 -0
- data/lib/new_relic/rack/newrelic.yml +25 -0
- data/lib/new_relic/rack_app.rb +5 -0
- data/lib/new_relic/recipes.rb +82 -0
- data/lib/new_relic/stats.rb +361 -0
- data/lib/new_relic/transaction_analysis.rb +121 -0
- data/lib/new_relic/transaction_sample.rb +666 -0
- data/lib/new_relic/version.rb +54 -0
- data/lib/new_relic_api.rb +313 -0
- data/lib/newrelic_rpm.rb +40 -0
- data/lib/tasks/all.rb +4 -0
- data/lib/tasks/install.rake +7 -0
- data/lib/tasks/tests.rake +13 -0
- data/newrelic.yml +227 -0
- data/recipes/newrelic.rb +6 -0
- data/techarch-newrelic_rpm.gemspec +32 -0
- data/test/active_record_fixtures.rb +55 -0
- data/test/config/newrelic.yml +46 -0
- data/test/config/test_control.rb +39 -0
- data/test/new_relic/agent/active_record_instrumentation_test.rb +264 -0
- data/test/new_relic/agent/agent_controller_test.rb +107 -0
- data/test/new_relic/agent/agent_test.rb +119 -0
- data/test/new_relic/agent/agent_test_controller.rb +44 -0
- data/test/new_relic/agent/classloader_patch_test.rb +56 -0
- data/test/new_relic/agent/collection_helper_test.rb +125 -0
- data/test/new_relic/agent/dispatcher_instrumentation_test.rb +76 -0
- data/test/new_relic/agent/error_collector_test.rb +172 -0
- data/test/new_relic/agent/method_tracer_test.rb +340 -0
- data/test/new_relic/agent/metric_data_test.rb +56 -0
- data/test/new_relic/agent/mock_ar_connection.rb +40 -0
- data/test/new_relic/agent/mock_scope_listener.rb +23 -0
- data/test/new_relic/agent/net_instrumentation_test.rb +63 -0
- data/test/new_relic/agent/stats_engine/metric_stats_test.rb +79 -0
- data/test/new_relic/agent/stats_engine/samplers_test.rb +81 -0
- data/test/new_relic/agent/stats_engine/stats_engine_test.rb +184 -0
- data/test/new_relic/agent/task_instrumentation_test.rb +126 -0
- data/test/new_relic/agent/testable_agent.rb +13 -0
- data/test/new_relic/agent/transaction_sample_builder_test.rb +195 -0
- data/test/new_relic/agent/transaction_sample_test.rb +186 -0
- data/test/new_relic/agent/transaction_sampler_test.rb +385 -0
- data/test/new_relic/agent/worker_loop_test.rb +103 -0
- data/test/new_relic/control_test.rb +113 -0
- data/test/new_relic/deployments_api_test.rb +68 -0
- data/test/new_relic/environment_test.rb +75 -0
- data/test/new_relic/metric_parser_test.rb +172 -0
- data/test/new_relic/metric_spec_test.rb +177 -0
- data/test/new_relic/shim_agent_test.rb +9 -0
- data/test/new_relic/stats_test.rb +291 -0
- data/test/new_relic/version_number_test.rb +74 -0
- data/test/test_helper.rb +38 -0
- data/test/ui/newrelic_controller_test.rb +14 -0
- data/test/ui/newrelic_helper_test.rb +53 -0
- data/ui/controllers/newrelic_controller.rb +220 -0
- data/ui/helpers/google_pie_chart.rb +55 -0
- data/ui/helpers/newrelic_helper.rb +317 -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 +19 -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 +14 -0
- data/ui/views/newrelic/_show_sample_detail.rhtml +24 -0
- data/ui/views/newrelic/_show_sample_sql.rhtml +20 -0
- data/ui/views/newrelic/_show_sample_summary.rhtml +3 -0
- data/ui/views/newrelic/_sql_row.rhtml +11 -0
- data/ui/views/newrelic/_stack_trace.rhtml +30 -0
- data/ui/views/newrelic/_table.rhtml +12 -0
- data/ui/views/newrelic/explain_sql.rhtml +42 -0
- data/ui/views/newrelic/images/arrow-close.png +0 -0
- data/ui/views/newrelic/images/arrow-open.png +0 -0
- data/ui/views/newrelic/images/blue_bar.gif +0 -0
- data/ui/views/newrelic/images/file_icon.png +0 -0
- data/ui/views/newrelic/images/gray_bar.gif +0 -0
- data/ui/views/newrelic/images/new_relic_rpm_desktop.gif +0 -0
- data/ui/views/newrelic/images/textmate.png +0 -0
- data/ui/views/newrelic/index.rhtml +57 -0
- data/ui/views/newrelic/javascript/prototype-scriptaculous.js +7288 -0
- data/ui/views/newrelic/javascript/transaction_sample.js +107 -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/stylesheets/style.css +484 -0
- data/ui/views/newrelic/threads.rhtml +52 -0
- metadata +330 -0
@@ -0,0 +1,291 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__),'..', 'test_helper'))
|
2
|
+
##require "new_relic/stats"
|
3
|
+
|
4
|
+
module NewRelic; class TestObjectForStats
|
5
|
+
include Stats
|
6
|
+
attr_accessor :total_call_time
|
7
|
+
attr_accessor :total_exclusive_time
|
8
|
+
attr_accessor :begin_time
|
9
|
+
attr_accessor :end_time
|
10
|
+
attr_accessor :call_count
|
11
|
+
end; end
|
12
|
+
|
13
|
+
|
14
|
+
class NewRelic::StatsTest < Test::Unit::TestCase
|
15
|
+
|
16
|
+
def test_simple
|
17
|
+
stats = NewRelic::MethodTraceStats.new
|
18
|
+
validate stats, 0, 0, 0, 0
|
19
|
+
|
20
|
+
assert_equal stats.call_count,0
|
21
|
+
stats.trace_call 10
|
22
|
+
stats.trace_call 20
|
23
|
+
stats.trace_call 30
|
24
|
+
|
25
|
+
validate stats, 3, (10+20+30), 10, 30
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_to_s
|
29
|
+
s1 = NewRelic::MethodTraceStats.new
|
30
|
+
s1.trace_call 10
|
31
|
+
assert_equal(s1.to_s, "Begin=0.0, Duration=0.0 s, Count=1, Total=10000, Total Exclusive=10000, Avg=10000, Min=10000, Max=10000, StdDev=0")
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_time_str
|
35
|
+
s1 = NewRelic::MethodTraceStats.new
|
36
|
+
assert_equal(s1.time_str(10), "10 ms")
|
37
|
+
assert_equal(s1.time_str(4999), "4999 ms")
|
38
|
+
assert_equal(s1.time_str(5000), "5.00 s")
|
39
|
+
assert_equal(s1.time_str(5010), "5.01 s")
|
40
|
+
assert_equal(s1.time_str(9999), "10.00 s")
|
41
|
+
assert_equal(s1.time_str(10000), "10.0 s")
|
42
|
+
assert_equal(s1.time_str(20000), "20.0 s")
|
43
|
+
end
|
44
|
+
|
45
|
+
def test_fraction_of
|
46
|
+
s1 = NewRelic::MethodTraceStats.new
|
47
|
+
s2 = NewRelic::MethodTraceStats.new
|
48
|
+
s1.trace_call 10
|
49
|
+
s2.trace_call 20
|
50
|
+
assert_equal(s1.fraction_of(s2).to_s, 'NaN')
|
51
|
+
end
|
52
|
+
|
53
|
+
def test_fraction_of2
|
54
|
+
s1 = NewRelic::MethodTraceStats.new
|
55
|
+
s1.trace_call 10
|
56
|
+
s2 = NewRelic::MethodTraceStats.new
|
57
|
+
assert_equal(s1.fraction_of(s2).to_s, 'NaN')
|
58
|
+
end
|
59
|
+
|
60
|
+
def test_multiply_by
|
61
|
+
s1 = NewRelic::MethodTraceStats.new
|
62
|
+
s1.trace_call 10
|
63
|
+
assert_equal(s1.multiply_by(10).to_s, "Begin=0.0, Duration=0.0 s, Count=10, Total=100000, Total Exclusive=10000, Avg=10000, Min=10000, Max=10000, StdDev=0")
|
64
|
+
end
|
65
|
+
|
66
|
+
def test_get_apdex
|
67
|
+
s1 = NewRelic::MethodTraceStats.new
|
68
|
+
s1.trace_call 10
|
69
|
+
assert_equal(s1.get_apdex, [1, 10, 10])
|
70
|
+
end
|
71
|
+
|
72
|
+
def test_apdex_score
|
73
|
+
s1 = NewRelic::MethodTraceStats.new
|
74
|
+
s1.trace_call 10
|
75
|
+
# FIXME make this test the real logic
|
76
|
+
# don't ask me what this means, but it's what's coming out the
|
77
|
+
# other end when I actually run it.
|
78
|
+
assert_in_delta(s1.apdex_score, 0.285714285714286, 0.0000001)
|
79
|
+
end
|
80
|
+
|
81
|
+
def test_as_percentage
|
82
|
+
s1 = NewRelic::MethodTraceStats.new
|
83
|
+
s1.trace_call 10
|
84
|
+
assert_equal(s1.as_percentage, 1000.0)
|
85
|
+
end
|
86
|
+
|
87
|
+
def test_calls_per_minute
|
88
|
+
|
89
|
+
s1 = NewRelic::TestObjectForStats.new
|
90
|
+
s1.call_count = 1
|
91
|
+
s1.begin_time = Time.at(0)
|
92
|
+
s1.end_time = Time.at(30)
|
93
|
+
assert_equal(s1.calls_per_minute, 2)
|
94
|
+
end
|
95
|
+
|
96
|
+
def test_calls_per_second
|
97
|
+
s1 = NewRelic::TestObjectForStats.new
|
98
|
+
s1.call_count = 90
|
99
|
+
s1.begin_time = Time.at(0)
|
100
|
+
s1.end_time = Time.at(30)
|
101
|
+
assert_equal(s1.calls_per_second, 3)
|
102
|
+
end
|
103
|
+
|
104
|
+
def test_total_call_time_per_minute
|
105
|
+
s1 = NewRelic::TestObjectForStats.new
|
106
|
+
s1.begin_time = Time.at(0)
|
107
|
+
s1.end_time = Time.at(0)
|
108
|
+
assert_equal(0, s1.total_call_time_per_minute)
|
109
|
+
s1.begin_time = Time.at(0)
|
110
|
+
s1.end_time = Time.at(30)
|
111
|
+
s1.total_call_time = 10
|
112
|
+
assert_equal(20, s1.total_call_time_per_minute)
|
113
|
+
end
|
114
|
+
|
115
|
+
def test_time_percentage
|
116
|
+
s1 = NewRelic::TestObjectForStats.new
|
117
|
+
s1.begin_time = Time.at(0)
|
118
|
+
s1.end_time = Time.at(0)
|
119
|
+
assert_equal(0, s1.time_percentage)
|
120
|
+
s1.total_call_time = 10
|
121
|
+
s1.begin_time = Time.at(0)
|
122
|
+
s1.end_time = Time.at(30)
|
123
|
+
assert_equal((1.0 / 3.0), s1.time_percentage)
|
124
|
+
s1.total_call_time = 20
|
125
|
+
assert_equal((2.0 / 3.0), s1.time_percentage)
|
126
|
+
end
|
127
|
+
|
128
|
+
def test_exclusive_time_percentage
|
129
|
+
s1 = NewRelic::TestObjectForStats.new
|
130
|
+
s1.begin_time = Time.at(0)
|
131
|
+
s1.end_time = Time.at(0)
|
132
|
+
assert_equal(0, s1.exclusive_time_percentage)
|
133
|
+
s1.total_exclusive_time = 10
|
134
|
+
s1.begin_time = Time.at(0)
|
135
|
+
s1.end_time = Time.at(30)
|
136
|
+
assert_equal((1.0 / 3.0), s1.exclusive_time_percentage)
|
137
|
+
s1.total_exclusive_time = 20
|
138
|
+
assert_equal((2.0 / 3.0), s1.exclusive_time_percentage)
|
139
|
+
end
|
140
|
+
|
141
|
+
def test_merge
|
142
|
+
s1 = NewRelic::MethodTraceStats.new
|
143
|
+
s2 = NewRelic::MethodTraceStats.new
|
144
|
+
|
145
|
+
s1.trace_call 10
|
146
|
+
s2.trace_call 20
|
147
|
+
s2.freeze
|
148
|
+
|
149
|
+
validate s2, 1, 20, 20, 20
|
150
|
+
s3 = s1.merge s2
|
151
|
+
validate s3, 2, (10+20), 10, 20
|
152
|
+
validate s1, 1, 10, 10, 10
|
153
|
+
validate s2, 1, 20, 20, 20
|
154
|
+
|
155
|
+
s1.merge! s2
|
156
|
+
validate s1, 2, (10+20), 10, 20
|
157
|
+
validate s2, 1, 20, 20, 20
|
158
|
+
end
|
159
|
+
|
160
|
+
def test_merge_with_exclusive
|
161
|
+
s1 = NewRelic::MethodTraceStats.new
|
162
|
+
|
163
|
+
s2 = NewRelic::MethodTraceStats.new
|
164
|
+
|
165
|
+
s1.trace_call 10, 5
|
166
|
+
s2.trace_call 20, 10
|
167
|
+
s2.freeze
|
168
|
+
|
169
|
+
validate s2, 1, 20, 20, 20, 10
|
170
|
+
s3 = s1.merge s2
|
171
|
+
validate s3, 2, (10+20), 10, 20, (10+5)
|
172
|
+
validate s1, 1, 10, 10, 10, 5
|
173
|
+
validate s2, 1, 20, 20, 20, 10
|
174
|
+
|
175
|
+
s1.merge! s2
|
176
|
+
validate s1, 2, (10+20), 10, 20, (5+10)
|
177
|
+
validate s2, 1, 20, 20, 20, 10
|
178
|
+
end
|
179
|
+
|
180
|
+
def test_merge_array
|
181
|
+
s1 = NewRelic::MethodTraceStats.new
|
182
|
+
merges = []
|
183
|
+
merges << (NewRelic::MethodTraceStats.new.trace_call 1)
|
184
|
+
merges << (NewRelic::MethodTraceStats.new.trace_call 1)
|
185
|
+
merges << (NewRelic::MethodTraceStats.new.trace_call 1)
|
186
|
+
|
187
|
+
s1.merge! merges
|
188
|
+
validate s1, 3, 3, 1, 1
|
189
|
+
end
|
190
|
+
def test_round
|
191
|
+
stats = NewRelic::MethodTraceStats.new
|
192
|
+
stats.record_data_point(0.125222, 0.025)
|
193
|
+
stats.record_data_point(0.125222, 0.025)
|
194
|
+
stats.record_data_point(0.125222, 0.025)
|
195
|
+
assert_equal 0.047041647852, stats.sum_of_squares
|
196
|
+
assert_equal 0.375666, stats.total_call_time
|
197
|
+
stats.round!
|
198
|
+
assert_equal 0.376, stats.total_call_time
|
199
|
+
assert_equal 0.047, stats.sum_of_squares
|
200
|
+
|
201
|
+
end
|
202
|
+
|
203
|
+
def test_freeze
|
204
|
+
s1 = NewRelic::MethodTraceStats.new
|
205
|
+
|
206
|
+
s1.trace_call 10
|
207
|
+
s1.freeze
|
208
|
+
|
209
|
+
begin
|
210
|
+
# the following should throw an exception because s1 is frozen
|
211
|
+
s1.trace_call 20
|
212
|
+
assert false
|
213
|
+
rescue StandardError
|
214
|
+
assert s1.frozen?
|
215
|
+
validate s1, 1, 10, 10, 10
|
216
|
+
end
|
217
|
+
end
|
218
|
+
|
219
|
+
def test_std_dev
|
220
|
+
s = NewRelic::MethodTraceStats.new
|
221
|
+
s.trace_call 1
|
222
|
+
assert s.standard_deviation == 0
|
223
|
+
|
224
|
+
s = NewRelic::MethodTraceStats.new
|
225
|
+
s.trace_call 10
|
226
|
+
s.trace_call 10
|
227
|
+
s.sum_of_squares = nil
|
228
|
+
assert s.standard_deviation == 0
|
229
|
+
|
230
|
+
s = NewRelic::MethodTraceStats.new
|
231
|
+
s.trace_call 0.001
|
232
|
+
s.trace_call 0.001
|
233
|
+
assert s.standard_deviation == 0
|
234
|
+
|
235
|
+
|
236
|
+
s = NewRelic::MethodTraceStats.new
|
237
|
+
s.trace_call 10
|
238
|
+
s.trace_call 10
|
239
|
+
s.trace_call 10
|
240
|
+
s.trace_call 10
|
241
|
+
s.trace_call 10
|
242
|
+
s.trace_call 10
|
243
|
+
assert s.standard_deviation == 0
|
244
|
+
|
245
|
+
s = NewRelic::MethodTraceStats.new
|
246
|
+
s.trace_call 4
|
247
|
+
s.trace_call 7
|
248
|
+
s.trace_call 13
|
249
|
+
s.trace_call 16
|
250
|
+
s.trace_call 8
|
251
|
+
s.trace_call 4
|
252
|
+
assert_equal(s.sum_of_squares, 4**2 + 7**2 + 13**2 + 16**2 + 8**2 + 4**2)
|
253
|
+
|
254
|
+
s.trace_call 9
|
255
|
+
s.trace_call 3
|
256
|
+
s.trace_call 1000
|
257
|
+
s.trace_call 4
|
258
|
+
|
259
|
+
# calculated stdev (population, not sample) from a spreadsheet.
|
260
|
+
assert_in_delta(s.standard_deviation, 297.76, 0.01)
|
261
|
+
end
|
262
|
+
|
263
|
+
def test_std_dev_merge
|
264
|
+
s1 = NewRelic::MethodTraceStats.new
|
265
|
+
s1.trace_call 4
|
266
|
+
s1.trace_call 7
|
267
|
+
|
268
|
+
s2 = NewRelic::MethodTraceStats.new
|
269
|
+
s2.trace_call 13
|
270
|
+
s2.trace_call 16
|
271
|
+
|
272
|
+
s3 = s1.merge(s2)
|
273
|
+
|
274
|
+
assert(s1.sum_of_squares, 4*4 + 7*7)
|
275
|
+
assert_in_delta(s1.standard_deviation, 1.5, 0.01)
|
276
|
+
|
277
|
+
assert_in_delta(s2.standard_deviation, 1.5, 0.01)
|
278
|
+
assert_equal(s3.sum_of_squares, 4*4 + 7*7 + 13*13 + 16*16, "check sum of squares")
|
279
|
+
assert_in_delta(s3.standard_deviation, 4.743, 0.01)
|
280
|
+
end
|
281
|
+
|
282
|
+
private
|
283
|
+
def validate (stats, count, total, min, max, exclusive = nil)
|
284
|
+
assert_equal stats.call_count, count
|
285
|
+
assert_equal stats.total_call_time, total
|
286
|
+
assert_equal stats.average_call_time, (count > 0 ? total / count : 0)
|
287
|
+
assert_equal stats.min_call_time, min
|
288
|
+
assert_equal stats.max_call_time, max
|
289
|
+
assert_equal stats.total_exclusive_time, exclusive if exclusive
|
290
|
+
end
|
291
|
+
end
|
@@ -0,0 +1,74 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__),'..', 'test_helper'))
|
2
|
+
class NewRelic::VersionNumberTest < Test::Unit::TestCase
|
3
|
+
|
4
|
+
def test_comparison__first
|
5
|
+
versions = %w[1.0.0 0.1.0 0.0.1 10.0.1 1.10.0].map {|s| NewRelic::VersionNumber.new s }
|
6
|
+
assert_equal %w[0.0.1 0.1.0 1.0.0 1.10.0 10.0.1], versions.sort.map(&:to_s)
|
7
|
+
v0 = NewRelic::VersionNumber.new '1.2.3'
|
8
|
+
v1 = NewRelic::VersionNumber.new '1.2.2'
|
9
|
+
v3 = NewRelic::VersionNumber.new '1.2.2'
|
10
|
+
assert v0 > v1
|
11
|
+
assert v1 == v1
|
12
|
+
assert v1 == v3
|
13
|
+
end
|
14
|
+
def test_comparison__second
|
15
|
+
v0 = NewRelic::VersionNumber.new '1.2.0'
|
16
|
+
v1 = NewRelic::VersionNumber.new '2.2.2'
|
17
|
+
v3 = NewRelic::VersionNumber.new '1.1.2'
|
18
|
+
assert v0 < v1
|
19
|
+
assert v1 > v3
|
20
|
+
assert v3 < v0
|
21
|
+
end
|
22
|
+
def test_bug
|
23
|
+
v0 = NewRelic::VersionNumber.new '2.8.999'
|
24
|
+
v1 = NewRelic::VersionNumber.new '2.9.10'
|
25
|
+
assert v1 > v0
|
26
|
+
assert v0 <= v1
|
27
|
+
end
|
28
|
+
def test_long_version
|
29
|
+
v0 = NewRelic::VersionNumber.new '1.2.3.4'
|
30
|
+
v1 = NewRelic::VersionNumber.new '1.2.3.3'
|
31
|
+
v3 = NewRelic::VersionNumber.new '1.3'
|
32
|
+
assert v0 > v1
|
33
|
+
assert v3 > v0
|
34
|
+
end
|
35
|
+
def test_sort
|
36
|
+
values = %w[1.1.1
|
37
|
+
1.1.99
|
38
|
+
1.1.999
|
39
|
+
2.0.6
|
40
|
+
2.6.5
|
41
|
+
2.7
|
42
|
+
2.7.1
|
43
|
+
2.7.2
|
44
|
+
2.7.2.0
|
45
|
+
3
|
46
|
+
999]
|
47
|
+
assert_equal values, values.map{|v| NewRelic::VersionNumber.new v}.sort.map(&:to_s)
|
48
|
+
end
|
49
|
+
def test_compare_string
|
50
|
+
v0 = NewRelic::VersionNumber.new '1.2.0'
|
51
|
+
v1 = NewRelic::VersionNumber.new '2.2.2'
|
52
|
+
v3 = NewRelic::VersionNumber.new '1.1.2'
|
53
|
+
assert v0 < '2.2.2'
|
54
|
+
assert v1 > '1.1.2'
|
55
|
+
assert v3 < '1.2.0'
|
56
|
+
assert v0 == '1.2.0'
|
57
|
+
end
|
58
|
+
def test_4_numbers
|
59
|
+
v0 = NewRelic::VersionNumber.new '1.2.0'
|
60
|
+
v1 = NewRelic::VersionNumber.new '1.2.0.1'
|
61
|
+
v2 = NewRelic::VersionNumber.new '1.2.1.0'
|
62
|
+
v3 = NewRelic::VersionNumber.new '1.2.1.1'
|
63
|
+
assert v0 < v1
|
64
|
+
assert v1 < v2
|
65
|
+
assert v2 < v3
|
66
|
+
assert v0 < v3
|
67
|
+
assert v0 < '1.2.0.1'
|
68
|
+
assert v0 > '1.1.0.1'
|
69
|
+
end
|
70
|
+
def test_string
|
71
|
+
assert_equal '1.2.0', NewRelic::VersionNumber.new('1.2.0').to_s
|
72
|
+
assert_equal '1.2', NewRelic::VersionNumber.new('1.2').to_s
|
73
|
+
end
|
74
|
+
end
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
module NewRelic; TEST = true; end unless defined? NewRelic::TEST
|
2
|
+
#ENV['NEWRELIC_ENABLE'] = 'true'
|
3
|
+
ENV['RAILS_ENV'] = 'test'
|
4
|
+
NEWRELIC_PLUGIN_DIR = File.expand_path(File.join(File.dirname(__FILE__),".."))
|
5
|
+
$LOAD_PATH << File.join(NEWRELIC_PLUGIN_DIR,"test")
|
6
|
+
$LOAD_PATH << File.join(NEWRELIC_PLUGIN_DIR,"ui/helpers")
|
7
|
+
$LOAD_PATH.uniq!
|
8
|
+
|
9
|
+
require File.expand_path(File.join(NEWRELIC_PLUGIN_DIR, "..","..","..","config","environment"))
|
10
|
+
|
11
|
+
require 'test_help'
|
12
|
+
require 'mocha'
|
13
|
+
require 'test/unit'
|
14
|
+
|
15
|
+
def assert_between(floor, ceiling, value, message = nil)
|
16
|
+
assert floor <= value && value <= ceiling,
|
17
|
+
message || "expected #{floor} <= #{value} <= #{ceiling}"
|
18
|
+
end
|
19
|
+
|
20
|
+
module TransactionSampleTestHelper
|
21
|
+
def make_sql_transaction(*sql)
|
22
|
+
sampler = NewRelic::Agent::TransactionSampler.new
|
23
|
+
sampler.notice_first_scope_push Time.now.to_f
|
24
|
+
sampler.notice_transaction '/path', nil, :jim => "cool"
|
25
|
+
sampler.notice_push_scope "a"
|
26
|
+
|
27
|
+
sampler.notice_transaction '/path/2', nil, :jim => "cool"
|
28
|
+
|
29
|
+
sql.each {|sql_statement| sampler.notice_sql(sql_statement, {:adapter => "test"}, 0 ) }
|
30
|
+
|
31
|
+
sleep 1.0
|
32
|
+
|
33
|
+
sampler.notice_pop_scope "a"
|
34
|
+
sampler.notice_scope_empty
|
35
|
+
|
36
|
+
sampler.samples[0]
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__),'..','test_helper'))
|
2
|
+
require 'newrelic_helper'
|
3
|
+
require 'active_record_fixtures'
|
4
|
+
|
5
|
+
class NewRelic::Agent::NewrelicControllerTest < Test::Unit::TestCase
|
6
|
+
|
7
|
+
# Clearly we need a functional test for the controller. For now
|
8
|
+
# I want to at least make sure the class loads in all versions of rails.
|
9
|
+
def test_controller_loading
|
10
|
+
NewrelicController
|
11
|
+
rescue
|
12
|
+
fail "Controller would not load:#{$!}"
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
require File.expand_path(File.join(File.dirname(__FILE__),'..','test_helper'))
|
2
|
+
require 'newrelic_helper'
|
3
|
+
require 'active_record_fixtures'
|
4
|
+
|
5
|
+
class NewRelic::Agent::NewrelicHelperTest < Test::Unit::TestCase
|
6
|
+
include NewrelicHelper
|
7
|
+
|
8
|
+
def params
|
9
|
+
{}
|
10
|
+
end
|
11
|
+
|
12
|
+
def setup
|
13
|
+
super
|
14
|
+
ActiveRecordFixtures.setup
|
15
|
+
# setup instrumentation
|
16
|
+
NewRelic::Agent.manual_start
|
17
|
+
# let's get a real stack trace
|
18
|
+
begin
|
19
|
+
ActiveRecordFixtures::Order.find 0
|
20
|
+
rescue => e
|
21
|
+
@exception = e
|
22
|
+
return
|
23
|
+
end
|
24
|
+
flunk "should throw"
|
25
|
+
end
|
26
|
+
def teardown
|
27
|
+
ActiveRecordFixtures.teardown
|
28
|
+
NewRelic::Agent.instance.shutdown
|
29
|
+
super
|
30
|
+
end
|
31
|
+
def test_application_caller
|
32
|
+
assert_match /setup/, application_caller(@exception.backtrace)
|
33
|
+
end
|
34
|
+
|
35
|
+
def test_application_stack_trace__rails
|
36
|
+
assert_clean(application_stack_trace(@exception.backtrace, true), true)
|
37
|
+
end
|
38
|
+
def test_application_stack_trace__no_rails
|
39
|
+
assert_clean(application_stack_trace(@exception.backtrace, false), false)
|
40
|
+
end
|
41
|
+
def test_with_delimiter
|
42
|
+
assert_equal "123,456.123456", with_delimiter(123456.123456)
|
43
|
+
end
|
44
|
+
|
45
|
+
private
|
46
|
+
def assert_clean(backtrace, rails=false)
|
47
|
+
if !rails
|
48
|
+
assert_equal 0, backtrace.grep('/rails/').size, backtrace.join("\n")
|
49
|
+
end
|
50
|
+
assert_equal 0, backtrace.grep(/trace/).size, backtrace.join("\n")
|
51
|
+
assert_equal 0, backtrace.grep(/newrelic_rpm\/agent/).size, backtrace.join("\n")
|
52
|
+
end
|
53
|
+
end
|