itoa/tests/test.rs

48 lines
1.3 KiB
Rust
Raw Normal View History

2017-09-12 16:52:24 -04:00
#![cfg_attr(feature = "i128", feature(i128_type, i128))]
2017-09-16 17:22:05 -04:00
#![cfg_attr(feature = "cargo-clippy", allow(cast_lossless, string_lit_as_bytes))]
2016-06-25 17:32:23 -04:00
#![allow(non_snake_case)]
extern crate itoa;
macro_rules! test {
2017-09-12 16:52:24 -04:00
(
2016-06-25 17:32:23 -04:00
$(
2017-09-12 16:52:24 -04:00
$(#[$attr:meta])*
$name:ident($value:expr, $expected:expr)
),*
) => {
$(
$(#[$attr])*
2016-06-25 17:32:23 -04:00
#[test]
fn $name() {
2017-09-12 16:52:24 -04:00
let mut buf = [b'\0'; 40];
let len = itoa::write(&mut buf[..], $value).unwrap();
assert_eq!(&buf[0..len], $expected.as_bytes());
let mut s = String::new();
itoa::fmt(&mut s, $value).unwrap();
assert_eq!(s, $expected);
2016-06-25 17:32:23 -04:00
}
)*
}
}
2017-09-12 16:52:24 -04:00
test!{
test_u64_0(0u64, "0"),
test_u64_half(<u32>::max_value() as u64, "4294967295"),
test_u64_max(<u64>::max_value(), "18446744073709551615"),
test_i64_min(<i64>::min_value(), "-9223372036854775808"),
test_i16_0(0i16, "0"),
test_i16_min(<i16>::min_value(), "-32768"),
2016-06-25 17:32:23 -04:00
2017-09-12 16:52:24 -04:00
#[cfg(feature = "i128")]
test_u128_0(0u128, "0"),
#[cfg(feature = "i128")]
test_u128_max(<u128>::max_value(), "340282366920938463463374607431768211455"),
#[cfg(feature = "i128")]
test_i128_min(<i128>::min_value(), "-170141183460469231731687303715884105728")
}