diff --git a/test/html4/test_comments.rb b/test/html4/test_comments.rb index bef48b134e..5fc4d55d0e 100644 --- a/test/html4/test_comments.rb +++ b/test/html4/test_comments.rb @@ -96,7 +96,19 @@ class TestComment < Nokogiri::TestCase let(:doc) { Nokogiri::HTML4(html) } let(:subject) { doc.at_css("div#under-test") } - if Nokogiri.uses_libxml? + if Nokogiri.uses_libxml?(">= 2.14.0") + it "behaves as if the comment is closed immediately before the end of the input stream" do # COMPLIANT + assert_pattern do + subject => { + name: "div", + attributes: [{ name: "id", value: "under-test" }], + children: [ + { name: "comment", content: "start of unterminated comment" } + ] + } + end + end + elsif Nokogiri.uses_libxml? it "behaves as if the comment is unterminated and doesn't exist" do # NON-COMPLIANT assert_equal 0, subject.children.length assert_equal 1, doc.errors.length @@ -132,8 +144,12 @@ class TestComment < Nokogiri::TestCase assert_equal inner_div, subject.children[1] assert_predicate subject.children[2], :comment? assert_equal "bar", subject.children[2].content - assert_equal 1, doc.errors.length - assert_match(/Comment incorrectly closed/, doc.errors.first.to_s) + if Nokogiri.uses_libxml?(">= 2.14.0") + assert_empty doc.errors + else + assert_equal 1, doc.errors.length + assert_match(/Comment incorrectly closed/, doc.errors.first.to_s) + end end else # jruby, or libxml2 system lib less than 2.9.11 it "behaves as if the comment encompasses the inner div" do # NON-COMPLIANT @@ -161,7 +177,22 @@ class TestComment < Nokogiri::TestCase let(:body) { doc.at_css("body") } let(:subject) { doc.at_css("div#under-test") } - if Nokogiri.uses_libxml?("= 2.9.14") + if Nokogiri.uses_libxml?(">= 2.14.0") + it "parses as comments" do # COMPLIANT + assert_pattern do + body.children => [ + { + name: "div", + children: [ + { name: "comment", content: " comment