-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathselective_rendering_from_cache.test.rb
91 lines (77 loc) · 3.04 KB
/
selective_rendering_from_cache.test.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# frozen_string_literal: true
class CacheTest < Phlex::HTML
attr_reader :cache_store
def initialize(page_id, cache_store:)
@page_id = page_id
@cache_store = cache_store
end
def view_template
cache(@page_id) do
h1 { "Page #{@page_id}" }
fragment("outer") do
div(id: "page") do
cache do
section do
fragment("list") do
ul do
fragment("foo") { li { 1 } }
li { 2 }
li { 3 }
end
end
end
end
end
end
end
end
end
test "rendering a component with caches and fragments" do
cache_store = Phlex::FIFOCacheStore.new
output = CacheTest.new(1, cache_store:).call
assert_equal_html output, "<h1>Page 1</h1><div id=\"page\"><section><ul><li>1</li><li>2</li><li>3</li></ul></section></div>"
output = CacheTest.new(1, cache_store:).call
assert_equal_html output, "<h1>Page 1</h1><div id=\"page\"><section><ul><li>1</li><li>2</li><li>3</li></ul></section></div>"
end
test "rendering a component with caches and fragments" do
cache_store = Phlex::FIFOCacheStore.new
output = CacheTest.new(1, cache_store:).call
assert_equal_html output, "<h1>Page 1</h1><div id=\"page\"><section><ul><li>1</li><li>2</li><li>3</li></ul></section></div>"
output = CacheTest.new(2, cache_store:).call
assert_equal_html output, "<h1>Page 2</h1><div id=\"page\"><section><ul><li>1</li><li>2</li><li>3</li></ul></section></div>"
end
test "rendering a specific fragment from within a cache" do
cache_store = Phlex::FIFOCacheStore.new
2.times do
output = CacheTest.new(2, cache_store:).call(fragments: ["list"])
assert_equal_html output, "<ul><li>1</li><li>2</li><li>3</li></ul>"
end
end
test "rendering a nested fragment from within a cache" do
cache_store = Phlex::FIFOCacheStore.new
output = CacheTest.new(1, cache_store:).call(fragments: ["foo"])
assert_equal_html output, "<li>1</li>"
end
test "rendering multiple fragments from within a cache" do
cache_store = Phlex::FIFOCacheStore.new
output = CacheTest.new(1, cache_store:).call(fragments: ["list", "foo"])
assert_equal_html output, "<ul><li>1</li><li>2</li><li>3</li></ul>"
end
test "rendering multiple fragments out of order from within a cache" do
cache_store = Phlex::FIFOCacheStore.new
output = CacheTest.new(1, cache_store:).call(fragments: ["foo", "list"])
assert_equal_html output, "<ul><li>1</li><li>2</li><li>3</li></ul>"
end
test "cache contains full value if initially rendered as a fragment" do
cache_store = Phlex::FIFOCacheStore.new
output = CacheTest.new(1, cache_store:).call(fragments: ["foo"])
assert_equal_html output, "<li>1</li>"
output = CacheTest.new(1, cache_store:).call
assert_equal_html output, "<h1>Page 1</h1><div id=\"page\"><section><ul><li>1</li><li>2</li><li>3</li></ul></section></div>"
end
test "fetching a nested fragment from a cached value" do
cache_store = Phlex::FIFOCacheStore.new
CacheTest.new(1, cache_store:).call # Cache the outer cache for key = 1, and the inner cache for all other keys
output = CacheTest.new(2, cache_store:).call(fragments: ["foo"])
assert_equal_html output, "<li>1</li>"
end