4 use rand::{rngs::SmallRng, SeedableRng};
5 use tempfile::NamedTempFile;
7 use crate::utils::write_random_content;
10 /// Makes sure that the files ouch produces are what they claim to be, checking their
11 /// types through MIME sniffing.
12 fn sanity_check_through_mime() {
13 let temp_dir = tempfile::tempdir().expect("to build a temporary directory");
14 let temp_dir_path = temp_dir.path();
16 let test_file = &mut NamedTempFile::new_in(temp_dir_path).expect("to be able to build a temporary file");
17 write_random_content(test_file, &mut SmallRng::from_entropy());
20 "tar", "zip", "tar.gz", "tgz", "tbz", "tbz2", "txz", "tlzma", "tzst", "tar.bz", "tar.bz2", "tar.lzma",
24 let expected_mimes = [
29 "application/x-bzip2",
30 "application/x-bzip2",
34 "application/x-bzip2",
35 "application/x-bzip2",
41 assert_eq!(formats.len(), expected_mimes.len());
43 for (format, expected_mime) in formats.iter().zip(expected_mimes.iter()) {
44 let path_to_compress = test_file.path();
46 let compressed_file_path = &format!("{}.{}", path_to_compress.display(), format);
47 ouch!("c", path_to_compress, compressed_file_path);
49 let sniffed = infer::get_from_path(compressed_file_path)
50 .expect("the file to be read")
51 .expect("the MIME to be found");
53 assert_eq!(&sniffed.mime_type(), expected_mime);