aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/x/json2/decoder_test.v
blob: f80f8b2966df2e101e2d8c990dc95dd072b50056 (plain)
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
module json2

fn test_raw_decode_string() ? {
	str := raw_decode('"Hello!"') ?
	assert str.str() == 'Hello!'
}

fn test_raw_decode_number() ? {
	num := raw_decode('123') ?
	assert num.int() == 123
}

fn test_raw_decode_array() ? {
	raw_arr := raw_decode('["Foo", 1]') ?
	arr := raw_arr.arr()
	assert arr[0].str() == 'Foo'
	assert arr[1].int() == 1
}

fn test_raw_decode_bool() ? {
	bol := raw_decode('false') ?
	assert bol.bool() == false
}

fn test_raw_decode_map() ? {
	raw_mp := raw_decode('{"name":"Bob","age":20}') ?
	mp := raw_mp.as_map()
	assert mp['name'].str() == 'Bob'
	assert mp['age'].int() == 20
}

fn test_raw_decode_null() ? {
	nul := raw_decode('null') ?
	assert nul is Null
}

fn test_raw_decode_invalid() ? {
	raw_decode('1z') or {
		assert err.msg == '[x.json2] invalid token `z` (0:17)'
		return
	}
	assert false
}

fn test_raw_decode_string_with_dollarsign() ? {
	str := raw_decode(r'"Hello $world"') ?
	assert str.str() == r'Hello $world'
}

fn test_raw_decode_map_with_whitespaces() ? {
	raw_mp := raw_decode(' \n\t{"name":"Bob","age":20}\n\t') ?
	mp := raw_mp.as_map()
	assert mp['name'].str() == 'Bob'
	assert mp['age'].int() == 20
}

fn test_nested_array_object() ? {
	mut parser := new_parser(r'[[[[[],[],[]]]],{"Test":{}},[[]]]', false)
	decoded := parser.decode() ?
	assert parser.n_level == 0
}