ruby-prof 0.18.0-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGES +500 -0
- data/LICENSE +25 -0
- data/README.rdoc +487 -0
- data/Rakefile +113 -0
- data/bin/ruby-prof +345 -0
- data/bin/ruby-prof-check-trace +45 -0
- data/examples/flat.txt +50 -0
- data/examples/graph.dot +84 -0
- data/examples/graph.html +823 -0
- data/examples/graph.txt +139 -0
- data/examples/multi.flat.txt +23 -0
- data/examples/multi.graph.html +760 -0
- data/examples/multi.grind.dat +114 -0
- data/examples/multi.stack.html +547 -0
- data/examples/stack.html +547 -0
- data/ext/ruby_prof/extconf.rb +68 -0
- data/ext/ruby_prof/rp_call_info.c +425 -0
- data/ext/ruby_prof/rp_call_info.h +53 -0
- data/ext/ruby_prof/rp_measure.c +40 -0
- data/ext/ruby_prof/rp_measure.h +45 -0
- data/ext/ruby_prof/rp_measure_allocations.c +76 -0
- data/ext/ruby_prof/rp_measure_cpu_time.c +136 -0
- data/ext/ruby_prof/rp_measure_gc_runs.c +73 -0
- data/ext/ruby_prof/rp_measure_gc_time.c +60 -0
- data/ext/ruby_prof/rp_measure_memory.c +77 -0
- data/ext/ruby_prof/rp_measure_process_time.c +71 -0
- data/ext/ruby_prof/rp_measure_wall_time.c +45 -0
- data/ext/ruby_prof/rp_method.c +630 -0
- data/ext/ruby_prof/rp_method.h +75 -0
- data/ext/ruby_prof/rp_stack.c +173 -0
- data/ext/ruby_prof/rp_stack.h +63 -0
- data/ext/ruby_prof/rp_thread.c +277 -0
- data/ext/ruby_prof/rp_thread.h +27 -0
- data/ext/ruby_prof/ruby_prof.c +794 -0
- data/ext/ruby_prof/ruby_prof.h +60 -0
- data/ext/ruby_prof/vc/ruby_prof.sln +31 -0
- data/ext/ruby_prof/vc/ruby_prof.vcxproj +141 -0
- data/lib/2.6.3/ruby_prof.so +0 -0
- data/lib/ruby-prof.rb +68 -0
- data/lib/ruby-prof/aggregate_call_info.rb +76 -0
- data/lib/ruby-prof/assets/call_stack_printer.css.html +117 -0
- data/lib/ruby-prof/assets/call_stack_printer.js.html +385 -0
- data/lib/ruby-prof/assets/call_stack_printer.png +0 -0
- data/lib/ruby-prof/call_info.rb +115 -0
- data/lib/ruby-prof/call_info_visitor.rb +40 -0
- data/lib/ruby-prof/compatibility.rb +179 -0
- data/lib/ruby-prof/method_info.rb +121 -0
- data/lib/ruby-prof/printers/abstract_printer.rb +104 -0
- data/lib/ruby-prof/printers/call_info_printer.rb +41 -0
- data/lib/ruby-prof/printers/call_stack_printer.rb +265 -0
- data/lib/ruby-prof/printers/call_tree_printer.rb +143 -0
- data/lib/ruby-prof/printers/dot_printer.rb +132 -0
- data/lib/ruby-prof/printers/flat_printer.rb +70 -0
- data/lib/ruby-prof/printers/flat_printer_with_line_numbers.rb +83 -0
- data/lib/ruby-prof/printers/graph_html_printer.rb +249 -0
- data/lib/ruby-prof/printers/graph_printer.rb +116 -0
- data/lib/ruby-prof/printers/multi_printer.rb +84 -0
- data/lib/ruby-prof/profile.rb +26 -0
- data/lib/ruby-prof/profile/exclude_common_methods.rb +207 -0
- data/lib/ruby-prof/profile/legacy_method_elimination.rb +50 -0
- data/lib/ruby-prof/rack.rb +174 -0
- data/lib/ruby-prof/task.rb +147 -0
- data/lib/ruby-prof/thread.rb +35 -0
- data/lib/ruby-prof/version.rb +3 -0
- data/lib/unprof.rb +10 -0
- data/ruby-prof.gemspec +58 -0
- data/test/abstract_printer_test.rb +53 -0
- data/test/aggregate_test.rb +136 -0
- data/test/basic_test.rb +128 -0
- data/test/block_test.rb +74 -0
- data/test/call_info_test.rb +78 -0
- data/test/call_info_visitor_test.rb +31 -0
- data/test/duplicate_names_test.rb +32 -0
- data/test/dynamic_method_test.rb +55 -0
- data/test/enumerable_test.rb +21 -0
- data/test/exceptions_test.rb +24 -0
- data/test/exclude_methods_test.rb +146 -0
- data/test/exclude_threads_test.rb +53 -0
- data/test/fiber_test.rb +79 -0
- data/test/issue137_test.rb +63 -0
- data/test/line_number_test.rb +80 -0
- data/test/measure_allocations_test.rb +26 -0
- data/test/measure_cpu_time_test.rb +212 -0
- data/test/measure_gc_runs_test.rb +32 -0
- data/test/measure_gc_time_test.rb +36 -0
- data/test/measure_memory_test.rb +33 -0
- data/test/measure_process_time_test.rb +61 -0
- data/test/measure_wall_time_test.rb +255 -0
- data/test/method_elimination_test.rb +84 -0
- data/test/module_test.rb +45 -0
- data/test/multi_printer_test.rb +104 -0
- data/test/no_method_class_test.rb +15 -0
- data/test/pause_resume_test.rb +166 -0
- data/test/prime.rb +54 -0
- data/test/printers_test.rb +275 -0
- data/test/printing_recursive_graph_test.rb +127 -0
- data/test/rack_test.rb +157 -0
- data/test/recursive_test.rb +215 -0
- data/test/singleton_test.rb +38 -0
- data/test/stack_printer_test.rb +77 -0
- data/test/stack_test.rb +138 -0
- data/test/start_stop_test.rb +112 -0
- data/test/test_helper.rb +267 -0
- data/test/thread_test.rb +187 -0
- data/test/unique_call_path_test.rb +202 -0
- data/test/yarv_test.rb +55 -0
- metadata +199 -0
@@ -0,0 +1,215 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# encoding: UTF-8
|
3
|
+
|
4
|
+
require File.expand_path('../test_helper', __FILE__)
|
5
|
+
|
6
|
+
module SimpleRecursion
|
7
|
+
# Simple recursive test
|
8
|
+
def simple(n)
|
9
|
+
sleep(1)
|
10
|
+
n -= 1
|
11
|
+
return if n == 0
|
12
|
+
simple(n)
|
13
|
+
end
|
14
|
+
|
15
|
+
|
16
|
+
# More complicated recursive test
|
17
|
+
def render_partial(i)
|
18
|
+
sleep(1)
|
19
|
+
case i
|
20
|
+
when 0
|
21
|
+
render_partial(10)
|
22
|
+
when 1
|
23
|
+
2.times do |j|
|
24
|
+
render_partial(j + 10)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
def render
|
30
|
+
2.times do |i|
|
31
|
+
render_partial(i)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
# -- Tests ----
|
37
|
+
class RecursiveTest < TestCase
|
38
|
+
def setup
|
39
|
+
# Need to use wall time for this test due to the sleep calls
|
40
|
+
RubyProf::measure_mode = RubyProf::WALL_TIME
|
41
|
+
end
|
42
|
+
|
43
|
+
include SimpleRecursion
|
44
|
+
|
45
|
+
def test_simple
|
46
|
+
result = RubyProf.profile do
|
47
|
+
simple(2)
|
48
|
+
end
|
49
|
+
|
50
|
+
# Remove Fixnum+, Fixnum== for less than Ruby 1.9
|
51
|
+
result.eliminate_methods!(%w(Fixnum#== Fixnum#-))
|
52
|
+
|
53
|
+
methods = result.threads.first.methods.sort.reverse
|
54
|
+
assert_equal(3, methods.length)
|
55
|
+
|
56
|
+
# Method 0: RecursiveTest#test_simple
|
57
|
+
method = methods[0]
|
58
|
+
assert_equal('RecursiveTest#test_simple', method.full_name)
|
59
|
+
assert_equal(1, method.called)
|
60
|
+
assert_in_delta(2, method.total_time, 0.1)
|
61
|
+
assert_in_delta(0, method.self_time, 0.01)
|
62
|
+
assert_in_delta(0, method.wait_time, 0.01)
|
63
|
+
assert_in_delta(2, method.children_time, 0.1)
|
64
|
+
|
65
|
+
assert_equal(1, method.call_infos.length)
|
66
|
+
call_info = method.call_infos[0]
|
67
|
+
assert(!call_info.recursive?)
|
68
|
+
assert_equal('RecursiveTest#test_simple', call_info.call_sequence)
|
69
|
+
assert_equal(1, call_info.children.length)
|
70
|
+
|
71
|
+
# Method 1: SimpleRecursion#simple
|
72
|
+
method = methods[1]
|
73
|
+
assert_equal('SimpleRecursion#simple', method.full_name)
|
74
|
+
assert_equal(2, method.called)
|
75
|
+
assert_in_delta(2, method.total_time, 0.1)
|
76
|
+
assert_in_delta(0, method.self_time, 0.1)
|
77
|
+
assert_in_delta(0, method.wait_time, 0.1)
|
78
|
+
assert_in_delta(2, method.children_time, 0.1)
|
79
|
+
|
80
|
+
assert_equal(2, method.call_infos.length)
|
81
|
+
|
82
|
+
call_info = method.call_infos.first
|
83
|
+
assert_equal(2, call_info.children.length)
|
84
|
+
assert_equal('RecursiveTest#test_simple->SimpleRecursion#simple', call_info.call_sequence)
|
85
|
+
assert(!call_info.recursive?)
|
86
|
+
|
87
|
+
call_info = method.call_infos.last
|
88
|
+
assert_equal(1, call_info.children.length)
|
89
|
+
assert_equal('RecursiveTest#test_simple->SimpleRecursion#simple->SimpleRecursion#simple', call_info.call_sequence)
|
90
|
+
assert(call_info.recursive?)
|
91
|
+
|
92
|
+
method = methods[2]
|
93
|
+
assert_equal('Kernel#sleep', method.full_name)
|
94
|
+
assert_equal(2, method.called)
|
95
|
+
assert_in_delta(2, method.total_time, 0.1)
|
96
|
+
assert_in_delta(2, method.self_time, 0.1)
|
97
|
+
assert_in_delta(0, method.wait_time, 0.1)
|
98
|
+
assert_in_delta(0, method.children_time, 0.1)
|
99
|
+
|
100
|
+
assert_equal(2, method.call_infos.length)
|
101
|
+
call_info = method.call_infos[0]
|
102
|
+
assert_equal('RecursiveTest#test_simple->SimpleRecursion#simple->Kernel#sleep', call_info.call_sequence)
|
103
|
+
assert_equal(0, call_info.children.length)
|
104
|
+
assert(!call_info.recursive?)
|
105
|
+
|
106
|
+
call_info = method.call_infos[1]
|
107
|
+
assert_equal('RecursiveTest#test_simple->SimpleRecursion#simple->SimpleRecursion#simple->Kernel#sleep', call_info.call_sequence)
|
108
|
+
assert_equal(0, call_info.children.length)
|
109
|
+
assert(!call_info.recursive?)
|
110
|
+
end
|
111
|
+
|
112
|
+
def test_cycle
|
113
|
+
result = RubyProf.profile do
|
114
|
+
render
|
115
|
+
end
|
116
|
+
|
117
|
+
methods = result.threads.first.methods.sort.reverse
|
118
|
+
assert_equal(5, methods.length)
|
119
|
+
|
120
|
+
method = methods[0]
|
121
|
+
assert_equal('RecursiveTest#test_cycle', method.full_name)
|
122
|
+
assert_equal(1, method.called)
|
123
|
+
assert_in_delta(5, method.total_time, 0.1)
|
124
|
+
assert_in_delta(0, method.self_time, 0.01)
|
125
|
+
assert_in_delta(0, method.wait_time, 0.01)
|
126
|
+
assert_in_delta(5, method.children_time, 0.1)
|
127
|
+
|
128
|
+
assert_equal(1, method.call_infos.length)
|
129
|
+
call_info = method.call_infos[0]
|
130
|
+
assert_equal('RecursiveTest#test_cycle', call_info.call_sequence)
|
131
|
+
assert_equal(1, call_info.children.length)
|
132
|
+
assert(!call_info.recursive?)
|
133
|
+
|
134
|
+
method = methods[1]
|
135
|
+
assert_equal('SimpleRecursion#render', method.full_name)
|
136
|
+
assert_equal(1, method.called)
|
137
|
+
assert_in_delta(5, method.total_time, 0.1)
|
138
|
+
assert_in_delta(0, method.self_time, 0.01)
|
139
|
+
assert_in_delta(0, method.wait_time, 0.01)
|
140
|
+
assert_in_delta(5, method.children_time, 0.1)
|
141
|
+
|
142
|
+
assert_equal(1, method.call_infos.length)
|
143
|
+
call_info = method.call_infos[0]
|
144
|
+
assert_equal('RecursiveTest#test_cycle->SimpleRecursion#render', call_info.call_sequence)
|
145
|
+
assert_equal(1, call_info.children.length)
|
146
|
+
assert(!call_info.recursive?)
|
147
|
+
|
148
|
+
method = methods[2]
|
149
|
+
assert_equal('Integer#times', method.full_name)
|
150
|
+
assert_equal(2, method.called)
|
151
|
+
assert_in_delta(5, method.total_time, 0.1)
|
152
|
+
assert_in_delta(0, method.self_time, 0.1)
|
153
|
+
assert_in_delta(0, method.wait_time, 0.1)
|
154
|
+
assert_in_delta(5, method.children_time, 0.1)
|
155
|
+
|
156
|
+
assert_equal(2, method.call_infos.length)
|
157
|
+
call_info = method.call_infos[0]
|
158
|
+
assert_equal('RecursiveTest#test_cycle->SimpleRecursion#render->Integer#times', call_info.call_sequence)
|
159
|
+
assert_equal(1, call_info.children.length)
|
160
|
+
assert(!call_info.recursive?)
|
161
|
+
|
162
|
+
call_info = method.call_infos[1]
|
163
|
+
assert_equal('RecursiveTest#test_cycle->SimpleRecursion#render->Integer#times->SimpleRecursion#render_partial->Integer#times', call_info.call_sequence)
|
164
|
+
assert_equal(1, call_info.children.length)
|
165
|
+
assert(call_info.recursive?)
|
166
|
+
|
167
|
+
method = methods[3]
|
168
|
+
assert_equal('SimpleRecursion#render_partial', method.full_name)
|
169
|
+
assert_equal(5, method.called)
|
170
|
+
assert_in_delta(5, method.total_time, 0.1)
|
171
|
+
assert_in_delta(0, method.self_time, 0.1)
|
172
|
+
assert_in_delta(0, method.wait_time, 0.01)
|
173
|
+
assert_in_delta(5, method.children_time, 0.05)
|
174
|
+
|
175
|
+
assert_equal(3, method.call_infos.length)
|
176
|
+
call_info = method.call_infos[0]
|
177
|
+
assert_equal('RecursiveTest#test_cycle->SimpleRecursion#render->Integer#times->SimpleRecursion#render_partial', call_info.call_sequence)
|
178
|
+
assert_equal(3, call_info.children.length)
|
179
|
+
assert(!call_info.recursive?)
|
180
|
+
|
181
|
+
call_info = method.call_infos[1]
|
182
|
+
assert_equal('RecursiveTest#test_cycle->SimpleRecursion#render->Integer#times->SimpleRecursion#render_partial->SimpleRecursion#render_partial', call_info.call_sequence)
|
183
|
+
assert_equal(1, call_info.children.length)
|
184
|
+
assert(call_info.recursive?)
|
185
|
+
|
186
|
+
call_info = method.call_infos[2]
|
187
|
+
assert_equal('RecursiveTest#test_cycle->SimpleRecursion#render->Integer#times->SimpleRecursion#render_partial->Integer#times->SimpleRecursion#render_partial', call_info.call_sequence)
|
188
|
+
assert_equal(1, call_info.children.length)
|
189
|
+
assert(call_info.recursive?)
|
190
|
+
|
191
|
+
method = methods[4]
|
192
|
+
assert_equal('Kernel#sleep', method.full_name)
|
193
|
+
assert_equal(5, method.called)
|
194
|
+
assert_in_delta(5, method.total_time, 0.1)
|
195
|
+
assert_in_delta(5, method.self_time, 0.1)
|
196
|
+
assert_in_delta(0, method.wait_time, 0.01)
|
197
|
+
assert_in_delta(0, method.children_time, 0.01)
|
198
|
+
|
199
|
+
assert_equal(3, method.call_infos.length)
|
200
|
+
call_info = method.call_infos[0]
|
201
|
+
assert_equal('RecursiveTest#test_cycle->SimpleRecursion#render->Integer#times->SimpleRecursion#render_partial->Kernel#sleep', call_info.call_sequence)
|
202
|
+
assert_equal(0, call_info.children.length)
|
203
|
+
assert(!call_info.recursive?)
|
204
|
+
|
205
|
+
call_info = method.call_infos[1]
|
206
|
+
assert_equal('RecursiveTest#test_cycle->SimpleRecursion#render->Integer#times->SimpleRecursion#render_partial->SimpleRecursion#render_partial->Kernel#sleep', call_info.call_sequence)
|
207
|
+
assert_equal(0, call_info.children.length)
|
208
|
+
assert(!call_info.recursive?)
|
209
|
+
|
210
|
+
call_info = method.call_infos[2]
|
211
|
+
assert_equal('RecursiveTest#test_cycle->SimpleRecursion#render->Integer#times->SimpleRecursion#render_partial->Integer#times->SimpleRecursion#render_partial->Kernel#sleep', call_info.call_sequence)
|
212
|
+
assert_equal(0, call_info.children.length)
|
213
|
+
assert(!call_info.recursive?)
|
214
|
+
end
|
215
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# encoding: UTF-8
|
3
|
+
|
4
|
+
require File.expand_path('../test_helper', __FILE__)
|
5
|
+
require 'timeout'
|
6
|
+
|
7
|
+
# -- Test for bug [#5657]
|
8
|
+
# http://rubyforge.org/tracker/index.php?func=detail&aid=5657&group_id=1814&atid=7060
|
9
|
+
|
10
|
+
|
11
|
+
class A
|
12
|
+
attr_accessor :as
|
13
|
+
def initialize
|
14
|
+
@as = []
|
15
|
+
class << @as
|
16
|
+
def <<(an_a)
|
17
|
+
super
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def <<(an_a)
|
23
|
+
@as << an_a
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
class SingletonTest < TestCase
|
28
|
+
def test_singleton
|
29
|
+
result = RubyProf.profile do
|
30
|
+
a = A.new
|
31
|
+
a << :first_thing
|
32
|
+
assert_equal(1, a.as.size)
|
33
|
+
end
|
34
|
+
printer = RubyProf::FlatPrinter.new(result)
|
35
|
+
output = ENV['SHOW_RUBY_PROF_PRINTER_OUTPUT'] == "1" ? STDOUT : ''
|
36
|
+
printer.print(output)
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# encoding: UTF-8
|
3
|
+
|
4
|
+
require File.expand_path('../test_helper', __FILE__)
|
5
|
+
|
6
|
+
# Test data
|
7
|
+
# A
|
8
|
+
# / \
|
9
|
+
# B C
|
10
|
+
# \
|
11
|
+
# B
|
12
|
+
|
13
|
+
class STPT
|
14
|
+
def a
|
15
|
+
100.times{b}
|
16
|
+
300.times{c}
|
17
|
+
c;c;c
|
18
|
+
end
|
19
|
+
|
20
|
+
def b
|
21
|
+
sleep 0
|
22
|
+
end
|
23
|
+
|
24
|
+
def c
|
25
|
+
5.times{b}
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
class StackPrinterTest < TestCase
|
30
|
+
def setup
|
31
|
+
# Need to use wall time for this test due to the sleep calls
|
32
|
+
RubyProf::measure_mode = RubyProf::WALL_TIME
|
33
|
+
end
|
34
|
+
|
35
|
+
def test_stack_can_be_printed
|
36
|
+
start_time = Time.now
|
37
|
+
RubyProf.start
|
38
|
+
5.times{STPT.new.a}
|
39
|
+
result = RubyProf.stop
|
40
|
+
end_time = Time.now
|
41
|
+
expected_time = end_time - start_time
|
42
|
+
|
43
|
+
file_contents = nil
|
44
|
+
assert_nothing_raised { file_contents = print(result) }
|
45
|
+
re = /Thread: (\d+)(, Fiber: (\d+))? \([\.0-9]+.[\.0-9]+% ~ ([\.0-9]+)\)/
|
46
|
+
assert_match(re, file_contents)
|
47
|
+
file_contents =~ re
|
48
|
+
actual_time = $4.to_f
|
49
|
+
assert_in_delta(expected_time, actual_time, 0.1)
|
50
|
+
end
|
51
|
+
|
52
|
+
def test_method_elimination
|
53
|
+
RubyProf.start
|
54
|
+
5.times{STPT.new.a}
|
55
|
+
result = RubyProf.stop
|
56
|
+
assert_nothing_raised {
|
57
|
+
# result.dump
|
58
|
+
result.eliminate_methods!([/Integer#times/])
|
59
|
+
# $stderr.puts "================================"
|
60
|
+
# result.dump
|
61
|
+
print(result)
|
62
|
+
}
|
63
|
+
end
|
64
|
+
|
65
|
+
private
|
66
|
+
def print(result)
|
67
|
+
test = caller.first =~ /in `(.*)'/ ? $1 : "test"
|
68
|
+
testfile_name = "#{RubyProf.tmpdir}/ruby_prof_#{test}.html"
|
69
|
+
# puts "printing to #{testfile_name}"
|
70
|
+
printer = RubyProf::CallStackPrinter.new(result)
|
71
|
+
File.open(testfile_name, "w") {|f| printer.print(f, :threshold => 0, :min_percent => 0, :title => "ruby_prof #{test}")}
|
72
|
+
system("open '#{testfile_name}'") if RUBY_PLATFORM =~ /darwin/ && ENV['SHOW_RUBY_PROF_PRINTER_OUTPUT']=="1"
|
73
|
+
assert File.exist?(testfile_name), "#{testfile_name} does not exist"
|
74
|
+
assert File.readable?(testfile_name), "#{testfile_name} is no readable"
|
75
|
+
File.read(testfile_name)
|
76
|
+
end
|
77
|
+
end
|
data/test/stack_test.rb
ADDED
@@ -0,0 +1,138 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# encoding: UTF-8
|
3
|
+
|
4
|
+
require File.expand_path('../test_helper', __FILE__)
|
5
|
+
|
6
|
+
# Test data
|
7
|
+
# A
|
8
|
+
# / \
|
9
|
+
# B C
|
10
|
+
# \
|
11
|
+
# B
|
12
|
+
|
13
|
+
class StackClass
|
14
|
+
def a
|
15
|
+
sleep 1
|
16
|
+
b
|
17
|
+
c
|
18
|
+
end
|
19
|
+
|
20
|
+
def b
|
21
|
+
sleep 2
|
22
|
+
end
|
23
|
+
|
24
|
+
def c
|
25
|
+
sleep 3
|
26
|
+
b
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
class StackTest < TestCase
|
31
|
+
def setup
|
32
|
+
# Need to use wall time for this test due to the sleep calls
|
33
|
+
RubyProf::measure_mode = RubyProf::WALL_TIME
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_call_sequence
|
37
|
+
c = StackClass.new
|
38
|
+
result = RubyProf.profile do
|
39
|
+
c.a
|
40
|
+
end
|
41
|
+
|
42
|
+
# Length should be 5:
|
43
|
+
# StackTest#test_call_sequence
|
44
|
+
# StackClass#a
|
45
|
+
# Kernel#sleep
|
46
|
+
# StackClass#c
|
47
|
+
# StackClass#b
|
48
|
+
|
49
|
+
methods = result.threads.first.methods.sort.reverse
|
50
|
+
assert_equal(5, methods.length)
|
51
|
+
|
52
|
+
# Check StackTest#test_call_sequence
|
53
|
+
method = methods[0]
|
54
|
+
assert_equal('StackTest#test_call_sequence', method.full_name)
|
55
|
+
assert_equal(1, method.called)
|
56
|
+
assert_in_delta(8, method.total_time, 0.25)
|
57
|
+
assert_in_delta(0, method.wait_time, 0.01)
|
58
|
+
assert_in_delta(0, method.self_time, 0.01)
|
59
|
+
assert_in_delta(8, method.children_time, 0.25)
|
60
|
+
assert_equal(1, method.call_infos.length)
|
61
|
+
|
62
|
+
call_info = method.call_infos[0]
|
63
|
+
assert_equal('StackTest#test_call_sequence', call_info.call_sequence)
|
64
|
+
assert_equal(1, call_info.children.length)
|
65
|
+
|
66
|
+
# Check StackClass#a
|
67
|
+
method = methods[1]
|
68
|
+
assert_equal('StackClass#a', method.full_name)
|
69
|
+
assert_equal(1, method.called)
|
70
|
+
assert_in_delta(8, method.total_time, 0.15)
|
71
|
+
assert_in_delta(0, method.wait_time, 0.01)
|
72
|
+
assert_in_delta(0, method.self_time, 0.01)
|
73
|
+
assert_in_delta(8, method.children_time, 0.05)
|
74
|
+
assert_equal(1, method.call_infos.length)
|
75
|
+
|
76
|
+
call_info = method.call_infos[0]
|
77
|
+
assert_equal('StackTest#test_call_sequence->StackClass#a', call_info.call_sequence)
|
78
|
+
assert_equal(3, call_info.children.length)
|
79
|
+
|
80
|
+
# Check Kernel#sleep
|
81
|
+
method = methods[2]
|
82
|
+
assert_equal('Kernel#sleep', method.full_name)
|
83
|
+
assert_equal(4, method.called)
|
84
|
+
assert_in_delta(8, method.total_time, 0.05)
|
85
|
+
assert_in_delta(0, method.wait_time, 0.01)
|
86
|
+
assert_in_delta(8, method.self_time, 0.05)
|
87
|
+
assert_in_delta(0, method.children_time, 0.05)
|
88
|
+
assert_equal(4, method.call_infos.length)
|
89
|
+
|
90
|
+
call_info = method.call_infos[0]
|
91
|
+
assert_equal('StackTest#test_call_sequence->StackClass#a->Kernel#sleep', call_info.call_sequence)
|
92
|
+
assert_equal(0, call_info.children.length)
|
93
|
+
|
94
|
+
call_info = method.call_infos[1]
|
95
|
+
assert_equal('StackTest#test_call_sequence->StackClass#a->StackClass#b->Kernel#sleep', call_info.call_sequence)
|
96
|
+
assert_equal(0, call_info.children.length)
|
97
|
+
|
98
|
+
call_info = method.call_infos[2]
|
99
|
+
assert_equal('StackTest#test_call_sequence->StackClass#a->StackClass#c->Kernel#sleep', call_info.call_sequence)
|
100
|
+
assert_equal(0, call_info.children.length)
|
101
|
+
|
102
|
+
call_info = method.call_infos[3]
|
103
|
+
assert_equal('StackTest#test_call_sequence->StackClass#a->StackClass#c->StackClass#b->Kernel#sleep', call_info.call_sequence)
|
104
|
+
assert_equal(0, call_info.children.length)
|
105
|
+
|
106
|
+
# Check StackClass#c
|
107
|
+
method = methods[3]
|
108
|
+
assert_equal('StackClass#c', method.full_name)
|
109
|
+
assert_equal(1, method.called)
|
110
|
+
assert_in_delta(5, method.total_time, 0.05)
|
111
|
+
assert_in_delta(0, method.wait_time, 0.01)
|
112
|
+
assert_in_delta(0, method.self_time, 0.01)
|
113
|
+
assert_in_delta(5, method.children_time, 0.05)
|
114
|
+
assert_equal(1, method.call_infos.length)
|
115
|
+
|
116
|
+
call_info = method.call_infos[0]
|
117
|
+
assert_equal('StackTest#test_call_sequence->StackClass#a->StackClass#c', call_info.call_sequence)
|
118
|
+
assert_equal(2, call_info.children.length)
|
119
|
+
|
120
|
+
# Check StackClass#b
|
121
|
+
method = methods[4]
|
122
|
+
assert_equal('StackClass#b', method.full_name)
|
123
|
+
assert_equal(2, method.called)
|
124
|
+
assert_in_delta(4, method.total_time, 0.05)
|
125
|
+
assert_in_delta(0, method.wait_time, 0.01)
|
126
|
+
assert_in_delta(0, method.self_time, 0.01)
|
127
|
+
assert_in_delta(4, method.children_time, 0.05)
|
128
|
+
assert_equal(2, method.call_infos.length)
|
129
|
+
|
130
|
+
call_info = method.call_infos[0]
|
131
|
+
assert_equal('StackTest#test_call_sequence->StackClass#a->StackClass#b', call_info.call_sequence)
|
132
|
+
assert_equal(1, call_info.children.length)
|
133
|
+
|
134
|
+
call_info = method.call_infos[1]
|
135
|
+
assert_equal('StackTest#test_call_sequence->StackClass#a->StackClass#c->StackClass#b', call_info.call_sequence)
|
136
|
+
assert_equal(1, call_info.children.length)
|
137
|
+
end
|
138
|
+
end
|