2023-08-21 08:49:27 +00:00
|
|
|
// This file is part of the uutils coreutils package.
|
|
|
|
//
|
|
|
|
// For the full copyright and license information, please view the LICENSE
|
|
|
|
// file that was distributed with this source code.
|
2023-03-20 13:51:19 +00:00
|
|
|
use crate::common::util::TestScenario;
|
2020-05-02 14:54:29 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_get_all() {
|
2021-04-17 23:28:06 +00:00
|
|
|
TestScenario::new(util_name!())
|
2023-01-25 02:40:39 +00:00
|
|
|
.ucmd()
|
2023-03-24 02:52:02 +00:00
|
|
|
.env("HOME", "FOO")
|
|
|
|
.env("KEY", "VALUE")
|
2021-04-17 23:28:06 +00:00
|
|
|
.succeeds()
|
2023-03-24 02:52:02 +00:00
|
|
|
.stdout_contains("HOME=FOO")
|
2021-04-17 23:28:06 +00:00
|
|
|
.stdout_contains("KEY=VALUE");
|
2020-05-02 14:54:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_get_var() {
|
|
|
|
let result = TestScenario::new(util_name!())
|
2023-01-25 02:40:39 +00:00
|
|
|
.ucmd()
|
2023-03-24 02:52:02 +00:00
|
|
|
.env("KEY", "VALUE")
|
2020-05-02 14:54:29 +00:00
|
|
|
.arg("KEY")
|
2021-04-17 23:28:06 +00:00
|
|
|
.succeeds();
|
2020-05-02 14:54:29 +00:00
|
|
|
|
2021-04-17 23:28:06 +00:00
|
|
|
assert!(!result.stdout_str().is_empty());
|
2022-03-23 07:51:09 +00:00
|
|
|
assert_eq!(result.stdout_str().trim(), "VALUE");
|
2020-05-02 14:54:29 +00:00
|
|
|
}
|
2022-11-06 16:28:05 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_ignore_equal_var() {
|
|
|
|
let scene = TestScenario::new(util_name!());
|
|
|
|
// tested by gnu/tests/misc/printenv.sh
|
|
|
|
let result = scene.ucmd().env("a=b", "c").arg("a=b").fails();
|
|
|
|
|
|
|
|
assert!(result.stdout_str().is_empty());
|
|
|
|
}
|