#![feature(custom_derive, plugin)] #![plugin(serde_macros)] extern crate serde; use std::collections::BTreeMap; use serde::json::{self, Value}; macro_rules! btreemap { () => { BTreeMap::new() }; ($($key:expr => $value:expr),+) => { { let mut map = BTreeMap::new(); $(map.insert($key, $value);)+ map } } } /* trait Trait { type Type; } */ #[derive(Debug, PartialEq)] #[derive_serialize] #[derive_deserialize] struct NamedUnit; #[derive(Debug, PartialEq)] #[derive_serialize] enum SerEnum<'a, B: 'a, C: /* Trait + */ 'a, D> where D: /* Trait + */ 'a { Unit, Seq( i8, B, &'a C, //C::Type, &'a mut D, //::Type, ), Map { a: i8, b: B, c: &'a C, //d: C::Type, e: &'a mut D, //f: ::Type, }, // Make sure we can support more than one variant. _Unit2, _Seq2( i8, B, &'a C, //C::Type, &'a mut D, //::Type, ), _Map2 { a: i8, b: B, c: &'a C, //d: C::Type, e: &'a mut D, //f: ::Type, }, } #[derive(Debug, PartialEq)] #[derive_deserialize] enum DeEnum /* where D: Trait */ { Unit, Seq( i8, B, C, //C::Type, D, //::Type, ), Map { a: i8, b: B, c: C, //d: C::Type, e: D, //f: ::Type, }, // Make sure we can support more than one variant. _Unit2, _Seq2( i8, B, C, //C::Type, D, //::Type, ), _Map2 { a: i8, b: B, c: C, //d: C::Type, e: D, //f: ::Type, }, } #[test] fn test_named_unit() { let named_unit = NamedUnit; assert_eq!( json::to_string(&named_unit).unwrap(), "null".to_string() ); assert_eq!( json::to_value(&named_unit), Value::Null ); let v = json::from_str("null").unwrap(); assert_eq!(v, named_unit); let v = json::from_value(Value::Null).unwrap(); assert_eq!(v, named_unit); } #[test] fn test_ser_named_tuple() { #[derive(Debug, PartialEq)] #[derive_serialize] struct NamedTuple<'a, 'b, A: 'a, B: 'b, C>(&'a A, &'b mut B, C); let a = 5; let mut b = 6; let c = 7; let named_tuple = NamedTuple(&a, &mut b, c); assert_eq!( json::to_string(&named_tuple).unwrap(), "[5,6,7]" ); assert_eq!( json::to_value(&named_tuple), Value::Array(vec![Value::I64(5), Value::I64(6), Value::I64(7)]) ); } #[test] fn test_de_named_tuple() { #[derive(Debug, PartialEq)] #[derive_deserialize] struct NamedTuple(A, B, C); assert_eq!( json::from_str("[1,2,3]").unwrap(), NamedTuple(1, 2, 3) ); assert_eq!( json::from_str("[1,2,3]").unwrap(), Value::Array(vec![ Value::I64(1), Value::I64(2), Value::I64(3), ]) ); } #[test] fn test_ser_named_map() { #[derive(Debug, PartialEq)] #[derive_serialize] struct NamedMap<'a, 'b, A: 'a, B: 'b, C> { a: &'a A, b: &'b mut B, c: C, } let a = 5; let mut b = 6; let c = 7; let named_map = NamedMap { a: &a, b: &mut b, c: c, }; assert_eq!( json::to_string(&named_map).unwrap(), "{\"a\":5,\"b\":6,\"c\":7}" ); assert_eq!( json::to_value(&named_map), Value::Object(btreemap![ "a".to_string() => Value::I64(5), "b".to_string() => Value::I64(6), "c".to_string() => Value::I64(7) ]) ); } #[test] fn test_de_named_map() { #[derive(Debug, PartialEq)] #[derive_deserialize] struct NamedMap { a: A, b: B, c: C, } let v = NamedMap { a: 5, b: 6, c: 7, }; assert_eq!( json::from_str("{\"a\":5,\"b\":6,\"c\":7}").unwrap(), v ); assert_eq!( json::from_value(Value::Object(btreemap![ "a".to_string() => Value::I64(5), "b".to_string() => Value::I64(6), "c".to_string() => Value::I64(7) ])).unwrap(), v ); } #[test] fn test_ser_enum_unit() { assert_eq!( json::to_string(&SerEnum::Unit::).unwrap(), "{\"Unit\":[]}" ); assert_eq!( json::to_value(&SerEnum::Unit::), Value::Object(btreemap!( "Unit".to_string() => Value::Array(vec![])) ) ); } #[test] fn test_ser_enum_seq() { let a = 1; let b = 2; let c = 3; //let d = 4; let mut e = 5; //let f = 6; assert_eq!( json::to_string(&SerEnum::Seq( a, b, &c, //d, &mut e, //f, )).unwrap(), "{\"Seq\":[1,2,3,5]}".to_string() ); assert_eq!( json::to_value(&SerEnum::Seq( a, b, &c, //d, &mut e, //e, )), Value::Object(btreemap!( "Seq".to_string() => Value::Array(vec![ Value::I64(1), Value::I64(2), Value::I64(3), //Value::I64(4), Value::I64(5), //Value::I64(6), ]) )) ); } #[test] fn test_ser_enum_map() { let a = 1; let b = 2; let c = 3; //let d = 4; let mut e = 5; //let f = 6; assert_eq!( json::to_string(&SerEnum::Map { a: a, b: b, c: &c, //d: d, e: &mut e, //f: f, }).unwrap(), "{\"Map\":{\"a\":1,\"b\":2,\"c\":3,\"e\":5}}".to_string() ); assert_eq!( json::to_value(&SerEnum::Map { a: a, b: b, c: &c, //d: d, e: &mut e, //f: f, }), Value::Object(btreemap!( "Map".to_string() => Value::Object(btreemap![ "a".to_string() => Value::I64(1), "b".to_string() => Value::I64(2), "c".to_string() => Value::I64(3), //"d".to_string() => Value::I64(4) "e".to_string() => Value::I64(5) //"f".to_string() => Value::I64(6) ]) )) ); } #[test] fn test_de_enum_unit() { assert_eq!( json::from_str("{\"Unit\":[]}").unwrap(), DeEnum::Unit:: ); assert_eq!( json::from_value(Value::Object(btreemap!( "Unit".to_string() => Value::Array(vec![])) )).unwrap(), DeEnum::Unit:: ); } #[test] fn test_de_enum_seq() { let a = 1; let b = 2; let c = 3; //let d = 4; let e = 5; //let f = 6; assert_eq!( json::from_str("{\"Seq\":[1,2,3,5]}").unwrap(), DeEnum::Seq( a, b, c, //d, e, //f, ) ); assert_eq!( json::from_value(Value::Object(btreemap!( "Seq".to_string() => Value::Array(vec![ Value::I64(1), Value::I64(2), Value::I64(3), //Value::I64(4), Value::I64(5), //Value::I64(6), ]) ))).unwrap(), DeEnum::Seq( a, b, c, //d, e, //e, ) ); } #[test] fn test_de_enum_map() { let a = 1; let b = 2; let c = 3; //let d = 4; let e = 5; //let f = 6; assert_eq!( json::from_str("{\"Map\":{\"a\":1,\"b\":2,\"c\":3,\"e\":5}}").unwrap(), DeEnum::Map { a: a, b: b, c: c, //d: d, e: e, //f: f, } ); assert_eq!( json::from_value(Value::Object(btreemap!( "Map".to_string() => Value::Object(btreemap![ "a".to_string() => Value::I64(1), "b".to_string() => Value::I64(2), "c".to_string() => Value::I64(3), //"d".to_string() => Value::I64(4) "e".to_string() => Value::I64(5) //"f".to_string() => Value::I64(6) ]) ))).unwrap(), DeEnum::Map { a: a, b: b, c: c, //d: d, e: e, //f: f, } ); }