numf/tests/format.rs

242 lines
6.5 KiB
Rust
Raw Normal View History

2024-05-12 20:10:58 +02:00
use numf::format::*;
#[test]
fn format() {
let options = FormatOptions::default();
assert_eq!(Format::Dec.format(1337, &options), "1337");
2024-05-12 20:21:54 +02:00
assert_eq!(
Format::Dec.format(u128::MAX, &options),
format!("{}", u128::MAX)
);
2024-05-12 20:10:58 +02:00
assert_eq!(Format::Hex.format(0x1337, &options), "1337");
2024-05-12 20:21:54 +02:00
assert_eq!(
Format::Hex.format(u128::MAX, &options),
format!("{:X}", u128::MAX)
);
2024-05-12 20:10:58 +02:00
2024-05-12 20:21:54 +02:00
assert_eq!(
Format::Bin.format(0b1010001001010010010100111, &options),
"1010001001010010010100111"
);
assert_eq!(
Format::Bin.format(u128::MAX, &options),
format!("{:b}", u128::MAX)
);
2024-05-12 20:10:58 +02:00
assert_eq!(Format::Octal.format(0o13377331, &options), "13377331");
2024-05-12 20:21:54 +02:00
assert_eq!(
Format::Octal.format(u128::MAX, &options),
format!("{:o}", u128::MAX)
);
2024-05-12 20:10:58 +02:00
assert_eq!(Format::Base32.format(0x41414242, &options), "IFAUEQQ=");
2024-05-12 20:21:54 +02:00
assert_eq!(
Format::Base32.format(0x4141414141414141, &options),
"IFAUCQKBIFAUC==="
);
2024-05-12 20:10:58 +02:00
assert_eq!(Format::Base64.format(0x41414242, &options), "QUFCQg==");
2024-05-12 20:21:54 +02:00
assert_eq!(
Format::Base64.format(0x4141414141414141, &options),
"QUFBQUFBQUE="
);
2024-05-12 20:10:58 +02:00
}
2024-05-12 20:20:36 +02:00
#[test]
fn format_padding() {
let mut options = FormatOptions::default();
options.set_padding(true);
assert_eq!(Format::Dec.format(1337, &options), "1337");
2024-05-12 20:21:54 +02:00
assert_eq!(
Format::Dec.format(u128::MAX, &options),
format!("{}", u128::MAX)
);
2024-05-12 20:20:36 +02:00
assert_eq!(Format::Hex.format(0xFFF, &options), "0FFF");
assert_eq!(Format::Hex.format(0xFFFF, &options), "FFFF");
2024-05-12 20:21:54 +02:00
assert_eq!(
Format::Hex.format(u128::MAX, &options),
format!("{:X}", u128::MAX)
);
2024-05-12 20:20:36 +02:00
2024-05-12 20:21:54 +02:00
assert_eq!(
Format::Bin.format(0b11110000_00001111, &options),
"1111000000001111"
);
assert_eq!(
Format::Bin.format(0b110000_00001111, &options),
"0011000000001111"
);
assert_eq!(
Format::Bin.format(u128::MAX, &options),
format!("{:b}", u128::MAX)
);
2024-05-12 20:20:36 +02:00
assert_eq!(Format::Octal.format(0o13377331, &options), "13377331");
2024-05-12 20:21:54 +02:00
assert_eq!(
Format::Octal.format(u128::MAX, &options),
format!("{:o}", u128::MAX)
);
2024-05-12 20:20:36 +02:00
assert_eq!(Format::Base32.format(0x41414242, &options), "IFAUEQQ=");
2024-05-12 20:21:54 +02:00
assert_eq!(
Format::Base32.format(0x4141414141414141, &options),
"IFAUCQKBIFAUC==="
);
2024-05-12 20:20:36 +02:00
assert_eq!(Format::Base64.format(0x41414242, &options), "QUFCQg==");
2024-05-12 20:21:54 +02:00
assert_eq!(
Format::Base64.format(0x4141414141414141, &options),
"QUFBQUFBQUE="
);
2024-05-12 20:20:36 +02:00
}
2024-05-12 20:23:04 +02:00
#[test]
fn format_prefix() {
let mut options = FormatOptions::default();
options.set_prefix(true);
assert_eq!(Format::Dec.format(1337, &options), "0d1337");
2024-05-12 20:23:47 +02:00
assert_eq!(
Format::Dec.format(u128::MAX, &options),
format!("0d{}", u128::MAX)
);
2024-05-12 20:23:04 +02:00
assert_eq!(Format::Hex.format(0x1337, &options), "0x1337");
2024-05-12 20:23:47 +02:00
assert_eq!(
Format::Hex.format(u128::MAX, &options),
format!("0x{:X}", u128::MAX)
);
2024-05-12 20:23:04 +02:00
2024-05-12 20:23:47 +02:00
assert_eq!(
Format::Bin.format(0b1010001001010010010100111, &options),
"0b1010001001010010010100111"
);
assert_eq!(
Format::Bin.format(u128::MAX, &options),
format!("0b{:b}", u128::MAX)
);
2024-05-12 20:23:04 +02:00
assert_eq!(Format::Octal.format(0o13377331, &options), "0o13377331");
2024-05-12 20:23:47 +02:00
assert_eq!(
Format::Octal.format(u128::MAX, &options),
format!("0o{:o}", u128::MAX)
);
2024-05-12 20:23:04 +02:00
assert_eq!(Format::Base32.format(0x41414242, &options), "032sIFAUEQQ=");
2024-05-12 20:23:47 +02:00
assert_eq!(
Format::Base32.format(0x4141414141414141, &options),
"032sIFAUCQKBIFAUC==="
);
2024-05-12 20:23:04 +02:00
assert_eq!(Format::Base64.format(0x41414242, &options), "0sQUFCQg==");
2024-05-12 20:23:47 +02:00
assert_eq!(
Format::Base64.format(0x4141414141414141, &options),
"0sQUFBQUFBQUE="
);
2024-05-12 20:23:04 +02:00
}
2024-05-12 20:25:48 +02:00
#[test]
fn format_padded_prefix() {
let mut options = FormatOptions::default();
options.set_prefix(true);
options.set_padding(true);
assert_eq!(Format::Dec.format(1337, &options), "0d1337");
assert_eq!(
Format::Dec.format(u128::MAX, &options),
format!("0d{}", u128::MAX)
);
assert_eq!(Format::Hex.format(0xFFF, &options), "0x0FFF");
assert_eq!(Format::Hex.format(0xFFFF, &options), "0xFFFF");
assert_eq!(
Format::Hex.format(u128::MAX, &options),
format!("0x{:X}", u128::MAX)
);
assert_eq!(
Format::Bin.format(0b11110000_00001111, &options),
"0b1111000000001111"
);
assert_eq!(
Format::Bin.format(0b110000_00001111, &options),
"0b0011000000001111"
);
assert_eq!(
Format::Bin.format(u128::MAX, &options),
format!("0b{:b}", u128::MAX)
);
assert_eq!(Format::Octal.format(0o13377331, &options), "0o13377331");
assert_eq!(
Format::Octal.format(u128::MAX, &options),
format!("0o{:o}", u128::MAX)
);
assert_eq!(Format::Base32.format(0x41414242, &options), "032sIFAUEQQ=");
assert_eq!(
Format::Base32.format(0x4141414141414141, &options),
"032sIFAUCQKBIFAUC==="
);
assert_eq!(Format::Base64.format(0x41414242, &options), "0sQUFCQg==");
assert_eq!(
Format::Base64.format(0x4141414141414141, &options),
"0sQUFBQUFBQUE="
);
}
2024-05-12 20:29:40 +02:00
#[test]
fn set_format_checker() {
let mut options = FormatOptions::default();
assert_eq!(options.format(), Format::Hex);
options.set_format(Format::Base32);
assert_eq!(options.format(), Format::Base32);
options.set_format(Format::Base64);
assert_eq!(options.format(), Format::Base64);
}
2024-05-13 13:39:56 +02:00
#[test]
fn parser_dec() {
assert_eq!(numf_parser::<u32>("1337").unwrap(), 1337);
assert_eq!(numf_parser::<u32>("0d1337").unwrap(), 1337);
2024-05-13 13:39:56 +02:00
}
#[test]
fn parser_bin() {
assert_eq!(numf_parser::<u32>("0b11001").unwrap(), 0b11001);
assert_eq!(numf_parser::<u32>("0b11001").unwrap(), 0b11001);
2024-05-13 13:39:56 +02:00
}
#[test]
fn parser_hex() {
assert_eq!(numf_parser::<u32>("0xdeadbeef").unwrap(), 0xdeadbeef);
2024-05-13 13:39:56 +02:00
}
#[test]
fn parser_oct() {
assert_eq!(numf_parser::<u32>("0o771171").unwrap(), 0o771171);
2024-05-13 13:39:56 +02:00
}
#[test]
fn parser_b64() {
assert_eq!(numf_parser::<u32>("0sQUFCQg==").unwrap(), 0x41414242);
2024-05-13 13:39:56 +02:00
}
#[test]
fn parser_b32() {
assert_eq!(numf_parser::<u32>("032sIFAUEQQ=").unwrap(), 0x41414242);
}
#[test]
fn parser_generics() {
assert_eq!(numf_parser::<u8>("55").unwrap(), 55);
assert_eq!(numf_parser::<u16>("55").unwrap(), 55);
assert_eq!(numf_parser::<u32>("55").unwrap(), 55);
assert_eq!(numf_parser::<u64>("55").unwrap(), 55);
assert_eq!(numf_parser::<u128>("55").unwrap(), 55);
2024-05-13 13:39:56 +02:00
}