Sha256: 8fa3b3025bb0ba2614f18598459f69cbfabee34d332e43508a0cf94c9af28f75

Contents?: true

Size: 994 Bytes

Versions: 21

Compression:

Stored size: 994 Bytes

Contents

require "helper"

module Nokogiri
  module XML
    class TestSyntaxError < Nokogiri::TestCase
      def test_new
        error = Nokogiri::XML::SyntaxError.new 'hello'
        assert_equal 'hello', error.message
      end

      def test_line_column_level_libxml
        skip unless Nokogiri.uses_libxml?

        bad_doc = Nokogiri::XML('test')
        error = bad_doc.errors.first

        assert_equal "1:1: FATAL: Start tag expected, '<' not found", error.message
        assert_equal 1, error.line
        assert_equal 1, error.column
        assert_equal 3, error.level
      end

      def test_line_column_level_jruby
        skip unless Nokogiri.jruby?

        bad_doc = Nokogiri::XML('<root>test</bar>')
        error = bad_doc.errors.first

        assert_equal "The element type \"root\" must be terminated by the matching end-tag \"</root>\".", error.message
        assert_nil error.line
        assert_nil error.column
        assert_nil error.level
      end
    end
  end
end

Version data entries

21 entries across 18 versions & 3 rubygems

Version Path
tdiary-5.0.11 vendor/bundle/gems/nokogiri-1.8.5/test/xml/test_syntax_error.rb
tdiary-5.0.11 vendor/bundle/gems/nokogiri-1.8.4/test/xml/test_syntax_error.rb
nokogiri-1.9.0.rc1 test/xml/test_syntax_error.rb
nokogiri-1.9.0.rc1-x86-mingw32 test/xml/test_syntax_error.rb
nokogiri-1.9.0.rc1-x64-mingw32 test/xml/test_syntax_error.rb
nokogiri-1.9.0.rc1-java test/xml/test_syntax_error.rb
nokogiri-1.8.5 test/xml/test_syntax_error.rb
nokogiri-1.8.5-x86-mingw32 test/xml/test_syntax_error.rb
nokogiri-1.8.5-x64-mingw32 test/xml/test_syntax_error.rb
nokogiri-1.8.5-java test/xml/test_syntax_error.rb
nokogiri-1.8.4 test/xml/test_syntax_error.rb
nokogiri-1.8.4-x86-mingw32 test/xml/test_syntax_error.rb
nokogiri-1.8.4-x64-mingw32 test/xml/test_syntax_error.rb
nokogiri-1.8.4-java test/xml/test_syntax_error.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.3.0/gems/nokogiri-1.8.3/test/xml/test_syntax_error.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.5.0/gems/nokogiri-1.8.3/test/xml/test_syntax_error.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/nokogiri-1.8.3/test/xml/test_syntax_error.rb
nokogiri-1.8.3 test/xml/test_syntax_error.rb
nokogiri-1.8.3-x86-mingw32 test/xml/test_syntax_error.rb
nokogiri-1.8.3-x64-mingw32 test/xml/test_syntax_error.rb