coreutils/tests/test_chown.rs

52 lines
1.2 KiB
Rust
Raw Normal View History

2016-06-22 13:39:46 +00:00
use common::util::*;
extern crate uu_chown;
pub use self::uu_chown::*;
#[cfg(test)]
2016-08-14 05:22:42 +00:00
mod test_passgrp {
use super::uu_chown::entries::{usr2uid,grp2gid,uid2usr,gid2grp};
2016-06-22 13:39:46 +00:00
#[test]
2016-08-14 05:22:42 +00:00
fn test_usr2uid() {
assert_eq!(0, usr2uid("root").unwrap());
assert!(usr2uid("88888888").is_err());
assert!(usr2uid("auserthatdoesntexist").is_err());
2016-06-22 13:39:46 +00:00
}
#[test]
2016-08-14 05:22:42 +00:00
fn test_grp2gid() {
2016-07-04 14:50:54 +00:00
if cfg!(target_os = "macos") {
2016-08-14 05:22:42 +00:00
assert_eq!(0, grp2gid("wheel").unwrap());
2016-07-04 14:50:54 +00:00
} else {
2016-08-14 05:22:42 +00:00
assert_eq!(0, grp2gid("root").unwrap());
2016-07-04 14:50:54 +00:00
}
2016-08-14 05:22:42 +00:00
assert!(grp2gid("88888888").is_err());
assert!(grp2gid("agroupthatdoesntexist").is_err());
2016-06-22 13:39:46 +00:00
}
#[test]
fn test_uid2usr() {
assert_eq!("root", uid2usr(0).unwrap());
assert!(uid2usr(88888888).is_err());
}
#[test]
fn test_gid2grp() {
2016-07-04 14:50:54 +00:00
if cfg!(target_os = "macos") {
assert_eq!("wheel", gid2grp(0).unwrap());
} else {
assert_eq!("root", gid2grp(0).unwrap());
}
2016-06-22 13:39:46 +00:00
assert!(gid2grp(88888888).is_err());
}
}
#[test]
fn test_invalid_option() {
new_ucmd!()
.arg("-w").arg("-q").arg("/")
.fails();
2016-06-22 13:39:46 +00:00
}