2019-12-07 05:18:12 +01:00
|
|
|
use core::ops::{Bound, Range, RangeFrom, RangeFull, RangeInclusive, RangeTo};
|
2014-06-28 22:57:36 +02:00
|
|
|
|
2014-12-13 04:58:48 +01:00
|
|
|
// Test the Range structs without the syntactic sugar.
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_range() {
|
2015-02-03 14:50:52 +01:00
|
|
|
let r = Range { start: 2, end: 10 };
|
|
|
|
let mut count = 0;
|
2014-12-13 04:58:48 +01:00
|
|
|
for (i, ri) in r.enumerate() {
|
2019-03-15 12:08:23 +01:00
|
|
|
assert_eq!(ri, i + 2);
|
2015-02-03 14:50:52 +01:00
|
|
|
assert!(ri >= 2 && ri < 10);
|
2014-12-16 04:25:33 +01:00
|
|
|
count += 1;
|
2014-12-13 04:58:48 +01:00
|
|
|
}
|
2019-03-15 12:08:23 +01:00
|
|
|
assert_eq!(count, 8);
|
2014-12-13 04:58:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_range_from() {
|
2015-02-03 14:50:52 +01:00
|
|
|
let r = RangeFrom { start: 2 };
|
|
|
|
let mut count = 0;
|
2014-12-13 04:58:48 +01:00
|
|
|
for (i, ri) in r.take(10).enumerate() {
|
2019-03-15 12:08:23 +01:00
|
|
|
assert_eq!(ri, i + 2);
|
2015-02-03 14:50:52 +01:00
|
|
|
assert!(ri >= 2 && ri < 12);
|
2014-12-16 04:25:33 +01:00
|
|
|
count += 1;
|
2014-12-13 04:58:48 +01:00
|
|
|
}
|
2019-03-15 12:08:23 +01:00
|
|
|
assert_eq!(count, 10);
|
2014-12-13 04:58:48 +01:00
|
|
|
}
|
|
|
|
|
2014-12-18 05:55:04 +01:00
|
|
|
#[test]
|
|
|
|
fn test_range_to() {
|
|
|
|
// Not much to test.
|
2015-02-03 14:50:52 +01:00
|
|
|
let _ = RangeTo { end: 42 };
|
2014-12-18 05:55:04 +01:00
|
|
|
}
|
|
|
|
|
2014-12-13 04:58:48 +01:00
|
|
|
#[test]
|
|
|
|
fn test_full_range() {
|
|
|
|
// Not much to test.
|
2015-01-28 06:16:00 +01:00
|
|
|
let _ = RangeFull;
|
2014-12-13 04:58:48 +01:00
|
|
|
}
|
2017-04-24 06:14:32 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_range_inclusive() {
|
2018-04-05 23:21:47 +02:00
|
|
|
let mut r = RangeInclusive::new(1i8, 2);
|
2017-04-24 06:14:32 +02:00
|
|
|
assert_eq!(r.next(), Some(1));
|
|
|
|
assert_eq!(r.next(), Some(2));
|
|
|
|
assert_eq!(r.next(), None);
|
|
|
|
|
2018-04-05 23:21:47 +02:00
|
|
|
r = RangeInclusive::new(127i8, 127);
|
2017-04-24 06:14:32 +02:00
|
|
|
assert_eq!(r.next(), Some(127));
|
|
|
|
assert_eq!(r.next(), None);
|
|
|
|
|
2018-04-05 23:21:47 +02:00
|
|
|
r = RangeInclusive::new(-128i8, -128);
|
2017-04-24 06:14:32 +02:00
|
|
|
assert_eq!(r.next_back(), Some(-128));
|
|
|
|
assert_eq!(r.next_back(), None);
|
2017-05-21 14:03:49 +02:00
|
|
|
|
|
|
|
// degenerate
|
2018-04-05 23:21:47 +02:00
|
|
|
r = RangeInclusive::new(1, -1);
|
2017-05-21 14:03:49 +02:00
|
|
|
assert_eq!(r.size_hint(), (0, Some(0)));
|
|
|
|
assert_eq!(r.next(), None);
|
2017-12-29 19:25:40 +01:00
|
|
|
}
|
2018-02-09 10:47:18 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_range_is_empty() {
|
2019-12-07 05:18:12 +01:00
|
|
|
assert!(!(0.0..10.0).is_empty());
|
|
|
|
assert!((-0.0..0.0).is_empty());
|
|
|
|
assert!((10.0..0.0).is_empty());
|
2018-02-09 10:47:18 +01:00
|
|
|
|
2020-04-06 22:44:51 +02:00
|
|
|
assert!(!(f32::NEG_INFINITY..f32::INFINITY).is_empty());
|
|
|
|
assert!((f32::EPSILON..f32::NAN).is_empty());
|
|
|
|
assert!((f32::NAN..f32::EPSILON).is_empty());
|
|
|
|
assert!((f32::NAN..f32::NAN).is_empty());
|
2018-02-09 10:47:18 +01:00
|
|
|
|
2019-12-07 05:18:12 +01:00
|
|
|
assert!(!(0.0..=10.0).is_empty());
|
|
|
|
assert!(!(-0.0..=0.0).is_empty());
|
|
|
|
assert!((10.0..=0.0).is_empty());
|
2018-02-09 10:47:18 +01:00
|
|
|
|
2020-04-06 22:44:51 +02:00
|
|
|
assert!(!(f32::NEG_INFINITY..=f32::INFINITY).is_empty());
|
|
|
|
assert!((f32::EPSILON..=f32::NAN).is_empty());
|
|
|
|
assert!((f32::NAN..=f32::EPSILON).is_empty());
|
|
|
|
assert!((f32::NAN..=f32::NAN).is_empty());
|
2018-02-09 11:11:04 +01:00
|
|
|
}
|
2019-05-31 18:36:37 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_bound_cloned_unbounded() {
|
|
|
|
assert_eq!(Bound::<&u32>::Unbounded.cloned(), Bound::Unbounded);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_bound_cloned_included() {
|
|
|
|
assert_eq!(Bound::Included(&3).cloned(), Bound::Included(3));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_bound_cloned_excluded() {
|
|
|
|
assert_eq!(Bound::Excluded(&3).cloned(), Bound::Excluded(3));
|
|
|
|
}
|