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>
38 lines
1.2 KiB
Rust
38 lines
1.2 KiB
Rust
use project::yarn::*;
|
|
use std::path::Path;
|
|
|
|
#[test]
|
|
fn test_resolve_virtual() {
|
|
let test_cases = vec![
|
|
(
|
|
"/path/to/some/folder/__virtual__/a0b1c2d3/0/subpath/to/file.dat",
|
|
Some(Path::new("/path/to/some/folder/subpath/to/file.dat")),
|
|
),
|
|
(
|
|
"/path/to/some/folder/__virtual__/e4f5a0b1/0/subpath/to/file.dat",
|
|
Some(Path::new("/path/to/some/folder/subpath/to/file.dat")),
|
|
),
|
|
(
|
|
"/path/to/some/folder/__virtual__/a0b1c2d3/1/subpath/to/file.dat",
|
|
Some(Path::new("/path/to/some/subpath/to/file.dat")),
|
|
),
|
|
(
|
|
"/path/to/some/folder/__virtual__/a0b1c2d3/3/subpath/to/file.dat",
|
|
Some(Path::new("/path/subpath/to/file.dat")),
|
|
),
|
|
("/path/to/nonvirtual/", None),
|
|
("/path/to/malformed/__virtual__", None),
|
|
("/path/to/malformed/__virtual__/a0b1c2d3", None),
|
|
(
|
|
"/path/to/malformed/__virtual__/a0b1c2d3/this-should-be-a-number",
|
|
None,
|
|
),
|
|
];
|
|
|
|
for (input, expected) in test_cases {
|
|
let input_path = Path::new(input);
|
|
let resolved_path = resolve_virtual(input_path);
|
|
assert_eq!(resolved_path.as_deref(), expected);
|
|
}
|
|
}
|