]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/minmax-stability-issue-23687.rs
Rollup merge of #23932 - steveklabnik:doc_std_path, r=flaper87
[rust.git] / src / test / run-pass / minmax-stability-issue-23687.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![feature(core)]
12 use std::fmt::Debug;
13 use std::cmp::{self, PartialOrd, Ordering};
14 use std::iter::MinMaxResult::MinMax;
15
16 #[derive(Debug, Copy, Clone, PartialEq, Eq)]
17 struct Foo {
18     n: u8,
19     name: &'static str
20 }
21
22 impl PartialOrd for Foo {
23     fn partial_cmp(&self, other: &Foo) -> Option<Ordering> {
24         Some(self.cmp(other))
25     }
26 }
27
28 impl Ord for Foo {
29     fn cmp(&self, other: &Foo) -> Ordering {
30         self.n.cmp(&other.n)
31     }
32 }
33
34 fn main() {
35     let a = Foo { n: 4, name: "a" };
36     let b = Foo { n: 4, name: "b" };
37     let c = Foo { n: 8, name: "c" };
38     let d = Foo { n: 8, name: "d" };
39     let e = Foo { n: 22, name: "e" };
40     let f = Foo { n: 22, name: "f" };
41
42     let data = [a, b, c, d, e, f];
43
44     // `min` should return the left when the values are equal
45     assert_eq!(data.iter().min(), Some(&a));
46     assert_eq!(data.iter().min_by(|a| a.n), Some(&a));
47     assert_eq!(cmp::min(a, b), a);
48     assert_eq!(cmp::min(b, a), b);
49     assert_eq!(cmp::partial_min(a, b), Some(a));
50     assert_eq!(cmp::partial_min(b, a), Some(b));
51
52     // `max` should return the right when the values are equal
53     assert_eq!(data.iter().max(), Some(&f));
54     assert_eq!(data.iter().max_by(|a| a.n), Some(&f));
55     assert_eq!(cmp::max(e, f), f);
56     assert_eq!(cmp::max(f, e), e);
57     assert_eq!(cmp::partial_max(e, f), Some(f));
58     assert_eq!(cmp::partial_max(f, e), Some(e));
59
60     // Similar for `min_max`
61     assert_eq!(data.iter().min_max(), MinMax(&a, &f));
62     assert_eq!(data[1..5].iter().min_max(), MinMax(&b, &e));
63     assert_eq!(data[2..4].iter().min_max(), MinMax(&c, &d));
64
65     let mut presorted = data.to_vec();
66     presorted.sort();
67     assert_stable(&presorted);
68
69     let mut presorted = data.to_vec();
70     presorted.sort_by(|a, b| a.cmp(b));
71     assert_stable(&presorted);
72
73     // Assert that sorted and min/max are the same
74     fn assert_stable<T: Ord + Debug>(presorted: &[T]) {
75         for slice in presorted.windows(2) {
76             let a = &slice[0];
77             let b = &slice[1];
78
79             assert_eq!(a, cmp::min(a, b));
80             assert_eq!(b, cmp::max(a, b));
81         }
82     }
83 }