hashMap.test.js
9.18 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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
'use strict';
var HashMap = require('../src/js/hashMap');
describe('module:hashMap', function() {
var hashMap;
beforeEach(function() {
hashMap = new HashMap();
});
describe('HashMap이 존재한다.', function() {
it('HashMap은 정의되어있다.', function() {
expect(HashMap).toBeDefined();
});
it('hashMap의 인스턴스가 존재한다.', function() {
expect(hashMap).toBeDefined();
});
});
describe('setKeyValue()', function() {
it('key와 value를 전달하여 데이터를 저장한다..', function() {
hashMap.setKeyValue('dataKey', 'data');
hashMap.setKeyValue('dataKey2', 'data');
expect(hashMap.get('dataKey')).toEqual('data');
expect(hashMap.length).toEqual(2);
});
it('같은 key에 값을 두번 셋팅하면 length에 변함이 없다.', function() {
hashMap.setKeyValue('dataKey', 'data');
hashMap.setKeyValue('dataKey', 'data2');
expect(hashMap.get('dataKey')).toEqual('data2');
expect(hashMap.length).toEqual(1);
});
});
describe('setObject()', function() {
it('객체를 전달하여 데이터를 저장한다..', function() {
hashMap.setObject({
'dataKey': 'data',
'dataKey2': 'data'
});
expect(hashMap.get('dataKey')).toEqual('data');
expect(hashMap.length).toEqual(2);
});
});
describe('merge()', function() {
it('해쉬맵을 인자로 받아 병합한다.', function() {
var mergedHashMap = new HashMap();
hashMap.setObject({
'dataKey': 'data',
'dataKey2': 'data'
});
mergedHashMap.merge(hashMap);
expect(mergedHashMap.get('dataKey')).toEqual('data');
expect(mergedHashMap.length).toEqual(2);
});
});
describe('set()', function() {
it('key와 value를 전달하여 데이터를 저장한다..', function() {
hashMap.set('dataKey', 'data');
expect(hashMap.get('dataKey')).toEqual('data');
});
it('객체를 전달하여 데이터를 저장한다..', function() {
hashMap.set({
'dataKey': 'data'
});
expect(hashMap.get('dataKey')).toEqual('data');
});
});
describe('get()', function() {
beforeEach(function() {
hashMap.set('dataKey', 'data');
});
it('키를 넘겨 값을 가져온다.', function() {
var v = hashMap.get('dataKey');
expect(v).toEqual('data');
});
});
describe('has()', function() {
beforeEach(function() {
hashMap.set('dataKey', 'data');
});
it('존재하는 키에대해 true를 리턴한다.', function() {
var v = hashMap.has('dataKey');
expect(v).toEqual(true);
});
it('존재하지 않는 키에대해 false를 리턴한다.', function() {
var v = hashMap.has('notAKey');
expect(v).toEqual(false);
});
});
describe('encodeKey()', function() {
it('키로 사용할 문자열을 넘기면 프리픽스를 인코딩해 리턴한다.', function() {
var encodedKey = hashMap.encodeKey('dataKey');
expect(encodedKey).toEqual('ådataKey');
});
});
describe('decodeKey()', function() {
it('키를 넘기면 프리픽스를 제거해 리턴한다.', function() {
var encodedKey = hashMap.decodeKey('ådataKey');
expect(encodedKey).toEqual('dataKey');
});
});
describe('remove()', function() {
beforeEach(function() {
hashMap.set('dataKey', 'data');
hashMap.set('dataKey2', 'data');
});
it('키를 넘겨 데이터를 삭제한다.', function() {
hashMap.remove('dataKey');
expect(hashMap.has('dataKey')).toEqual(false);
expect(hashMap.length).toEqual(1);
});
it('키를 여러개 넘겨 데이터를 삭제한다.', function() {
var v = hashMap.remove('dataKey', 'dataKey2');
expect(v).toEqual(['data', 'data']);
expect(hashMap.length).toEqual(0);
});
it('키의 배열을 넘겨 데이터를 삭제한다.', function() {
var v = hashMap.remove(['dataKey', 'dataKey2']);
expect(v).toEqual(['data', 'data']);
expect(hashMap.length).toEqual(0);
});
it('삭제된 데이터가 리턴된다.', function() {
var v = hashMap.remove('dataKey');
expect(v).toEqual('data');
});
it('없는키를 삭제하면 null이 리턴되고 length는 변함이 없다.', function() {
var v = hashMap.remove('dataKey1');
expect(v).toBe(null);
expect(hashMap.length).toEqual(2);
});
});
describe('removeByKey()', function() {
beforeEach(function() {
hashMap.set('dataKey', 'data');
});
it('키를 넘겨 데이터를 삭제한다.', function() {
var v;
hashMap.removeByKey('dataKey');
v = hashMap.has('dataKey');
expect(v).toEqual(false);
expect(hashMap.length).toEqual(0);
});
it('삭제된 데이터가 리턴된다.', function() {
var v = hashMap.removeByKey('dataKey');
expect(v).toEqual('data');
});
it('없는키를 삭제하면 null이 리턴되고 length는 변함이 없다.', function() {
var v = hashMap.removeByKey('dataKey1');
expect(v).toBe(null);
expect(hashMap.length).toEqual(1);
});
});
describe('removeByKeyArray()', function() {
beforeEach(function() {
hashMap.set('key', 'data');
hashMap.set('key2', 'data');
});
it('키의 목록을 넘겨 데이터를 삭제한다.', function() {
hashMap.removeByKeyArray(['key', 'key2']);
expect(hashMap.has('key')).toEqual(false);
expect(hashMap.has('key2')).toEqual(false);
expect(hashMap.length).toEqual(0);
});
it('삭제된 데이터가 리턴된다.', function() {
var v = hashMap.removeByKeyArray(['key', 'key2']);
expect(v).toEqual(['data', 'data']);
});
});
describe('removeAll()', function() {
beforeEach(function() {
hashMap.set('key1', 'data1');
hashMap.set('key2', 'data2');
hashMap.set('key3', 'data3');
});
it('모든 값을 지운다.', function() {
hashMap.removeAll();
expect(hashMap.get('key1')).not.toBeDefined();
expect(hashMap.get('key2')).not.toBeDefined();
expect(hashMap.get('key3')).not.toBeDefined();
expect(hashMap.length).toEqual(0);
});
});
describe('each()', function() {
beforeEach(function() {
hashMap.set('key1', 'data1');
hashMap.set('key2', 'data2');
hashMap.set('key3', 'data3');
});
it('데이터를 순회하여 넘겨받은 콜백에 넘겨준다.', function() {
var sumValue = '';
var sumKey = '';
hashMap.each(function(value, key) {
sumValue += value;
sumKey += key;
});
expect(sumValue).toEqual('data1data2data3');
expect(sumKey).toEqual('key1key2key3');
});
});
describe('keys()', function() {
beforeEach(function() {
hashMap.set('key1', 'data1');
hashMap.set('key2', 'data2');
hashMap.set('key3', 'data3');
});
it('저장되어있는 Key를 모와서 배열로 리턴해준다.', function() {
var keys;
keys = hashMap.keys();
expect(keys).toEqual(['key1', 'key2', 'key3']);
});
});
describe('find()', function() {
beforeEach(function() {
hashMap.set('key1', 'data1');
hashMap.set('key2', 'data');
hashMap.set('key3', 'data');
});
it('조건을 체크하는 펑션을 넘겨 데이터의 배열을 구할수있다.', function() {
var dataByValue, dataByKey;
dataByValue = hashMap.find(function(value) {
return value === 'data';
});
dataByKey = hashMap.find(function(value, key) {
return key === 'key1';
});
expect(dataByValue).toEqual(['data', 'data']);
expect(dataByKey).toEqual(['data1']);
});
});
describe('toArray()', function() {
var obj = {};
beforeEach(function() {
hashMap.set('key1', 'good');
hashMap.set('key2', obj);
});
it('내부의 값들을 순서에 상관없이 배열로 반환한다', function() {
var arr = hashMap.toArray();
expect(arr.length).toBe(2);
expect(arr[0]).toBe('good');
expect(arr[1]).toBe(obj);
expect(arr[3]).toBeUndefined();
});
});
});