-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
77 lines (60 loc) · 2.11 KB
/
test.js
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
const rearrange = require('./')
const test = require('tape')
const tapSpec = require('tap-spec')
test('rearrange', function(t) {
t.deepEqual(rearrange(new Map([
[0, 0]
]), [1, 2, 3]), [1, 2, 3], 'swapping same index (top item)')
t.deepEqual(rearrange(new Map([
[2, 2]
]), [1, 2, 3]), [1, 2, 3], 'swapping same index (bottom item)')
t.deepEqual(rearrange(new Map([
[1, 1]
]), [1, 2, 3]), [1, 2, 3], 'swapping same index (middle item)')
t.deepEqual(rearrange(new Map([
[2, 0]
]), [1, 2, 3]), [3, 1, 2], 'moving bottom to top')
t.deepEqual(rearrange(new Map([
[0, 2]
]), [1, 2, 3]), [2, 3, 1], 'moving top to bottom')
t.deepEqual(rearrange(new Map([
[0, 2],
[2, 0]
]), [1, 2, 3]), [3, 2, 1], 'swapping top and bottom')
t.deepEqual(rearrange(new Map([
[0, 1],
[1, 0]
]), [1, 2, 3]), [2, 1, 3], 'swapping top and midle')
t.deepEqual(rearrange(new Map([
[2, 1],
[1, 2]
]), [1, 2, 3]), [1, 3, 2], 'swapping bottom and middle')
t.deepEqual(rearrange(new Map([
[6, 1],
[5, 4],
[7, 2]
]), [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]), [0, 6, 7, 1, 5, 2, 3, 4, 8, 9], 'moving bottom elements to top')
t.deepEqual(rearrange(new Map([
[0, 6],
[2, 8],
[3, 5]
]), [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]), [1, 4, 5, 6, 7, 3, 0, 8, 2, 9], 'moving top elements to bottom')
t.deepEqual(rearrange(new Map([
[0, 8],
[6, 3],
[2, 5]
]), [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]), [1, 3, 4, 6, 5, 2, 7, 8, 0, 9], 'moving elements to top and bottom')
t.deepEqual(rearrange(new Map(), [1, 2, 3, 4]),
[1, 2, 3, 4], 'no changes (empty Map)')
t.deepEqual(rearrange(new Map(), []),
[], 'no changes (empty Map) and empty list')
t.throws(() => rearrange(new Map([
[0, 2],
[1, 2]
]), [1, 2, 3]), 'changes parameter must have movements to distinct positions',
'if there are movements to the same position throws an error')
t.end()
})
test.createStream()
.pipe(tapSpec())
.pipe(process.stdout)