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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
require "test_helper"
class ErrorTest < Test::Unit::TestCase
def test_redefine_error_position
assert_parse_error("cannot redefine `a` at line 2 column 3") do
PerfectTOML.parse(<<-'END')
a = 1
a = 2
END
end
assert_parse_error("cannot redefine `a` at line 2 column 3") do
PerfectTOML.parse(<<-'END')
a = 1
[a]
END
end
assert_parse_error("cannot redefine `a.b` at line 3 column 3") do
PerfectTOML.parse(<<-'END')
[a.b]
[a]
b = 1
END
end
assert_parse_error("cannot redefine `a.b` at line 3 column 3") do
PerfectTOML.parse(<<-'END')
[a]
b = 1
[ a . b ]
END
end
assert_parse_error("cannot redefine `a.b` at line 3 column 3") do
PerfectTOML.parse(<<-'END')
[a]
b = 1
[[ a . b ]]
END
end
assert_parse_error("cannot redefine `b` at line 1 column 14") do
PerfectTOML.parse(<<-'END')
a = { b = 1, b = 2 }
END
end
end
def test_wrong_character
assert_parse_error("unexpected character found: \"\\x00\" at line 1 column 24") do
PerfectTOML.parse(<<-END)
# control character -> \0
END
end
assert_parse_error("invalid escape character in string: \"e\" at line 1 column 7") do
PerfectTOML.parse(<<-'END')
a = "\e"
END
end
assert_parse_error("invalid character in string: \"\\x00\" at line 1 column 31") do
PerfectTOML.parse(<<-END)
a = "raw control character -> \0"
END
end
assert_parse_error("invalid character in string: \"\\x00\" at line 1 column 33") do
PerfectTOML.parse(<<-END)
a = """raw control character -> \0"""
END
end
assert_parse_error("invalid character in string: \"\\x00\" at line 1 column 31") do
PerfectTOML.parse(<<-END)
a = 'raw control character -> \0'
END
end
assert_parse_error("invalid character in string: \"\\x00\" at line 1 column 33") do
PerfectTOML.parse(<<-END)
a = '''raw control character -> \0'''
END
end
end
def test_unterminated_string
assert_parse_error("unterminated string at line 1 column 18") do
PerfectTOML.parse(<<-END.chomp)
a = "unterminated
END
end
assert_parse_error("unterminated string at line 1 column 20") do
PerfectTOML.parse(<<-END.chomp)
a = """unterminated
END
end
assert_parse_error("unterminated string at line 1 column 18") do
PerfectTOML.parse(<<-END.chomp)
a = 'unterminated
END
end
assert_parse_error("unterminated string at line 1 column 20") do
PerfectTOML.parse(<<-END.chomp)
a = '''unterminated
END
end
end
def test_wrong_offset_datetime
assert_parse_error("failed to parse date or datetime \"2000-00-00T25:00:00\" at line 1 column 9") do
PerfectTOML.parse(<<-'END')
wrong = 2000-00-00T25:00:00Z
END
end
end
def test_wrong_local_datetime
assert_parse_error("failed to parse date or datetime \"2000-00-00T25:00:00\" at line 1 column 9") do
PerfectTOML.parse(<<-'END')
wrong = 2000-00-00T25:00:00
END
end
end
def test_wrong_local_date
assert_parse_error("failed to parse date or datetime \"2000-00-00\" at line 1 column 9") do
PerfectTOML.parse(<<-'END')
wrong = 2000-00-00
END
end
end
def test_wrong_local_time
assert_parse_error("failed to parse time \"25:00:00\" at line 1 column 9") do
PerfectTOML.parse(<<-'END')
wrong = 25:00:00
END
end
end
end
|