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
|
//! Test Cases
use pretty_assertions::assert_eq;
use serde::{Deserialize, Serialize};
use serde_json::json;
use serde_with_macros::skip_serializing_none;
macro_rules! test {
($fn:ident, $struct:ident) => {
#[test]
fn $fn() {
let expected = json!({});
let data = $struct {
a: None,
b: None,
c: None,
d: None,
};
let res = serde_json::to_value(&data).unwrap();
assert_eq!(expected, res);
assert_eq!(data, serde_json::from_value(res).unwrap());
}
};
}
macro_rules! test_tuple {
($fn:ident, $struct:ident) => {
#[test]
fn $fn() {
let expected = json!([]);
let data = $struct(None, None);
let res = serde_json::to_value(&data).unwrap();
assert_eq!(expected, res);
}
};
}
#[skip_serializing_none]
#[derive(Debug, Eq, PartialEq, Serialize, Deserialize)]
struct DataBasic {
a: Option<String>,
b: Option<String>,
c: Option<String>,
d: Option<String>,
}
test!(test_basic, DataBasic);
// This tests different ways of qualifying the Option type
#[allow(unused_qualifications)]
#[skip_serializing_none]
#[derive(Debug, Eq, PartialEq, Serialize, Deserialize)]
struct DataFullyQualified {
a: ::std::option::Option<String>,
b: std::option::Option<String>,
c: ::std::option::Option<i64>,
d: core::option::Option<String>,
}
test!(test_fully_qualified, DataFullyQualified);
fn never<T>(_t: &T) -> bool {
false
}
#[skip_serializing_none]
#[derive(Debug, Eq, PartialEq, Serialize, Deserialize)]
struct DataExistingAnnotation {
#[serde(skip_serializing_if = "Option::is_none")]
a: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none", rename = "abc")]
b: Option<String>,
#[serde(default)]
c: Option<String>,
#[serde(skip_serializing_if = "never")]
#[serde(rename = "name")]
d: Option<String>,
}
#[test]
fn test_existing_annotation() {
let expected = json!({ "name": null });
let data = DataExistingAnnotation {
a: None,
b: None,
c: None,
d: None,
};
let res = serde_json::to_value(&data).unwrap();
assert_eq!(expected, res);
assert_eq!(data, serde_json::from_value(res).unwrap());
}
#[skip_serializing_none]
#[derive(Debug, Eq, PartialEq, Serialize, Deserialize)]
struct DataSerializeAlways {
#[serialize_always]
a: Option<String>,
#[serialize_always]
b: Option<String>,
c: i64,
#[serialize_always]
d: Option<String>,
}
#[test]
fn test_serialize_always() {
let expected = json!({
"a": null,
"b": null,
"c": 0,
"d": null
});
let data = DataSerializeAlways {
a: None,
b: None,
c: 0,
d: None,
};
let res = serde_json::to_value(&data).unwrap();
assert_eq!(expected, res);
assert_eq!(data, serde_json::from_value(res).unwrap());
}
// This tests different ways of qualifying the Option type
#[allow(unused_qualifications)]
#[skip_serializing_none]
#[derive(Debug, Eq, PartialEq, Serialize)]
struct DataTuple(Option<String>, std::option::Option<String>);
test_tuple!(test_tuple, DataTuple);
// This tests different ways of qualifying the Option type
#[allow(unused_qualifications)]
#[skip_serializing_none]
#[derive(Debug, Eq, PartialEq, Serialize)]
enum DataEnum {
Tuple(Option<i64>, std::option::Option<bool>),
Struct {
a: Option<String>,
b: Option<String>,
},
}
#[test]
fn test_enum() {
let expected = json!({
"Tuple": []
});
let data = DataEnum::Tuple(None, None);
let res = serde_json::to_value(data).unwrap();
assert_eq!(expected, res);
let expected = json!({
"Struct": {}
});
let data = DataEnum::Struct { a: None, b: None };
let res = serde_json::to_value(data).unwrap();
assert_eq!(expected, res);
}
|