2019-08-23 01:54:39 +02:00
|
|
|
import json
|
2020-12-22 07:24:41 +01:00
|
|
|
import time
|
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
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:37 +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}'
|
2021-07-25 16:27:37 +02:00
|
|
|
y := json.decode(Employee, s) ?
|
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
|
2020-12-22 07:24:41 +01:00
|
|
|
result := json.decode(T, payload) ?
|
2020-11-04 09:21:30 +01:00
|
|
|
return result
|
|
|
|
}
|
2020-12-22 07:24:41 +01:00
|
|
|
|
2020-11-04 09:21:30 +01:00
|
|
|
struct Bar {
|
|
|
|
x string
|
|
|
|
}
|
2020-12-22 07:24:41 +01:00
|
|
|
|
2020-11-04 09:21:30 +01:00
|
|
|
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-12-22 07:24:41 +01:00
|
|
|
age int
|
|
|
|
nums []int
|
|
|
|
reg_date time.Time
|
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']
|
2021-05-08 12:32:29 +02:00
|
|
|
pets string [json: 'pet_animals'; raw]
|
2019-06-27 14:28:12 +02:00
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:37 +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"}}'
|
2021-07-25 16:27:37 +02:00
|
|
|
u2 := json.decode(User2, s) ?
|
2020-05-05 14:41:24 +02:00
|
|
|
println(u2)
|
2021-07-25 16:27:37 +02:00
|
|
|
u := json.decode(User, s) ?
|
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
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:37 +02:00
|
|
|
fn test_encode_decode_time() ? {
|
2020-12-22 07:24:41 +01:00
|
|
|
user := User2{
|
|
|
|
age: 25
|
|
|
|
reg_date: time.new_time(year: 2020, month: 12, day: 22, hour: 7, minute: 23)
|
|
|
|
}
|
|
|
|
s := json.encode(user)
|
|
|
|
println(s)
|
|
|
|
assert s.contains('"reg_date":1608621780')
|
2021-07-25 16:27:37 +02:00
|
|
|
user2 := json.decode(User2, s) ?
|
2020-12-22 07:24:41 +01:00
|
|
|
assert user2.reg_date.str() == '2020-12-22 07:23:00'
|
|
|
|
println(user2)
|
|
|
|
println(user2.reg_date)
|
|
|
|
}
|
|
|
|
|
2020-11-29 17:45:22 +01:00
|
|
|
fn (mut u User) foo() string {
|
|
|
|
return json.encode(u)
|
|
|
|
}
|
|
|
|
|
2020-05-21 22:35:43 +02:00
|
|
|
fn test_encode_user() {
|
2020-11-29 17:45:22 +01:00
|
|
|
mut usr := User{
|
2020-05-21 22:35:43 +02:00
|
|
|
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
|
2020-11-29 17:45:22 +01:00
|
|
|
// Test json.encode on mutable pointers
|
|
|
|
assert usr.foo() == expected
|
2019-08-23 09:04:40 +02:00
|
|
|
}
|
|
|
|
|
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-12-09 20:10:41 +01:00
|
|
|
fn test_bad_raw_json_field() {
|
|
|
|
color := json.decode(Color, '{"space": "YCbCr"}') or {
|
|
|
|
println('text')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
assert color.point == ''
|
|
|
|
assert color.space == 'YCbCr'
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:37 +02:00
|
|
|
fn test_struct_in_struct() ? {
|
|
|
|
country := json.decode(Country, '{ "name": "UK", "cities": [{"name":"London"}, {"name":"Manchester"}]}') ?
|
2020-05-18 05:10:56 +02:00
|
|
|
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}'
|
2021-02-10 10:17:29 +01:00
|
|
|
numbers := map{
|
2020-12-22 07:24:41 +01:00
|
|
|
'one': 1
|
|
|
|
'two': 2
|
2020-08-16 02:30:37 +02:00
|
|
|
'three': 3
|
2020-12-22 07:24:41 +01:00
|
|
|
'four': 4
|
2020-08-16 02:30:37 +02:00
|
|
|
}
|
|
|
|
out := json.encode(numbers)
|
|
|
|
println(out)
|
|
|
|
assert out == expected
|
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:37 +02:00
|
|
|
fn test_parse_map() ? {
|
2021-02-10 10:17:29 +01:00
|
|
|
expected := map{
|
2020-12-22 07:24:41 +01:00
|
|
|
'one': 1
|
|
|
|
'two': 2
|
2020-08-16 02:30:37 +02:00
|
|
|
'three': 3
|
2020-12-22 07:24:41 +01:00
|
|
|
'four': 4
|
2020-08-16 02:30:37 +02:00
|
|
|
}
|
2021-07-25 16:27:37 +02:00
|
|
|
out := json.decode(map[string]int, '{"one":1,"two":2,"three":3,"four":4}') ?
|
2020-08-16 02:30:37 +02:00
|
|
|
println(out)
|
|
|
|
assert out == expected
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Data {
|
|
|
|
countries []Country
|
|
|
|
users map[string]User
|
|
|
|
extra map[string]map[string]int
|
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:37 +02:00
|
|
|
fn test_nested_type() ? {
|
2020-08-16 02:30:37 +02:00
|
|
|
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'
|
2021-02-10 10:17:29 +01:00
|
|
|
cities: [City{'London'}, City{'Manchester'}]
|
2020-08-16 02:30:37 +02:00
|
|
|
},
|
|
|
|
Country{
|
|
|
|
name: 'KU'
|
2021-02-10 10:17:29 +01:00
|
|
|
cities: [City{'Donlon'}, City{'Termanches'}]
|
2020-08-16 02:30:37 +02:00
|
|
|
},
|
|
|
|
]
|
2021-02-10 10:17:29 +01:00
|
|
|
users: map{
|
2020-08-16 02:30:37 +02:00
|
|
|
'Foo': User{
|
|
|
|
age: 10
|
|
|
|
nums: [1, 2, 3]
|
|
|
|
last_name: 'Johnson'
|
|
|
|
is_registered: true
|
|
|
|
typ: 0
|
|
|
|
pets: 'little foo'
|
2020-12-05 16:13:18 +01:00
|
|
|
}
|
2020-08-16 02:30:37 +02:00
|
|
|
'Boo': User{
|
|
|
|
age: 20
|
|
|
|
nums: [5, 3, 1]
|
|
|
|
last_name: 'Smith'
|
|
|
|
is_registered: false
|
|
|
|
typ: 4
|
|
|
|
pets: 'little boo'
|
|
|
|
}
|
2020-12-05 16:13:18 +01:00
|
|
|
}
|
2021-02-10 10:17:29 +01:00
|
|
|
extra: map{
|
|
|
|
'2': map{
|
2020-08-16 02:30:37 +02:00
|
|
|
'n1': 2
|
|
|
|
'n2': 4
|
|
|
|
'n3': 8
|
|
|
|
'n4': 16
|
2020-12-05 16:13:18 +01:00
|
|
|
}
|
2021-02-10 10:17:29 +01:00
|
|
|
'3': map{
|
2020-08-16 02:30:37 +02:00
|
|
|
'n1': 3
|
|
|
|
'n2': 9
|
|
|
|
'n3': 27
|
|
|
|
'n4': 81
|
2020-12-05 16:13:18 +01:00
|
|
|
}
|
2020-08-16 02:30:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
out := json.encode(data)
|
|
|
|
println(out)
|
|
|
|
assert out == data_expected
|
2021-07-25 16:27:37 +02:00
|
|
|
data2 := json.decode(Data, data_expected) ?
|
2020-08-16 02:30:37 +02:00
|
|
|
assert data2.countries.len == data.countries.len
|
2020-12-05 16:13:18 +01:00
|
|
|
for i in 0 .. 1 {
|
2020-08-16 02:30:37 +02:00
|
|
|
assert data2.countries[i].name == data.countries[i].name
|
|
|
|
assert data2.countries[i].cities.len == data.countries[i].cities.len
|
2020-12-05 16:13:18 +01:00
|
|
|
for j in 0 .. 1 {
|
2020-08-16 02:30:37 +02:00
|
|
|
assert data2.countries[i].cities[j].name == data.countries[i].cities[j].name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-08 12:32:29 +02:00
|
|
|
struct Foo<T> {
|
2020-09-29 03:15:00 +02:00
|
|
|
pub:
|
|
|
|
name string
|
|
|
|
data T
|
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:37 +02:00
|
|
|
fn test_generic_struct() ? {
|
2020-09-29 03:15:00 +02:00
|
|
|
foo_int := Foo<int>{'bar', 12}
|
|
|
|
foo_enc := json.encode(foo_int)
|
|
|
|
assert foo_enc == '{"name":"bar","data":12}'
|
2021-07-25 16:27:37 +02:00
|
|
|
foo_dec := json.decode(Foo<int>, foo_enc) ?
|
2020-09-29 03:15:00 +02:00
|
|
|
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)
|
2021-02-28 20:24:29 +01:00
|
|
|
assert err.msg.starts_with('Json element is not an array:')
|
2020-08-16 02:30:37 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
assert false
|
|
|
|
}
|
2020-12-05 16:13:18 +01:00
|
|
|
invalid_object := fn () {
|
2020-08-16 02:30:37 +02:00
|
|
|
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)
|
2021-02-28 20:24:29 +01:00
|
|
|
assert err.msg.starts_with('Json element is not an object:')
|
2020-08-16 02:30:37 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
assert false
|
|
|
|
}
|
|
|
|
invalid_array()
|
|
|
|
invalid_object()
|
|
|
|
}
|
2020-12-05 16:13:18 +01:00
|
|
|
|
|
|
|
type ID = string
|
|
|
|
|
|
|
|
struct Message {
|
|
|
|
id ID
|
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:37 +02:00
|
|
|
fn test_decode_alias_struct() ? {
|
|
|
|
msg := json.decode(Message, '{"id": "118499178790780929"}') ?
|
2020-12-05 16:13:18 +01:00
|
|
|
// hacky way of comparing aliased strings
|
|
|
|
assert msg.id.str() == '118499178790780929'
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_encode_alias_struct() {
|
|
|
|
expected := '{"id":"118499178790780929"}'
|
|
|
|
msg := Message{'118499178790780929'}
|
|
|
|
out := json.encode(msg)
|
|
|
|
assert out == expected
|
|
|
|
}
|
2020-12-09 20:10:41 +01:00
|
|
|
|
|
|
|
struct List {
|
2020-12-22 07:24:41 +01:00
|
|
|
id int
|
2020-12-09 20:10:41 +01:00
|
|
|
items []string
|
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:37 +02:00
|
|
|
fn test_list() ? {
|
|
|
|
list := json.decode(List, '{"id": 1, "items": ["1", "2"]}') ?
|
2020-12-09 20:10:41 +01:00
|
|
|
assert list.id == 1
|
2020-12-22 07:24:41 +01:00
|
|
|
assert list.items == ['1', '2']
|
2020-12-09 20:10:41 +01:00
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:37 +02:00
|
|
|
fn test_list_no_id() ? {
|
|
|
|
list := json.decode(List, '{"items": ["1", "2"]}') ?
|
2020-12-09 20:10:41 +01:00
|
|
|
assert list.id == 0
|
2020-12-22 07:24:41 +01:00
|
|
|
assert list.items == ['1', '2']
|
2020-12-09 20:10:41 +01:00
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:37 +02:00
|
|
|
fn test_list_no_items() ? {
|
|
|
|
list := json.decode(List, '{"id": 1}') ?
|
2020-12-09 20:10:41 +01:00
|
|
|
assert list.id == 1
|
|
|
|
assert list.items == []
|
|
|
|
}
|
2021-01-07 20:21:22 +01:00
|
|
|
|
|
|
|
struct Info {
|
|
|
|
id int
|
|
|
|
items []string
|
|
|
|
maps map[string]string
|
|
|
|
}
|
|
|
|
|
2021-07-25 16:27:37 +02:00
|
|
|
fn test_decode_null_object() ? {
|
|
|
|
info := json.decode(Info, '{"id": 22, "items": null, "maps": null}') ?
|
2021-01-07 20:21:22 +01:00
|
|
|
assert info.id == 22
|
|
|
|
assert '$info.items' == '[]'
|
|
|
|
assert '$info.maps' == '{}'
|
|
|
|
}
|
2021-02-10 10:17:29 +01:00
|
|
|
|
|
|
|
struct Foo2 {
|
|
|
|
name string
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test_pretty() {
|
|
|
|
foo := Foo2{'Bob'}
|
|
|
|
assert json.encode_pretty(foo) == '{
|
|
|
|
"name": "Bob"
|
|
|
|
}'
|
|
|
|
}
|