forked from PolyMathOrg/DataFrame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDataFrameInternalTest.class.st
487 lines (338 loc) · 9.83 KB
/
DataFrameInternalTest.class.st
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
486
487
Class {
#name : #DataFrameInternalTest,
#superclass : #TestCase,
#instVars : [
'df'
],
#category : #'DataFrame-Tests-Core'
}
{ #category : #running }
DataFrameInternalTest >> setUp [
super setUp.
df := DataFrameInternal withRows: #( #( 'Barcelona' 1.609 true ) #( 'Dubai' 2.789 true ) #( 'London' 8.788 false ) )
]
{ #category : #tests }
DataFrameInternalTest >> testAddColumnAtPosition [
| expected |
expected := DataFrameInternal withRows: #(
('Barcelona' 1.609 4 true)
('Dubai' 2.789 3 true)
('London' 8.788 4 false)).
df addColumn: #(4 3 4) atPosition: 3.
self assert: df equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testAddColumnAtPositionSizeMismatch [
| aBlock |
aBlock := [ df addColumn: #(1 2 3 4) atPosition: 3 ].
self should: aBlock raise: SizeMismatch
]
{ #category : #tests }
DataFrameInternalTest >> testAddRowAtPosition [
| expected |
expected := DataFrameInternal withRows: #(
('Barcelona' 1.609 true)
('Dubai' 2.789 true)
('Lviv' 0.724 true)
('London' 8.788 false)).
df addRow: #('Lviv' 0.724 true) atPosition: 3.
self assert: df equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testAddRowAtPositionSizeMismatch [
| aBlock |
aBlock := [ df addRow: #(1 2) atPosition: 3 ].
self should: aBlock raise: SizeMismatch
]
{ #category : #tests }
DataFrameInternalTest >> testAsArrayOfColumns [
| expected |
expected := #(
('Barcelona' 'Dubai' 'London')
(1.609 2.789 8.788)
(true true false)).
self assert: df asArrayOfColumns equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testAsArrayOfRows [
| expected |
expected := #(
('Barcelona' 1.609 true)
('Dubai' 2.789 true)
('London' 8.788 false)).
self assert: df asArrayOfRows equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testAtAt [
self assert: (df at: 2 at: 2) closeTo: 2.789
]
{ #category : #tests }
DataFrameInternalTest >> testAtAtPut [
| array2D expected actual |
array2D := Array2D rows: 3 columns: 2
contents: #(1 2 3 4 5 6).
actual := DataFrameInternal fromArray2D: array2D.
actual at: 2 at: 2 put: 10.
array2D := Array2D rows: 3 columns: 2
contents: #(1 2 3 10 5 6).
expected := DataFrameInternal fromArray2D: array2D.
self assert: actual equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testCollect [
| dfInternal dfActual dfExpected |
dfInternal := DataFrameInternal withRows:
#((1 2)(3 4)(5 6)).
dfExpected := DataFrameInternal withRows:
#((10 20)(30 40)(50 60)).
dfActual := dfInternal
collect: [ :each |
each * 10 ].
self assert: dfActual equals: dfExpected
]
{ #category : #tests }
DataFrameInternalTest >> testColumnAt [
| actualColumn expectedColumn |
actualColumn := df columnAt: 2.
expectedColumn := #(1.609 2.789 8.788).
self assert: actualColumn equals: expectedColumn
]
{ #category : #tests }
DataFrameInternalTest >> testColumnAtPut [
| actual expected |
expected := DataFrameInternal withRows: #(
('X' 1.609 0)
('Y' 2.789 1)
('Z' 8.788 0)).
actual := df.
actual columnAt: 1 put: #(X Y Z).
actual columnAt: 3 put: #(0 1 0).
self assert: actual equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testColumnsAt [
| columnNumbers dfActual dfExpected |
columnNumbers := #(1 3).
dfExpected := DataFrameInternal withRows: #(
('Barcelona' true)
('Dubai' true)
('London' false)).
dfActual := df columnsAt: columnNumbers.
self assert: dfActual equals: dfExpected
]
{ #category : #tests }
DataFrameInternalTest >> testCreateDataFrameInternalWithColumns [
| array2D expected actual |
array2D := Array2D
rows: 3
columns: 2
contents: #(1 2 3 4 5 6).
expected := DataFrameInternal fromArray2D: array2D.
actual := DataFrameInternal withColumns: #((1 3 5)(2 4 6)).
self assert: actual equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testCreateDataFrameInternalWithRows [
| array2D actual expected |
array2D := Array2D
rows: 3
columns: 2
contents: #(1 2 3 4 5 6).
expected := DataFrameInternal fromArray2D: array2D.
actual := DataFrameInternal withRows: #((1 2)(3 4)(5 6)).
self assert: actual equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testDeepCopy [
| dfCopy |
dfCopy := df deepCopy.
self assert: df equals: dfCopy.
self deny: df identicalTo: dfCopy
]
{ #category : #tests }
DataFrameInternalTest >> testDo [
| dfInternal sum |
dfInternal := DataFrameInternal withRows:
#((1 2)(3 4)(5 6)).
sum := 0.
dfInternal do: [ :each |
sum := sum + each ].
self assert: sum equals: 21
]
{ #category : #tests }
DataFrameInternalTest >> testFromArray2D [
| dfi array2D |
array2D := Array2D
rows: 3
columns: 2
contents: #(1 2 3 4 5 6).
dfi := DataFrameInternal fromArray2D: array2D.
self assert: dfi asArray2D equals: array2D
]
{ #category : #tests }
DataFrameInternalTest >> testPrintOn [
| expected actual |
expected := String new writeStream.
expected
nextPutAll: '(''Barcelona'' 1.609 true'; cr;
nextPutAll: '''Dubai'' 2.789 true'; cr;
nextPutAll: '''London'' 8.788 false )'.
expected := expected contents.
actual := String new writeStream.
df printOn: actual.
actual := actual contents.
self assert: actual equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testRemoveColumnAt [
| expected |
expected := DataFrameInternal withRows: #(
('Barcelona' true)
('Dubai' true)
('London' false)).
df removeColumnAt: 2.
self assert: df equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testRemoveColumnsOfRowElementsSatisfyingOnRow [
| expected |
df := DataFrameInternal withRows: #(
('Barcelona' 1.609 nil)
('Dubai' 2.789 true)
('London' nil nil)
('Washington' nil true)
('Delhi' 10.422 nil)).
expected := DataFrameInternal withRows: #(
('Barcelona')
('Dubai')
('London')
('Washington')
('Delhi')).
self assert: (df removeColumnsOfRowElementsSatisfying: [ :ele | ele isNil ] onRow: 3) equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testRemoveRowAt [
| expected |
expected := DataFrameInternal withRows: #(
('Barcelona' 1.609 true)
('London' 8.788 false)).
df removeRowAt: 2.
self assert: df equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testRemoveRowsWhereElementsInColumnAtSatisfy [
| expected |
df := DataFrameInternal withRows:
#( #( 'Barcelona' 1.609 nil ) #( 'Dubai' 2.789 true )
#( 'London' 8.788 nil ) #( 'Washington' nil true )
#( 'Delhi' 10.422 nil ) ).
expected := DataFrameInternal withRows:
#( #( 'Dubai' 2.789 true ) #( 'Washington' nil true ) ).
self
assert:
(df
removeRowsWhereElementsInColumnAt: 3
satisfy: [ :ele | ele isNil ])
equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testReplaceMissingValuesStrings [
| expected |
df := DataFrameInternal withRows: #(
('Barcelona' 1.609 'null')
('Dubai' '?' true)
(nil 8.788 '')).
expected := DataFrameInternal withRows: #(
('Barcelona' 1.609 nil)
('Dubai' nil true)
(nil 8.788 nil)).
self assert: (df replaceMissingValuesStrings: #('null' '?' '') asSet) equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testReplaceMissingValuesStringsOnEmptySet [
| expected |
df := DataFrameInternal withRows: #(
('Barcelona' 1.609 true)
('Dubai' 2.789 true)
('London' 8.788 false)).
expected := DataFrameInternal withRows: #(
('Barcelona' 1.609 true)
('Dubai' 2.789 true)
('London' 8.788 false)).
self assert: (df replaceMissingValuesStrings: #() asSet) equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testRowAt [
| actualRow expectedRow |
actualRow := df rowAt: 2.
expectedRow := #('Dubai' 2.789 true).
self assert: actualRow equals: expectedRow
]
{ #category : #tests }
DataFrameInternalTest >> testRowAtPut [
| actual expected |
expected := DataFrameInternal withRows: #(
('Barcelona' 1.609 true)
('X' 'Y' 'Z')
('London' 8.788 false)).
actual := df.
actual rowAt: 2 put: #(X Y Z).
self assert: actual equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testRowsAt [
| rowNumbers dfActual dfExpected |
rowNumbers := #(1 3).
dfExpected := DataFrameInternal withRows: #(
('Barcelona' 1.609 true)
('London' 8.788 false)).
dfActual := df rowsAt: rowNumbers.
self assert: dfActual equals: dfExpected
]
{ #category : #tests }
DataFrameInternalTest >> testVarSizeInstanceCreation [
| dfActual |
dfActual := DataFrameInternal new: 6@8.
self assert: dfActual numberOfRows equals: 6.
self assert: dfActual numberOfColumns equals: 8
]
{ #category : #tests }
DataFrameInternalTest >> testWithColumns [
| dfi validOutput |
dfi := DataFrameInternal withColumns: #((1 2) (1 2 3 4 5) ('a' 3.14 'bcd')).
validOutput := Array2D
rows: 5
columns: 3
contents: #(1 1 'a' 2 2 3.14 nil 3 'bcd' nil 4 nil nil 5 nil).
self assert: dfi asArray2D equals: validOutput
]
{ #category : #tests }
DataFrameInternalTest >> testWithIndicesCollect [
| dfInternal actual expected |
dfInternal := DataFrameInternal withRows:
#((1 2)(3 4)(5 6)).
expected := DataFrameInternal withRows:
#((true true)(true true)(true true)).
actual := dfInternal
withIndicesCollect: [ :each :i :j |
each = ((i - 1) * 2 + j) ].
self assert: actual equals: expected
]
{ #category : #tests }
DataFrameInternalTest >> testWithIndicesDo [
| dfInternal |
dfInternal := DataFrameInternal withRows:
#((1 2)(3 4)(5 6)).
dfInternal withIndicesDo: [ :each :i :j |
self assert: each equals: ((i - 1) * 2 + j) ]
]
{ #category : #tests }
DataFrameInternalTest >> testWithRows [
| dfi validOutput |
dfi := DataFrameInternal withRows: #((1 2) (1 2 3 4 5) ('a' 3.14 'bcd')).
validOutput := Array2D
rows: 3
columns: 5
contents: #(1 2 nil nil nil 1 2 3 4 5 'a' 3.14 'bcd' nil nil).
self assert: dfi asArray2D equals: validOutput
]