2014-06-28 15:57:36 -05:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2017-04-23 23:14:32 -05:00
|
|
|
use core::ops::{Range, RangeFull, RangeFrom, RangeTo, RangeInclusive};
|
2014-06-28 15:57:36 -05:00
|
|
|
|
2014-12-12 21:58:48 -06:00
|
|
|
// Test the Range structs without the syntactic sugar.
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_range() {
|
2015-02-03 07:50:52 -06:00
|
|
|
let r = Range { start: 2, end: 10 };
|
|
|
|
let mut count = 0;
|
2014-12-12 21:58:48 -06:00
|
|
|
for (i, ri) in r.enumerate() {
|
|
|
|
assert!(ri == i + 2);
|
2015-02-03 07:50:52 -06:00
|
|
|
assert!(ri >= 2 && ri < 10);
|
2014-12-15 21:25:33 -06:00
|
|
|
count += 1;
|
2014-12-12 21:58:48 -06:00
|
|
|
}
|
2014-12-15 21:25:33 -06:00
|
|
|
assert!(count == 8);
|
2014-12-12 21:58:48 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_range_from() {
|
2015-02-03 07:50:52 -06:00
|
|
|
let r = RangeFrom { start: 2 };
|
|
|
|
let mut count = 0;
|
2014-12-12 21:58:48 -06:00
|
|
|
for (i, ri) in r.take(10).enumerate() {
|
|
|
|
assert!(ri == i + 2);
|
2015-02-03 07:50:52 -06:00
|
|
|
assert!(ri >= 2 && ri < 12);
|
2014-12-15 21:25:33 -06:00
|
|
|
count += 1;
|
2014-12-12 21:58:48 -06:00
|
|
|
}
|
2014-12-15 21:25:33 -06:00
|
|
|
assert!(count == 10);
|
2014-12-12 21:58:48 -06:00
|
|
|
}
|
|
|
|
|
2014-12-17 22:55:04 -06:00
|
|
|
#[test]
|
|
|
|
fn test_range_to() {
|
|
|
|
// Not much to test.
|
2015-02-03 07:50:52 -06:00
|
|
|
let _ = RangeTo { end: 42 };
|
2014-12-17 22:55:04 -06:00
|
|
|
}
|
|
|
|
|
2014-12-12 21:58:48 -06:00
|
|
|
#[test]
|
|
|
|
fn test_full_range() {
|
|
|
|
// Not much to test.
|
2015-01-27 23:16:00 -06:00
|
|
|
let _ = RangeFull;
|
2014-12-12 21:58:48 -06:00
|
|
|
}
|
2017-04-23 23:14:32 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_range_inclusive() {
|
|
|
|
let mut r = RangeInclusive { start: 1i8, end: 2 };
|
|
|
|
assert_eq!(r.next(), Some(1));
|
|
|
|
assert_eq!(r.next(), Some(2));
|
|
|
|
assert_eq!(r.next(), None);
|
|
|
|
|
|
|
|
r = RangeInclusive { start: 127i8, end: 127 };
|
|
|
|
assert_eq!(r.next(), Some(127));
|
|
|
|
assert_eq!(r.next(), None);
|
|
|
|
|
|
|
|
r = RangeInclusive { start: -128i8, end: -128 };
|
|
|
|
assert_eq!(r.next_back(), Some(-128));
|
|
|
|
assert_eq!(r.next_back(), None);
|
2017-05-21 07:03:49 -05:00
|
|
|
|
|
|
|
// degenerate
|
|
|
|
r = RangeInclusive { start: 1, end: -1 };
|
|
|
|
assert_eq!(r.size_hint(), (0, Some(0)));
|
|
|
|
assert_eq!(r.next(), None);
|
2017-12-29 12:25:40 -06:00
|
|
|
}
|
2018-02-09 03:47:18 -06:00
|
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_range_is_empty() {
|
|
|
|
use core::f32::*;
|
|
|
|
|
|
|
|
assert!(!(0.0 .. 10.0).is_empty());
|
|
|
|
assert!( (-0.0 .. 0.0).is_empty());
|
|
|
|
assert!( (10.0 .. 0.0).is_empty());
|
|
|
|
|
|
|
|
assert!(!(NEG_INFINITY .. INFINITY).is_empty());
|
|
|
|
assert!( (EPSILON .. NAN).is_empty());
|
|
|
|
assert!( (NAN .. EPSILON).is_empty());
|
|
|
|
assert!( (NAN .. NAN).is_empty());
|
|
|
|
|
|
|
|
assert!(!(0.0 ..= 10.0).is_empty());
|
|
|
|
assert!(!(-0.0 ..= 0.0).is_empty());
|
|
|
|
assert!( (10.0 ..= 0.0).is_empty());
|
|
|
|
|
|
|
|
assert!(!(NEG_INFINITY ..= INFINITY).is_empty());
|
|
|
|
assert!( (EPSILON ..= NAN).is_empty());
|
|
|
|
assert!( (NAN ..= EPSILON).is_empty());
|
|
|
|
assert!( (NAN ..= NAN).is_empty());
|
|
|
|
}
|