3 releases
0.1.2 | Nov 7, 2022 |
---|---|
0.1.1 | Nov 6, 2022 |
0.1.1-fix |
|
0.1.0 | Nov 5, 2022 |
#11 in #sub
33 downloads per month
Used in wireguard_tools_rehtt
16KB
281 lines
计算字节单位
#[cfg(test)]
mod tests {
use std::ops::Sub;
use crate::size::{add, ByteSize, ByteSizeUnit};
use std::str::FromStr;
use super::*;
#[test]
fn parse() {
assert_eq!(ByteSize::from_str("12.3 PB").unwrap().to_size(), ByteSize::pb(12.3).to_size());
assert_eq!(ByteSize::from_str("12.3 TB").unwrap().to_size(), ByteSize::tb(12.3).to_size());
assert_eq!(ByteSize::from_str("12.3 GB").unwrap().to_size(), ByteSize::gb(12.3).to_size());
assert_eq!(ByteSize::from_str("12.3 MB").unwrap().to_size(), ByteSize::mb(12.3).to_size());
assert_eq!(ByteSize::from_str("12.3 KB").unwrap().to_size(), ByteSize::kb(12.3).to_size());
assert_eq!(ByteSize::from_str("12.3 PiB").unwrap().to_size(), ByteSize::pib(12.3).to_size());
assert_eq!(ByteSize::from_str("12.3 TiB").unwrap().to_size(), ByteSize::tib(12.3).to_size());
assert_eq!(ByteSize::from_str("12.3 GiB").unwrap().to_size(), ByteSize::gib(12.3).to_size());
assert_eq!(ByteSize::from_str("12.3 MiB").unwrap().to_size(), ByteSize::mib(12.3).to_size());
assert_eq!(ByteSize::from_str("12.3 KiB").unwrap().to_size(), ByteSize::kib(12.3).to_size());
assert_eq!("12.3 PB",ByteSize::pb(12.3).to_pb().to_string())
}
#[test]
fn convert() {
assert_eq!(ByteSize::from_str("12.3 PB").unwrap().to_tb().to_string(), ByteSize::pb(12.3).to_tb().to_string());
// ...
}
#[test]
fn calculate(){
let a=ByteSize::gb(2.0);
let b=ByteSize::mb(1000.0);
assert_eq!(add(a,b).unwrap().to_size(),ByteSize::gb(3.0).to_size())
}
}
Record
0.1.2 添加Debug属性
0.1.1 调整文件结构,修复一些bug
0.1.0 初始化