This repository was archived by the owner on Apr 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathfrom_u8.rs
111 lines (102 loc) · 2.48 KB
/
from_u8.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
mod from_u8 {
extern crate tree_magic;
macro_rules! convmime {
($x:expr) => {$x.parse().unwrap()}
}
///Image tests
#[test]
fn image_gif() {
assert_eq!(
tree_magic::from_u8(include_bytes!("image/gif")),
convmime!("image/gif")
);
}
#[test]
fn image_png() {
assert_eq!(
tree_magic::from_u8(include_bytes!("image/png")),
convmime!("image/png")
);
}
#[test]
// GNU file reports image/x-ms-bmp
fn image_bmp() {
assert_eq!(
tree_magic::from_u8(include_bytes!("image/bmp")),
convmime!("image/bmp")
);
}
#[test]
fn image_tiff() {
assert_eq!(
tree_magic::from_u8(include_bytes!("image/tiff")),
convmime!("image/tiff")
);
}
#[test]
fn image_x_portable_bitmap() {
assert_eq!(
tree_magic::from_u8(include_bytes!("image/x-portable-bitmap")),
convmime!("image/x-portable-bitmap")
);
}
#[test]
fn image_x_pcx() {
assert_eq!(
tree_magic::from_u8(include_bytes!("image/x-pcx")),
convmime!("image/vnd.zbrush.pcx")
);
}
#[test]
fn image_x_tga() {
assert_eq!(
tree_magic::from_u8(include_bytes!("image/x-tga")),
convmime!("image/x-tga")
);
}
/// Archive tests
#[test]
fn application_tar() {
assert_eq!(
tree_magic::from_u8(include_bytes!("application/x-tar")),
convmime!("application/x-tar")
);
}
#[test]
fn application_x_7z() {
assert_eq!(
tree_magic::from_u8(include_bytes!("application/x-7z-compressed")),
convmime!("application/x-7z-compressed")
);
}
#[test]
fn application_zip() {
assert_eq!(
tree_magic::from_u8(include_bytes!("application/zip")),
convmime!("application/zip")
);
}
/// Text tests
#[test]
fn text_plain() {
assert_eq!(
tree_magic::from_u8(include_bytes!("text/plain")),
convmime!("text/plain")
);
}
// Audio tests
#[test]
fn audio_flac() {
assert_eq!(
tree_magic::from_u8(include_bytes!("audio/flac")),
convmime!("audio/flac")
);
}
#[test]
fn audio_mpeg() {
assert_eq!(
tree_magic::from_u8(include_bytes!("audio/mpeg")),
convmime!("audio/mpeg")
);
}
}