2019-08-23 01:54:39 +02:00
|
|
|
import json
|
2019-06-27 14:28:12 +02:00
|
|
|
|
2020-06-02 11:13:26 +02:00
|
|
|
enum JobTitle {
|
|
|
|
manager
|
|
|
|
executive
|
|
|
|
worker
|
|
|
|
}
|
|
|
|
|
2020-05-04 20:43:22 +02:00
|
|
|
struct Employee {
|
2020-08-16 02:30:37 +02:00
|
|
|
name string
|
|
|
|
age int
|
2020-05-31 13:17:20 +02:00
|
|
|
salary f32
|
2020-08-16 02:30:37 +02:00
|
|
|
title JobTitle
|
2020-05-04 20:43:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test_simple() {
|
2020-06-02 11:13:26 +02:00
|
|
|
x := Employee{'Peter', 28, 95000.5, .worker}
|
2020-05-04 20:43:22 +02:00
|
|
|
s := json.encode(x)
|
2020-05-31 13:17:20 +02:00
|
|
|
eprintln('Employee x: $s')
|
2020-06-02 11:13:26 +02:00
|
|
|
assert s == '{"name":"Peter","age":28,"salary":95000.5,"title":2}'
|
2020-05-04 20:43:22 +02:00
|
|
|
y := json.decode(Employee, s) or {
|
|
|
|
assert false
|
2020-05-21 22:35:43 +02:00
|
|
|
Employee{}
|
2020-05-04 20:43:22 +02:00
|
|
|
}
|
2020-05-31 13:17:20 +02:00
|
|
|
eprintln('Employee y: $y')
|
2020-05-04 20:43:22 +02:00
|
|
|
assert y.name == 'Peter'
|
|
|
|
assert y.age == 28
|
2020-05-31 13:17:20 +02:00
|
|
|
assert y.salary == 95000.5
|
2020-06-02 11:13:26 +02:00
|
|
|
assert y.title == .worker
|
2020-05-04 20:43:22 +02:00
|
|
|
}
|
|
|
|
|
2020-11-04 09:21:30 +01:00
|
|
|
fn bar<T>(payload string) ?Bar { // ?T doesn't work currently
|
|
|
|
result := json.decode(T, payload)?
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
struct Bar {
|
|
|
|
x string
|
|
|
|
}
|
|
|
|
fn test_generic() {
|
|
|
|
result := bar<Bar>('{"x":"test"}') or { Bar{} }
|
|
|
|
assert result.x == 'test'
|
|
|
|
}
|
|
|
|
|
2020-05-05 14:41:24 +02:00
|
|
|
struct User2 {
|
2020-05-21 22:35:43 +02:00
|
|
|
age int
|
|
|
|
nums []int
|
2020-05-05 14:41:24 +02:00
|
|
|
}
|
2020-05-05 13:23:29 +02:00
|
|
|
|
2019-06-27 14:28:12 +02:00
|
|
|
struct User {
|
2020-05-21 22:35:43 +02:00
|
|
|
age int
|
|
|
|
nums []int
|
2020-08-16 02:30:37 +02:00
|
|
|
last_name string [json: lastName]
|
|
|
|
is_registered bool [json: IsRegistered]
|
|
|
|
typ int [json: 'type']
|
|
|
|
pets string [raw; json: 'pet_animals']
|
2019-06-27 14:28:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test_parse_user() {
|
2020-05-08 15:09:42 +02:00
|
|
|
s := '{"age": 10, "nums": [1,2,3], "type": 1, "lastName": "Johnson", "IsRegistered": true, "pet_animals": {"name": "Bob", "animal": "Dog"}}'
|
2020-05-05 14:41:24 +02:00
|
|
|
u2 := json.decode(User2, s) or {
|
|
|
|
exit(1)
|
|
|
|
}
|
|
|
|
println(u2)
|
2019-06-27 14:28:12 +02:00
|
|
|
u := json.decode(User, s) or {
|
2019-08-23 01:54:39 +02:00
|
|
|
exit(1)
|
2019-06-27 14:28:12 +02:00
|
|
|
}
|
2020-05-05 13:23:29 +02:00
|
|
|
println(u)
|
2019-06-27 14:28:12 +02:00
|
|
|
assert u.age == 10
|
2019-08-23 01:54:39 +02:00
|
|
|
assert u.last_name == 'Johnson'
|
2019-08-23 09:04:40 +02:00
|
|
|
assert u.is_registered == true
|
2019-06-27 14:28:12 +02:00
|
|
|
assert u.nums.len == 3
|
2019-08-23 01:54:39 +02:00
|
|
|
assert u.nums[0] == 1
|
|
|
|
assert u.nums[1] == 2
|
|
|
|
assert u.nums[2] == 3
|
2020-05-18 05:10:56 +02:00
|
|
|
assert u.typ == 1
|
2020-05-08 15:09:42 +02:00
|
|
|
assert u.pets == '{"name":"Bob","animal":"Dog"}'
|
2019-06-27 14:28:12 +02:00
|
|
|
}
|
|
|
|
|
2020-05-21 22:35:43 +02:00
|
|
|
fn test_encode_user() {
|
|
|
|
usr := User{
|
|
|
|
age: 10
|
|
|
|
nums: [1, 2, 3]
|
|
|
|
last_name: 'Johnson'
|
|
|
|
is_registered: true
|
|
|
|
typ: 0
|
|
|
|
pets: 'foo'
|
|
|
|
}
|
2020-05-08 15:09:42 +02:00
|
|
|
expected := '{"age":10,"nums":[1,2,3],"lastName":"Johnson","IsRegistered":true,"type":0,"pet_animals":"foo"}'
|
2019-08-23 09:04:40 +02:00
|
|
|
out := json.encode(usr)
|
2020-05-05 14:54:12 +02:00
|
|
|
println(out)
|
2019-08-23 09:04:40 +02:00
|
|
|
assert out == expected
|
|
|
|
}
|
|
|
|
|
2019-08-22 13:22:16 +02:00
|
|
|
struct Color {
|
2020-05-21 22:35:43 +02:00
|
|
|
space string
|
|
|
|
point string [raw]
|
2019-08-22 13:22:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test_raw_json_field() {
|
2020-05-21 22:35:43 +02:00
|
|
|
color := json.decode(Color, '{"space": "YCbCr", "point": {"Y": 123}}') or {
|
|
|
|
println('text')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
assert color.point == '{"Y":123}'
|
|
|
|
assert color.space == 'YCbCr'
|
2019-08-22 13:22:16 +02:00
|
|
|
}
|
2020-05-05 14:54:12 +02:00
|
|
|
|
2020-05-18 05:10:56 +02:00
|
|
|
struct City {
|
|
|
|
name string
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Country {
|
|
|
|
cities []City
|
2020-05-21 22:35:43 +02:00
|
|
|
name string
|
2020-05-18 05:10:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn test_struct_in_struct() {
|
|
|
|
country := json.decode(Country, '{ "name": "UK", "cities": [{"name":"London"}, {"name":"Manchester"}]}') or {
|
|
|
|
assert false
|
|
|
|
exit(1)
|
|
|
|
}
|
|
|
|
assert country.name == 'UK'
|
|
|
|
assert country.cities.len == 2
|
|
|
|
assert country.cities[0].name == 'London'
|
|
|
|
assert country.cities[1].name == 'Manchester'
|
|
|
|
println(country.cities)
|
|
|
|
}
|
2020-08-16 02:30:37 +02:00
|
|
|
|
|
|
|
fn test_encode_map() {
|
|
|
|
expected := '{"one":1,"two":2,"three":3,"four":4}'
|
|
|
|
numbers := {
|
|
|
|
'one': 1
|
|
|
|
'two': 2
|
|
|
|
'three': 3
|
|
|
|
'four': 4
|
|
|
|
}
|
|
|
|
out := json.encode(numbers)
|
|
|
|
println(out)
|
|
|
|
assert out == expected
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_parse_map() {
|
|
|
|
expected := {
|
|
|
|
'one': 1
|
|
|
|
'two': 2
|
|
|
|
'three': 3
|
|
|
|
'four': 4
|
|
|
|
}
|
|
|
|
out := json.decode(map[string]int, '{"one":1,"two":2,"three":3,"four":4}') or {
|
|
|
|
assert false
|
|
|
|
r := {
|
|
|
|
'': 0
|
|
|
|
}
|
|
|
|
r
|
|
|
|
}
|
|
|
|
println(out)
|
|
|
|
assert out == expected
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Data {
|
|
|
|
countries []Country
|
|
|
|
users map[string]User
|
|
|
|
extra map[string]map[string]int
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_nested_type() {
|
|
|
|
data_expected := '{"countries":[{"cities":[{"name":"London"},{"name":"Manchester"}],"name":"UK"},{"cities":[{"name":"Donlon"},{"name":"Termanches"}],"name":"KU"}],"users":{"Foo":{"age":10,"nums":[1,2,3],"lastName":"Johnson","IsRegistered":true,"type":0,"pet_animals":"little foo"},"Boo":{"age":20,"nums":[5,3,1],"lastName":"Smith","IsRegistered":false,"type":4,"pet_animals":"little boo"}},"extra":{"2":{"n1":2,"n2":4,"n3":8,"n4":16},"3":{"n1":3,"n2":9,"n3":27,"n4":81}}}'
|
|
|
|
|
|
|
|
data := Data{
|
|
|
|
countries: [
|
|
|
|
Country{
|
|
|
|
name: 'UK'
|
|
|
|
cities: [City{'London'},
|
|
|
|
City{'Manchester'},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
Country{
|
|
|
|
name: 'KU'
|
|
|
|
cities: [City{'Donlon'},
|
|
|
|
City{'Termanches'},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
]
|
|
|
|
users: {
|
|
|
|
'Foo': User{
|
|
|
|
age: 10
|
|
|
|
nums: [1, 2, 3]
|
|
|
|
last_name: 'Johnson'
|
|
|
|
is_registered: true
|
|
|
|
typ: 0
|
|
|
|
pets: 'little foo'
|
|
|
|
},
|
|
|
|
'Boo': User{
|
|
|
|
age: 20
|
|
|
|
nums: [5, 3, 1]
|
|
|
|
last_name: 'Smith'
|
|
|
|
is_registered: false
|
|
|
|
typ: 4
|
|
|
|
pets: 'little boo'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
extra: {
|
|
|
|
'2': {
|
|
|
|
'n1': 2
|
|
|
|
'n2': 4
|
|
|
|
'n3': 8
|
|
|
|
'n4': 16
|
|
|
|
},
|
|
|
|
'3': {
|
|
|
|
'n1': 3
|
|
|
|
'n2': 9
|
|
|
|
'n3': 27
|
|
|
|
'n4': 81
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out := json.encode(data)
|
|
|
|
println(out)
|
|
|
|
assert out == data_expected
|
|
|
|
|
|
|
|
data2 := json.decode(Data, data_expected) or {
|
|
|
|
assert false
|
|
|
|
Data{}
|
|
|
|
}
|
|
|
|
assert data2.countries.len == data.countries.len
|
|
|
|
for i in 0..1 {
|
|
|
|
assert data2.countries[i].name == data.countries[i].name
|
|
|
|
assert data2.countries[i].cities.len == data.countries[i].cities.len
|
|
|
|
for j in 0..1 {
|
|
|
|
assert data2.countries[i].cities[j].name == data.countries[i].cities[j].name
|
|
|
|
}
|
|
|
|
}
|
2020-09-29 03:15:00 +02:00
|
|
|
|
2020-08-16 02:30:37 +02:00
|
|
|
for key, user in data.users {
|
|
|
|
assert data2.users[key].age == user.age
|
|
|
|
assert data2.users[key].nums == user.nums
|
|
|
|
assert data2.users[key].last_name == user.last_name
|
|
|
|
assert data2.users[key].is_registered == user.is_registered
|
|
|
|
assert data2.users[key].typ == user.typ
|
|
|
|
// assert data2.users[key].pets == user.pets // TODO FIX
|
|
|
|
}
|
|
|
|
|
|
|
|
for k, v in data.extra {
|
|
|
|
for k2, v2 in v {
|
|
|
|
assert data2.extra[k][k2] == v2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-29 03:15:00 +02:00
|
|
|
struct Foo<T> {
|
|
|
|
pub:
|
|
|
|
name string
|
|
|
|
data T
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_generic_struct() {
|
|
|
|
foo_int := Foo<int>{'bar', 12}
|
|
|
|
foo_enc := json.encode(foo_int)
|
|
|
|
assert foo_enc == '{"name":"bar","data":12}'
|
|
|
|
|
|
|
|
foo_dec := json.decode(Foo<int>, foo_enc) or {
|
|
|
|
exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
assert foo_dec.name == 'bar'
|
|
|
|
assert foo_dec.data == 12
|
|
|
|
}
|
|
|
|
|
2020-08-16 02:30:37 +02:00
|
|
|
fn test_errors() {
|
|
|
|
invalid_array := fn () {
|
|
|
|
data := '{"countries":[{"cities":[{"name":"London"},{"name":"Manchester"}],"name":"UK"},{"cities":{"name":"Donlon"},"name":"KU"}],"users":{"Foo":{"age":10,"nums":[1,2,3],"lastName":"Johnson","IsRegistered":true,"type":0,"pet_animals":"little foo"},"Boo":{"age":20,"nums":[5,3,1],"lastName":"Smith","IsRegistered":false,"type":4,"pet_animals":"little boo"}},"extra":{"2":{"n1":2,"n2":4,"n3":8,"n4":16},"3":{"n1":3,"n2":9,"n3":27,"n4":81}}}'
|
|
|
|
|
|
|
|
json.decode(Data, data) or {
|
|
|
|
println(err)
|
|
|
|
assert err.starts_with('Json element is not an array:')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
assert false
|
|
|
|
}
|
|
|
|
invalid_object := fn() {
|
|
|
|
data := '{"countries":[{"cities":[{"name":"London"},{"name":"Manchester"}],"name":"UK"},{"cities":[{"name":"Donlon"},{"name":"Termanches"}],"name":"KU"}],"users":[{"age":10,"nums":[1,2,3],"lastName":"Johnson","IsRegistered":true,"type":0,"pet_animals":"little foo"},{"age":20,"nums":[5,3,1],"lastName":"Smith","IsRegistered":false,"type":4,"pet_animals":"little boo"}],"extra":{"2":{"n1":2,"n2":4,"n3":8,"n4":16},"3":{"n1":3,"n2":9,"n3":27,"n4":81}}}'
|
|
|
|
|
|
|
|
json.decode(Data, data) or {
|
|
|
|
println(err)
|
|
|
|
assert err.starts_with('Json element is not an object:')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
assert false
|
|
|
|
}
|
|
|
|
invalid_array()
|
|
|
|
invalid_object()
|
|
|
|
}
|