-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
set_spec.cr
485 lines (398 loc) · 11.4 KB
/
set_spec.cr
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
require "spec"
require "set"
describe "Set" do
describe "an empty set" do
it "is empty" do
Set(Nil).new.empty?.should be_true
end
it "has size 0" do
Set(Nil).new.size.should eq(0)
end
end
describe "new" do
it "creates new set with enumerable without block" do
set_from_array = Set.new([2, 4, 6, 4])
set_from_array.size.should eq(3)
set_from_array.to_a.sort.should eq([2, 4, 6])
set_from_tuple = Set.new({1, "hello", 'x'})
set_from_tuple.size.should eq(3)
set_from_tuple.to_a.includes?(1).should be_true
set_from_tuple.to_a.includes?("hello").should be_true
set_from_tuple.to_a.includes?('x').should be_true
end
end
describe "add" do
it "adds and includes" do
set = Set(Int32).new
set.add 1
set.includes?(1).should be_true
set.size.should eq(1)
end
it "returns self" do
set = Set(Int32).new
set.add(1).should eq(set)
end
end
describe "add?" do
it "returns true when object is not in the set" do
set = Set(Int32).new
set.add?(1).should be_true
end
it "returns false when object is in the set" do
set = Set(Int32).new
set.add?(1).should be_true
set.includes?(1).should be_true
set.add?(1).should be_false
end
end
describe "delete" do
it "deletes an object" do
set = Set{1, 2, 3}
set.delete 2
set.size.should eq(2)
set.includes?(1).should be_true
set.includes?(3).should be_true
end
it "returns true when the object was present" do
set = Set{1, 2, 3}
set.delete(2).should be_true
end
it "returns false when the object was absent" do
set = Set{1, 2, 3}
set.delete(0).should be_false
end
end
describe "dup" do
it "creates a dup" do
set1 = Set{[1, 2]}
set2 = set1.dup
set1.should eq(set2)
set1.should_not be(set2)
set1.to_a.first.should be(set2.to_a.first)
set1 << [3]
set2 << [4]
set2.should eq(Set{[1, 2], [4]})
end
end
describe "clone" do
it "creates a clone" do
set1 = Set{[1, 2]}
set2 = set1.clone
set1.should eq(set2)
set1.should_not be(set2)
set1.to_a.first.should_not be(set2.to_a.first)
set1 << [3]
set2 << [4]
set2.should eq(Set{[1, 2], [4]})
end
end
describe "==" do
it "compares two sets" do
set1 = Set{1, 2, 3}
set2 = Set{1, 2, 3}
set3 = Set{1, 2, 3, 4}
set1.should eq(set1)
set1.should eq(set2)
set1.should_not eq(set3)
end
end
describe "concat" do
it "adds all the other elements" do
set = Set{1, 4, 8}
set.concat [1, 9, 10]
set.should eq(Set{1, 4, 8, 9, 10})
end
it "returns self" do
set = Set{1, 4, 8}
set.concat([1, 9, 10]).should eq(Set{1, 4, 8, 9, 10})
end
end
it "does &" do
set1 = Set{1, 2, 3}
set2 = Set{4, 2, 5, 3}
set3 = set1 & set2
set3.should eq(Set{2, 3})
end
it "does |" do
set1 = Set{1, 2, 3}
set2 = Set{4, 2, 5, "3"}
set3 = set1 | set2
set3.should eq(Set{1, 2, 3, 4, 5, "3"})
end
it "aliases + to |" do
set1 = Set{1, 1, 2, 3}
set2 = Set{3, 4, 5}
set3 = set1 + set2
set4 = set1 | set2
set3.should eq(set4)
end
it "does -" do
set1 = Set{1, 2, 3, 4, 5}
set2 = Set{2, 4, 6}
set3 = set1 - set2
set3.should eq(Set{1, 3, 5})
end
it "does -" do
set1 = Set{1, 2, 3, 4, 5}
set2 = Set{2, 4, 'a'}
set3 = set1 - set2
set3.should eq(Set{1, 3, 5})
end
it "does -" do
set1 = Set{1, 2, 3, 4, 'b'}
set2 = Set{2, 4, 5}
set3 = set1 - set2
set3.should eq(Set{1, 3, 'b'})
end
it "does -" do
set1 = Set{1, 2, 3, 4, 5}
set2 = [2, 4, 6]
set3 = set1 - set2
set3.should eq(Set{1, 3, 5})
end
it "does -" do
set1 = Set{1, 2, 3, 4, 5}
set2 = [2, 4, 'a']
set3 = set1 - set2
set3.should eq(Set{1, 3, 5})
end
it "does -" do
set1 = Set{1, 2, 3, 4, 'b'}
set2 = [2, 4, 5]
set3 = set1 - set2
set3.should eq(Set{1, 3, 'b'})
end
it "does ^" do
set1 = Set{1, 2, 3, 4, 5}
set2 = Set{2, 4, 6}
set3 = set1 ^ set2
set3.should eq(Set{1, 3, 5, 6})
end
it "does ^" do
set1 = Set{1, 2, 3, 4, 5}
set2 = Set{2, 4, 'a'}
set3 = set1 ^ set2
set3.should eq(Set{1, 3, 5, 'a'})
end
it "does ^" do
set1 = Set{1, 2, 3, 4, 'b'}
set2 = Set{2, 4, 5}
set3 = set1 ^ set2
set3.should eq(Set{1, 3, 5, 'b'})
end
it "does ^" do
set1 = Set{1, 2, 3, 4, 5}
set2 = [2, 4, 6]
set3 = set1 ^ set2
set3.should eq(Set{1, 3, 5, 6})
end
it "does ^" do
set1 = Set{1, 2, 3, 4, 5}
set2 = [2, 4, 'a']
set3 = set1 ^ set2
set3.should eq(Set{1, 3, 5, 'a'})
end
it "does ^" do
set1 = Set{1, 2, 3, 4, 'b'}
set2 = [2, 4, 5]
set3 = set1 ^ set2
set3.should eq(Set{1, 3, 5, 'b'})
end
it "does subtract" do
set1 = Set{1, 2, 3, 4, 5}
set2 = Set{2, 4, 6}
set1.subtract set2
set1.should eq(Set{1, 3, 5})
end
it "does subtract" do
set1 = Set{1, 2, 3, 4, 5}
set2 = Set{2, 4, 'a'}
set1.subtract set2
set1.should eq(Set{1, 3, 5})
end
it "does subtract" do
set1 = Set{1, 2, 3, 4, 'b'}
set2 = Set{2, 4, 5}
set1.subtract set2
set1.should eq(Set{1, 3, 'b'})
end
it "does subtract" do
set1 = Set{1, 2, 3, 4, 5}
set2 = [2, 4, 6]
set1.subtract set2
set1.should eq(Set{1, 3, 5})
end
it "does subtract" do
set1 = Set{1, 2, 3, 4, 5}
set2 = [2, 4, 'a']
set1.subtract set2
set1.should eq(Set{1, 3, 5})
end
it "does subtract" do
set1 = Set{1, 2, 3, 4, 'b'}
set2 = [2, 4, 5]
set1.subtract set2
set1.should eq(Set{1, 3, 'b'})
end
it "does to_a" do
Set{1, 2, 3}.to_a.should eq([1, 2, 3])
end
it "does to_s" do
Set{1, 2, 3}.to_s.should eq("Set{1, 2, 3}")
Set{"foo"}.to_s.should eq(%(Set{"foo"}))
end
it "does clear" do
x = Set{1, 2, 3}
x.to_a.should eq([1, 2, 3])
x.clear.should be(x)
x << 1
x.to_a.should eq([1])
end
it "checks intersects" do
set = Set{3, 4, 5}
empty_set = Set(Int32).new
set.intersects?(set).should be_true
set.intersects?(Set{2, 4}).should be_true
set.intersects?(Set{5, 6, 7}).should be_true
set.intersects?(Set{1, 2, 6, 8, 4}).should be_true
set.intersects?(empty_set).should be_false
set.intersects?(Set{0, 2}).should be_false
set.intersects?(Set{0, 2, 6}).should be_false
set.intersects?(Set{0, 2, 6, 8, 10}).should be_false
# Make sure set hasn't changed
set.should eq(Set{3, 4, 5})
end
it "compares hashes of sets" do
h1 = {Set{1, 2, 3} => 1}
h2 = {Set{1, 2, 3} => 1}
h1.should eq(h2)
end
it "does each" do
set = Set{1, 2, 3}
i = 1
set.each do |v|
v.should eq(i)
i += 1
end.should be_nil
i.should eq(4)
end
it "gets each iterator" do
iter = Set{1, 2, 3}.each
iter.next.should eq(1)
iter.next.should eq(2)
iter.next.should eq(3)
iter.next.should be_a(Iterator::Stop)
end
it "check subset" do
set = Set{1, 2, 3}
empty_set = Set(Int32).new
set.subset?(Set{1, 2, 3, 4}).should be_true
set.subset?(Set{1, 2, 3, "4"}).should be_true
set.subset?(Set{1, 2, 3}).should be_true
set.subset?(Set{1, 2}).should be_false
set.subset?(empty_set).should be_false
empty_set.subset?(Set{1}).should be_true
empty_set.subset?(empty_set).should be_true
end
it "#subset_of?" do
set = Set{1, 2, 3}
empty_set = Set(Int32).new
set.subset_of?(Set{1, 2, 3, 4}).should be_true
set.subset_of?(Set{1, 2, 3, "4"}).should be_true
set.subset_of?(Set{1, 2, 3}).should be_true
set.subset_of?(Set{1, 2}).should be_false
set.subset_of?(empty_set).should be_false
empty_set.subset_of?(Set{1}).should be_true
empty_set.subset_of?(empty_set).should be_true
end
it "check proper_subset" do
set = Set{1, 2, 3}
empty_set = Set(Int32).new
set.proper_subset?(Set{1, 2, 3, 4}).should be_true
set.proper_subset?(Set{1, 2, 3, "4"}).should be_true
set.proper_subset?(Set{1, 2, 3}).should be_false
set.proper_subset?(Set{1, 2}).should be_false
set.proper_subset?(empty_set).should be_false
empty_set.proper_subset?(Set{1}).should be_true
empty_set.proper_subset?(empty_set).should be_false
end
it "#proper_subset_of?" do
set = Set{1, 2, 3}
empty_set = Set(Int32).new
set.proper_subset_of?(Set{1, 2, 3, 4}).should be_true
set.proper_subset_of?(Set{1, 2, 3, "4"}).should be_true
set.proper_subset_of?(Set{1, 2, 3}).should be_false
set.proper_subset_of?(Set{1, 2}).should be_false
set.proper_subset_of?(empty_set).should be_false
empty_set.proper_subset_of?(Set{1}).should be_true
empty_set.proper_subset_of?(empty_set).should be_false
end
it "check superset" do
set = Set{1, 2, "3"}
empty_set = Set(Int32).new
set.superset?(empty_set).should be_true
set.superset?(Set{1, 2}).should be_true
set.superset?(Set{1, 2, "3"}).should be_true
set.superset?(Set{1, 2, 3}).should be_false
set.superset?(Set{1, 2, 3, 4}).should be_false
set.superset?(Set{1, 4}).should be_false
empty_set.superset?(empty_set).should be_true
end
it "#superset_of?" do
set = Set{1, 2, "3"}
empty_set = Set(Int32).new
set.superset_of?(empty_set).should be_true
set.superset_of?(Set{1, 2}).should be_true
set.superset_of?(Set{1, 2, "3"}).should be_true
set.superset_of?(Set{1, 2, 3}).should be_false
set.superset_of?(Set{1, 2, 3, 4}).should be_false
set.superset_of?(Set{1, 4}).should be_false
empty_set.superset_of?(empty_set).should be_true
end
it "check proper_superset" do
set = Set{1, 2, "3"}
empty_set = Set(Int32).new
set.proper_superset?(empty_set).should be_true
set.proper_superset?(Set{1, 2}).should be_true
set.proper_superset?(Set{1, 2, "3"}).should be_false
set.proper_superset?(Set{1, 2, 3}).should be_false
set.proper_superset?(Set{1, 2, 3, 4}).should be_false
set.proper_superset?(Set{1, 4}).should be_false
empty_set.proper_superset?(empty_set).should be_false
end
it "#proper_superset_of?" do
set = Set{1, 2, "3"}
empty_set = Set(Int32).new
set.proper_superset_of?(empty_set).should be_true
set.proper_superset_of?(Set{1, 2}).should be_true
set.proper_superset_of?(Set{1, 2, "3"}).should be_false
set.proper_superset_of?(Set{1, 2, 3}).should be_false
set.proper_superset_of?(Set{1, 2, 3, 4}).should be_false
set.proper_superset_of?(Set{1, 4}).should be_false
empty_set.proper_superset_of?(empty_set).should be_false
end
it "has object_id" do
Set(Int32).new.object_id.should be > 0
end
typeof(Set(Int32).new(initial_capacity: 1234))
describe "compare_by_identity" do
it "compares by identity" do
string = "foo"
set = Set{string, "bar", "baz"}
set.compare_by_identity?.should be_false
set.includes?(string).should be_true
set.compare_by_identity
set.compare_by_identity?.should be_true
set.includes?("fo" + "o").should be_false
set.includes?(string).should be_true
end
it "retains compare_by_identity on dup" do
set = Set(String).new.compare_by_identity
set.dup.compare_by_identity?.should be_true
end
it "retains compare_by_identity on clone" do
set = Set(String).new.compare_by_identity
set.clone.compare_by_identity?.should be_true
end
end
end