-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrange.test.js
150 lines (125 loc) · 4.22 KB
/
range.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
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
const test = require('tape')
const tapSpec = require('tap-spec')
const {iter} = require('../src/iter')
const {Range, range} = require('../src/range')
test.createStream()
.pipe(tapSpec())
.pipe(process.stdout)
test('range', t => {
t.test('Constructor should be able to take variable arguments', function (t) {
var r = new Range()
t.comment(JSON.stringify(r))
t.equal(r.start, 0)
t.equal(r.stop, 0)
t.equal(r.step, 1)
var r = new Range(4)
t.comment(JSON.stringify(r))
t.equal(r.start, 0)
t.equal(r.stop, 4)
t.equal(r.step, 1)
var r = new Range(1, 4)
t.comment(JSON.stringify(r))
t.equal(r.start, 1)
t.equal(r.stop, 4)
t.equal(r.step, 1)
var r = new Range(1, 4, 2)
t.comment(JSON.stringify(r))
t.equal(r.start, 1)
t.equal(r.stop, 4)
t.equal(r.step, 2)
var r = new Range(null, 4, 2)
t.comment(JSON.stringify(r))
t.equal(r.start, 0)
t.equal(r.stop, 4)
t.equal(r.step, 2)
var r = new Range(4, null, 2)
t.comment(JSON.stringify(r))
t.equal(r.start, 4)
t.equal(r.stop, 0)
t.equal(r.step, 2)
var r = new Range(-1, -4)
t.comment(JSON.stringify(r))
t.equal(r.start, -1)
t.equal(r.stop, -4)
t.equal(r.step, 1)
var r = new Range(-1, -4, -2)
t.comment(JSON.stringify(r))
t.equal(r.start, -1)
t.equal(r.stop, -4)
t.equal(r.step, -2)
t.end()
})
var ranges = [
{args: [null, null], expected: []},
{args: [1, null], expected: []},
{args: [null, 6], expected: [0,1,2,3,4,5]},
{args: [null, null, null], expected: []},
{args: [1, null, null], expected: []},
{args: [null, 6, null], expected: [0,1,2,3,4,5]},
{args: [], expected: []},
{args: [6], expected: [0,1,2,3,4,5]},
{args: [1, 6], expected: [1,2,3,4,5]},
{args: [6, 1], expected: []},
{args: [1, 6, 2], expected: [1,3,5]},
{args: [0, 6, 2], expected: [0,2,4]},
{args: [1, 6, 3], expected: [1,4]},
{args: [0, 6, 3], expected: [0,3]},
{args: [6, 1, 2], expected: []},
{args: [6, 0, 2], expected: []},
{args: [6, 1, -2], expected: [6,4,2]},
{args: [6, 0, -2], expected: [6,4,2]},
{args: [6, 1, -3], expected: [6,3]},
{args: [6, 0, -3], expected: [6,3]},
{args: [-6, 0, -2], expected: []},
{args: [-6, 0, 2], expected: [-6,-4,-2]},
{args: [-6, 1, 2], expected: [-6,-4,-2, 0]},
]
t.test('new Range, Range.new and range should all produce the same object', function (t) {
for (var {args} of ranges) {
var expected = new Range(...args)
t.same(Range.new(...args), expected, `Range.new(${args}) should create the same object as new Range(${args})`)
t.same(range(...args), expected, `range(${args}) should create the same object as new Range(${args})`)
}
t.end()
})
t.test('lengths should be equal', function (t) {
for (var {args, expected} of ranges) {
var r = new Range(...args)
t.equal(r.length, expected.length, `range ${JSON.stringify(r)} length should be ${expected.length}`)
}
t.end()
})
t.test('iter() should give an iterator for the range', function (t) {
for (var {args, expected} of ranges) {
var r = new Range(...args)
var arr = Array.from(iter(r))
t.same(arr, expected, `range iter ${JSON.stringify(r)} should be ${JSON.stringify(expected)}`)
}
t.end()
})
t.test('values() should give an iterator for the range', function (t) {
for (var {args, expected} of ranges) {
var r = new Range(...args)
var values = Array.from(r.values())
t.same(values, expected, `range.values() ${JSON.stringify(r)} should be ${JSON.stringify(expected)}`)
}
t.end()
})
t.test('entries() should give an iterator for the range', function (t) {
for (var {args, expected} of ranges) {
var r = new Range(...args)
var entries = Array.from(r.entries())
t.same(entries, expected.map(v => [v,v]), `range.entries() ${JSON.stringify(r)} should be ${JSON.stringify(expected.map(v => [v,v]))}`)
}
t.end()
})
// t.test('get(index) should fetch values at index', function (t) {
// for (var {args, expected} of ranges) {
// var r = new Range(...args)
// var entries = Array.from(r.entries())
// r.get(arg)
// }
// t.end()
// })
t.end()
})