Merge branch 'feature/end-to-end-tests-only' into feature/supported-methods
This commit is contained in:
commit
c5cfb27b6c
2 changed files with 19 additions and 20 deletions
|
@ -130,23 +130,8 @@ impl fmt::Display for CompressionMethod {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
/// The compression methods which have been implemented.
|
||||||
mod test {
|
pub const SUPPORTED_METHODS: &[CompressionMethod] = &[
|
||||||
use super::CompressionMethod;
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn from_eq_to() {
|
|
||||||
for v in 0..(u16::MAX as u32 + 1) {
|
|
||||||
#[allow(deprecated)]
|
|
||||||
let from = CompressionMethod::from_u16(v as u16);
|
|
||||||
#[allow(deprecated)]
|
|
||||||
let to = from.to_u16() as u32;
|
|
||||||
assert_eq!(v, to);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn methods() -> Vec<CompressionMethod> {
|
|
||||||
vec![
|
|
||||||
CompressionMethod::Stored,
|
CompressionMethod::Stored,
|
||||||
#[cfg(any(
|
#[cfg(any(
|
||||||
feature = "deflate",
|
feature = "deflate",
|
||||||
|
@ -158,7 +143,21 @@ mod test {
|
||||||
CompressionMethod::Bzip2,
|
CompressionMethod::Bzip2,
|
||||||
#[cfg(feature = "zstd")]
|
#[cfg(feature = "zstd")]
|
||||||
CompressionMethod::Zstd,
|
CompressionMethod::Zstd,
|
||||||
]
|
];
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod test {
|
||||||
|
use super::{CompressionMethod, SUPPORTED_METHODS};
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn from_eq_to() {
|
||||||
|
for v in 0..(u16::MAX as u32 + 1) {
|
||||||
|
#[allow(deprecated)]
|
||||||
|
let from = CompressionMethod::from_u16(v as u16);
|
||||||
|
#[allow(deprecated)]
|
||||||
|
let to = from.to_u16() as u32;
|
||||||
|
assert_eq!(v, to);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
@ -173,7 +172,7 @@ mod test {
|
||||||
assert_eq!(to, back);
|
assert_eq!(to, back);
|
||||||
}
|
}
|
||||||
|
|
||||||
for method in methods() {
|
for &method in SUPPORTED_METHODS {
|
||||||
check_match(method);
|
check_match(method);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -186,7 +185,7 @@ mod test {
|
||||||
assert_eq!(debug_str, display_str);
|
assert_eq!(debug_str, display_str);
|
||||||
}
|
}
|
||||||
|
|
||||||
for method in methods() {
|
for &method in SUPPORTED_METHODS {
|
||||||
check_match(method);
|
check_match(method);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
#![warn(missing_docs)]
|
#![warn(missing_docs)]
|
||||||
|
|
||||||
pub use crate::compression::CompressionMethod;
|
pub use crate::compression::{CompressionMethod, SUPPORTED_METHODS};
|
||||||
pub use crate::read::ZipArchive;
|
pub use crate::read::ZipArchive;
|
||||||
pub use crate::types::DateTime;
|
pub use crate::types::DateTime;
|
||||||
pub use crate::write::ZipWriter;
|
pub use crate::write::ZipWriter;
|
||||||
|
|
Loading…
Add table
Reference in a new issue