-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.js
More file actions
182 lines (133 loc) · 3.63 KB
/
test.js
File metadata and controls
182 lines (133 loc) · 3.63 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
'use strict'
const t = require('tap')
const NicknameMap = require('.')
t.beforeEach(t => {
t.context.map = new NicknameMap()
})
t.test('throws if options isn\'t object literal', t => {
try {
/* eslint-disable-next-line no-new */
new NicknameMap(null)
throw new Error('Should throw')
} catch (err) {
t.equal(err.message, 'Expected options to be an object literal')
}
t.end()
})
t.test('throws if options.nicknaming isn\'t boolean or function', t => {
try {
/* eslint-disable-next-line no-new */
new NicknameMap({ nicknaming: 1 })
throw new Error('Should throw')
} catch (err) {
t.equal(err.message, 'Expected options.nicknaming to be a boolean or function')
}
t.end()
})
t.test('specify nicknaming function', t => {
const map = new NicknameMap({ nicknaming: NicknameMap.defaultNicknameFunction })
t.equal(map.nicknaming, true)
t.end()
})
t.test('disables nicknaming', t => {
const map = new NicknameMap({ nicknaming: false })
t.equal(map.nicknaming, false)
t.end()
})
t.test('enables nicknaming', t => {
const map = new NicknameMap({ nicknaming: true })
t.equal(map.nicknaming, true)
t.end()
})
t.test('fails to get object key', t => {
const value = t.context.map.get({ foo: 1 })
t.equal(value, undefined)
t.end()
})
t.test('sets and gets primitive key', t => {
t.context.map.set(1, 2)
const value = t.context.map.get(1)
t.equal(value, 2)
t.end()
})
t.test('sets and deletes primitive key', t => {
t.context.map.set(1, 2)
t.context.map.delete(1)
const value = t.context.map.get(1)
t.equal(value, undefined)
t.end()
})
t.test('sets and gets object key', t => {
t.context.map.set({ foo: 1 }, 'bar')
const value = t.context.map.get({ foo: 1 })
t.equal(value, 'bar')
t.end()
})
t.test('sets object keys with same nicknames', t => {
t.context.map.set({ foo: 1, bar: 2 }, 'baz')
t.context.map.set({ foo: 2, bar: 1 }, 'bam')
const keys = [...t.context.map.keys()].sort()
t.same(keys, [
'%bar%foo',
'{"bar":1,"foo":2}',
'{"bar":2,"foo":1}'
])
t.end()
})
t.test('sets array keys with same nicknames', t => {
t.context.map.set([1, 2], 'baz')
t.context.map.set([2, 3], 'bam')
const keys = [...t.context.map.keys()].sort()
t.same(keys, [
'$2',
'[1,2]',
'[2,3]'
])
t.end()
})
t.test('sets array keys with same nicknames and deletes 1', t => {
t.context.map.set([1, 2], 'baz')
t.context.map.set([2, 3], 'bam')
t.context.map.delete([1, 2])
const keys = [...t.context.map.keys()].sort()
t.same(keys, [
'$2',
'[2,3]'
])
t.end()
})
t.test('sets object key and fails to get other object key', t => {
t.context.map.set({ foo: 1, baz: 3 }, 'bar')
const value = t.context.map.get({ bar: 0, baz: ['2'] })
t.equal(value, undefined)
t.end()
})
t.test('sets and gets deletes object key', t => {
t.context.map.set({ foo: 1, a: 'b' }, 'bar')
{
const keys = [...t.context.map.keys()].sort()
t.same(keys, [
'%a%foo',
'{"a":"b","foo":1}'
])
}
const result = t.context.map.delete({ foo: 1, a: 'b' })
t.equal(result, true)
{
const keys = [...t.context.map.keys()].sort()
t.same(keys, [])
}
t.end()
})
t.test('sets object key and fails to delete other object key with same properties', t => {
t.context.map.set({ foo: 1, baz: 3 }, 'bar')
const result = t.context.map.delete({ foo: 1, baz: '3' })
t.equal(result, false)
t.end()
})
t.test('sets object key and fails to delete other object key with different properties', t => {
t.context.map.set({ foo: 1, baz: 3 }, 'bar')
const result = t.context.map.delete({ foo: 1, bar: 3 })
t.equal(result, false)
t.end()
})