summaryrefslogtreecommitdiffstats
path: root/vendor/js-sys/tests/wasm/JSON.rs
blob: 920ac1d6f6233eacf97a013d9336952866e246cd (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
use js_sys::*;
use wasm_bindgen::prelude::*;
use wasm_bindgen::JsCast;
use wasm_bindgen_test::*;

#[wasm_bindgen_test]
fn parse_array() {
    let js_array = JSON::parse("[1, 2, 3]").unwrap();
    assert!(Array::is_array(&js_array));

    let array = Array::from(&js_array);
    assert_eq!(array.length(), 3);
    assert_eq!(array.pop(), 3);
    assert_eq!(array.pop(), 2);
    assert_eq!(array.pop(), 1);
}

#[wasm_bindgen_test]
fn parse_object() {
    let js_object = JSON::parse("{\"x\": 5, \"y\": true, \"z\": [\"foo\", \"bar\"]}").unwrap();
    assert!(js_object.is_object());

    let obj = Object::from(js_object);
    let keys = Object::keys(&obj);
    assert_eq!(keys.length(), 3);
    assert_eq!(keys.pop().as_string().unwrap(), "z");
    assert_eq!(keys.pop().as_string().unwrap(), "y");
    assert_eq!(keys.pop().as_string().unwrap(), "x");

    let values = Object::values(&obj);
    assert_eq!(values.length(), 3);

    let z = values.pop();
    assert!(Array::is_array(&z));
    let z_array = Array::from(&z);
    assert_eq!(z_array.length(), 2);

    let y = values.pop();
    assert_eq!(y.as_bool(), Some(true));

    let x = values.pop();
    assert_eq!(x.as_f64().unwrap(), 5.0);
}

#[wasm_bindgen_test]
fn parse_error() {
    let js_object = JSON::parse("invalid json");
    assert!(js_object.is_err());
    let err = js_object.unwrap_err();
    assert!(err.is_instance_of::<Error>());
}

#[wasm_bindgen_test]
fn stringify() {
    let arr = Array::new();
    arr.push(&JsValue::from(1));
    arr.push(&JsValue::from(true));
    arr.push(&JsValue::from("hello"));

    let str1: String = JSON::stringify(&JsValue::from(arr)).unwrap().into();
    assert_eq!(str1, "[1,true,\"hello\"]");

    let obj = Object::new();
    Reflect::set(obj.as_ref(), &JsValue::from("foo"), &JsValue::from("bar")).unwrap();
    let str2: String = JSON::stringify(&JsValue::from(obj)).unwrap().into();
    assert_eq!(str2, "{\"foo\":\"bar\"}");
}

#[wasm_bindgen_test]
fn stringify_error() {
    let func = Function::new_no_args("throw new Error(\"rust really rocks\")");
    let obj = Object::new();
    Reflect::set(obj.as_ref(), &JsValue::from("toJSON"), func.as_ref()).unwrap();

    let result = JSON::stringify(&JsValue::from(obj));
    assert!(result.is_err());
    let err_obj = result.unwrap_err();
    assert!(err_obj.is_instance_of::<Error>());
    let err: &Error = err_obj.dyn_ref().unwrap();
    let err_msg: String = From::from(err.message());
    assert!(err_msg.contains("rust really rocks"));
}

#[wasm_bindgen_test]
fn stringify_with_replacer() {
    let obj = Object::new();
    Reflect::set(obj.as_ref(), &JsValue::from("foo"), &JsValue::from("bar")).unwrap();
    Reflect::set(
        obj.as_ref(),
        &JsValue::from("hello"),
        &JsValue::from("world"),
    )
    .unwrap();

    let replacer_array = Array::new();
    replacer_array.push(&JsValue::from("hello"));
    let output1: String =
        JSON::stringify_with_replacer(&JsValue::from(obj.clone()), &JsValue::from(replacer_array))
            .unwrap()
            .into();
    assert_eq!(output1, "{\"hello\":\"world\"}");

    let replacer_func =
        Function::new_with_args("key, value", "return key === 'hello' ? undefined : value");
    let output2: String =
        JSON::stringify_with_replacer(&JsValue::from(obj), &JsValue::from(replacer_func))
            .unwrap()
            .into();
    assert_eq!(output2, "{\"foo\":\"bar\"}");
}

#[wasm_bindgen_test]
fn stringify_with_replacer_error() {
    let arr = Array::new();
    arr.push(&JsValue::from(1));
    arr.push(&JsValue::from(true));
    arr.push(&JsValue::from("hello"));

    let replacer = Function::new_no_args("throw new Error(\"rust really rocks\")");

    let result = JSON::stringify_with_replacer(&JsValue::from(arr), &JsValue::from(replacer));
    assert!(result.is_err());
    let err_obj = result.unwrap_err();
    assert!(err_obj.is_instance_of::<Error>());
    let err: &Error = err_obj.dyn_ref().unwrap();
    let err_msg: String = From::from(err.message());
    assert!(err_msg.contains("rust really rocks"));
}

#[wasm_bindgen_test]
fn stringify_with_replacer_and_space() {
    let arr = Array::new();
    arr.push(&JsValue::from(1));
    arr.push(&JsValue::from(true));
    arr.push(&JsValue::from("hello"));

    let output1: String = JSON::stringify_with_replacer_and_space(
        &JsValue::from(arr),
        &JsValue::NULL,
        &JsValue::from(4),
    )
    .unwrap()
    .into();
    assert_eq!(output1, "[\n    1,\n    true,\n    \"hello\"\n]");

    let obj = Object::new();
    Reflect::set(obj.as_ref(), &JsValue::from("foo"), &JsValue::from("bar")).unwrap();
    Reflect::set(
        obj.as_ref(),
        &JsValue::from("hello"),
        &JsValue::from("world"),
    )
    .unwrap();

    let replacer_array = Array::new();
    replacer_array.push(&JsValue::from("hello"));
    let output2: String = JSON::stringify_with_replacer_and_space(
        &JsValue::from(obj.clone()),
        &JsValue::from(replacer_array),
        &JsValue::from(4),
    )
    .unwrap()
    .into();
    assert_eq!(output2, "{\n    \"hello\": \"world\"\n}");

    let replacer_func =
        Function::new_with_args("key, value", "return key === 'hello' ? undefined : value");
    let output3: String = JSON::stringify_with_replacer_and_space(
        &JsValue::from(obj),
        &JsValue::from(replacer_func),
        &JsValue::from(4),
    )
    .unwrap()
    .into();
    assert_eq!(output3, "{\n    \"foo\": \"bar\"\n}");
}

#[wasm_bindgen_test]
fn stringify_with_replacer_and_space_error() {
    let arr = Array::new();
    arr.push(&JsValue::from(1));
    arr.push(&JsValue::from(true));
    arr.push(&JsValue::from("hello"));

    let replacer = Function::new_no_args("throw new Error(\"rust really rocks\")");

    let result = JSON::stringify_with_replacer_and_space(
        &JsValue::from(arr),
        &JsValue::from(replacer),
        &JsValue::from(4),
    );
    assert!(result.is_err());
    let err_obj = result.unwrap_err();
    assert!(err_obj.is_instance_of::<Error>());
    let err: &Error = err_obj.dyn_ref().unwrap();
    let err_msg: String = From::from(err.message());
    assert!(err_msg.contains("rust really rocks"));
}