-
-
Notifications
You must be signed in to change notification settings - Fork 735
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a deep diff function to investigate diff in logs
- Loading branch information
1 parent
75b1311
commit 3ac8ab8
Showing
4 changed files
with
143 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
interface Difference { | ||
index: (string | number)[]; | ||
reason: string; | ||
valueA: any; | ||
valueB: any; | ||
} | ||
|
||
export function deepDiff(arr1: any[], arr2: any[]): Difference[] | null { | ||
const diff: Difference[] = []; | ||
|
||
function compare(a: any, b: any, parentIndex: (string | number)[]): void { | ||
if (Array.isArray(a) && Array.isArray(b)) { | ||
if (a.length !== b.length) { | ||
diff.push({ | ||
index: parentIndex, | ||
reason: 'Different lengths', | ||
valueA: a, | ||
valueB: b, | ||
}); | ||
} else { | ||
for (let i = 0; i < a.length; i++) { | ||
compare(a[i], b[i], parentIndex.concat(i)); | ||
} | ||
} | ||
} else if ( | ||
typeof a === 'object' && | ||
a !== null && | ||
typeof b === 'object' && | ||
b !== null | ||
) { | ||
const keysA = Object.keys(a); | ||
const keysB = Object.keys(b); | ||
|
||
if (!arraysEqual(keysA, keysB)) { | ||
diff.push({ | ||
index: parentIndex, | ||
reason: 'Different keys', | ||
valueA: a, | ||
valueB: b, | ||
}); | ||
} else { | ||
for (const key of keysA) { | ||
compare(a[key], b[key], parentIndex.concat(key)); | ||
} | ||
} | ||
} else if (a !== b) { | ||
diff.push({ | ||
index: parentIndex, | ||
reason: 'Different values', | ||
valueA: a, | ||
valueB: b, | ||
}); | ||
} | ||
} | ||
|
||
function arraysEqual(a: any[], b: any[]): boolean { | ||
return ( | ||
a.length === b.length && | ||
a.sort().every((val, index) => val === b.sort()[index]) | ||
); | ||
} | ||
|
||
compare(arr1, arr2, []); | ||
|
||
return diff.length > 0 ? diff : null; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import { deepDiff } from '../deep-diff'; // Import the deepDiff function | ||
|
||
describe('deepDiff', () => { | ||
it('should return null for equal arrays', () => { | ||
const arr1 = [1, 2, 3]; | ||
const arr2 = [1, 2, 3]; | ||
expect(deepDiff(arr1, arr2)).toBe(null); | ||
}); | ||
|
||
it('should find differences in arrays with different lengths', () => { | ||
const arr1 = [1, 2, 3]; | ||
const arr2 = [1, 2, 3, 4]; | ||
expect(deepDiff(arr1, arr2)).toEqual([ | ||
{ | ||
index: [], | ||
reason: 'Different lengths', | ||
valueA: arr1, | ||
valueB: arr2, | ||
}, | ||
]); | ||
}); | ||
|
||
it('should find differences in arrays with different values', () => { | ||
const arr1 = [1, 2, 3]; | ||
const arr2 = [1, 4, 3]; | ||
expect(deepDiff(arr1, arr2)).toEqual([ | ||
{ | ||
index: [1], | ||
reason: 'Different values', | ||
valueA: 2, | ||
valueB: 4, | ||
}, | ||
]); | ||
}); | ||
|
||
it('should find differences in arrays with different keys in objects', () => { | ||
const arr1 = [{ a: 1 }, { b: 2 }]; | ||
const arr2 = [{ a: 1 }, { c: 2 }]; | ||
expect(deepDiff(arr1, arr2)).toEqual([ | ||
{ | ||
index: [1], | ||
reason: 'Different keys', | ||
valueA: { b: 2 }, | ||
valueB: { c: 2 }, | ||
}, | ||
]); | ||
}); | ||
|
||
it('should handle nested differences in objects', () => { | ||
const arr1 = [{ a: { b: 1 } }, { c: { d: 2 } }]; | ||
const arr2 = [{ a: { b: 1 } }, { c: { d: 3 } }]; | ||
expect(deepDiff(arr1, arr2)).toEqual([ | ||
{ | ||
index: [1, 'c', 'd'], | ||
reason: 'Different values', | ||
valueA: 2, | ||
valueB: 3, | ||
}, | ||
]); | ||
}); | ||
}); |