Skip to content
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

Add float_compare_mode for comparing floats with epsilon #34

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ edition = "2018"
[dependencies]
serde_json = "1"
serde = "1"
float-cmp = "0.9.0"

[dev-dependencies]
version-sync = "0.8"
Expand Down
62 changes: 59 additions & 3 deletions src/diff.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use crate::core_ext::{Indent, Indexes};
use crate::{CompareMode, Config, NumericMode};
use crate::{CompareMode, Config, FloatCompareMode, NumericMode};
use float_cmp::{ApproxEq, F64Margin};
use serde_json::Value;
use std::{collections::HashSet, fmt};

Expand Down Expand Up @@ -56,8 +57,11 @@ impl<'a, 'b> DiffFolder<'a, 'b> {

fn on_number(&mut self, lhs: &'a Value) {
let is_equal = match self.config.numeric_mode {
NumericMode::Strict => self.rhs == lhs,
NumericMode::AssumeFloat => self.rhs.as_f64() == lhs.as_f64(),
NumericMode::Strict => self.eq_values(lhs, self.rhs),
NumericMode::AssumeFloat => match (lhs.as_f64(), self.rhs.as_f64()) {
(Some(lhs), Some(rhs)) => self.eq_floats(lhs, rhs),
(lhs, rhs) => lhs == rhs,
},
};
if !is_equal {
self.acc.push(Difference {
Expand All @@ -69,6 +73,27 @@ impl<'a, 'b> DiffFolder<'a, 'b> {
}
}

fn eq_values(&self, lhs: &Value, rhs: &Value) -> bool {
if lhs.is_f64() && rhs.is_f64() {
// `as_f64` must return a floating point value if `is_f64` returned true. The inverse
// relation is not guaranteed by serde_json.
self.eq_floats(
lhs.as_f64().expect("float value"),
rhs.as_f64().expect("float value"),
)
} else {
lhs == rhs
}
}

fn eq_floats(&self, lhs: f64, rhs: f64) -> bool {
if let FloatCompareMode::Epsilon(epsilon) = self.config.float_compare_mode {
lhs.approx_eq(rhs, F64Margin::default().epsilon(epsilon))
} else {
lhs == rhs
}
}

fn on_array(&mut self, lhs: &'a Value) {
if let Some(rhs) = self.rhs.as_array() {
let lhs = lhs.as_array().unwrap();
Expand Down Expand Up @@ -401,6 +426,37 @@ mod test {
Config::new(CompareMode::Inclusive).numeric_mode(NumericMode::AssumeFloat),
);
assert_eq!(diffs, vec![]);

let actual = json!(1.15);
let expected = json!(1);
let diffs = diff(
&actual,
&expected,
Config::new(CompareMode::Inclusive)
.numeric_mode(NumericMode::AssumeFloat)
.float_compare_mode(FloatCompareMode::Epsilon(0.2)),
);
assert_eq!(diffs, vec![]);

let actual = json!(1.25);
let expected = json!(1);
let diffs = diff(
&actual,
&expected,
Config::new(CompareMode::Inclusive)
.numeric_mode(NumericMode::AssumeFloat)
.float_compare_mode(FloatCompareMode::Epsilon(0.2)),
);
assert_eq!(diffs.len(), 1);

let actual = json!(2);
let expected = json!(1);
let diffs = diff(
&actual,
&expected,
Config::new(CompareMode::Inclusive).float_compare_mode(FloatCompareMode::Epsilon(2.0)),
);
assert_eq!(diffs.len(), 1);
}

#[test]
Expand Down
23 changes: 22 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -299,11 +299,12 @@ where
}

/// Configuration for how JSON values should be compared.
#[derive(Debug, Clone, PartialEq, Eq)]
#[derive(Debug, Clone, PartialEq)]
#[allow(missing_copy_implementations)]
pub struct Config {
pub(crate) compare_mode: CompareMode,
pub(crate) numeric_mode: NumericMode,
float_compare_mode: FloatCompareMode,
}

impl Config {
Expand All @@ -314,6 +315,7 @@ impl Config {
Self {
compare_mode,
numeric_mode: NumericMode::Strict,
float_compare_mode: FloatCompareMode::Exact,
}
}

Expand All @@ -330,6 +332,14 @@ impl Config {
self.compare_mode = compare_mode;
self
}

/// Change the config's float compare mode.
///
/// The default `float_compare_mode` is [`FloatCompareMode::Exact`].
pub fn float_compare_mode(mut self, float_compare_mode: FloatCompareMode) -> Self {
self.float_compare_mode = float_compare_mode;
self
}
}

/// Mode for how JSON values should be compared.
Expand All @@ -355,6 +365,17 @@ pub enum NumericMode {
AssumeFloat,
}

/// How should floating point numbers be compared.
#[derive(Debug, Copy, Clone, PartialEq)]
pub enum FloatCompareMode {
/// Different floats are never considered equal.
Exact,
/// Floats are considered equal if they differ by at most this epsilon value.
Epsilon(f64),
}

impl Eq for FloatCompareMode {}

#[cfg(test)]
mod tests {
use super::*;
Expand Down
78 changes: 77 additions & 1 deletion tests/integration_test.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use assert_json_diff::{
assert_json_eq, assert_json_include, assert_json_matches, assert_json_matches_no_panic,
CompareMode, Config, NumericMode,
CompareMode, Config, FloatCompareMode, NumericMode,
};
use serde::Serialize;
use serde_json::json;
Expand Down Expand Up @@ -182,3 +182,79 @@ fn eq_with_serializable_ref() {
&user,
);
}

#[derive(Serialize)]
struct Person {
name: String,
height: f64,
}

#[test]
fn can_pass_with_exact_float_comparison() {
let person = Person {
name: "bob".to_string(),
height: 1.79,
};

assert_json_matches!(
&json!({
"name": "bob",
"height": 1.79
}),
&person,
Config::new(CompareMode::Strict).float_compare_mode(FloatCompareMode::Exact)
);
}

#[test]
#[should_panic]
fn can_fail_with_exact_float_comparison() {
let person = Person {
name: "bob".to_string(),
height: 1.79,
};

assert_json_matches!(
&json!({
"name": "bob",
"height": 1.7900001
}),
&person,
Config::new(CompareMode::Strict).float_compare_mode(FloatCompareMode::Exact)
);
}

#[test]
fn can_pass_with_epsilon_based_float_comparison() {
let person = Person {
name: "bob".to_string(),
height: 1.79,
};

assert_json_matches!(
&json!({
"name": "bob",
"height": 1.7900001
}),
&person,
Config::new(CompareMode::Strict).float_compare_mode(FloatCompareMode::Epsilon(0.00001))
);
}

#[test]
#[should_panic]
fn can_fail_with_epsilon_based_float_comparison() {
let person = Person {
name: "bob".to_string(),
height: 1.79,
};

assert_json_matches!(
&json!({
"name": "bob",
"height": 1.7901
}),
&person,
Config::new(CompareMode::Strict).float_compare_mode(FloatCompareMode::Epsilon(0.00001))
);
}