-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHashTableTest.java
More file actions
236 lines (215 loc) · 6.89 KB
/
HashTableTest.java
File metadata and controls
236 lines (215 loc) · 6.89 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
import static org.junit.jupiter.api.Assertions.*; // org.junit.Assert.*;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.After;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import java.util.Random;
/**
* JUnit test class for HashTable class
*
* @author Colin Mercer
*
*/
public class HashTableTest {
@BeforeEach
public void setUp() throws Exception {
}
@AfterEach
public void tearDown() throws Exception {
}
/**
* Tests that a HashTable returns an integer code indicating which collision resolution strategy
* is used. REFER TO HashTableADT for valid collision scheme codes.
*/
@Test
public void test000_collision_scheme() {
HashTableADT htIntegerKey = new HashTable<Integer, String>();
int scheme = htIntegerKey.getCollisionResolution();
if (scheme < 1 || scheme > 9)
fail("collision resolution must be indicated with 1-9");
}
/**
* IMPLEMENTED AS EXAMPLE FOR YOU Tests that insert(null,null) throws IllegalNullKeyException
*/
@Test
public void test001_IllegalNullKey() {
try {
HashTableADT htIntegerKey = new HashTable<Integer, String>();
htIntegerKey.insert(null, null);
fail("should not be able to insert null key");
} catch (IllegalNullKeyException e) {
/* expected */ } catch (Exception e) {
fail("insert null key should not throw exception " + e.getClass().getName());
}
}
// TODO add your own tests of your implementation
/**
* Insert 1 KV pair and check number of keys
*/
@Test
public void test002_insert_one_pair() {
HashTableADT htIntegerKey = new HashTable<Integer, String>();
try {
htIntegerKey.insert(1, "Hello");
if (htIntegerKey.numKeys() != 1) {
fail("after insert there should be 1 entry");
}
} catch (IllegalNullKeyException e) {
fail("Illegal Null Key exception");
e.printStackTrace();
} catch (DuplicateKeyException e) {
fail("Duplicate KEy exception");
e.printStackTrace();
}
}
/**
* Insert 10 KV pair and check number of keys
*/
@Test
public void test003_insert_multiple_key() {
HashTableADT htIntegerKey = new HashTable<Integer, String>();
try {
htIntegerKey.insert(1, "Hello");
htIntegerKey.insert(2, "Hello");
htIntegerKey.insert(3, "Hello");
htIntegerKey.insert(4, "Hello");
htIntegerKey.insert(5, "Hello");
htIntegerKey.insert(6, "Hello");
htIntegerKey.insert(7, "Hello");
htIntegerKey.insert(8, "Hello");
htIntegerKey.insert(9, "Hello");
htIntegerKey.insert(10, "Hello");
if (htIntegerKey.numKeys() != 10) {
fail("after insert there should be 10 entry");
}
} catch (IllegalNullKeyException e) {
fail("Illegal Null Key exception");
e.printStackTrace();
} catch (DuplicateKeyException e) {
fail("Duplicate KEy exception");
e.printStackTrace();
}
}
/**
* try to get a spicific value
*/
@Test
public void test004_get_after_insert() {
HashTableADT htIntegerKey = new HashTable<Integer, String>();
try {
htIntegerKey.insert(1, "Hell No");
htIntegerKey.insert(2, "Hello");
htIntegerKey.insert(3, "Hello");
htIntegerKey.insert(4, "Hello");
htIntegerKey.insert(5, "Hello");
htIntegerKey.insert(6, "Hello");
htIntegerKey.insert(7, "Hello");
htIntegerKey.insert(8, "Hello");
htIntegerKey.insert(9, "Hello");
htIntegerKey.insert(10, "Hello");
if (htIntegerKey.numKeys() != 10) {
fail("after insert there should be 10 entry");
}
if (!htIntegerKey.get(1).equals("Hell No")) {
fail("failed to get the 1st pair inserted with key 1");
}
} catch (IllegalNullKeyException e) {
fail("Illegal Null Key exception");
e.printStackTrace();
} catch (Exception e) {
fail("SOmething is wrong");
e.printStackTrace();
}
}
public void test005_load_factor_check() {
HashTableADT htIntegerKey = new HashTable<Integer, String>(10, 0.75);
try {
htIntegerKey.insert(1, "Hell No");
htIntegerKey.insert(2, "Hello");
if (htIntegerKey.getLoadFactor() - 0.2 >= 0.01) {
fail("load factor should be 2/10=0.2, which it is not");
}
htIntegerKey.insert(3, "Hello");
htIntegerKey.insert(4, "Hello");
if (htIntegerKey.getLoadFactor() - 0.4 >= 0.01) {
fail("load factor should be 4/10=0.4, which it is not");
}
htIntegerKey.insert(5, "Hello");
htIntegerKey.insert(6, "Hello");
if (htIntegerKey.getLoadFactor() - 0.6 >= 0.01) {
fail("load factor should be 6/10=0.6, which it is not");
}
htIntegerKey.insert(7, "Hello");
htIntegerKey.insert(8, "Hello");
htIntegerKey.insert(9, "Hello");
htIntegerKey.insert(10, "Hello");
if (htIntegerKey.numKeys() != 10) {
fail("after insert there should be 10 entry");
}
if (!htIntegerKey.get(1).equals("Hell No")) {
fail("failed to get the 1st pair inserted with key 1");
}
} catch (IllegalNullKeyException e) {
fail("Illegal Null Key exception");
e.printStackTrace();
} catch (Exception e) {
fail("SOmething is wrong");
e.printStackTrace();
}
}
/**
* Insert half million KV pair and check number of keys
*/
@Test
public void test0666_insert_500K_key() {
HashTableADT htIntegerKey = new HashTable<Integer, String>();
try {
for (int i = 0; i < 500000; i++) {
htIntegerKey.insert(i, null);
}
if (htIntegerKey.numKeys() != 500000) {
fail("after insert there should be 500000 entry");
}
} catch (IllegalNullKeyException e) {
fail("Illegal Null Key exception");
e.printStackTrace();
} catch (DuplicateKeyException e) {
fail("Duplicate KEy exception");
e.printStackTrace();
}
}
/**
* Insert a fuck tons then delete, check num of key after that
*/
@Test
public void test007_delete_test() {
HashTableADT htIntegerKey = new HashTable<Integer, String>();
try {
for (int i = 0; i < 99999; i++) {
htIntegerKey.insert(i, null);
}
htIntegerKey.insert(100000, "Hello");
for (int i = 0; i < 50000; i++) {
htIntegerKey.remove(i);
}
if (htIntegerKey.numKeys() != 50000) {
fail("after insert there should be 50000 entry");
}
if (!htIntegerKey.get(100000).equals("Hello")) {
fail(
"after insert 100000 times and delete the 0~50000 entry, the 100000th entry should still be accessable, but its not");
}
} catch (IllegalNullKeyException e) {
fail("Illegal Null Key exception");
e.printStackTrace();
} catch (DuplicateKeyException e) {
fail("Duplicate KEy exception");
e.printStackTrace();
} catch (KeyNotFoundException e) {
fail("Key not found");
}
}
}