]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/env-home-dir.rs
rollup merge of #23659: GBGamer/master
[rust.git] / src / test / run-pass / env-home-dir.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // pretty-expanded FIXME #23616
12
13 #![feature(path)]
14 #![feature(convert)]
15
16 use std::env::*;
17 use std::path::PathBuf;
18
19 #[cfg(unix)]
20 fn main() {
21     let oldhome = var("HOME");
22
23     set_var("HOME", "/home/MountainView");
24     assert!(home_dir() == Some(PathBuf::from("/home/MountainView")));
25
26     remove_var("HOME");
27     if cfg!(target_os = "android") {
28         assert!(home_dir().is_none());
29     } else {
30         assert!(home_dir().is_some());
31     }
32 }
33
34 #[cfg(windows)]
35 fn main() {
36     let oldhome = var("HOME");
37     let olduserprofile = var("USERPROFILE");
38
39     remove_var("HOME");
40     remove_var("USERPROFILE");
41
42     assert!(home_dir().is_some());
43
44     set_var("HOME", "/home/MountainView");
45     assert!(home_dir() == Some(PathBuf::from("/home/MountainView")));
46
47     remove_var("HOME");
48
49     set_var("USERPROFILE", "/home/MountainView");
50     assert!(home_dir() == Some(PathBuf::from("/home/MountainView")));
51
52     set_var("HOME", "/home/MountainView");
53     set_var("USERPROFILE", "/home/PaloAlto");
54     assert!(home_dir() == Some(PathBuf::from("/home/MountainView")));
55 }