]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/send_str_hashmap.rs
Auto merge of #22541 - Manishearth:rollup, r=Gankro
[rust.git] / src / test / run-pass / send_str_hashmap.rs
1 // Copyright 2013 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 extern crate collections;
12
13 use std::collections::HashMap;
14 use std::borrow::{Cow, IntoCow};
15
16 type SendStr = Cow<'static, str>;
17
18 pub fn main() {
19     let mut map: HashMap<SendStr, uint> = HashMap::new();
20     assert!(map.insert("foo".into_cow(), 42).is_none());
21     assert!(map.insert("foo".to_string().into_cow(), 42).is_some());
22     assert!(map.insert("foo".into_cow(), 42).is_some());
23     assert!(map.insert("foo".to_string().into_cow(), 42).is_some());
24
25     assert!(map.insert("foo".into_cow(), 43).is_some());
26     assert!(map.insert("foo".to_string().into_cow(), 44).is_some());
27     assert!(map.insert("foo".into_cow(), 45).is_some());
28     assert!(map.insert("foo".to_string().into_cow(), 46).is_some());
29
30     let v = 46;
31
32     assert_eq!(map.get(&"foo".to_string().into_cow()), Some(&v));
33     assert_eq!(map.get(&"foo".into_cow()), Some(&v));
34
35     let (a, b, c, d) = (50, 51, 52, 53);
36
37     assert!(map.insert("abc".into_cow(), a).is_none());
38     assert!(map.insert("bcd".to_string().into_cow(), b).is_none());
39     assert!(map.insert("cde".into_cow(), c).is_none());
40     assert!(map.insert("def".to_string().into_cow(), d).is_none());
41
42     assert!(map.insert("abc".into_cow(), a).is_some());
43     assert!(map.insert("bcd".to_string().into_cow(), b).is_some());
44     assert!(map.insert("cde".into_cow(), c).is_some());
45     assert!(map.insert("def".to_string().into_cow(), d).is_some());
46
47     assert!(map.insert("abc".to_string().into_cow(), a).is_some());
48     assert!(map.insert("bcd".into_cow(), b).is_some());
49     assert!(map.insert("cde".to_string().into_cow(), c).is_some());
50     assert!(map.insert("def".into_cow(), d).is_some());
51
52     assert_eq!(map.get("abc"), Some(&a));
53     assert_eq!(map.get("bcd"), Some(&b));
54     assert_eq!(map.get("cde"), Some(&c));
55     assert_eq!(map.get("def"), Some(&d));
56
57     assert_eq!(map.get(&"abc".into_cow()), Some(&a));
58     assert_eq!(map.get(&"bcd".into_cow()), Some(&b));
59     assert_eq!(map.get(&"cde".into_cow()), Some(&c));
60     assert_eq!(map.get(&"def".into_cow()), Some(&d));
61 }