-
Notifications
You must be signed in to change notification settings - Fork 848
Add support for visiting floating point values #1507
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
Changes from all commits
f1774e4
373a77f
0724604
7c6b83b
8ded0f1
b144620
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,8 +19,9 @@ pub struct MockField { | |
| value: MockValue, | ||
| } | ||
|
|
||
| #[derive(Debug, Eq, PartialEq)] | ||
| #[derive(Debug)] | ||
| pub enum MockValue { | ||
| F64(f64), | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. minor nit, but since the test support code now handles
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where would be the best place to put these? I looked for example in the tracing-core/src/field.rs but most of the tests there were calling
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| I64(i64), | ||
| U64(u64), | ||
| Bool(bool), | ||
|
|
@@ -29,6 +30,31 @@ pub enum MockValue { | |
| Any, | ||
| } | ||
|
|
||
| impl Eq for MockValue {} | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is only correct if we ensure no
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
|
|
||
| impl PartialEq for MockValue { | ||
| fn eq(&self, other: &Self) -> bool { | ||
| use MockValue::*; | ||
|
|
||
| match (self, other) { | ||
| (F64(a), F64(b)) => { | ||
| debug_assert!(!a.is_nan()); | ||
| debug_assert!(!b.is_nan()); | ||
|
|
||
| a.eq(b) | ||
| } | ||
| (I64(a), I64(b)) => a.eq(b), | ||
| (U64(a), U64(b)) => a.eq(b), | ||
| (Bool(a), Bool(b)) => a.eq(b), | ||
| (Str(a), Str(b)) => a.eq(b), | ||
| (Debug(a), Debug(b)) => a.eq(b), | ||
| (Any, _) => true, | ||
| (_, Any) => true, | ||
| _ => false, | ||
| } | ||
| } | ||
| } | ||
|
|
||
| pub fn mock<K>(name: K) -> MockField | ||
| where | ||
| String: From<K>, | ||
|
|
@@ -120,6 +146,7 @@ impl Expect { | |
| impl fmt::Display for MockValue { | ||
| fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
| match self { | ||
| MockValue::F64(v) => write!(f, "f64 = {:?}", v), | ||
| MockValue::I64(v) => write!(f, "i64 = {:?}", v), | ||
| MockValue::U64(v) => write!(f, "u64 = {:?}", v), | ||
| MockValue::Bool(v) => write!(f, "bool = {:?}", v), | ||
|
|
@@ -136,6 +163,11 @@ pub struct CheckVisitor<'a> { | |
| } | ||
|
|
||
| impl<'a> Visit for CheckVisitor<'a> { | ||
| fn record_f64(&mut self, field: &Field, value: f64) { | ||
| self.expect | ||
| .compare_or_panic(field.name(), &value, &self.ctx[..]) | ||
| } | ||
|
|
||
| fn record_i64(&mut self, field: &Field, value: i64) { | ||
| self.expect | ||
| .compare_or_panic(field.name(), &value, &self.ctx[..]) | ||
|
|
@@ -180,6 +212,10 @@ impl<'a> From<&'a dyn Value> for MockValue { | |
| } | ||
|
|
||
| impl Visit for MockValueBuilder { | ||
| fn record_f64(&mut self, _: &Field, value: f64) { | ||
| self.value = Some(MockValue::F64(value)); | ||
| } | ||
|
|
||
| fn record_i64(&mut self, _: &Field, value: i64) { | ||
| self.value = Some(MockValue::I64(value)); | ||
| } | ||
|
|
||
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.
Similarly to
Ord, theEqimplementation is only correct if we ensure there are noNaNvalues present in theValueMatch::F64variant. See my comment on theOrdimpl for details.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.
👍