@@ -7,9 +7,10 @@ use crate::process::Process;
7
7
8
8
pub const RUST_RECURSION_COUNT_MAX : u32 = 20 ;
9
9
10
- pub ( crate ) fn prepend_path (
10
+ pub ( crate ) fn insert_path (
11
11
name : & str ,
12
12
prepend : Vec < PathBuf > ,
13
+ append : Option < PathBuf > ,
13
14
cmd : & mut Command ,
14
15
process : & Process ,
15
16
) {
@@ -21,6 +22,11 @@ pub(crate) fn prepend_path(
21
22
tail. push_front ( path) ;
22
23
}
23
24
}
25
+ if let Some ( path) = append {
26
+ if !tail. contains ( & path) {
27
+ tail. push_back ( path) ;
28
+ }
29
+ }
24
30
tail
25
31
} else {
26
32
prepend. into ( )
@@ -77,7 +83,7 @@ mod tests {
77
83
let path_z = PathBuf :: from ( z) ;
78
84
path_entries. push ( path_z) ;
79
85
80
- prepend_path ( "PATH" , path_entries, & mut cmd, & tp. process ) ;
86
+ insert_path ( "PATH" , path_entries, None , & mut cmd, & tp. process ) ;
81
87
let envs: Vec < _ > = cmd. get_envs ( ) . collect ( ) ;
82
88
83
89
assert_eq ! (
@@ -99,4 +105,82 @@ mod tests {
99
105
) , ]
100
106
) ;
101
107
}
108
+
109
+ #[ test]
110
+ fn append_unique_path ( ) {
111
+ let mut vars = HashMap :: new ( ) ;
112
+ vars. env (
113
+ "PATH" ,
114
+ env:: join_paths ( [ "/home/a/.cargo/bin" , "/home/b/.cargo/bin" ] . iter ( ) ) . unwrap ( ) ,
115
+ ) ;
116
+ let tp = TestProcess :: with_vars ( vars) ;
117
+ #[ cfg( windows) ]
118
+ let _path_guard = RegistryGuard :: new ( & USER_PATH ) . unwrap ( ) ;
119
+
120
+ #[ track_caller]
121
+ fn check ( tp : & TestProcess , path_entries : Vec < PathBuf > , append : & str , expected : & [ & str ] ) {
122
+ let mut cmd = Command :: new ( "test" ) ;
123
+
124
+ insert_path (
125
+ "PATH" ,
126
+ path_entries,
127
+ Some ( append. into ( ) ) ,
128
+ & mut cmd,
129
+ & tp. process ,
130
+ ) ;
131
+ let envs: Vec < _ > = cmd. get_envs ( ) . collect ( ) ;
132
+
133
+ assert_eq ! (
134
+ envs,
135
+ & [ (
136
+ OsStr :: new( "PATH" ) ,
137
+ Some ( env:: join_paths( expected. iter( ) ) . unwrap( ) . as_os_str( ) )
138
+ ) , ]
139
+ ) ;
140
+ }
141
+
142
+ check (
143
+ & tp,
144
+ Vec :: new ( ) ,
145
+ "/home/z/.cargo/bin" ,
146
+ & [
147
+ "/home/a/.cargo/bin" ,
148
+ "/home/b/.cargo/bin" ,
149
+ "/home/z/.cargo/bin" ,
150
+ ] ,
151
+ ) ;
152
+ check (
153
+ & tp,
154
+ Vec :: new ( ) ,
155
+ "/home/a/.cargo/bin" ,
156
+ & [ "/home/a/.cargo/bin" , "/home/b/.cargo/bin" ] ,
157
+ ) ;
158
+ check (
159
+ & tp,
160
+ Vec :: new ( ) ,
161
+ "/home/b/.cargo/bin" ,
162
+ & [ "/home/a/.cargo/bin" , "/home/b/.cargo/bin" ] ,
163
+ ) ;
164
+ check (
165
+ & tp,
166
+ Vec :: from ( [ "/home/c/.cargo/bin" . into ( ) ] ) ,
167
+ "/home/c/.cargo/bin" ,
168
+ & [
169
+ "/home/c/.cargo/bin" ,
170
+ "/home/a/.cargo/bin" ,
171
+ "/home/b/.cargo/bin" ,
172
+ ] ,
173
+ ) ;
174
+ check (
175
+ & tp,
176
+ Vec :: from ( [ "/home/c/.cargo/bin" . into ( ) ] ) ,
177
+ "/home/z/.cargo/bin" ,
178
+ & [
179
+ "/home/c/.cargo/bin" ,
180
+ "/home/a/.cargo/bin" ,
181
+ "/home/b/.cargo/bin" ,
182
+ "/home/z/.cargo/bin" ,
183
+ ] ,
184
+ ) ;
185
+ }
102
186
}
0 commit comments