-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaworset.rs
183 lines (139 loc) · 3.61 KB
/
aworset.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
use std::collections::HashSet;
use crdt_sample::{Aworset, NodeId};
fn get_a1_id() -> NodeId {
NodeId::new(1, "a".to_string())
}
fn get_a2_id() -> NodeId{
NodeId::new(2, "a".to_string())
}
fn setup_a1() -> Aworset<String>{
Aworset::new(get_a1_id())
}
fn setup_a2() -> Aworset<String>{
Aworset::new(get_a2_id())
}
// ADD TESTS
#[test]
fn add_letter(){
let mut a1 = setup_a1();
a1.add("A".to_string());
let mut res = setup_a1();
res.cc.insert((get_a1_id(), 1));
res.set.insert((get_a1_id(), "A".to_string(), 1));
res.local_counter = 2;
assert_eq!(res, a1);
}
/// Adds empty string
#[test]
fn add_empty(){
let mut a1 = setup_a1();
a1.add("A".to_string());
let mut res = setup_a1();
res.cc.insert((get_a1_id(), 1));
res.set.insert((get_a1_id(), "A".to_string(), 1));
res.local_counter = 2;
assert_eq!(res, a1);
}
#[test]
fn add_twice(){
let mut a1 = setup_a1();
a1.add("A".to_string());
a1.add("A".to_string());
let mut res = setup_a1();
res.cc.insert((get_a1_id(), 1));
res.cc.insert((get_a1_id(), 2));
res.set.insert((get_a1_id(), "A".to_string(), 1));
res.set.insert((get_a1_id(), "A".to_string(), 2));
res.local_counter = 3;
assert_eq!(res, a1);
}
// RM TESTS
#[test]
fn rm_element(){
// Given
let to_rm = "A".to_string();
let mut a1 = setup_a1();
a1.set.insert((get_a1_id(), "A".to_string(), 1));
a1.cc.insert((get_a1_id(), 1));
a1.local_counter = 2;
let mut res = setup_a1();
res.cc.insert((get_a1_id(), 1));
res.local_counter = 2;
// When
a1.rm(&to_rm);
// Then
assert_eq!(res, a1);
}
#[test]
fn rm_when_empty(){
// Given
let to_rm = "A".to_string();
let mut a1 = setup_a1();
let mut res = setup_a1();
res.local_counter = 1;
// When
a1.rm(&to_rm);
// Then
assert_eq!(res, a1);
}
// JOIN TESTS
#[test]
fn join_no_intersection(){
// Given
let mut a1 = setup_a1();
let mut a2 = setup_a2();
a1.set.insert((get_a1_id(), "A".to_string(), 1));
a1.cc.insert((get_a1_id(), 1));
a1.local_counter += 1;
a2.set.insert((get_a2_id(), "B".to_string(), 1));
a2.cc.insert((get_a2_id(), 1));
a2.local_counter += 1;
let mut res = setup_a1();
res.set.insert((get_a1_id(), "A".to_string(), 1));
res.cc.insert((get_a1_id(), 1));
res.set.insert((get_a2_id(), "B".to_string(), 1));
res.cc.insert((get_a2_id(), 1));
res.local_counter += 1;
// When
a1.join(&a2);
a2.join(&a1);
// Then
assert_eq!(res, a1);
res.id = get_a2_id();
assert_eq!(res, a2)
}
#[test]
fn join_intersection(){
// Given
let mut a1 = setup_a1();
let mut a2 = setup_a2();
a1.set.insert((get_a1_id(), "A".to_string(), 1));
a1.cc.insert((get_a1_id(), 1));
a1.local_counter += 1;
a2.set.insert((get_a1_id(), "A".to_string(), 1));
a2.cc.insert((get_a1_id(), 1));
a2.local_counter += 1;
let mut res = setup_a1();
res.set.insert((get_a1_id(), "A".to_string(), 1));
res.cc.insert((get_a1_id(), 1));
res.local_counter += 1;
// When
a1.join(&a2);
// Then
assert_eq!(res, a1);
}
#[test]
fn elements(){
let mut a1 = setup_a1();
a1.set.insert((get_a1_id(), "A".to_string(), 1));
a1.set.insert((get_a1_id(), "B".to_string(), 2));
a1.set.insert((get_a2_id(), "B".to_string(), 1));
a1.cc.insert((get_a1_id(), 1));
a1.cc.insert((get_a1_id(), 2));
a1.cc.insert((get_a2_id(), 1));
let res = HashSet::from(["A".to_string(), "B".to_string()]);
// When
let set = a1.elements();
// Then
assert_eq!(set, res);
}