diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/file_handler/file_strategies/file.rs | 223 |
1 files changed, 116 insertions, 107 deletions
diff --git a/src/file_handler/file_strategies/file.rs b/src/file_handler/file_strategies/file.rs index 5faa689..7e95adf 100644 --- a/src/file_handler/file_strategies/file.rs +++ b/src/file_handler/file_strategies/file.rs @@ -42,140 +42,149 @@ impl FileHandlerStrategy for Strategy { #[cfg(test)] mod tests { - use super::*; use std::fs; - fn setup() -> Strategy { - Strategy {} - } + use super::*; - fn fixtures_dir() -> PathBuf { - PathBuf::from("tests/fixtures") - } + use test_utilities::*; - fn fixture_path(filename: &str) -> PathBuf { - fixtures_dir().join(filename) + #[test] + fn identifies_regular_files() { + let test_dir = setup_test_dir(); + create_test_file(&test_dir.join("image.png"), ""); + create_test_file(&test_dir.join("style.css"), ""); + let strategy = Strategy {}; + assert!(strategy.is(&test_dir.join("image.png"))); + assert!(strategy.is(&test_dir.join("style.css"))); + assert!(!strategy.is(&test_dir)); } - mod file_type_tests { - use super::*; - - #[test] - fn identifies_regular_files() { - let strategy = setup(); - assert!(strategy.is(&fixture_path("image.png"))); - assert!(strategy.is(&fixture_path("style.css"))); - assert!(!strategy.is(&fixtures_dir())); - } - - #[test] - fn identifies_file_type() { - let strategy = setup(); - assert!(matches!(strategy.identify(), FileType::File)); - } - - #[test] - fn handles_correct_file_type() { - let strategy = setup(); - assert!(strategy.can_handle(&FileType::File)); - assert!(!strategy.can_handle(&FileType::Layout)); - assert!(!strategy.can_handle(&FileType::Gemini)); - assert!(!strategy.can_handle(&FileType::Unknown)); - } + #[test] + fn identifies_file_type() { + let strategy = Strategy {}; + assert!(matches!(strategy.identify(), FileType::File)); } - mod file_handling_tests { - use super::*; - - #[test] - fn copies_single_file() { - let strategy = setup(); - let source = fixtures_dir(); - let output = fixture_path("output"); + #[test] + fn handles_correct_file_type() { + let strategy = Strategy {}; + assert!(strategy.can_handle(&FileType::File)); + assert!(!strategy.can_handle(&FileType::Layout)); + assert!(!strategy.can_handle(&FileType::Gemini)); + assert!(!strategy.can_handle(&FileType::Unknown)); + } - let file = File { - path: fixture_path("image.png"), - file_type: FileType::File, - }; + #[test] + fn copies_single_file() { + let test_dir = setup_test_dir(); + let source_dir = test_dir.join("source"); + let output_dir = test_dir.join("output"); + create_dir_all(&source_dir) + .expect("Could not create source test directory"); + create_dir_all(&output_dir) + .expect("Could not create output test directory"); + create_test_file(&source_dir.join("image.png"), "A fish playing the banjo"); + let strategy = Strategy {}; - strategy.handle(&source, &output, &file); + let file = File { + path: source_dir.join("image.png"), + file_type: FileType::File, + }; - let copied_path = output.join("image.png"); - assert!(copied_path.exists()); + strategy.handle(&source_dir, &output_dir, &file); - // Verify file contents are identical - let original = fs::read(&file.path).unwrap(); - let copied = fs::read(&copied_path).unwrap(); - assert_eq!(original, copied); + let copied_path = &output_dir.join("image.png"); + assert!(copied_path.exists()); - // Cleanup - let _ = fs::remove_file(copied_path); - } - - #[test] - fn copies_nested_file() { - let strategy = setup(); - let source = fixtures_dir(); - let output = fixture_path("output"); + // Verify file contents are identical + let original = fs::read(&file.path).unwrap(); + let copied = fs::read(&copied_path).unwrap(); + assert_eq!(original, copied); + } - let file = File { - path: fixture_path("assets/style.css"), - file_type: FileType::File, - }; + #[test] + fn copies_nested_file() { + let test_dir = setup_test_dir(); + let source_dir = test_dir.join("source"); + let output_dir = test_dir.join("output"); + create_dir_all(&source_dir) + .expect("Could not create source test directory"); + create_dir_all(&output_dir) + .expect("Could not create output test directory"); + create_dir_all(&source_dir.join("nested")) + .expect("Could not create source test directory"); + create_test_file(&source_dir.join("nested/style.css"), "* { margin: 0; padding: 0 }"); + let strategy = Strategy {}; - strategy.handle(&source, &output, &file); + let file = File { + path: source_dir.join("nested/style.css"), + file_type: FileType::File, + }; - let copied_path = output.join("assets").join("style.css"); - assert!(copied_path.exists()); + strategy.handle(&source_dir, &output_dir, &file); - // Verify file contents are identical - let original = fs::read(&file.path).unwrap(); - let copied = fs::read(&copied_path).unwrap(); - assert_eq!(original, copied); + let copied_path = output_dir.join("nested/style.css"); + assert!(copied_path.exists()); - // Cleanup - let _ = fs::remove_file(copied_path); - let _ = fs::remove_dir(output.join("assets")); - } + // Verify file contents are identical + let original = fs::read(&file.path).unwrap(); + let copied = fs::read(&copied_path).unwrap(); + assert_eq!(original, copied); + } - #[test] - fn handle_html_copies_file() { - let strategy = setup(); - let source = fixtures_dir(); - let output = fixture_path("output_html"); + #[test] + fn handle_html_copies_file() { + let test_dir = setup_test_dir(); + let source_dir = test_dir.join("source"); + let output_dir = test_dir.join("output"); + create_dir_all(&source_dir) + .expect("Could not create source test directory"); + create_dir_all(&output_dir) + .expect("Could not create output test directory"); + create_test_file(&source_dir.join("image.png"), "A fish playing the banjo"); + let strategy = Strategy {}; - let file = File { - path: fixture_path("image.png"), - file_type: FileType::File, - }; + let file = File { + path: source_dir.join("image.png"), + file_type: FileType::File, + }; - strategy.handle_html(&source, &output, &file, "unused layout"); + strategy.handle_html(&source_dir, &output_dir, &file, "unused layout"); - let copied_path = output.join("image.png"); - assert!(copied_path.exists()); + let copied_path = &output_dir.join("image.png"); + assert!(copied_path.exists()); - // Cleanup - let _ = fs::remove_file(copied_path); - } + // Verify file contents are identical + let original = fs::read(&file.path).unwrap(); + let copied = fs::read(&copied_path).unwrap(); + assert_eq!(original, copied); + } - #[test] - fn handle_gemini_copies_file() { - let strategy = setup(); - let source = fixtures_dir(); - let output = fixture_path("output_gemini"); + #[test] + fn handle_gemini_copies_file() { + let test_dir = setup_test_dir(); + let source_dir = test_dir.join("source"); + let output_dir = test_dir.join("output"); + create_dir_all(&source_dir) + .expect("Could not create source test directory"); + create_dir_all(&output_dir) + .expect("Could not create output test directory"); + create_test_file(&source_dir.join("image.png"), "A fish playing the banjo"); + let strategy = Strategy {}; - let file = File { - path: fixture_path("image.png"), - file_type: FileType::File, - }; + let file = File { + path: source_dir.join("image.png"), + file_type: FileType::File, + }; - strategy.handle_gemini(&source, &output, &file); + strategy.handle_gemini(&source_dir, &output_dir, &file); - let copied_path = output.join("image.png"); - assert!(copied_path.exists()); + let copied_path = &output_dir.join("image.png"); + assert!(copied_path.exists()); - // Cleanup - let _ = fs::remove_file(copied_path); - } + // Verify file contents are identical + let original = fs::read(&file.path).unwrap(); + let copied = fs::read(&copied_path).unwrap(); + assert_eq!(original, copied); } } |