Skip to content

Commit

Permalink
Add #562 as a test
Browse files Browse the repository at this point in the history
Co-authored-by: porkbrain <git@porkbrain.com>
  • Loading branch information
juntyr and porkbrain committed Mar 5, 2024
1 parent d3e9ebe commit 7efaea8
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions tests/562_flatten.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
use serde::{Deserialize, Serialize};

#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)]
struct SomeCollection {
inner: Vec<SomeItem>,
}

#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)]
struct SomeItem {
#[serde(flatten)]
foo: Foo,
#[serde(flatten)]
bar: Bar,
}

#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)]
struct Bar {
name: String,
some_enum: Option<SomeEnum>,
}

#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)]
struct Foo {
something: String,
}

#[derive(Debug, PartialEq, Eq, Serialize, Deserialize)]
enum SomeEnum {
A,
B,
}

#[test]
fn roundtrip() {
let scene = SomeCollection {
inner: vec![SomeItem {
foo: Foo {
something: "something".to_string(),
},
bar: Bar {
name: "name".to_string(),
some_enum: Some(SomeEnum::A),
},
}],
};

let ron = ron::ser::to_string(&scene).unwrap();
let de: SomeCollection = ron::de::from_str(&ron).unwrap();
assert_eq!(de, scene);

let ron = ron::ser::to_string_pretty(&scene, Default::default()).unwrap();
let _deser_scene: SomeCollection = ron::de::from_str(&ron).unwrap();
assert_eq!(de, scene);
}

0 comments on commit 7efaea8

Please sign in to comment.