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

fix(inline): Fail update on conflict #347

Merged
merged 4 commits into from
Jul 10, 2024
Merged
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
9 changes: 6 additions & 3 deletions crates/snapbox/src/assert/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,12 @@ impl Assert {
use std::io::Write;

if let Some(source) = expected.source() {
let _ = writeln!(stderr(), "{}: {}", self.palette.warn("Fixing"), err);
actual.write_to(source).unwrap();
Ok(())
if let Err(message) = actual.write_to(source) {
Err(Error::new(format_args!("{err}Update failed: {message}")))
} else {
let _ = writeln!(stderr(), "{}: {}", self.palette.warn("Fixing"), err);
Ok(())
}
} else {
Err(Error::new(format_args!("{err}")))
}
Expand Down
127 changes: 109 additions & 18 deletions crates/snapbox/src/data/runtime.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
use std::collections::BTreeMap;

use super::Data;
use super::Inline;
use super::Position;
Expand Down Expand Up @@ -74,33 +76,47 @@ impl SourceFileRuntime {
fn update(&mut self, actual: &str, inline: &Inline) -> std::io::Result<()> {
let span = Span::from_pos(&inline.position, &self.original_text);
let patch = format_patch(actual);
self.patchwork.patch(span.literal_range, &patch);
self.patchwork.patch(span.literal_range, &patch)?;
std::fs::write(&inline.position.file, &self.patchwork.text)
}
}

#[derive(Debug)]
struct Patchwork {
text: String,
indels: Vec<(std::ops::Range<usize>, usize)>,
indels: BTreeMap<OrdRange, (usize, String)>,
}

impl Patchwork {
fn new(text: String) -> Patchwork {
Patchwork {
text,
indels: Vec::new(),
indels: BTreeMap::new(),
}
}
fn patch(&mut self, mut range: std::ops::Range<usize>, patch: &str) {
self.indels.push((range.clone(), patch.len()));
self.indels.sort_by_key(|(delete, _insert)| delete.start);
fn patch(&mut self, mut range: std::ops::Range<usize>, patch: &str) -> std::io::Result<()> {
let key: OrdRange = range.clone().into();
match self.indels.entry(key) {
std::collections::btree_map::Entry::Vacant(entry) => {
entry.insert((patch.len(), patch.to_owned()));
}
std::collections::btree_map::Entry::Occupied(entry) => {
if entry.get().1 == patch {
return Ok(());
} else {
return Err(std::io::Error::new(
std::io::ErrorKind::Other,
"cannot update as it was already modified",
));
}
}
}

let (delete, insert) = self
.indels
.iter()
.take_while(|(delete, _)| delete.start < range.start)
.map(|(delete, insert)| (delete.end - delete.start, insert))
.map(|(delete, (insert, _))| (delete.end - delete.start, insert))
.fold((0usize, 0usize), |(x1, y1), (x2, y2)| (x1 + x2, y1 + y2));

for pos in &mut [&mut range.start, &mut range.end] {
Expand All @@ -109,6 +125,22 @@ impl Patchwork {
}

self.text.replace_range(range, patch);
Ok(())
}
}

#[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
struct OrdRange {
start: usize,
end: usize,
}

impl From<std::ops::Range<usize>> for OrdRange {
fn from(other: std::ops::Range<usize>) -> Self {
Self {
start: other.start,
end: other.end,
}
}
}

Expand Down Expand Up @@ -377,28 +409,87 @@ world
#[test]
fn test_patchwork() {
let mut patchwork = Patchwork::new("one two three".to_owned());
patchwork.patch(4..7, "zwei");
patchwork.patch(0..3, "один");
patchwork.patch(8..13, "3");
patchwork.patch(4..7, "zwei").unwrap();
patchwork.patch(0..3, "один").unwrap();
patchwork.patch(8..13, "3").unwrap();
assert_data_eq!(
patchwork.to_debug(),
str![[r#"
Patchwork {
text: "один zwei 3",
indels: [
(
0..3,
indels: {
OrdRange {
start: 0,
end: 3,
}: (
8,
"один",
),
(
4..7,
OrdRange {
start: 4,
end: 7,
}: (
4,
"zwei",
),
(
8..13,
OrdRange {
start: 8,
end: 13,
}: (
1,
"3",
),
},
}

"#]],
);
}

#[test]
fn test_patchwork_overlap_diverge() {
let mut patchwork = Patchwork::new("one two three".to_owned());
patchwork.patch(4..7, "zwei").unwrap();
patchwork.patch(4..7, "abcd").unwrap_err();
assert_data_eq!(
patchwork.to_debug(),
str![[r#"
Patchwork {
text: "one zwei three",
indels: {
OrdRange {
start: 4,
end: 7,
}: (
4,
"zwei",
),
},
}

"#]],
);
}

#[test]
fn test_patchwork_overlap_converge() {
let mut patchwork = Patchwork::new("one two three".to_owned());
patchwork.patch(4..7, "zwei").unwrap();
patchwork.patch(4..7, "zwei").unwrap();
assert_data_eq!(
patchwork.to_debug(),
str![[r#"
Patchwork {
text: "one zwei three",
indels: {
OrdRange {
start: 4,
end: 7,
}: (
4,
"zwei",
),
],
},
}

"#]],
Expand Down
Loading