compare_properties fixed width area.

This commit is contained in:
Tom Alexander 2023-10-10 01:27:37 -04:00
parent 0b465fe290
commit e40e3ff553
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 31 additions and 22 deletions

View File

@ -2332,35 +2332,44 @@ fn compare_planning<'b, 's>(
} }
fn compare_fixed_width_area<'b, 's>( fn compare_fixed_width_area<'b, 's>(
_source: &'s str, source: &'s str,
emacs: &'b Token<'s>, emacs: &'b Token<'s>,
rust: &'b FixedWidthArea<'s>, rust: &'b FixedWidthArea<'s>,
) -> Result<DiffEntry<'b, 's>, Box<dyn std::error::Error>> { ) -> Result<DiffEntry<'b, 's>, Box<dyn std::error::Error>> {
let child_status = Vec::new();
let mut this_status = DiffStatus::Good; let mut this_status = DiffStatus::Good;
let mut child_status = Vec::new();
let mut message = None; let mut message = None;
// TODO: Compare :caption assert_no_children(emacs, &mut this_status, &mut message)?;
// Compare name
let name = get_property_quoted_string(emacs, ":name")?;
if name.as_ref().map(String::as_str) != rust.name {
this_status = DiffStatus::Bad;
message = Some(format!(
"Name mismatch (emacs != rust) {:?} != {:?}",
name, rust.name
));
}
// Compare value for diff in compare_properties!(
let value = get_property_quoted_string(emacs, ":value")? source,
.ok_or("Fixed width area should have a value.")?; emacs,
let rust_value = rust.get_value(); rust,
if value != rust_value { (
this_status = DiffStatus::Bad; EmacsField::Optional(":name"),
message = Some(format!( |r| r.name,
"Value mismatch (emacs != rust) {:?} != {:?}", compare_property_quoted_string
value, rust_value ),
)); (
EmacsField::Optional(":caption"),
compare_identity,
compare_noop
),
(
EmacsField::Required(":value"),
|r| Some(r.get_value()),
compare_property_quoted_string
)
) {
match diff {
ComparePropertiesResult::NoChange => {}
ComparePropertiesResult::SelfChange(new_status, new_message) => {
this_status = new_status;
message = new_message
}
ComparePropertiesResult::DiffEntry(diff_entry) => child_status.push(diff_entry),
}
} }
Ok(DiffResult { Ok(DiffResult {