2023-03-20 13:51:19 +00:00
|
|
|
use crate::common::util::TestScenario;
|
2023-04-10 06:31:31 +00:00
|
|
|
use regex::Regex;
|
2020-05-15 22:14:54 +00:00
|
|
|
|
2022-09-10 16:38:14 +00:00
|
|
|
#[test]
|
|
|
|
fn test_invalid_arg() {
|
|
|
|
new_ucmd!().arg("--definitely-invalid").fails().code_is(1);
|
|
|
|
}
|
|
|
|
|
2020-05-15 22:14:54 +00:00
|
|
|
#[test]
|
|
|
|
fn test_uptime() {
|
2021-04-17 23:28:06 +00:00
|
|
|
TestScenario::new(util_name!())
|
2023-01-25 02:40:39 +00:00
|
|
|
.ucmd()
|
2021-04-17 23:28:06 +00:00
|
|
|
.succeeds()
|
|
|
|
.stdout_contains("load average:")
|
|
|
|
.stdout_contains(" up ");
|
2020-05-15 22:14:54 +00:00
|
|
|
|
|
|
|
// Don't check for users as it doesn't show in some CI
|
|
|
|
}
|
2020-05-17 09:36:07 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_uptime_since() {
|
|
|
|
let re = Regex::new(r"\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}").unwrap();
|
2021-04-17 23:28:06 +00:00
|
|
|
|
|
|
|
new_ucmd!().arg("--since").succeeds().stdout_matches(&re);
|
2020-05-17 09:36:07 +00:00
|
|
|
}
|
2020-11-03 22:10:32 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_failed() {
|
2021-05-30 05:10:54 +00:00
|
|
|
new_ucmd!().arg("will-fail").fails();
|
2020-11-03 22:10:32 +00:00
|
|
|
}
|