rust/src/libcore/tests/nonzero.rs

146 lines
3.4 KiB
Rust
Raw Normal View History

use core::num::{NonZeroU32, NonZeroI32};
2014-12-23 14:52:02 -06:00
use core::option::Option;
use core::option::Option::{Some, None};
use std::mem::size_of;
#[test]
fn test_create_nonzero_instance() {
let _a = unsafe {
NonZeroU32::new_unchecked(21)
2014-12-23 14:52:02 -06:00
};
}
#[test]
fn test_size_nonzero_in_option() {
assert_eq!(size_of::<NonZeroU32>(), size_of::<Option<NonZeroU32>>());
assert_eq!(size_of::<NonZeroI32>(), size_of::<Option<NonZeroI32>>());
2014-12-23 14:52:02 -06:00
}
#[test]
fn test_match_on_nonzero_option() {
let a = Some(unsafe {
NonZeroU32::new_unchecked(42)
2014-12-23 14:52:02 -06:00
});
match a {
Some(val) => assert_eq!(val.get(), 42),
None => panic!("unexpected None while matching on Some(NonZeroU32(_))")
2014-12-23 14:52:02 -06:00
}
match unsafe { Some(NonZeroU32::new_unchecked(43)) } {
Some(val) => assert_eq!(val.get(), 43),
None => panic!("unexpected None while matching on Some(NonZeroU32(_))")
2014-12-23 14:52:02 -06:00
}
}
#[test]
fn test_match_option_empty_vec() {
let a: Option<Vec<isize>> = Some(vec![]);
2014-12-23 14:52:02 -06:00
match a {
None => panic!("unexpected None while matching on Some(vec![])"),
_ => {}
}
}
#[test]
fn test_match_option_vec() {
2015-01-25 15:05:03 -06:00
let a = Some(vec![1, 2, 3, 4]);
2014-12-23 14:52:02 -06:00
match a {
2015-02-24 12:15:45 -06:00
Some(v) => assert_eq!(v, [1, 2, 3, 4]),
2014-12-23 14:52:02 -06:00
None => panic!("unexpected None while matching on Some(vec![1, 2, 3, 4])")
}
}
#[test]
fn test_match_option_rc() {
use std::rc::Rc;
2015-01-25 15:05:03 -06:00
let five = Rc::new(5);
2014-12-23 14:52:02 -06:00
match Some(five) {
2015-01-25 15:05:03 -06:00
Some(r) => assert_eq!(*r, 5),
2014-12-23 14:52:02 -06:00
None => panic!("unexpected None while matching on Some(Rc::new(5))")
}
}
#[test]
fn test_match_option_arc() {
use std::sync::Arc;
2015-01-25 15:05:03 -06:00
let five = Arc::new(5);
2014-12-23 14:52:02 -06:00
match Some(five) {
2015-01-25 15:05:03 -06:00
Some(a) => assert_eq!(*a, 5),
2014-12-23 14:52:02 -06:00
None => panic!("unexpected None while matching on Some(Arc::new(5))")
}
}
#[test]
fn test_match_option_empty_string() {
let a = Some(String::new());
match a {
None => panic!("unexpected None while matching on Some(String::new())"),
_ => {}
}
}
#[test]
fn test_match_option_string() {
let five = "Five".to_string();
2014-12-23 14:52:02 -06:00
match Some(five) {
Some(s) => assert_eq!(s, "Five"),
None => panic!("unexpected None while matching on Some(String { ... })")
}
}
mod atom {
use core::num::NonZeroU32;
#[derive(PartialEq, Eq)]
pub struct Atom {
index: NonZeroU32, // private
}
pub const FOO_ATOM: Atom = Atom { index: unsafe { NonZeroU32::new_unchecked(7) } };
}
macro_rules! atom {
("foo") => { atom::FOO_ATOM }
}
#[test]
fn test_match_nonzero_const_pattern() {
match atom!("foo") {
// Using as a pattern is supported by the compiler:
atom!("foo") => {}
_ => panic!("Expected the const item as a pattern to match.")
}
}
#[test]
fn test_from_nonzero() {
let nz = NonZeroU32::new(1).unwrap();
let num: u32 = nz.into();
assert_eq!(num, 1u32);
}
#[test]
fn test_from_signed_nonzero() {
let nz = NonZeroI32::new(1).unwrap();
let num: i32 = nz.into();
assert_eq!(num, 1i32);
}
2019-02-25 00:09:16 -06:00
#[test]
fn test_from_str() {
assert_eq!(FromStr::from_str("123"), Ok(NonZeroU8::new(123).unwrap()));
assert_eq!(
FromStr::from_str("0"),
Err(ParseNonZeroIntError {
kind: NonZeroIntErrorKind::Zero
})
);
assert_eq!(
FromStr::from_str("-1",
Err(ParseNonZeroIntError {
kind: NonZeroIntErrorKind::Underflow
})
);
}