|
|
@ -16,3 +16,176 @@ fn json_sanity() { |
|
|
|
"true" |
|
|
|
"true" |
|
|
|
); |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
|
|
|
|
fn json_stringify_remove_undefined_values_from_objects() { |
|
|
|
|
|
|
|
let realm = Realm::create(); |
|
|
|
|
|
|
|
let mut engine = Interpreter::new(realm); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let actual = forward( |
|
|
|
|
|
|
|
&mut engine, |
|
|
|
|
|
|
|
r#"JSON.stringify({ aaa: undefined, bbb: 'ccc' })"#, |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
let expected = r#"{"bbb":"ccc"}"#; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, expected); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
|
|
|
|
fn json_stringify_remove_function_values_from_objects() { |
|
|
|
|
|
|
|
let realm = Realm::create(); |
|
|
|
|
|
|
|
let mut engine = Interpreter::new(realm); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let actual = forward( |
|
|
|
|
|
|
|
&mut engine, |
|
|
|
|
|
|
|
r#"JSON.stringify({ aaa: () => {}, bbb: 'ccc' })"#, |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
let expected = r#"{"bbb":"ccc"}"#; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, expected); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
|
|
|
|
#[ignore] |
|
|
|
|
|
|
|
// there is a bug for setting a symbol as a field's value
|
|
|
|
|
|
|
|
fn json_stringify_remove_symbols_from_objects() { |
|
|
|
|
|
|
|
let realm = Realm::create(); |
|
|
|
|
|
|
|
let mut engine = Interpreter::new(realm); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let actual = forward( |
|
|
|
|
|
|
|
&mut engine, |
|
|
|
|
|
|
|
r#"JSON.stringify({ aaa: Symbol(), bbb: 'ccc' })"#, |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
let expected = r#"{"bbb":"ccc"}"#; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, expected); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
|
|
|
|
fn json_stringify_replacer_array_strings() { |
|
|
|
|
|
|
|
let realm = Realm::create(); |
|
|
|
|
|
|
|
let mut engine = Interpreter::new(realm); |
|
|
|
|
|
|
|
let actual = forward( |
|
|
|
|
|
|
|
&mut engine, |
|
|
|
|
|
|
|
r#"JSON.stringify({aaa: 'bbb', bbb: 'ccc', ccc: 'ddd'}, ['aaa', 'bbb'])"#, |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
let expected = forward(&mut engine, r#"'{"aaa":"bbb","bbb":"ccc"}'"#); |
|
|
|
|
|
|
|
assert_eq!(actual, expected); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
|
|
|
|
fn json_stringify_replacer_array_numbers() { |
|
|
|
|
|
|
|
let realm = Realm::create(); |
|
|
|
|
|
|
|
let mut engine = Interpreter::new(realm); |
|
|
|
|
|
|
|
let actual = forward( |
|
|
|
|
|
|
|
&mut engine, |
|
|
|
|
|
|
|
r#"JSON.stringify({ 0: 'aaa', 1: 'bbb', 2: 'ccc'}, [1, 2])"#, |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
let expected = forward(&mut engine, r#"'{"1":"bbb","2":"ccc"}'"#); |
|
|
|
|
|
|
|
assert_eq!(actual, expected); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
|
|
|
|
fn json_stringify_replacer_function() { |
|
|
|
|
|
|
|
let realm = Realm::create(); |
|
|
|
|
|
|
|
let mut engine = Interpreter::new(realm); |
|
|
|
|
|
|
|
let actual = forward( |
|
|
|
|
|
|
|
&mut engine, |
|
|
|
|
|
|
|
r#"JSON.stringify({ aaa: 1, bbb: 2}, (key, value) => { |
|
|
|
|
|
|
|
if (key === 'aaa') { |
|
|
|
|
|
|
|
return undefined; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return value; |
|
|
|
|
|
|
|
})"#, |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
let expected = forward(&mut engine, r#"'{"bbb":2}'"#); |
|
|
|
|
|
|
|
assert_eq!(actual, expected); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
|
|
|
|
fn json_stringify_arrays() { |
|
|
|
|
|
|
|
let realm = Realm::create(); |
|
|
|
|
|
|
|
let mut engine = Interpreter::new(realm); |
|
|
|
|
|
|
|
let actual = forward(&mut engine, r#"JSON.stringify(['a', 'b'])"#); |
|
|
|
|
|
|
|
let expected = forward(&mut engine, r#"'["a","b"]'"#); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, expected); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
|
|
|
|
fn json_stringify_object_array() { |
|
|
|
|
|
|
|
let realm = Realm::create(); |
|
|
|
|
|
|
|
let mut engine = Interpreter::new(realm); |
|
|
|
|
|
|
|
let actual = forward(&mut engine, r#"JSON.stringify([{a: 'b'}, {b: 'c'}])"#); |
|
|
|
|
|
|
|
let expected = forward(&mut engine, r#"'[{"a":"b"},{"b":"c"}]'"#); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, expected); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
|
|
|
|
fn json_stringify_array_converts_undefined_to_null() { |
|
|
|
|
|
|
|
let realm = Realm::create(); |
|
|
|
|
|
|
|
let mut engine = Interpreter::new(realm); |
|
|
|
|
|
|
|
let actual = forward(&mut engine, r#"JSON.stringify([undefined])"#); |
|
|
|
|
|
|
|
let expected = forward(&mut engine, r#"'[null]'"#); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, expected); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
|
|
|
|
fn json_stringify_array_converts_function_to_null() { |
|
|
|
|
|
|
|
let realm = Realm::create(); |
|
|
|
|
|
|
|
let mut engine = Interpreter::new(realm); |
|
|
|
|
|
|
|
let actual = forward(&mut engine, r#"JSON.stringify([() => {}])"#); |
|
|
|
|
|
|
|
let expected = forward(&mut engine, r#"'[null]'"#); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, expected); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
|
|
|
|
#[ignore] |
|
|
|
|
|
|
|
fn json_stringify_array_converts_symbol_to_null() { |
|
|
|
|
|
|
|
let realm = Realm::create(); |
|
|
|
|
|
|
|
let mut engine = Interpreter::new(realm); |
|
|
|
|
|
|
|
let actual = forward(&mut engine, r#"JSON.stringify([Symbol()])"#); |
|
|
|
|
|
|
|
let expected = forward(&mut engine, r#"'[null]'"#); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, expected); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
#[test] |
|
|
|
|
|
|
|
fn json_stringify_function_replacer_propogate_error() { |
|
|
|
|
|
|
|
let realm = Realm::create(); |
|
|
|
|
|
|
|
let mut engine = Interpreter::new(realm); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let actual = forward( |
|
|
|
|
|
|
|
&mut engine, |
|
|
|
|
|
|
|
r#" |
|
|
|
|
|
|
|
let thrown = 0; |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
JSON.stringify({x: 1}, (key, value) => { throw 1 }) |
|
|
|
|
|
|
|
} catch (err) { |
|
|
|
|
|
|
|
thrown = err; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
thrown |
|
|
|
|
|
|
|
"#, |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
let expected = forward(&mut engine, r#"1"#); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual, expected); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[test] |
|
|
|
|
|
|
|
fn json_stringify_return_undefined() { |
|
|
|
|
|
|
|
let realm = Realm::create(); |
|
|
|
|
|
|
|
let mut engine = Interpreter::new(realm); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let actual_no_args = forward(&mut engine, r#"JSON.stringify()"#); |
|
|
|
|
|
|
|
let actual_function = forward(&mut engine, r#"JSON.stringify(() => {})"#); |
|
|
|
|
|
|
|
let actual_symbol = forward(&mut engine, r#"JSON.stringify(Symbol())"#); |
|
|
|
|
|
|
|
let expected = forward(&mut engine, r#"undefined"#); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert_eq!(actual_no_args, expected); |
|
|
|
|
|
|
|
assert_eq!(actual_function, expected); |
|
|
|
|
|
|
|
assert_eq!(actual_symbol, expected); |
|
|
|
|
|
|
|
} |
|
|
|