rust-fatfs/tests/integration-test.rs

176 lines
4.9 KiB
Rust
Raw Normal View History

2017-09-24 09:13:50 +08:00
extern crate rfat;
2017-09-23 05:20:06 +08:00
use std::fs::File;
use std::io::{BufReader, SeekFrom};
2017-09-24 04:22:25 +08:00
use std::io::prelude::*;
2017-09-23 05:20:06 +08:00
use std::str;
use rfat::{FatFileSystem, FatType, FatDirEntry};
2017-09-23 05:20:06 +08:00
const TEST_TEXT: &str = "Rust is cool!\n";
const FAT12_IMG: &str = "resources/fat12.img";
const FAT16_IMG: &str = "resources/fat16.img";
const FAT32_IMG: &str = "resources/fat32.img";
2017-09-24 04:22:25 +08:00
fn call_with_fs(f: &Fn(FatFileSystem) -> (), filename: &str) {
2017-09-24 09:08:00 +08:00
let file = File::open(filename).unwrap();
let mut buf_rdr = BufReader::new(file);
let fs = FatFileSystem::new(&mut buf_rdr).unwrap();
f(fs);
2017-09-24 09:08:00 +08:00
}
fn test_root_dir(fs: FatFileSystem) {
let root_dir = fs.root_dir();
let entries = root_dir.map(|r| r.unwrap()).collect::<Vec<FatDirEntry>>();
let short_names = entries.iter().map(|e| e.short_file_name()).collect::<Vec<String>>();
assert_eq!(short_names, ["LONG.TXT", "SHORT.TXT", "VERY", "VERY-L~1"]);
let names = entries.iter().map(|e| e.file_name()).collect::<Vec<String>>();
assert_eq!(names, ["long.txt", "short.txt", "very", "very-long-dir-name"]);
// Try read again
//let names2 = root_dir.map(|r| r.unwrap().file_name()).collect::<Vec<String>>();
//assert_eq!(names2, names);
2017-09-24 09:08:00 +08:00
}
#[test]
fn test_root_dir_fat12() {
call_with_fs(&test_root_dir, FAT12_IMG)
2017-09-24 09:08:00 +08:00
}
#[test]
fn test_root_dir_fat16() {
call_with_fs(&test_root_dir, FAT16_IMG)
2017-09-24 09:08:00 +08:00
}
#[test]
fn test_root_dir_fat32() {
call_with_fs(&test_root_dir, FAT32_IMG)
2017-09-24 09:08:00 +08:00
}
fn test_read_seek_short_file(fs: FatFileSystem) {
2017-09-24 09:08:00 +08:00
let mut root_dir = fs.root_dir();
let mut short_file = root_dir.open_file("short.txt").unwrap();
2017-09-24 09:08:00 +08:00
let mut buf = Vec::new();
short_file.read_to_end(&mut buf).unwrap();
assert_eq!(str::from_utf8(&buf).unwrap(), TEST_TEXT);
2017-09-24 04:22:25 +08:00
2017-09-24 09:08:00 +08:00
short_file.seek(SeekFrom::Start(5)).unwrap();
let mut buf2 = [0; 5];
short_file.read_exact(&mut buf2).unwrap();
assert_eq!(str::from_utf8(&buf2).unwrap(), &TEST_TEXT[5..10]);
}
#[test]
fn test_read_seek_short_file_fat12() {
call_with_fs(&test_read_seek_short_file, FAT12_IMG)
2017-09-24 09:08:00 +08:00
}
#[test]
fn test_read_seek_short_file_fat16() {
call_with_fs(&test_read_seek_short_file, FAT16_IMG)
2017-09-24 09:08:00 +08:00
}
#[test]
fn test_read_seek_short_file_fat32() {
call_with_fs(&test_read_seek_short_file, FAT32_IMG)
2017-09-24 09:08:00 +08:00
}
fn test_read_long_file(fs: FatFileSystem) {
2017-09-24 09:08:00 +08:00
let mut root_dir = fs.root_dir();
let mut long_file = root_dir.open_file("long.txt").unwrap();
2017-09-24 09:08:00 +08:00
let mut buf = Vec::new();
long_file.read_to_end(&mut buf).unwrap();
assert_eq!(str::from_utf8(&buf).unwrap(), TEST_TEXT.repeat(1000));
2017-09-24 06:05:43 +08:00
2017-09-24 09:08:00 +08:00
long_file.seek(SeekFrom::Start(2017)).unwrap();
buf.clear();
let mut buf2 = [0; 10];
long_file.read_exact(&mut buf2).unwrap();
assert_eq!(str::from_utf8(&buf2).unwrap(), &TEST_TEXT.repeat(1000)[2017..2027]);
}
#[test]
fn test_read_long_file_fat12() {
call_with_fs(&test_read_long_file, FAT12_IMG)
2017-09-24 09:08:00 +08:00
}
#[test]
fn test_read_long_file_fat16() {
call_with_fs(&test_read_long_file, FAT16_IMG)
2017-09-24 09:08:00 +08:00
}
#[test]
fn test_read_long_file_fat32() {
call_with_fs(&test_read_long_file, FAT32_IMG)
2017-09-24 09:08:00 +08:00
}
fn test_get_dir_by_path(fs: FatFileSystem) {
2017-09-24 09:08:00 +08:00
let mut root_dir = fs.root_dir();
let dir = root_dir.open_dir("very/long/path/").unwrap();
let names = dir.map(|r| r.unwrap().file_name()).collect::<Vec<String>>();
assert_eq!(names, [".", "..", "test.txt"]);
2017-09-24 09:08:00 +08:00
}
#[test]
fn test_get_dir_by_path_fat12() {
call_with_fs(&test_get_dir_by_path, FAT12_IMG)
2017-09-24 09:08:00 +08:00
}
#[test]
fn test_get_dir_by_path_fat16() {
call_with_fs(&test_get_dir_by_path, FAT16_IMG)
2017-09-24 09:08:00 +08:00
}
#[test]
fn test_get_dir_by_path_fat32() {
call_with_fs(&test_get_dir_by_path, FAT32_IMG)
2017-09-24 09:08:00 +08:00
}
fn test_get_file_by_path(fs: FatFileSystem) {
2017-09-24 09:08:00 +08:00
let mut root_dir = fs.root_dir();
let mut file = root_dir.open_file("very/long/path/test.txt").unwrap();
let mut buf = Vec::new();
file.read_to_end(&mut buf).unwrap();
assert_eq!(str::from_utf8(&buf).unwrap(), TEST_TEXT);
let mut file = root_dir.open_file("very-long-dir-name/very-long-file-name.txt").unwrap();
2017-09-24 09:08:00 +08:00
let mut buf = Vec::new();
file.read_to_end(&mut buf).unwrap();
assert_eq!(str::from_utf8(&buf).unwrap(), TEST_TEXT);
}
#[test]
2017-09-24 09:08:00 +08:00
fn test_get_file_by_path_fat12() {
call_with_fs(&test_get_file_by_path, FAT12_IMG)
}
#[test]
2017-09-24 09:08:00 +08:00
fn test_get_file_by_path_fat16() {
call_with_fs(&test_get_file_by_path, FAT16_IMG)
}
#[test]
2017-09-24 09:08:00 +08:00
fn test_get_file_by_path_fat32() {
call_with_fs(&test_get_file_by_path, FAT32_IMG)
2017-09-23 05:20:06 +08:00
}
fn test_volume_metadata(fs: FatFileSystem, fat_type: FatType) {
assert_eq!(fs.volume_id(), 0x12345678);
assert_eq!(fs.volume_label(), "Test!");
assert_eq!(fs.fat_type(), fat_type);
}
#[test]
fn test_volume_metadata_fat12() {
call_with_fs(&|fs| test_volume_metadata(fs, FatType::Fat12), FAT12_IMG)
}
#[test]
fn test_volume_metadata_fat16() {
call_with_fs(&|fs| test_volume_metadata(fs, FatType::Fat16), FAT16_IMG)
}
#[test]
fn test_volume_metadata_fat32() {
call_with_fs(&|fs| test_volume_metadata(fs, FatType::Fat32), FAT32_IMG)
}