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
112
113
114
115
116
117
118
119
120
121
122
#![cfg(feature = "zlib")]
pub mod decoder;
pub mod encoder;
#[cfg(test)]
mod tests {
use action::Action;
#[cfg(not(feature = "std"))]
use alloc::vec::Vec;
use rand::distributions::Standard;
use rand::{Rng, SeedableRng};
use rand_xorshift::XorShiftRng;
use traits::decoder::DecodeExt;
use traits::encoder::EncodeExt;
use zlib::decoder::ZlibDecoder;
use zlib::encoder::ZlibEncoder;
fn check(testarray: &[u8]) {
let encoded = testarray
.to_vec()
.encode(&mut ZlibEncoder::new(), Action::Finish)
.collect::<Result<Vec<_>, _>>();
let decoded = encoded
.unwrap()
.decode(&mut ZlibDecoder::new())
.collect::<Result<Vec<_>, _>>()
.unwrap();
assert_eq!(testarray.to_vec(), decoded);
}
#[test]
fn test_empty() {
check(&[]);
}
#[test]
fn test_unit() {
check(b"a");
}
#[test]
fn test_arr() {
check(b"aaaaaaaaaaa");
}
#[test]
fn test_std() {
check(b"aabbaabbaaabbbaaabbbaabbaabb");
}
#[test]
fn test_long() {
check(&(b"a".iter().cycle().take(260).cloned().collect::<Vec<u8>>()));
}
#[test]
fn test_multiblocks() {
let mut rng = XorShiftRng::from_seed([
0xDA, 0xE1, 0x4B, 0x0B, 0xFF, 0xC2, 0xFE, 0x64, 0x23, 0xFE, 0x3F,
0x51, 0x6D, 0x3E, 0xA2, 0xF3,
]);
check(&(rng.sample_iter(&Standard).take(323_742).collect::<Vec<_>>()));
}
#[test]
fn test_multiblocks2() {
let mut rng = XorShiftRng::from_seed([
0xDA, 0xE1, 0x4B, 0x0B, 0xFF, 0xC2, 0xFE, 0x64, 0x23, 0xFE, 0x3F,
0x51, 0x6D, 0x3E, 0xA2, 0xF3,
]);
check(&(rng.sample_iter(&Standard).take(323_742).collect::<Vec<_>>()));
}
#[test]
fn test_multiblocks3() {
let mut rng = XorShiftRng::from_seed([
0xDA, 0xE1, 0x4B, 0x0B, 0xFF, 0xC2, 0xFE, 0x64, 0x23, 0xFE, 0x3F,
0x51, 0x6D, 0x3E, 0xA2, 0xF3,
]);
check(
&(rng
.sample_iter(&Standard)
.take(0xF_FFFF)
.collect::<Vec<_>>()),
);
}
fn test_rand_with_len(len: usize) {
let mut rng = XorShiftRng::from_seed([
0xDA, 0xE1, 0x4B, 0x0B, 0xFF, 0xC2, 0xFE, 0x64, 0x23, 0xFE, 0x3F,
0x51, 0x6D, 0x3E, 0xA2, 0xF3,
]);
check(&(rng.sample_iter(&Standard).take(len).collect::<Vec<_>>()));
}
#[test]
fn test_multiblocks6() {
test_rand_with_len(6);
}
#[test]
fn test_multiblocks4() {
test_rand_with_len(0x10_000);
}
#[test]
fn test_multiblocks5() {
test_rand_with_len(0x10_0001);
}
}