forked from bootstrap-ruby/bootstrap_form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap_test.rb
87 lines (74 loc) · 2.74 KB
/
bootstrap_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
require "application_system_test_case"
require "capybara_screenshot_diff/minitest"
class BootstrapTest < ApplicationSystemTestCase
setup { screenshot_section :bootstrap }
test "visiting the index" do
screenshot_group :index
visit root_url
all(".toggle").each { |btn| execute_script "arguments[0].remove()", btn }
all("h3").each do |header|
example = header.first(:xpath, "./following-sibling::div")
scroll_to example
sleep 0.5
screenshot header.text.downcase.tr(" ", "_"), crop: bounds(example), color_distance_limit: 2
end
self.assertions += 1 # To avoid a warning message.
end
HEADERS = ["Generated HTML", "This generates", "Which outputs", "will be rendered as"].join("|").freeze
REGEXP =
/(?:!\[[^\]]*\]\([^)]+\)\s*)?```erb\n(.*?)\n```\s*((?:#{HEADERS}).*?$)?\s*(```html\n(?:.*?)\n```\s*)?/mi
test "readme examples" do
screenshot_group :readme
readme = File.read(File.expand_path("../../../README.md", __dir__))
augmented_readme = readme.gsub(REGEXP) do |_|
erb = Regexp.last_match(1)
header = Regexp.last_match(2)
unless /\A<%= bootstrap[^>]*>\n\s*...\s*<% end %>\z/.match? erb
wrapped_erb = erb.starts_with?("<%= bootstrap") ? erb : <<~ERB
<%= bootstrap_form_with model: @user do |f| %>
#{erb}
<% end %>
ERB
visit fragment_path erb: wrapped_erb
wrapper = find(".fragment")
i = @screenshot_counter
screenshot :example, crop: bounds(wrapper)
wrapper = wrapper.find("form") if wrapped_erb != erb
html = wrapper["innerHTML"].strip.gsub("><", ">\n<")
assert html.present?, erb
doc = Nokogiri::HTML.fragment(html)
doc.traverse do |node|
if node.is_a?(Nokogiri::XML::Element)
node.attributes.sort_by(&:first).each do |name, value|
node.delete(name)
node[name] = value
end
end
end
html = doc.to_html
image = <<~MD
}_example.png "Example #{i}")
MD
html = <<~MD
#{header || 'Generated HTML:'}
```html
#{HtmlBeautifier.beautify(html)}
```
MD
end
<<~MD
#{image}```erb
#{erb}
```
#{html}
MD
end
augmented_readme.gsub!(/(127.0.0.1:\d+|shell:3001)/, "test.host")
File.write(File.expand_path("../../../README.md", __dir__), augmented_readme)
end
private
def bounds(node)
client_rect = evaluate_script("arguments[0].getBoundingClientRect()", node.native)
[client_rect["left"].floor, client_rect["top"].floor, client_rect["right"].ceil, client_rect["bottom"].ceil]
end
end