1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

websocket utf8: move utf8 functions from websocket to encoding.utf8, add utf8_test.v (4/4) (#5924)

This commit is contained in:
Carlos Esquerdo Bernat
2020-07-22 17:36:24 +02:00
committed by GitHub
parent 38aa5d6930
commit b0d76c59f7
3 changed files with 18 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
import encoding.utf8 { validate_str }
fn test_validate_str() {
assert validate_str('añçá') == true
assert validate_str('\x61\xC3\xB1\xC3\xA7\xC3\xA1') == true
assert validate_str('\xC0\xC1') == false
assert validate_str('\xF5\xFF') == false
assert validate_str('\xE0\xEF') == false
}