mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-12-14 06:32:33 +00:00
50 lines
1.1 KiB
Rust
50 lines
1.1 KiB
Rust
use lofty::{MimeType, Picture};
|
|
|
|
use std::fs::File;
|
|
use std::io::Read;
|
|
|
|
fn get_buf(path: &str) -> Vec<u8> {
|
|
let mut f = File::open(path).unwrap();
|
|
|
|
let mut buf = Vec::new();
|
|
f.read_to_end(&mut buf).unwrap();
|
|
|
|
buf
|
|
}
|
|
|
|
#[test]
|
|
fn picture_from_reader_png() {
|
|
let pic = Picture::from_reader(&mut &*get_buf("tests/picture/assets/png_640x628.png")).unwrap();
|
|
|
|
assert_eq!(pic.mime_type(), &MimeType::Png);
|
|
}
|
|
|
|
#[test]
|
|
fn picture_from_reader_jpeg() {
|
|
let pic =
|
|
Picture::from_reader(&mut &*get_buf("tests/picture/assets/jpeg_640x628.jpg")).unwrap();
|
|
|
|
assert_eq!(pic.mime_type(), &MimeType::Jpeg);
|
|
}
|
|
|
|
#[test]
|
|
fn picture_from_reader_bmp() {
|
|
let pic = Picture::from_reader(&mut &*get_buf("tests/picture/assets/bmp_640x628.bmp")).unwrap();
|
|
|
|
assert_eq!(pic.mime_type(), &MimeType::Bmp);
|
|
}
|
|
|
|
#[test]
|
|
fn picture_from_reader_gif() {
|
|
let pic = Picture::from_reader(&mut &*get_buf("tests/picture/assets/gif_640x628.gif")).unwrap();
|
|
|
|
assert_eq!(pic.mime_type(), &MimeType::Gif);
|
|
}
|
|
|
|
#[test]
|
|
fn picture_from_reader_tiff() {
|
|
let pic =
|
|
Picture::from_reader(&mut &*get_buf("tests/picture/assets/tiff_640x628.tiff")).unwrap();
|
|
|
|
assert_eq!(pic.mime_type(), &MimeType::Tiff);
|
|
}
|