]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/env-home-dir.rs
rollup merge of #23538: aturon/conversion
[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 #![feature(convert)]
12
13 use std::env::*;
14 use std::path::PathBuf;
15
16 #[cfg(unix)]
17 fn main() {
18     let oldhome = var("HOME");
19
20     set_var("HOME", "/home/MountainView");
21     assert!(home_dir() == Some(PathBuf::from("/home/MountainView")));
22
23     remove_var("HOME");
24     if cfg!(target_os = "android") {
25         assert!(home_dir().is_none());
26     } else {
27         assert!(home_dir().is_some());
28     }
29 }
30
31 #[cfg(windows)]
32 fn main() {
33     let oldhome = var("HOME");
34     let olduserprofile = var("USERPROFILE");
35
36     remove_var("HOME");
37     remove_var("USERPROFILE");
38
39     assert!(home_dir().is_some());
40
41     set_var("HOME", "/home/MountainView");
42     assert!(home_dir() == Some(PathBuf::from("/home/MountainView")));
43
44     remove_var("HOME");
45
46     set_var("USERPROFILE", "/home/MountainView");
47     assert!(home_dir() == Some(PathBuf::from("/home/MountainView")));
48
49     set_var("HOME", "/home/MountainView");
50     set_var("USERPROFILE", "/home/PaloAlto");
51     assert!(home_dir() == Some(PathBuf::from("/home/MountainView")));
52 }