mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 12:29:21 +00:00
Extract tests module to file in vfs crate
This commit is contained in:
parent
c8a2ff6ecc
commit
59bd6e2eea
4 changed files with 74 additions and 82 deletions
42
crates/vfs/src/file_set/tests.rs
Normal file
42
crates/vfs/src/file_set/tests.rs
Normal file
|
@ -0,0 +1,42 @@
|
|||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn path_prefix() {
|
||||
let mut file_set = FileSetConfig::builder();
|
||||
file_set.add_file_set(vec![VfsPath::new_virtual_path("/foo".into())]);
|
||||
file_set.add_file_set(vec![VfsPath::new_virtual_path("/foo/bar/baz".into())]);
|
||||
let file_set = file_set.build();
|
||||
|
||||
let mut vfs = Vfs::default();
|
||||
vfs.set_file_contents(VfsPath::new_virtual_path("/foo/src/lib.rs".into()), Some(Vec::new()));
|
||||
vfs.set_file_contents(
|
||||
VfsPath::new_virtual_path("/foo/src/bar/baz/lib.rs".into()),
|
||||
Some(Vec::new()),
|
||||
);
|
||||
vfs.set_file_contents(
|
||||
VfsPath::new_virtual_path("/foo/bar/baz/lib.rs".into()),
|
||||
Some(Vec::new()),
|
||||
);
|
||||
vfs.set_file_contents(VfsPath::new_virtual_path("/quux/lib.rs".into()), Some(Vec::new()));
|
||||
|
||||
let partition = file_set.partition(&vfs).into_iter().map(|it| it.len()).collect::<Vec<_>>();
|
||||
assert_eq!(partition, vec![2, 1, 1]);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn name_prefix() {
|
||||
let mut file_set = FileSetConfig::builder();
|
||||
file_set.add_file_set(vec![VfsPath::new_virtual_path("/foo".into())]);
|
||||
file_set.add_file_set(vec![VfsPath::new_virtual_path("/foo-things".into())]);
|
||||
let file_set = file_set.build();
|
||||
|
||||
let mut vfs = Vfs::default();
|
||||
vfs.set_file_contents(VfsPath::new_virtual_path("/foo/src/lib.rs".into()), Some(Vec::new()));
|
||||
vfs.set_file_contents(
|
||||
VfsPath::new_virtual_path("/foo-things/src/lib.rs".into()),
|
||||
Some(Vec::new()),
|
||||
);
|
||||
|
||||
let partition = file_set.partition(&vfs).into_iter().map(|it| it.len()).collect::<Vec<_>>();
|
||||
assert_eq!(partition, vec![1, 1, 0]);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue