35 lines
No EOL
813 B
Rust
35 lines
No EOL
813 B
Rust
|
|
|
|
|
|
#![allow(unused_imports)]
|
|
#![allow(unused_variables)]
|
|
#![allow(dead_code)]
|
|
|
|
|
|
#[test]
|
|
|
|
|
|
fn test_parse_account_path() {
|
|
let result = parse_account_path("account://user@gmail.com/Documents/file.pdf");
|
|
assert!(result.is_some());
|
|
let (email, path) = result.unwrap();
|
|
assert_eq!(email, "user@gmail.com");
|
|
assert_eq!(path, "Documents/file.pdf");
|
|
}
|
|
|
|
#[test]
|
|
|
|
|
|
fn test_parse_account_path_invalid() {
|
|
assert!(parse_account_path("local/file.pdf").is_none());
|
|
assert!(parse_account_path("/absolute/path").is_none());
|
|
}
|
|
|
|
#[test]
|
|
|
|
|
|
fn test_is_account_path() {
|
|
assert!(is_account_path("account://user@gmail.com/file.pdf"));
|
|
assert!(!is_account_path("local/file.pdf"));
|
|
assert!(!is_account_path("file.pdf"));
|
|
} |