chore: format tests
cargo devel CI / cargo CI (push) Successful in 1m14s Details

This commit is contained in:
Christoph J. Scherr 2024-05-12 20:23:47 +02:00
parent b681a6b04d
commit 1f91710bda
1 changed files with 28 additions and 8 deletions

View File

@ -93,27 +93,47 @@ fn format_padding() {
); );
} }
#[test] #[test]
fn format_prefix() { fn format_prefix() {
let mut options = FormatOptions::default(); let mut options = FormatOptions::default();
options.set_prefix(true); options.set_prefix(true);
assert_eq!(Format::Dec.format(1337, &options), "0d1337"); assert_eq!(Format::Dec.format(1337, &options), "0d1337");
assert_eq!(Format::Dec.format(u128::MAX, &options), format!("0d{}", u128::MAX)); assert_eq!(
Format::Dec.format(u128::MAX, &options),
format!("0d{}", u128::MAX)
);
assert_eq!(Format::Hex.format(0x1337, &options), "0x1337"); assert_eq!(Format::Hex.format(0x1337, &options), "0x1337");
assert_eq!(Format::Hex.format(u128::MAX, &options), format!("0x{:X}", u128::MAX)); assert_eq!(
Format::Hex.format(u128::MAX, &options),
format!("0x{:X}", u128::MAX)
);
assert_eq!(Format::Bin.format(0b1010001001010010010100111, &options), "0b1010001001010010010100111"); assert_eq!(
assert_eq!(Format::Bin.format(u128::MAX, &options), format!("0b{:b}", u128::MAX)); Format::Bin.format(0b1010001001010010010100111, &options),
"0b1010001001010010010100111"
);
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(0o13377331, &options), "0o13377331");
assert_eq!(Format::Octal.format(u128::MAX, &options), format!("0o{:o}", u128::MAX)); 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(0x41414242, &options), "032sIFAUEQQ=");
assert_eq!(Format::Base32.format(0x4141414141414141, &options), "032sIFAUCQKBIFAUC==="); assert_eq!(
Format::Base32.format(0x4141414141414141, &options),
"032sIFAUCQKBIFAUC==="
);
assert_eq!(Format::Base64.format(0x41414242, &options), "0sQUFCQg=="); assert_eq!(Format::Base64.format(0x41414242, &options), "0sQUFCQg==");
assert_eq!(Format::Base64.format(0x4141414141414141, &options), "0sQUFBQUFBQUE="); assert_eq!(
Format::Base64.format(0x4141414141414141, &options),
"0sQUFBQUFBQUE="
);
} }