-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeep-equals.ts
249 lines (209 loc) · 8.53 KB
/
deep-equals.ts
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
// Based on code from <https://github.com/substack/node-deep-equal>
import { createObjectDiffMessage, describePath } from "./formatter"
import { $any, $compare } from "./symbols"
interface ErrorWithPath extends Error {
path: Array<string | number>
}
export interface Options {
strict?: boolean,
allowAdditionalProps?: boolean,
}
type InternalComparisonFunction = (actual: any) => true | Error
type UserComparisonFunction = (actual: any) => boolean
interface AnyComparison {
// Why not just use $compare?
// If $any is found on an object with other enumerable properties,
// we know that it's there because of an object spread
[$any]: true
}
interface Comparison {
[$compare]: InternalComparisonFunction
}
const supportsArgumentsClass = (function () {
return Object.prototype.toString.call(arguments)
})() === '[object Arguments]';
function supported(object: any) {
return Object.prototype.toString.call(object) === '[object Arguments]';
};
function unsupported(object: any) {
return object &&
typeof object === 'object' &&
typeof object.length === 'number' &&
Object.prototype.hasOwnProperty.call(object, 'callee') &&
!Object.prototype.propertyIsEnumerable.call(object, 'callee') ||
false;
};
function createMessage(message: string, actual: any, expected: any): string {
return `${message}:\n Actual: ${actual}\n Expected: ${expected}`
}
function isUndefinedOrNull(value: any): value is undefined | null {
return value === null || value === undefined;
}
function isBuffer(x: any): x is Buffer {
if (!x || typeof x !== 'object' || typeof x.length !== 'number') {
return false;
}
if (typeof x.copy !== 'function' || typeof x.slice !== 'function') {
return false;
}
if (x.length > 0 && typeof x[0] !== 'number') {
return false;
}
return true;
}
function stripFirstLine(message: string) {
const indexOfFirstLinebreak = message.indexOf("\n")
return message.substr(indexOfFirstLinebreak + 1)
}
const isArguments = supportsArgumentsClass ? supported : unsupported
export function any(): AnyComparison {
return {
[$any]: true
}
}
export function satisfies(compare: UserComparisonFunction): Comparison {
return {
[$compare]: (actual) => {
try {
const result = compare(actual)
return result === true
? true
: Error(createMessage("Custom value matcher failed", actual, "<custom logic>"))
} catch (error) {
return error
}
}
}
}
export function deepEquals(actual: any, expected: any, path: Array<string | number>, opts: Options = {}): true | Error {
let result: true | Error
let allowAdditionalProps: boolean = opts.allowAdditionalProps === true
if (expected && expected[$any]) {
if (typeof expected === "object" && Object.keys(expected).length > 0) {
// $any got in the object because of an object spread
allowAdditionalProps = true
} else {
return true
}
}
if (expected && expected[$compare]) {
return (expected as Comparison)[$compare](actual)
}
if (actual === expected) {
result = true;
} else if (actual instanceof Date && expected instanceof Date) {
result = (actual.getTime() === expected.getTime()) ||
Error(createMessage("Dates do not match", actual, expected))
} else if (!actual || !expected || typeof actual !== 'object' && typeof expected !== 'object') {
// tslint:disable-next-line
result = (opts.strict ? actual === expected : actual == expected) ||
Error(createMessage("Values do not match", actual, expected))
} else if (isUndefinedOrNull(actual) || isUndefinedOrNull(expected)) {
return actual === expected || Error(createMessage("Values do not match", actual, expected))
} else if (["bigint", "boolean", "number", "string", "symbol"].indexOf(typeof actual) > -1) {
return actual === expected || Error(createMessage("Values do not match", actual, expected))
} else {
result = objEquiv(actual, expected, path, allowAdditionalProps, opts)
}
if (result instanceof Error && (result as ErrorWithPath).path) {
return result
} else if (result instanceof Error) {
const error = path.length > 0
? Error(`Expectation failed: ${describePath(["$root", ...path])} does not match.\n${stripFirstLine(result.message)}`)
: result
// tslint:disable-next-line
return Object.assign((error as ErrorWithPath), { path })
}
return true
}
function diffArrayElements(actual: any[], expected: any[], path: Array<string | number>, allowAdditionalProps: boolean, opts: Options) {
const propMatches: Array<[number, boolean]> = []
for (let index = 0; index < expected.length; index++) {
const result = deepEquals(actual[index], expected[index], [...path, index], opts)
propMatches.push([index, !(result instanceof Error)])
}
if (!allowAdditionalProps && actual.length > expected.length) {
for (let index = expected.length; index < actual.length; index++) {
propMatches.push([index, false])
}
}
propMatches.sort((pa, pb) => pa > pb ? 1 : -1)
return propMatches
}
function diffObjectProps(actual: any, expected: any, path: Array<string | number>, allowAdditionalProps: boolean, opts: Options) {
let actualKeys: string[]
let expectedKeys: string[]
try {
actualKeys = Object.keys(actual)
expectedKeys = Object.keys(expected)
} catch (e) {
// happens when one is a string literal and the other isn't
return Error(createMessage("Actual value or expectation is a string literal, the other one is not", actual, expected))
}
const propMatches: Array<[string, boolean]> = []
for (const key of expectedKeys) {
const result = deepEquals(actual[key], expected[key], [...path, key], opts)
propMatches.push([key, !(result instanceof Error)])
}
if (!allowAdditionalProps) {
const unexpectedKeys = actualKeys.filter(key => expectedKeys.indexOf(key) === -1)
propMatches.push(...unexpectedKeys.map(key => [key, false]) as Array<[string, boolean]>)
}
propMatches.sort((pa, pb) => pa > pb ? 1 : -1)
return propMatches
}
function objEquiv(actual: any, expected: any, path: Array<string | number>, allowAdditionalProps: boolean, opts: Options): true | Error {
// an identical 'prototype' property.
if (actual.prototype !== expected.prototype) {
return Error(createMessage("Object prototypes do not match", actual, expected))
}
// ~~~I've managed to break Object.keys through screwy arguments passing. (@substack)
// Converting to array solves the problem.
if (isArguments(actual)) {
if (!isArguments(expected)) {
return Error(createMessage("Got arguments pseudo-array, but did not expect it", actual, expected))
}
return deepEquals([...actual], [...expected], path, opts);
}
if (isBuffer(expected)) {
if (!isBuffer(actual)) {
return Error(createMessage("Expected a buffer", actual, expected))
}
if (actual.length !== expected.length) {
return Error(createMessage("Buffer size does not match", actual.length, expected.length))
}
for (let i = 0; i < actual.length; i++) {
if (actual[i] !== expected[i]) {
return Error(createMessage(`Buffer contents do not match at offset ${i}`, actual[i], expected[i]))
}
}
return true;
}
if (!Array.isArray(actual) && Array.isArray(expected)) {
return Error(createMessage("Expected an array", actual, expected))
} else if (Array.isArray(actual) && !Array.isArray(expected)) {
return Error(createMessage("Got an array, but did not expect one", actual, expected))
}
const propMatches = Array.isArray(expected)
? diffArrayElements(actual, expected, path, allowAdditionalProps, opts)
: diffObjectProps(actual, expected, path, allowAdditionalProps, opts)
if (propMatches instanceof Error) {
return propMatches
}
if ((propMatches as Array<[string | number, boolean]>).some(([, matches]) => !matches)) {
const mismatchingSubObjectsProp = (propMatches as Array<[string | number, boolean]>).find(
([prop, matches]) => !matches && actual[prop] && expected[prop] && typeof actual[prop] === "object" && typeof expected[prop] === "object"
)
if (mismatchingSubObjectsProp) {
const prop = mismatchingSubObjectsProp[0]
return deepEquals(actual[prop], expected[prop], [...path, prop], opts)
} else {
const message = `${Array.isArray(actual) ? "Arrays" : "Objects"} do not match:`
return Object.assign(
Error(createObjectDiffMessage(message, actual, expected, path, propMatches)),
{ path }
)
}
}
return typeof actual === typeof expected || Error(createMessage("Types of values do not match", typeof actual, typeof expected))
}