mirror of
https://github.com/veeso/termscp.git
synced 2026-07-16 13:03:49 +02:00
118 lines
3.4 KiB
Rust
118 lines
3.4 KiB
Rust
//! ## TestHelpers
|
|
//!
|
|
//! contains helper functions for tests
|
|
|
|
// ext
|
|
use std::fs::File as StdFile;
|
|
use std::io::Write;
|
|
use std::path::{Path, PathBuf};
|
|
|
|
use remotefs::fs::{File, FileType, Metadata};
|
|
use tempfile::NamedTempFile;
|
|
|
|
pub fn create_sample_file_entry() -> (File, NamedTempFile) {
|
|
// Write
|
|
let tmpfile = create_sample_file();
|
|
(
|
|
File {
|
|
path: tmpfile.path().to_path_buf(),
|
|
metadata: Metadata::default(),
|
|
},
|
|
tmpfile,
|
|
)
|
|
}
|
|
|
|
/// Create sample file with default lorem ipsum content
|
|
pub fn create_sample_file() -> NamedTempFile {
|
|
create_sample_file_with_content("Lorem ipsum dolor sit amet, consectetur adipiscing elit.Mauris ultricies consequat eros,nec scelerisque magna imperdiet metus.")
|
|
}
|
|
|
|
/// Create sample file with provided content
|
|
pub fn create_sample_file_with_content(content: impl std::fmt::Display) -> NamedTempFile {
|
|
let mut tmpfile: tempfile::NamedTempFile = tempfile::NamedTempFile::new().unwrap();
|
|
writeln!(tmpfile, "{content}").unwrap();
|
|
tmpfile
|
|
}
|
|
|
|
/// Make a file with `name` at specified path
|
|
pub fn make_file_at(dir: &Path, filename: &str) -> std::io::Result<PathBuf> {
|
|
let mut p: PathBuf = PathBuf::from(dir);
|
|
p.push(filename);
|
|
let mut file = StdFile::create(p.as_path())?;
|
|
writeln!(
|
|
file,
|
|
"Lorem ipsum dolor sit amet, consectetur adipiscing elit.Mauris ultricies consequat eros,nec scelerisque magna imperdiet metus."
|
|
)?;
|
|
Ok(p)
|
|
}
|
|
|
|
/// Make a directory in `dir`
|
|
pub fn make_dir_at(dir: &Path, dirname: &str) -> std::io::Result<()> {
|
|
let mut p: PathBuf = PathBuf::from(dir);
|
|
p.push(dirname);
|
|
std::fs::create_dir(p.as_path())
|
|
}
|
|
|
|
/// Create a File at specified path
|
|
pub fn make_fsentry<P: AsRef<Path>>(path: P, is_dir: bool) -> File {
|
|
let path: PathBuf = path.as_ref().to_path_buf();
|
|
File {
|
|
path,
|
|
metadata: Metadata::default().file_type(if is_dir {
|
|
FileType::Directory
|
|
} else {
|
|
FileType::File
|
|
}),
|
|
}
|
|
}
|
|
|
|
/// Open a file with two handlers, the first is to read, the second is to write
|
|
pub fn create_file_ioers(p: &Path) -> (StdFile, StdFile) {
|
|
(
|
|
StdFile::open(p).ok().unwrap(),
|
|
StdFile::create(p).ok().unwrap(),
|
|
)
|
|
}
|
|
|
|
mod test {
|
|
use pretty_assertions::assert_eq;
|
|
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_utils_test_helpers_sample_file() {
|
|
let _ = create_sample_file_entry();
|
|
}
|
|
|
|
#[test]
|
|
fn test_utils_test_helpers_make_fsentry() {
|
|
assert_eq!(
|
|
make_fsentry(PathBuf::from("/tmp/omar.txt"), false)
|
|
.name()
|
|
.as_str(),
|
|
"omar.txt"
|
|
);
|
|
assert_eq!(
|
|
make_fsentry(PathBuf::from("/tmp/cards"), true)
|
|
.name()
|
|
.as_str(),
|
|
"cards"
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_utils_test_helpers_make_samples() {
|
|
let tmpdir: tempfile::TempDir = tempfile::TempDir::new().unwrap();
|
|
assert!(make_file_at(tmpdir.path(), "omaroni.txt").is_ok());
|
|
assert!(make_file_at(PathBuf::from("/aaaaa/bbbbb/cccc").as_path(), "readme.txt").is_err());
|
|
assert!(make_dir_at(tmpdir.path(), "docs").is_ok());
|
|
assert!(make_dir_at(PathBuf::from("/aaaaa/bbbbb/cccc").as_path(), "docs").is_err());
|
|
}
|
|
|
|
#[test]
|
|
fn test_utils_test_helpers_create_file_ioers() {
|
|
let (_, tmp) = create_sample_file_entry();
|
|
let _ = create_file_ioers(tmp.path());
|
|
}
|
|
}
|