// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // This actually tests a lot more than just encodable/decodable, but it gets the // job done at least // ignore-test FIXME(#5121) extern crate rand; extern crate rbml; extern crate serialize; use rand::{random, Rand}; use rbml; use rbml::Doc; use rbml::writer::Encoder; use rbml::reader::Decoder; use serialize::{Encodable, Decodable}; #[derive(Encodable, Decodable, Eq, Rand)] struct A; #[derive(Encodable, Decodable, Eq, Rand)] struct B(isize); #[derive(Encodable, Decodable, Eq, Rand)] struct C(isize, isize, usize); #[derive(Encodable, Decodable, Eq, Rand)] struct D { a: isize, b: usize, } #[derive(Encodable, Decodable, Eq, Rand)] enum E { E1, E2(usize), E3(D), E4{ x: usize }, } #[derive(Encodable, Decodable, Eq, Rand)] enum F { F1 } #[derive(Encodable, Decodable, Eq, Rand)] struct G { t: T } fn roundtrip<'a, T: Rand + Eq + Encodable> + Decodable>>() { let obj: T = random(); let mut w = Vec::new(); let mut e = Encoder::new(&mut w); obj.encode(&mut e); let doc = rbml::Doc::new(&w); let mut dec = Decoder::new(doc); let obj2 = Decodable::decode(&mut dec); assert!(obj == obj2); } pub fn main() { roundtrip::(); roundtrip::(); roundtrip::(); roundtrip::(); for _ in 0..20 { roundtrip::(); roundtrip::(); roundtrip::>(); } }