2021-06-08 07:38:29 +00:00
|
|
|
use std::env;
|
|
|
|
use std::path::{PathBuf, MAIN_SEPARATOR as SLASH};
|
|
|
|
|
|
|
|
use lazy_static::lazy_static;
|
|
|
|
|
|
|
|
use config::Config;
|
|
|
|
use imageproc::{assert_processed_path_matches, ImageMetaResponse, Processor};
|
|
|
|
use utils::fs as ufs;
|
|
|
|
|
|
|
|
static CONFIG: &str = r#"
|
|
|
|
title = "imageproc integration tests"
|
|
|
|
base_url = "https://example.com"
|
|
|
|
compile_sass = false
|
|
|
|
build_search_index = false
|
|
|
|
|
|
|
|
[markdown]
|
|
|
|
highlight_code = false
|
|
|
|
"#;
|
|
|
|
|
|
|
|
lazy_static! {
|
|
|
|
static ref TEST_IMGS: PathBuf =
|
|
|
|
[env!("CARGO_MANIFEST_DIR"), "tests", "test_imgs"].iter().collect();
|
|
|
|
static ref TMPDIR: PathBuf = {
|
|
|
|
let tmpdir = option_env!("CARGO_TARGET_TMPDIR").map(PathBuf::from).unwrap_or_else(|| {
|
|
|
|
env::current_exe().unwrap().parent().unwrap().parent().unwrap().join("tmpdir")
|
|
|
|
});
|
|
|
|
ufs::ensure_directory_exists(&tmpdir).unwrap();
|
|
|
|
tmpdir
|
|
|
|
};
|
|
|
|
static ref PROCESSED_PREFIX: String = format!("static{0}processed_images{0}", SLASH);
|
|
|
|
}
|
|
|
|
|
2021-08-18 07:36:51 +00:00
|
|
|
#[allow(clippy::too_many_arguments)]
|
2021-06-08 07:38:29 +00:00
|
|
|
fn image_op_test(
|
|
|
|
source_img: &str,
|
|
|
|
op: &str,
|
|
|
|
width: Option<u32>,
|
|
|
|
height: Option<u32>,
|
|
|
|
format: &str,
|
|
|
|
expect_ext: &str,
|
|
|
|
expect_width: u32,
|
|
|
|
expect_height: u32,
|
|
|
|
orig_width: u32,
|
|
|
|
orig_height: u32,
|
|
|
|
) {
|
|
|
|
let source_path = TEST_IMGS.join(source_img);
|
|
|
|
|
2021-08-18 07:36:51 +00:00
|
|
|
let config = Config::parse(CONFIG).unwrap();
|
2021-06-08 07:38:29 +00:00
|
|
|
let mut proc = Processor::new(TMPDIR.clone(), &config);
|
|
|
|
|
|
|
|
let resp =
|
|
|
|
proc.enqueue(source_img.into(), source_path, op, width, height, format, None).unwrap();
|
|
|
|
assert_processed_path_matches(&resp.url, "https://example.com/processed_images/", expect_ext);
|
|
|
|
assert_processed_path_matches(&resp.static_path, PROCESSED_PREFIX.as_str(), expect_ext);
|
|
|
|
assert_eq!(resp.width, expect_width);
|
|
|
|
assert_eq!(resp.height, expect_height);
|
|
|
|
assert_eq!(resp.orig_width, orig_width);
|
|
|
|
assert_eq!(resp.orig_height, orig_height);
|
|
|
|
|
|
|
|
proc.do_process().unwrap();
|
|
|
|
|
|
|
|
let processed_path = PathBuf::from(&resp.static_path);
|
|
|
|
let processed_size = imageproc::read_image_metadata(&TMPDIR.join(processed_path))
|
|
|
|
.map(|meta| (meta.width, meta.height))
|
|
|
|
.unwrap();
|
|
|
|
assert_eq!(processed_size, (expect_width, expect_height));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn image_meta_test(source_img: &str) -> ImageMetaResponse {
|
|
|
|
let source_path = TEST_IMGS.join(source_img);
|
|
|
|
imageproc::read_image_metadata(&source_path).unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn resize_image_scale() {
|
|
|
|
image_op_test("jpg.jpg", "scale", Some(150), Some(150), "auto", "jpg", 150, 150, 300, 380);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn resize_image_fit_width() {
|
|
|
|
image_op_test("jpg.jpg", "fit_width", Some(150), None, "auto", "jpg", 150, 190, 300, 380);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn resize_image_fit_height() {
|
|
|
|
image_op_test("webp.webp", "fit_height", None, Some(190), "auto", "jpg", 150, 190, 300, 380);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn resize_image_fit1() {
|
|
|
|
image_op_test("jpg.jpg", "fit", Some(150), Some(200), "auto", "jpg", 150, 190, 300, 380);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn resize_image_fit2() {
|
|
|
|
image_op_test("jpg.jpg", "fit", Some(160), Some(180), "auto", "jpg", 142, 180, 300, 380);
|
|
|
|
}
|
|
|
|
|
2021-07-07 09:15:37 +00:00
|
|
|
#[test]
|
|
|
|
fn resize_image_fit3() {
|
|
|
|
image_op_test("jpg.jpg", "fit", Some(400), Some(400), "auto", "jpg", 300, 380, 300, 380);
|
|
|
|
}
|
|
|
|
|
2021-06-08 07:38:29 +00:00
|
|
|
#[test]
|
|
|
|
fn resize_image_fill1() {
|
|
|
|
image_op_test("jpg.jpg", "fill", Some(100), Some(200), "auto", "jpg", 100, 200, 300, 380);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn resize_image_fill2() {
|
|
|
|
image_op_test("jpg.jpg", "fill", Some(200), Some(100), "auto", "jpg", 200, 100, 300, 380);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn resize_image_png_png() {
|
|
|
|
image_op_test("png.png", "scale", Some(150), Some(150), "auto", "png", 150, 150, 300, 380);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn resize_image_png_jpg() {
|
|
|
|
image_op_test("png.png", "scale", Some(150), Some(150), "jpg", "jpg", 150, 150, 300, 380);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn resize_image_png_webp() {
|
|
|
|
image_op_test("png.png", "scale", Some(150), Some(150), "webp", "webp", 150, 150, 300, 380);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn resize_image_webp_jpg() {
|
|
|
|
image_op_test("webp.webp", "scale", Some(150), Some(150), "auto", "jpg", 150, 150, 300, 380);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn read_image_metadata_jpg() {
|
|
|
|
assert_eq!(
|
|
|
|
image_meta_test("jpg.jpg"),
|
|
|
|
ImageMetaResponse { width: 300, height: 380, format: Some("jpg") }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn read_image_metadata_png() {
|
|
|
|
assert_eq!(
|
|
|
|
image_meta_test("png.png"),
|
|
|
|
ImageMetaResponse { width: 300, height: 380, format: Some("png") }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn read_image_metadata_svg() {
|
|
|
|
assert_eq!(
|
|
|
|
image_meta_test("svg.svg"),
|
|
|
|
ImageMetaResponse { width: 300, height: 300, format: Some("svg") }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn read_image_metadata_webp() {
|
|
|
|
assert_eq!(
|
|
|
|
image_meta_test("webp.webp"),
|
|
|
|
ImageMetaResponse { width: 300, height: 380, format: Some("webp") }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Test that hash remains the same if physical path is changed
|