summaryrefslogtreecommitdiff
path: root/test/test_nmount.rs
diff options
context:
space:
mode:
authorAlan Somers <asomers@gmail.com>2021-06-13 19:42:13 -0600
committerAlan Somers <asomers@gmail.com>2021-06-13 20:13:32 -0600
commit48c7a07c428ccd680c23a18f269f3b887439d6d6 (patch)
treeb0e3dda01805352b450399b25cdc4903a70bbb53 /test/test_nmount.rs
parentcf57ae5b1273fe6796515351ff31e434a05e0e21 (diff)
downloadnix-48c7a07c428ccd680c23a18f269f3b887439d6d6.zip
Add nmount for FreeBSD.
Diffstat (limited to 'test/test_nmount.rs')
-rw-r--r--test/test_nmount.rs51
1 files changed, 51 insertions, 0 deletions
diff --git a/test/test_nmount.rs b/test/test_nmount.rs
new file mode 100644
index 00000000..92f459d6
--- /dev/null
+++ b/test/test_nmount.rs
@@ -0,0 +1,51 @@
+use crate::*;
+use nix::{
+ errno::Errno,
+ mount::{MntFlags, Nmount, unmount}
+};
+use std::{
+ ffi::CString,
+ fs::File,
+ path::Path
+};
+use tempfile::tempdir;
+
+#[test]
+fn ok() {
+ require_mount!("nullfs");
+
+ let mountpoint = tempdir().unwrap();
+ let target = tempdir().unwrap();
+ let _sentry = File::create(target.path().join("sentry")).unwrap();
+
+ let fstype = CString::new("fstype").unwrap();
+ let nullfs = CString::new("nullfs").unwrap();
+ Nmount::new()
+ .str_opt(&fstype, &nullfs)
+ .str_opt_owned("fspath", mountpoint.path().to_str().unwrap())
+ .str_opt_owned("target", target.path().to_str().unwrap())
+ .nmount(MntFlags::empty()).unwrap();
+
+ // Now check that the sentry is visible through the mountpoint
+ let exists = Path::exists(&mountpoint.path().join("sentry"));
+
+ // Cleanup the mountpoint before asserting
+ unmount(mountpoint.path(), MntFlags::empty()).unwrap();
+
+ assert!(exists);
+}
+
+#[test]
+fn bad_fstype() {
+ let mountpoint = tempdir().unwrap();
+ let target = tempdir().unwrap();
+ let _sentry = File::create(target.path().join("sentry")).unwrap();
+
+ let e = Nmount::new()
+ .str_opt_owned("fspath", mountpoint.path().to_str().unwrap())
+ .str_opt_owned("target", target.path().to_str().unwrap())
+ .nmount(MntFlags::empty()).unwrap_err();
+
+ assert_eq!(e.errno(), Errno::EINVAL);
+ assert_eq!(e.errmsg(), Some("Invalid fstype"));
+}