126 lines
3.4 KiB
Rust
Raw Normal View History

/*
2024-06-26 12:34:36 +03:00
* AquaVM Workflow Engine
*
2024-06-26 12:34:36 +03:00
* Copyright (C) 2024 Fluence DAO
*
2024-06-26 12:34:36 +03:00
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation version 3 of the
* License.
*
2024-06-26 12:34:36 +03:00
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
use air_interpreter_value::JValue;
use serde_json::Number;
#[test]
fn test_serialize_null() {
let val = JValue::Null;
let res = serde_json::to_string(&val).unwrap();
assert_eq!(res, "null");
}
#[test]
fn test_serialize_bool_false() {
let val = JValue::Bool(false);
let res = serde_json::to_string(&val).unwrap();
assert_eq!(res, "false");
}
#[test]
fn test_serialize_bool() {
let val = JValue::Bool(true);
let res = serde_json::to_string(&val).unwrap();
assert_eq!(res, "true");
}
#[test]
fn test_serialize_i64() {
let val = JValue::Number(42.into());
let res = serde_json::to_string(&val).unwrap();
assert_eq!(res, "42");
}
#[test]
fn test_serialize_i64_2() {
let val = JValue::Number((-42).into());
let res = serde_json::to_string(&val).unwrap();
assert_eq!(res, "-42");
}
#[test]
fn test_serialize_f64() {
let val = JValue::Number(Number::from_f64(-3.14e15).unwrap());
let res = serde_json::to_string(&val).unwrap();
assert_eq!(res, "-3140000000000000.0");
}
#[test]
fn test_serialize_string_simple() {
let val = JValue::string("simple string");
let res = serde_json::to_string(&val).unwrap();
assert_eq!(res, r#""simple string""#);
}
#[test]
fn test_serialize_string_escaping() {
let val = JValue::string("simple\" string");
let res = serde_json::to_string(&val).unwrap();
assert_eq!(res, r#""simple\" string""#);
}
#[test]
fn test_serialize_array() {
let val = JValue::array_from_iter(vec![42, 8, 12].into_iter());
let res = serde_json::to_string(&val).unwrap();
assert_eq!(res, r#"[42,8,12]"#);
}
#[test]
#[cfg(not(feature = "preserve_order"))]
fn test_serialize_object() {
let val = JValue::object(maplit::btreemap! {
"b".into() => 42.into(),
"a".into() => 18.into(),
});
let res = serde_json::to_string(&val).unwrap();
assert_eq!(res, r#"{"a":18,"b":42}"#);
}
#[test]
#[cfg(feature = "preserve_order")]
fn test_serialize_object() {
use air_interpreter_value::Map;
let mut map = Map::new();
map.insert("b".into(), 18.into());
map.insert("a".into(), 42.into());
let val = JValue::object(map);
let res = serde_json::to_string(&val).unwrap();
assert_eq!(res, r#"{"b":18,"a":42}"#);
}
#[test]
#[cfg(not(feature = "preserve_order"))]
fn test_serialize_object_ordered() {
let val = JValue::object_from_pairs(vec![("b", 42), ("a", 18)]);
let res = serde_json::to_string(&val).unwrap();
assert_eq!(res, r#"{"a":18,"b":42}"#);
}
#[test]
#[cfg(feature = "preserve_order")]
fn test_serialize_object_ordered() {
let val = JValue::object_from_pairs(vec![("b", 42), ("a", 18)]);
let res = serde_json::to_string(&val).unwrap();
assert_eq!(res, r#"{"b":42,"a":18}"#);
}