-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathvecs.rs
165 lines (142 loc) · 4.22 KB
/
vecs.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
// Copyright 2014 Carl Lerche, Yehuda Katz, Steve Klabnik, Alex Crichton,
// Ben Longbons
// Copyright 2015 Carl Lerche, Graham Dennis, Alex Crichton, Tamir Duberstein,
// Robin Gloster
// Copyright 2016 Urban Hafner
//
// 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.
use std::fmt;
use std::vec::Vec;
use core::*;
#[derive(Clone, Copy)]
pub struct OfLen {
len: usize,
}
impl fmt::Display for OfLen {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "of len {}", self.len)
}
}
impl<'a, T> Matcher<&'a Vec<T>> for OfLen {
fn matches(&self, actual: &Vec<T>) -> MatchResult {
if self.len == actual.len() {
success()
} else {
Err(format!("was len {}", actual.len()))
}
}
}
pub fn of_len(len: usize) -> OfLen {
OfLen { len: len }
}
#[derive(Clone)]
pub struct Contains<T> {
items: Vec<T>,
exactly: bool,
in_order: bool,
}
impl<T> Contains<T> {
pub fn exactly(mut self) -> Contains<T> {
self.exactly = true;
self
}
pub fn in_order(mut self) -> Contains<T> {
self.in_order = true;
self
}
}
impl<T: fmt::Debug> fmt::Display for Contains<T> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
if self.exactly {
write!(f, "containing exactly {}", Pretty(&self.items))
} else {
write!(f, "containing {}", Pretty(&self.items))
}
}
}
impl<'a, T: fmt::Debug + PartialEq + Clone> Matcher<&'a Vec<T>> for Contains<T> {
fn matches(&self, actual: &Vec<T>) -> MatchResult {
let mut rem = actual.clone();
for item in self.items.iter() {
match rem.iter().position(|a| *item == *a) {
Some(idx) => {
rem.remove(idx);
}
None => return Err(format!("was {}", Pretty(&actual))),
}
}
if self.exactly && !rem.is_empty() {
return Err(format!("also had {}", Pretty(&rem)));
}
if self.in_order && !contains_in_order(actual, &self.items) {
return Err(format!(
"{} does not contain {} in order",
Pretty(&actual),
Pretty(&self.items)
));
}
success()
}
}
fn contains_in_order<T: fmt::Debug + PartialEq>(actual: &Vec<T>, items: &Vec<T>) -> bool {
let mut previous = None;
for item in items.iter() {
match actual.iter().position(|a| *item == *a) {
Some(current) => {
if !is_next_index(¤t, &previous) {
return false;
}
previous = Some(current);
}
None => return false,
}
}
return true;
}
fn is_next_index(current_index: &usize, previous_index: &Option<usize>) -> bool {
if let Some(index) = *previous_index {
return *current_index == index + 1;
}
return true;
}
/// Creates a matcher that checks if actual vector has all items of the given vector.
///
/// # Examples
///
/// ```
/// #[macro_use] extern crate hamcrest;
/// use hamcrest::prelude::*;
///
/// fn main() {
/// assert_that!(&vec![1, 2, 3, 4], contains_all_of(vec![1, 2, 3]));
/// assert_that!(&vec![1, 2, 3], does_not(contain_all_of(vec![1, 2, 4])));
/// }
/// ```
pub fn contains_all_of<T>(items: Vec<T>) -> Contains<T> {
Contains {
items: items,
exactly: false,
in_order: false,
}
}
#[deprecated(since = "0.2.0", note = "Use the contains_all_of instead")]
pub fn contains<T>(items: Vec<T>) -> Contains<T> {
contains_all_of(items)
}
struct Pretty<'a, T: 'a>(&'a [T]);
impl<'a, T: fmt::Debug> fmt::Display for Pretty<'a, T> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
try!(write!(f, "["));
for (i, t) in self.0.iter().enumerate() {
if i != 0 {
try!(write!(f, ", "));
}
try!(write!(f, "{:?}", t));
}
write!(f, "]")
}
}