mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
Create top-level profile timing nodes for multiple template renders
This commit is contained in:
@@ -103,12 +103,19 @@ class ProfilerTest < Minitest::Test
|
||||
with_custom_tag('sleep', SleepTag) do
|
||||
context = Liquid::Context.new
|
||||
t = Liquid::Template.parse("{% sleep 0.001 %}", profile: true)
|
||||
context.template_name = 'index'
|
||||
t.render!(context)
|
||||
first_render_time = context.profiler.total_render_time
|
||||
context.template_name = 'layout'
|
||||
first_render_time = context.profiler.total_time
|
||||
t.render!(context)
|
||||
|
||||
profiler = context.profiler
|
||||
children = profiler.children
|
||||
assert_operator(first_render_time, :>=, 0.001)
|
||||
assert_operator(context.profiler.total_render_time, :>=, 0.001 + first_render_time)
|
||||
assert_operator(profiler.total_time, :>=, 0.001 + first_render_time)
|
||||
assert_equal(["index", "layout"], children.map(&:template_name))
|
||||
assert_equal([nil, nil], children.map(&:code))
|
||||
assert_equal(profiler.total_time, children.map(&:total_time).reduce(&:+))
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user