Includes prior-session patches (carry forward so the app compiles): - crates/gpui/build.rs: cross-compile manifest fix - crates/gpui/src/platform.rs: PlatformWindow::activate_with_token trait method - crates/gpui/src/window.rs: Window::activate_with_token public API - crates/gpui_linux/src/linux/wayland/window.rs: WaylandWindow::activate_with_token + activate() keyboard-serial fix Plus the focus-serial fix: - serial.rs: SerialKind::KeyboardEnter - client.rs: store wl_keyboard.enter serial; latest_serial_of() Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
125 lines
4.9 KiB
Rust
125 lines
4.9 KiB
Rust
mod path_trie {
|
|
use std::{collections::BTreeSet, ops::ControlFlow};
|
|
|
|
use util::rel_path::rel_path;
|
|
|
|
use project::manifest_tree::path_trie::*;
|
|
|
|
#[test]
|
|
fn test_insert_and_lookup() {
|
|
let mut trie = RootPathTrie::<()>::new();
|
|
trie.insert(
|
|
&TriePath::new(rel_path("a/b/c")),
|
|
(),
|
|
LabelPresence::Present,
|
|
);
|
|
|
|
trie.walk(&TriePath::new(rel_path("a/b/c")), &mut |path, nodes| {
|
|
assert_eq!(nodes.get(&()), Some(&LabelPresence::Present));
|
|
assert_eq!(path.as_unix_str(), "a/b/c");
|
|
ControlFlow::Continue(())
|
|
});
|
|
// Now let's annotate a parent with "Known missing" node.
|
|
trie.insert(
|
|
&TriePath::new(rel_path("a")),
|
|
(),
|
|
LabelPresence::KnownAbsent,
|
|
);
|
|
|
|
// Ensure that we walk from the root to the leaf.
|
|
let mut visited_paths = BTreeSet::new();
|
|
trie.walk(&TriePath::new(rel_path("a/b/c")), &mut |path, nodes| {
|
|
if path.as_unix_str() == "a/b/c" {
|
|
assert_eq!(visited_paths, BTreeSet::from_iter([rel_path("a").into()]));
|
|
assert_eq!(nodes.get(&()), Some(&LabelPresence::Present));
|
|
} else if path.as_unix_str() == "a" {
|
|
assert!(visited_paths.is_empty());
|
|
assert_eq!(nodes.get(&()), Some(&LabelPresence::KnownAbsent));
|
|
} else {
|
|
panic!("Unknown path");
|
|
}
|
|
// Assert that we only ever visit a path once.
|
|
assert!(visited_paths.insert(path.clone()));
|
|
ControlFlow::Continue(())
|
|
});
|
|
|
|
// One can also pass a path whose prefix is in the tree, but not that path itself.
|
|
let mut visited_paths = BTreeSet::new();
|
|
trie.walk(
|
|
&TriePath::new(rel_path("a/b/c/d/e/f/g")),
|
|
&mut |path, nodes| {
|
|
if path.as_unix_str() == "a/b/c" {
|
|
assert_eq!(visited_paths, BTreeSet::from_iter([rel_path("a").into()]));
|
|
assert_eq!(nodes.get(&()), Some(&LabelPresence::Present));
|
|
} else if path.as_unix_str() == "a" {
|
|
assert!(visited_paths.is_empty());
|
|
assert_eq!(nodes.get(&()), Some(&LabelPresence::KnownAbsent));
|
|
} else {
|
|
panic!("Unknown path");
|
|
}
|
|
// Assert that we only ever visit a path once.
|
|
assert!(visited_paths.insert(path.clone()));
|
|
ControlFlow::Continue(())
|
|
},
|
|
);
|
|
|
|
// Test breaking from the tree-walk.
|
|
let mut visited_paths = BTreeSet::new();
|
|
trie.walk(&TriePath::new(rel_path("a/b/c")), &mut |path, nodes| {
|
|
if path.as_unix_str() == "a" {
|
|
assert!(visited_paths.is_empty());
|
|
assert_eq!(nodes.get(&()), Some(&LabelPresence::KnownAbsent));
|
|
} else {
|
|
panic!("Unknown path");
|
|
}
|
|
// Assert that we only ever visit a path once.
|
|
assert!(visited_paths.insert(path.clone()));
|
|
ControlFlow::Break(())
|
|
});
|
|
assert_eq!(visited_paths.len(), 1);
|
|
|
|
// Entry removal.
|
|
trie.insert(
|
|
&TriePath::new(rel_path("a/b")),
|
|
(),
|
|
LabelPresence::KnownAbsent,
|
|
);
|
|
let mut visited_paths = BTreeSet::new();
|
|
trie.walk(&TriePath::new(rel_path("a/b/c")), &mut |path, _nodes| {
|
|
// Assert that we only ever visit a path once.
|
|
assert!(visited_paths.insert(path.clone()));
|
|
ControlFlow::Continue(())
|
|
});
|
|
assert_eq!(visited_paths.len(), 3);
|
|
trie.remove(&TriePath::new(rel_path("a/b")));
|
|
let mut visited_paths = BTreeSet::new();
|
|
trie.walk(&TriePath::new(rel_path("a/b/c")), &mut |path, _nodes| {
|
|
// Assert that we only ever visit a path once.
|
|
assert!(visited_paths.insert(path.clone()));
|
|
ControlFlow::Continue(())
|
|
});
|
|
assert_eq!(visited_paths.len(), 1);
|
|
assert_eq!(
|
|
visited_paths.into_iter().next().unwrap(),
|
|
rel_path("a").into()
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn path_to_a_root_can_contain_multiple_known_nodes() {
|
|
let mut trie = RootPathTrie::<()>::new();
|
|
trie.insert(&TriePath::new(rel_path("a/b")), (), LabelPresence::Present);
|
|
trie.insert(&TriePath::new(rel_path("a")), (), LabelPresence::Present);
|
|
let mut visited_paths = BTreeSet::new();
|
|
trie.walk(&TriePath::new(rel_path("a/b/c")), &mut |path, nodes| {
|
|
assert_eq!(nodes.get(&()), Some(&LabelPresence::Present));
|
|
if path.as_unix_str() != "a" && path.as_unix_str() != "a/b" {
|
|
panic!("Unexpected path: {}", path.as_unix_str());
|
|
}
|
|
assert!(visited_paths.insert(path.clone()));
|
|
ControlFlow::Continue(())
|
|
});
|
|
assert_eq!(visited_paths.len(), 2);
|
|
}
|
|
}
|