mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-16 17:18:30 +01:00
330 lines
7.4 KiB
Rust
330 lines
7.4 KiB
Rust
use std::{
|
|
collections::HashMap,
|
|
ffi::{OsStr, OsString},
|
|
};
|
|
|
|
use notify::event::CreateKind;
|
|
use watchexec::{
|
|
event::{filekind::*, Event, Tag},
|
|
paths::summarise_events_to_env,
|
|
};
|
|
|
|
#[cfg(unix)]
|
|
const ENV_SEP: &str = ":";
|
|
#[cfg(not(unix))]
|
|
const ENV_SEP: &str = ";";
|
|
|
|
fn ospath(path: &str) -> OsString {
|
|
let root = dunce::canonicalize(".").unwrap();
|
|
if path.is_empty() {
|
|
root
|
|
} else {
|
|
root.join(path)
|
|
}
|
|
.into()
|
|
}
|
|
|
|
fn event(path: &str, kind: FileEventKind) -> Event {
|
|
Event {
|
|
tags: vec![
|
|
Tag::Path {
|
|
path: ospath(path).into(),
|
|
file_type: None,
|
|
},
|
|
Tag::FileEventKind(kind),
|
|
],
|
|
metadata: Default::default(),
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn no_events_no_env() {
|
|
let events = Vec::<Event>::new();
|
|
assert_eq!(summarise_events_to_env(&events), HashMap::new());
|
|
}
|
|
|
|
#[test]
|
|
fn single_created() {
|
|
let events = vec![event("file.txt", FileEventKind::Create(CreateKind::File))];
|
|
assert_eq!(
|
|
summarise_events_to_env(&events),
|
|
HashMap::from([
|
|
(OsStr::new("CREATED"), OsString::from("file.txt")),
|
|
(OsStr::new("COMMON_PATH"), ospath("")),
|
|
])
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn single_meta() {
|
|
let events = vec![event(
|
|
"file.txt",
|
|
FileEventKind::Modify(ModifyKind::Metadata(MetadataKind::Any)),
|
|
)];
|
|
assert_eq!(
|
|
summarise_events_to_env(&events),
|
|
HashMap::from([
|
|
(OsStr::new("META_CHANGED"), OsString::from("file.txt")),
|
|
(OsStr::new("COMMON_PATH"), ospath("")),
|
|
])
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn single_removed() {
|
|
let events = vec![event("file.txt", FileEventKind::Remove(RemoveKind::File))];
|
|
assert_eq!(
|
|
summarise_events_to_env(&events),
|
|
HashMap::from([
|
|
(OsStr::new("REMOVED"), OsString::from("file.txt")),
|
|
(OsStr::new("COMMON_PATH"), ospath("")),
|
|
])
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn single_renamed() {
|
|
let events = vec![event(
|
|
"file.txt",
|
|
FileEventKind::Modify(ModifyKind::Name(RenameMode::Any)),
|
|
)];
|
|
assert_eq!(
|
|
summarise_events_to_env(&events),
|
|
HashMap::from([
|
|
(OsStr::new("RENAMED"), OsString::from("file.txt")),
|
|
(OsStr::new("COMMON_PATH"), ospath("")),
|
|
])
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn single_written() {
|
|
let events = vec![event(
|
|
"file.txt",
|
|
FileEventKind::Modify(ModifyKind::Data(DataChange::Any)),
|
|
)];
|
|
assert_eq!(
|
|
summarise_events_to_env(&events),
|
|
HashMap::from([
|
|
(OsStr::new("WRITTEN"), OsString::from("file.txt")),
|
|
(OsStr::new("COMMON_PATH"), ospath("")),
|
|
])
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn single_otherwise() {
|
|
let events = vec![event("file.txt", FileEventKind::Any)];
|
|
assert_eq!(
|
|
summarise_events_to_env(&events),
|
|
HashMap::from([
|
|
(OsStr::new("OTHERWISE_CHANGED"), OsString::from("file.txt")),
|
|
(OsStr::new("COMMON_PATH"), ospath("")),
|
|
])
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn all_types_once() {
|
|
let events = vec![
|
|
event("create.txt", FileEventKind::Create(CreateKind::File)),
|
|
event(
|
|
"metadata.txt",
|
|
FileEventKind::Modify(ModifyKind::Metadata(MetadataKind::Any)),
|
|
),
|
|
event("remove.txt", FileEventKind::Remove(RemoveKind::File)),
|
|
event(
|
|
"rename.txt",
|
|
FileEventKind::Modify(ModifyKind::Name(RenameMode::Any)),
|
|
),
|
|
event(
|
|
"modify.txt",
|
|
FileEventKind::Modify(ModifyKind::Data(DataChange::Any)),
|
|
),
|
|
event("any.txt", FileEventKind::Any),
|
|
];
|
|
assert_eq!(
|
|
summarise_events_to_env(&events),
|
|
HashMap::from([
|
|
(OsStr::new("CREATED"), OsString::from("create.txt")),
|
|
(OsStr::new("META_CHANGED"), OsString::from("metadata.txt")),
|
|
(OsStr::new("REMOVED"), OsString::from("remove.txt")),
|
|
(OsStr::new("RENAMED"), OsString::from("rename.txt")),
|
|
(OsStr::new("WRITTEN"), OsString::from("modify.txt")),
|
|
(OsStr::new("OTHERWISE_CHANGED"), OsString::from("any.txt")),
|
|
(OsStr::new("COMMON_PATH"), ospath("")),
|
|
])
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn single_type_multipath() {
|
|
let events = vec![
|
|
event("root.txt", FileEventKind::Create(CreateKind::File)),
|
|
event("sub/folder.txt", FileEventKind::Create(CreateKind::File)),
|
|
event("dom/folder.txt", FileEventKind::Create(CreateKind::File)),
|
|
event(
|
|
"deeper/sub/folder.txt",
|
|
FileEventKind::Create(CreateKind::File),
|
|
),
|
|
];
|
|
assert_eq!(
|
|
summarise_events_to_env(&events),
|
|
HashMap::from([
|
|
(
|
|
OsStr::new("CREATED"),
|
|
OsString::from(
|
|
"".to_string()
|
|
+ "deeper/sub/folder.txt"
|
|
+ ENV_SEP + "dom/folder.txt"
|
|
+ ENV_SEP + "root.txt" + ENV_SEP
|
|
+ "sub/folder.txt"
|
|
)
|
|
),
|
|
(OsStr::new("COMMON_PATH"), ospath("")),
|
|
])
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn single_type_divergent_paths() {
|
|
let events = vec![
|
|
event("sub/folder.txt", FileEventKind::Create(CreateKind::File)),
|
|
event("dom/folder.txt", FileEventKind::Create(CreateKind::File)),
|
|
];
|
|
assert_eq!(
|
|
summarise_events_to_env(&events),
|
|
HashMap::from([
|
|
(
|
|
OsStr::new("CREATED"),
|
|
OsString::from("".to_string() + "dom/folder.txt" + ENV_SEP + "sub/folder.txt")
|
|
),
|
|
(OsStr::new("COMMON_PATH"), ospath("")),
|
|
])
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn multitype_multipath() {
|
|
let events = vec![
|
|
event("root.txt", FileEventKind::Create(CreateKind::File)),
|
|
event("sibling.txt", FileEventKind::Create(CreateKind::Any)),
|
|
event(
|
|
"sub/folder.txt",
|
|
FileEventKind::Modify(ModifyKind::Metadata(MetadataKind::Ownership)),
|
|
),
|
|
event("dom/folder.txt", FileEventKind::Remove(RemoveKind::Folder)),
|
|
event("deeper/sub/folder.txt", FileEventKind::Other),
|
|
];
|
|
assert_eq!(
|
|
summarise_events_to_env(&events),
|
|
HashMap::from([
|
|
(
|
|
OsStr::new("CREATED"),
|
|
OsString::from("".to_string() + "root.txt" + ENV_SEP + "sibling.txt"),
|
|
),
|
|
(OsStr::new("META_CHANGED"), OsString::from("sub/folder.txt"),),
|
|
(OsStr::new("REMOVED"), OsString::from("dom/folder.txt"),),
|
|
(
|
|
OsStr::new("OTHERWISE_CHANGED"),
|
|
OsString::from("deeper/sub/folder.txt"),
|
|
),
|
|
(OsStr::new("COMMON_PATH"), ospath("")),
|
|
])
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn multiple_paths_in_one_event() {
|
|
let events = vec![Event {
|
|
tags: vec![
|
|
Tag::Path {
|
|
path: ospath("one.txt").into(),
|
|
file_type: None,
|
|
},
|
|
Tag::Path {
|
|
path: ospath("two.txt").into(),
|
|
file_type: None,
|
|
},
|
|
Tag::FileEventKind(FileEventKind::Any),
|
|
],
|
|
metadata: Default::default(),
|
|
}];
|
|
assert_eq!(
|
|
summarise_events_to_env(&events),
|
|
HashMap::from([
|
|
(
|
|
OsStr::new("OTHERWISE_CHANGED"),
|
|
OsString::from("".to_string() + "one.txt" + ENV_SEP + "two.txt")
|
|
),
|
|
(OsStr::new("COMMON_PATH"), ospath("")),
|
|
])
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn mixed_non_paths_events() {
|
|
let events = vec![
|
|
event("one.txt", FileEventKind::Any),
|
|
Event {
|
|
tags: vec![Tag::Process(1234)],
|
|
metadata: Default::default(),
|
|
},
|
|
event("two.txt", FileEventKind::Any),
|
|
Event {
|
|
tags: vec![Tag::FileEventKind(FileEventKind::Any)],
|
|
metadata: Default::default(),
|
|
},
|
|
];
|
|
assert_eq!(
|
|
summarise_events_to_env(&events),
|
|
HashMap::from([
|
|
(
|
|
OsStr::new("OTHERWISE_CHANGED"),
|
|
OsString::from("".to_string() + "one.txt" + ENV_SEP + "two.txt")
|
|
),
|
|
(OsStr::new("COMMON_PATH"), ospath("")),
|
|
])
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn only_non_paths_events() {
|
|
let events = vec![
|
|
Event {
|
|
tags: vec![Tag::Process(1234)],
|
|
metadata: Default::default(),
|
|
},
|
|
Event {
|
|
tags: vec![Tag::FileEventKind(FileEventKind::Any)],
|
|
metadata: Default::default(),
|
|
},
|
|
];
|
|
assert_eq!(summarise_events_to_env(&events), HashMap::new());
|
|
}
|
|
|
|
#[test]
|
|
fn multipath_is_sorted() {
|
|
let events = vec![
|
|
event("0123.txt", FileEventKind::Any),
|
|
event("a.txt", FileEventKind::Any),
|
|
event("b.txt", FileEventKind::Any),
|
|
event("c.txt", FileEventKind::Any),
|
|
event("ᄁ.txt", FileEventKind::Any),
|
|
];
|
|
assert_eq!(
|
|
summarise_events_to_env(&events),
|
|
HashMap::from([
|
|
(
|
|
OsStr::new("OTHERWISE_CHANGED"),
|
|
OsString::from(
|
|
"".to_string()
|
|
+ "0123.txt" + ENV_SEP + "a.txt"
|
|
+ ENV_SEP + "b.txt" + ENV_SEP
|
|
+ "c.txt" + ENV_SEP + "ᄁ.txt"
|
|
)
|
|
),
|
|
(OsStr::new("COMMON_PATH"), ospath("")),
|
|
])
|
|
);
|
|
}
|