openstreetmap-website/test/lib/utf8_test.rb
Andy Allan 37b03e47c6 Fix various code comments
These were found as part of #3233
2021-07-21 11:24:23 +01:00

17 lines
837 B
Ruby

require "test_helper"
class UTF8Test < ActiveSupport::TestCase
def test_valid?
assert UTF8.valid?("test")
assert UTF8.valid?("vergrößern")
assert UTF8.valid?("ルシステムにも対応します")
assert UTF8.valid?("輕觸搖晃的遊戲")
assert_not UTF8.valid?("\xC0") # always invalid utf8
assert_not UTF8.valid?("\xC2\x4a") # 2-byte multibyte identifier, followed by plain ASCII
assert_not UTF8.valid?("\xC2\xC2") # 2-byte multibyte identifier, followed by another one
assert_not UTF8.valid?("\x4a\x82") # plain ASCII, followed by multibyte continuation
assert_not UTF8.valid?("\x82\x82") # multibyte continuations without multibyte identifier
assert_not UTF8.valid?("\xe1\x82\x4a") # three-byte identifier, continuation and (incorrectly) plain ASCII
end
end