Skip to content

Commit

Permalink
Add trivial tests for chown and fchownat
Browse files Browse the repository at this point in the history
These are mostly to ensure that all the platforms we care about in our
CI can reference these primitives.
  • Loading branch information
jmmv committed Oct 17, 2018
1 parent 4dad9ff commit aec00bd
Showing 1 changed file with 41 additions and 2 deletions.
43 changes: 41 additions & 2 deletions test/test_unistd.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
use nix::fcntl::{fcntl, FcntlArg, FdFlag, OFlag};
use nix::fcntl::{fcntl, FcntlArg, FdFlag, open, OFlag};
use nix::unistd::*;
use nix::unistd::ForkResult::*;
use nix::sys::signal::{SaFlags, SigAction, SigHandler, SigSet, Signal, sigaction};
use nix::sys::wait::*;
use nix::sys::stat::{self, Mode, SFlag};
use std::{env, iter};
use std::ffi::CString;
use std::fs::File;
use std::fs::{self, File};
use std::io::Write;
use std::os::unix::prelude::*;
use tempfile::{self, tempfile};
Expand Down Expand Up @@ -301,6 +301,45 @@ fn test_getcwd() {
assert_eq!(getcwd().unwrap(), inner_tmp_dir.as_path());
}

#[test]
fn test_chown() {
// Testing for anything other than our own UID/GID is hard.
let uid = Some(getuid());
let gid = Some(getgid());

let tempdir = tempfile::tempdir().unwrap();
let path = tempdir.path().join("file");
drop(File::create(&path).unwrap());

chown(&path, uid, gid).unwrap();
chown(&path, uid, None).unwrap();
chown(&path, None, gid).unwrap();

fs::remove_file(&path).unwrap();
chown(&path, uid, gid).unwrap_err();
}

#[test]
fn test_fchownat() {
// Testing for anything other than our own UID/GID is hard.
let uid = Some(getuid());
let gid = Some(getgid());

let tempdir = tempfile::tempdir().unwrap();
let path = tempdir.path().join("file");
drop(File::create(&path).unwrap());

let dirfd = open(tempdir.path(), OFlag::empty(), Mode::empty()).unwrap();

fchownat(Some(dirfd), "file", uid, gid, FchownatFlags::FollowSymlink).unwrap();

chdir(tempdir.path()).unwrap();
fchownat(None, "file", uid, gid, FchownatFlags::FollowSymlink).unwrap();

fs::remove_file(&path).unwrap();
fchownat(None, "file", uid, gid, FchownatFlags::FollowSymlink).unwrap_err();
}

#[test]
fn test_lseek() {
const CONTENTS: &[u8] = b"abcdef123456";
Expand Down

0 comments on commit aec00bd

Please sign in to comment.