require "helper"
class IntegrationTestHtml < Loofah::TestCase
context "html fragment" do
context "#to_s" do
it "not include head tags (like style)" do
skip "depends on nokogiri version"
html = Loofah.fragment "
bar
"
assert_equal "bar
", html.to_s
end
end
context "#text" do
it "not include head tags (like style)" do
skip "depends on nokogiri version"
html = Loofah.fragment "bar
"
assert_equal "bar", html.text
end
end
context "#to_text" do
it "add newlines before and after html4 block elements" do
html = Loofah.fragment "tweedle
beetle
bottle
puddlepaddle
battle
muddle
"
assert_equal "\ntweedle\nbeetle\nbottlepuddlepaddle\nbattle\nmuddle\n", html.to_text
end
it "add newlines before and after html5 block elements" do
html = Loofah.fragment "tweedle
bottle
puddlepaddle
battle
muddle
"
assert_equal "\ntweedle\nbeetle\nbottlepuddlepaddle\nbattle\nmuddle\n", html.to_text
end
it "remove extraneous whitespace" do
html = Loofah.fragment "tweedle\n\n\t\n\s\nbeetle
"
assert_equal "\ntweedle\n\nbeetle\n", html.to_text
end
end
context 'with an `encoding` arg' do
it "sets the parent document's encoding to accordingly" do
html = Loofah.fragment "bar
", 'US-ASCII'
assert_equal 'US-ASCII', html.document.encoding
end
end
end
context "html document" do
context "#text" do
it "not include head tags (like style)" do
html = Loofah.document "bar
"
assert_equal "bar", html.text
end
end
context "#to_text" do
it "add newlines before and after html4 block elements" do
html = Loofah.document "tweedle
beetle
bottle
puddlepaddle
battle
muddle
"
assert_equal "\ntweedle\nbeetle\nbottlepuddlepaddle\nbattle\nmuddle\n", html.to_text
end
it "add newlines before and after html5 block elements" do
html = Loofah.document "tweedle
bottle
puddlepaddle
battle
muddle
"
assert_equal "\ntweedle\nbeetle\nbottlepuddlepaddle\nbattle\nmuddle\n", html.to_text
end
it "remove extraneous whitespace" do
html = Loofah.document "tweedle\n\n\t\n\s\nbeetle
"
assert_equal "\ntweedle\n\nbeetle\n", html.to_text
end
end
end
end