-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathobjects.js
134 lines (105 loc) · 4.94 KB
/
objects.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
import loupe from '../lib/index.js'
import { expect } from 'chai'
for (const [suite, inspect] of Object.entries({
objects: loupe,
'objects (Object.create(null))': (obj, ...rest) => loupe(Object.assign(Object.create(null), obj), ...rest),
})) {
describe(suite, () => {
it('returns `{}` for empty objects', () => {
expect(inspect({})).to.equal('{}')
})
it('quotes a key if it contains special chars', () => {
expect(inspect({ 'a.b': 1 })).to.equal("{ 'a.b': 1 }")
expect(inspect({ 'a b': 1 })).to.equal("{ 'a b': 1 }")
})
it('quotes a key if it is empty', () => {
expect(inspect({ '': 1 })).to.equal("{ '': 1 }")
})
it('quotes a key if it contains a single quote', () => {
expect(inspect({ "'": 1 })).to.equal("{ '\\'': 1 }")
})
it('quotes a key if it contains a double quote', () => {
expect(inspect({ '"': 1 })).to.equal("{ '\"': 1 }")
})
if (suite === 'objects') {
it('detects circular references', () => {
const main = {}
main.a = main
expect(inspect(main)).to.equal('{ a: [Circular] }')
})
}
it('returns `{}` for empty objects with an anonoymous prototype', () => {
expect(inspect(Object.create({ a: 1 }))).to.equal('{}')
})
it('returns `{}` for empty objects with a null prototype', () => {
expect(inspect(Object.create(Object.create(null)))).to.equal('{}')
})
it("shows objects' own properties for objects with an anonoymous prototype", () => {
const obj = Object.create({ a: 1 })
obj.b = 2
expect(inspect(obj)).to.equal('{ b: 2 }')
})
describe('truncate', () => {
it('returns the full representation when truncate is over string length', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 20 })).to.equal('{ a: 1, b: 2, c: 3 }')
})
it('truncates object values longer than truncate (19)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 19 })).to.equal('{ a: 1, …(2) }')
})
it('truncates object values longer than truncate (18)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 18 })).to.equal('{ a: 1, …(2) }')
})
it('truncates object values longer than truncate (17)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 17 })).to.equal('{ a: 1, …(2) }')
})
it('truncates object values longer than truncate (16)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 16 })).to.equal('{ a: 1, …(2) }')
})
it('truncates object values longer than truncate (15)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 15 })).to.equal('{ a: 1, …(2) }')
})
it('truncates object values longer than truncate (14)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 14 })).to.equal('{ a: 1, …(2) }')
})
it('truncates object values longer than truncate (13)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 13 })).to.equal('{ …(3) }')
})
it('truncates object values longer than truncate (12)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 12 })).to.equal('{ …(3) }')
})
it('truncates object values longer than truncate (11)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 11 })).to.equal('{ …(3) }')
})
it('truncates object values longer than truncate (10)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 10 })).to.equal('{ …(3) }')
})
it('truncates object values longer than truncate (9)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 9 })).to.equal('{ …(3) }')
})
it('truncates object values longer than truncate (8)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 8 })).to.equal('{ …(3) }')
})
it('truncates object values longer than truncate (7)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 7 })).to.equal('{ …(3) }')
})
it('truncates object values longer than truncate (6)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 6 })).to.equal('{ …(3) }')
})
it('truncates object values longer than truncate (5)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 5 })).to.equal('{ …(3) }')
})
it('truncates object values longer than truncate (4)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 4 })).to.equal('{ …(3) }')
})
it('truncates object values longer than truncate (3)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 3 })).to.equal('{ …(3) }')
})
it('truncates object values longer than truncate (2)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 2 })).to.equal('{ …(3) }')
})
it('truncates object values longer than truncate (1)', () => {
expect(inspect({ a: 1, b: 2, c: 3 }, { truncate: 1 })).to.equal('{ …(3) }')
})
})
})
}