v/vlib/x/json2/decoder2/tests/checker_test.v
Larsimusrex a11de7263f
Some checks failed
Graphics CI / gg-regressions (push) Waiting to run
vlib modules CI / build-module-docs (push) Waiting to run
Shy and PV CI / v-compiles-puzzle-vibes (push) Waiting to run
Sanitized CI / sanitize-undefined-clang (push) Waiting to run
Sanitized CI / sanitize-undefined-gcc (push) Waiting to run
Sanitized CI / tests-sanitize-address-clang (push) Waiting to run
Sanitized CI / sanitize-address-msvc (push) Waiting to run
Sanitized CI / sanitize-address-gcc (push) Waiting to run
Sanitized CI / sanitize-memory-clang (push) Waiting to run
sdl CI / v-compiles-sdl-examples (push) Waiting to run
Time CI / time-linux (push) Waiting to run
Time CI / time-macos (push) Waiting to run
Time CI / time-windows (push) Waiting to run
toml CI / toml-module-pass-external-test-suites (push) Waiting to run
Tools CI / tools-linux (clang) (push) Waiting to run
Tools CI / tools-linux (gcc) (push) Waiting to run
Tools CI / tools-linux (tcc) (push) Waiting to run
Tools CI / tools-macos (clang) (push) Waiting to run
Tools CI / tools-windows (gcc) (push) Waiting to run
Tools CI / tools-windows (msvc) (push) Waiting to run
Tools CI / tools-windows (tcc) (push) Waiting to run
Tools CI / tools-docker-ubuntu-musl (push) Waiting to run
vab CI / vab-compiles-v-examples (push) Waiting to run
vab CI / v-compiles-os-android (push) Waiting to run
json decoder benchmark CI / json-encode-benchmark (push) Has been cancelled
json encoder benchmark CI / json-encode-benchmark (push) Has been cancelled
decoder2: improve checker with better EOF detection (#25075)
2025-08-09 16:38:58 +03:00

185 lines
4.1 KiB
V

import x.json2.decoder2 as json
import x.json2
fn test_check_if_json_match() {
// /* Test wrong string values */
mut has_error := false
json.decode[string]('{"key": "value"}') or {
if err is json.JsonDecodeError {
assert err.line == 1
assert err.character == 1
assert err.message == 'Data: Expected string, but got object'
}
has_error = true
}
assert has_error, 'Expected error'
has_error = false
json.decode[map[string]string]('"value"') or {
if err is json.JsonDecodeError {
assert err.line == 1
assert err.character == 1
assert err.message == 'Data: Expected object, but got string'
}
has_error = true
}
assert has_error, 'Expected error'
has_error = false
json.decode[[]int]('{"key": "value"}') or {
if err is json.JsonDecodeError {
assert err.line == 1
assert err.character == 1
assert err.message == 'Data: Expected array, but got object'
}
has_error = true
}
assert has_error, 'Expected error'
has_error = false
json.decode[string]('[1, 2, 3]') or {
if err is json.JsonDecodeError {
assert err.line == 1
assert err.character == 1
assert err.message == 'Data: Expected string, but got array'
}
has_error = true
}
assert has_error, 'Expected error'
has_error = false
json.decode[int]('{"key": "value"}') or {
if err is json.JsonDecodeError {
assert err.line == 1
assert err.character == 1
assert err.message == 'Data: Expected number, but got object'
}
has_error = true
}
assert has_error, 'Expected error'
has_error = false
json.decode[bool]('{"key": "value"}') or {
if err is json.JsonDecodeError {
assert err.line == 1
assert err.character == 1
assert err.message == 'Data: Expected boolean, but got object'
}
has_error = true
}
assert has_error, 'Expected error'
has_error = false
// /* Right string values */
json.decode[string]('"value"') or { assert false }
json.decode[map[string]string]('{"key": "value"}') or { assert false }
json.decode[[]int]('[1, 2, 3]') or { assert false }
json.decode[string]('"string"') or { assert false }
json.decode[int]('123') or { assert false }
json.decode[bool]('true') or { assert false }
json.decode[bool]('false') or { assert false }
}
fn test_check_json_format() {
json_and_error_message := [
{
'json': ']'
'error': 'Syntax: unknown value kind'
},
{
'json': '}'
'error': 'Syntax: unknown value kind'
},
{
'json': 'truely'
'error': 'Syntax: invalid value. Unexpected character after boolean end'
},
{
'json': '0[1]'
'error': 'Syntax: invalid value. Unexpected character after number end'
},
{
'json': '[1, 2, g3]'
'error': 'Syntax: unknown value kind'
},
{
'json': '[1, 2,, 3]'
'error': 'Syntax: unknown value kind'
},
{
'json': '{"key": 123'
'error': 'Syntax: Expecting object key' // improve message
},
{
'json': '{"key": 123,'
'error': 'Syntax: EOF: expected object key'
},
{
'json': '{"key": 123, "key2": 456,}'
'error': 'Syntax: Cannot use `,`, before `}`'
},
{
'json': '[[1, 2, 3], [4, 5, 6],]'
'error': 'Syntax: Cannot use `,`, before `]`'
},
{
'json': ' '
'error': 'Syntax: EOF: empty json'
},
{
'json': '"'
'error': 'Syntax: EOF: string not closed'
},
{
'json': '"not closed'
'error': 'Syntax: EOF: string not closed'
},
{
'json': '"\\"'
'error': 'Syntax: EOF: string not closed'
},
{
'json': '"\\u8"'
'error': 'Syntax: short unicode escape sequence \\u8'
},
{
'json': '['
'error': 'Syntax: EOF: expected array end'
},
{
'json': '[ '
'error': 'Syntax: EOF: expected array end'
},
{
'json': '{'
'error': 'Syntax: EOF: expected object end'
},
{
'json': '{ '
'error': 'Syntax: EOF: expected object end'
},
{
'json': '{"key": "value" '
'error': 'Syntax: EOF: expected object end'
},
]
for json_and_error in json_and_error_message {
mut has_error := false
json.decode[json2.Any](json_and_error['json']) or {
if err is json.JsonDecodeError {
assert err.message == json_and_error['error']
}
has_error = true
}
assert has_error, 'Expected error ${json_and_error['error']}'
}
}