-
Notifications
You must be signed in to change notification settings - Fork 144
RUST-1764 Add HumanReadable
convenience wrapper
#471
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
use serde::{de::Visitor, Deserialize, Serialize}; | ||
|
||
use crate::serde_helpers::HumanReadable; | ||
|
||
#[test] | ||
fn human_readable_wrapper() { | ||
#[derive(PartialEq, Eq, Debug)] | ||
struct Detector { | ||
serialized_as: bool, | ||
deserialized_as: bool, | ||
} | ||
impl Detector { | ||
fn new() -> Self { | ||
Detector { | ||
serialized_as: false, | ||
deserialized_as: false, | ||
} | ||
} | ||
} | ||
impl Serialize for Detector { | ||
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> | ||
where | ||
S: serde::Serializer, | ||
{ | ||
let s = if serializer.is_human_readable() { | ||
"human readable" | ||
} else { | ||
"not human readable" | ||
}; | ||
serializer.serialize_str(s) | ||
} | ||
} | ||
impl<'de> Deserialize<'de> for Detector { | ||
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> | ||
where | ||
D: serde::Deserializer<'de>, | ||
{ | ||
struct V; | ||
impl<'de> Visitor<'de> for V { | ||
type Value = bool; | ||
|
||
fn expecting(&self, formatter: &mut std::fmt::Formatter) -> std::fmt::Result { | ||
formatter.write_str("Detector") | ||
} | ||
|
||
fn visit_str<E>(self, v: &str) -> Result<Self::Value, E> | ||
where | ||
E: serde::de::Error, | ||
{ | ||
match v { | ||
"human readable" => Ok(true), | ||
"not human readable" => Ok(false), | ||
_ => Err(E::custom(format!("invalid detector string {:?}", v))), | ||
} | ||
} | ||
} | ||
let deserialized_as = deserializer.is_human_readable(); | ||
let serialized_as = deserializer.deserialize_str(V)?; | ||
Ok(Detector { | ||
serialized_as, | ||
deserialized_as, | ||
}) | ||
} | ||
} | ||
#[derive(PartialEq, Eq, Debug, Serialize, Deserialize)] | ||
struct Data { | ||
outer: Detector, | ||
wrapped: HumanReadable<Detector>, | ||
inner: HumanReadable<SubData>, | ||
} | ||
#[derive(PartialEq, Eq, Debug, Serialize, Deserialize)] | ||
struct SubData { | ||
value: Detector, | ||
} | ||
let data = Data { | ||
outer: Detector::new(), | ||
wrapped: HumanReadable(Detector::new()), | ||
inner: HumanReadable(SubData { | ||
value: Detector::new(), | ||
}), | ||
}; | ||
let bson = crate::to_bson_with_options( | ||
&data, | ||
crate::SerializerOptions::builder() | ||
.human_readable(false) | ||
.build(), | ||
) | ||
.unwrap(); | ||
assert_eq!( | ||
bson.as_document().unwrap(), | ||
&doc! { | ||
"outer": "not human readable", | ||
"wrapped": "human readable", | ||
"inner": { | ||
"value": "human readable", | ||
} | ||
} | ||
); | ||
|
||
let tripped: Data = crate::from_bson_with_options( | ||
bson, | ||
crate::DeserializerOptions::builder() | ||
.human_readable(false) | ||
.build(), | ||
) | ||
.unwrap(); | ||
let expected = Data { | ||
outer: Detector { | ||
serialized_as: false, | ||
deserialized_as: false, | ||
}, | ||
wrapped: HumanReadable(Detector { | ||
serialized_as: true, | ||
deserialized_as: true, | ||
}), | ||
inner: HumanReadable(SubData { | ||
value: Detector { | ||
serialized_as: true, | ||
deserialized_as: true, | ||
}, | ||
}), | ||
}; | ||
assert_eq!(&tripped, &expected); | ||
|
||
let bytes = crate::to_vec(&data).unwrap(); | ||
let raw_tripped: Data = crate::from_slice(&bytes).unwrap(); | ||
assert_eq!(&raw_tripped, &expected); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could this be an issue when a
HumanReadable<T>
is nested in a struct with non-wrapped types following it? e.g.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch! I've fixed the logic and updated the test to flag that kind of failure.