-
Notifications
You must be signed in to change notification settings - Fork 499
/
directories.rs
85 lines (78 loc) · 1.92 KB
/
directories.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
use super::*;
#[test]
fn cache_directory() {
Test::new()
.justfile("x := cache_directory()")
.args(["--evaluate", "x"])
.stdout(dirs::cache_dir().unwrap_or_default().to_string_lossy())
.run();
}
#[test]
fn config_directory() {
Test::new()
.justfile("x := config_directory()")
.args(["--evaluate", "x"])
.stdout(dirs::config_dir().unwrap_or_default().to_string_lossy())
.run();
}
#[test]
fn config_local_directory() {
Test::new()
.justfile("x := config_local_directory()")
.args(["--evaluate", "x"])
.stdout(
dirs::config_local_dir()
.unwrap_or_default()
.to_string_lossy(),
)
.run();
}
#[test]
fn data_directory() {
Test::new()
.justfile("x := data_directory()")
.args(["--evaluate", "x"])
.stdout(dirs::data_dir().unwrap_or_default().to_string_lossy())
.run();
}
#[test]
fn data_local_directory() {
Test::new()
.justfile("x := data_local_directory()")
.args(["--evaluate", "x"])
.stdout(dirs::data_local_dir().unwrap_or_default().to_string_lossy())
.run();
}
#[test]
fn executable_directory() {
if let Some(executable_dir) = dirs::executable_dir() {
Test::new()
.justfile("x := executable_directory()")
.args(["--evaluate", "x"])
.stdout(executable_dir.to_string_lossy())
.run();
} else {
Test::new()
.justfile("x := executable_directory()")
.args(["--evaluate", "x"])
.stderr(
"
error: Call to function `executable_directory` failed: executable directory not found
——▶ justfile:1:6
│
1 │ x := executable_directory()
│ ^^^^^^^^^^^^^^^^^^^^
",
)
.status(EXIT_FAILURE)
.run();
}
}
#[test]
fn home_directory() {
Test::new()
.justfile("x := home_directory()")
.args(["--evaluate", "x"])
.stdout(dirs::home_dir().unwrap_or_default().to_string_lossy())
.run();
}