-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(SimplifyPath.ts): add new utility class for path simplification …
…with support for 2D, 3D, and N-dimensional points test(SimplifyPath): add comprehensive test cases for path simplification across multiple dimensions and tolerances
- Loading branch information
Showing
2 changed files
with
498 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,273 @@ | ||
/* eslint-disable @typescript-eslint/no-explicit-any */ | ||
import { SimplifyPath } from './SimplifyPath'; | ||
|
||
const cases = [ | ||
{ | ||
name: 'empty path', | ||
path: [], | ||
tolerance: 1, | ||
simplified: [], | ||
}, | ||
{ | ||
name: 'one 2-dimensional point', | ||
path: Array.from({ length: 1 }, (_, i) => ({ x: i, y: i })), | ||
tolerance: 1, | ||
simplified: [{ x: 0, y: 0 }], | ||
}, | ||
{ | ||
name: 'two 2-dimensional points', | ||
path: Array.from({ length: 2 }, (_, i) => ({ x: i, y: i })), | ||
tolerance: 1, | ||
simplified: [ | ||
{ x: 0, y: 0 }, | ||
{ x: 1, y: 1 }, | ||
], | ||
}, | ||
{ | ||
name: 'three 2-dimensional points on a line', | ||
path: Array.from({ length: 3 }, (_, i) => ({ x: i, y: i })), | ||
tolerance: 1, | ||
simplified: [ | ||
{ x: 0, y: 0 }, | ||
{ x: 2, y: 2 }, | ||
], | ||
}, | ||
{ | ||
name: 'one hundred 2-dimensional points on a line', | ||
path: Array.from({ length: 100 }, (_, i) => ({ x: i, y: i })), | ||
tolerance: 1, | ||
simplified: [ | ||
{ x: 0, y: 0 }, | ||
{ x: 99, y: 99 }, | ||
], | ||
}, | ||
{ | ||
name: 'three 2-dimensional points not on a line', | ||
path: [ | ||
{ x: 1, y: 1 }, | ||
{ x: 0, y: 0 }, | ||
{ x: 0.5, y: 0 }, | ||
], | ||
tolerance: 1, | ||
simplified: [ | ||
{ x: 1, y: 1 }, | ||
{ x: 0.5, y: 0 }, | ||
], | ||
}, | ||
{ | ||
name: 'three 2-dimensional points forming a triangle', | ||
path: [ | ||
{ x: 0, y: 0 }, | ||
{ x: 100, y: 0 }, | ||
{ x: 0, y: 100 }, | ||
], | ||
tolerance: 100, | ||
simplified: [ | ||
{ x: 0, y: 0 }, | ||
{ x: 0, y: 100 }, | ||
], | ||
}, | ||
{ | ||
name: 'three 2-dimensional points forming a triangle with tolerance 0.5', | ||
path: [ | ||
{ x: 0, y: 0 }, | ||
{ x: 1, y: 0 }, | ||
{ x: 0, y: 1 }, | ||
], | ||
tolerance: 0.5, | ||
simplified: [ | ||
{ x: 0, y: 0 }, | ||
{ x: 1, y: 0 }, | ||
{ x: 0, y: 1 }, | ||
], | ||
}, | ||
{ | ||
name: 'six 2-dimensional points forming a triangle with tolerance 1', | ||
path: [ | ||
{ x: 0, y: 0 }, | ||
{ x: 1, y: 0 }, | ||
{ x: 0, y: 1 }, | ||
{ x: 1, y: 1 }, | ||
{ x: 0, y: 2 }, | ||
{ x: 1, y: 2 }, | ||
], | ||
tolerance: 1, | ||
simplified: [ | ||
{ x: 0, y: 0 }, | ||
{ x: 1, y: 2 }, | ||
], | ||
}, | ||
{ | ||
name: 'five 2-dimensional points forming a sin wave with tolerance 1', | ||
path: Array.from({ length: 5 }, (_, i) => ({ x: i, y: Math.sin(i) })), | ||
tolerance: 1, | ||
simplified: [ | ||
{ x: 0, y: 0 }, | ||
{ x: 2, y: Math.sin(2) }, | ||
{ x: 4, y: Math.sin(4) }, | ||
], | ||
}, | ||
{ | ||
name: 'one hundred 2-dimensional points forming a sin wave with tolerance 10', | ||
path: Array.from({ length: 100 }, (_, i) => ({ x: i, y: Math.sin(i) })), | ||
tolerance: 10, | ||
simplified: [ | ||
{ x: 0, y: 0 }, | ||
{ x: 99, y: Math.sin(99) }, | ||
], | ||
}, | ||
{ | ||
name: 'one hundred 2-dimensional points with complex head and a line', | ||
path: (() => { | ||
const arr = Array.from({ length: 100 }, (_, i) => ({ | ||
x: i <= 20 && i % 2 !== 0 ? 0.5 : i, | ||
y: i <= 20 ? 0.5 : i, | ||
})); | ||
return arr; | ||
})(), | ||
tolerance: 1, | ||
simplified: [ | ||
{ x: 0, y: 0.5 }, | ||
{ x: 20, y: 0.5 }, | ||
{ x: 21, y: 21 }, | ||
{ x: 99, y: 99 }, | ||
], | ||
}, | ||
// 3-dimensional points | ||
{ | ||
name: 'three 3-dimensional points on a line', | ||
path: Array.from({ length: 3 }, (_, i) => ({ x: i, y: i, z: i })), | ||
tolerance: 1, | ||
simplified: [ | ||
{ x: 0, y: 0, z: 0 }, | ||
{ x: 2, y: 2, z: 2 }, | ||
], | ||
}, | ||
{ | ||
name: 'three 3-dimensional points not on a line', | ||
path: [ | ||
{ x: 1, y: 1, z: 1 }, | ||
{ x: 0, y: 0, z: 0 }, | ||
{ x: 0.5, y: 0.5, z: 0 }, | ||
], | ||
tolerance: 1, | ||
simplified: [ | ||
{ x: 1, y: 1, z: 1 }, | ||
{ x: 0.5, y: 0.5, z: 0 }, | ||
], | ||
}, | ||
{ | ||
name: 'three 3-dimensional points not on a line', | ||
path: [ | ||
{ x: 0, y: 0, z: 0 }, | ||
{ x: 1, y: 0, z: 0 }, | ||
{ x: 0, y: 0, z: 0.5 }, | ||
], | ||
tolerance: 1, | ||
simplified: [ | ||
{ x: 0, y: 0, z: 0 }, | ||
{ x: 0, y: 0, z: 0.5 }, | ||
], | ||
}, | ||
{ | ||
name: 'five 3-dimensional points forming a pyramid with tolerance 1', | ||
path: [ | ||
{ x: 0, y: 0, z: 0 }, | ||
{ x: 1, y: 0, z: 0 }, | ||
{ x: 0, y: 1, z: 0 }, | ||
{ x: 0, y: 0, z: 1 }, | ||
{ x: 1, y: 1, z: 1 }, | ||
], | ||
tolerance: 1, | ||
simplified: [ | ||
{ x: 0, y: 0, z: 0 }, | ||
{ x: 1, y: 1, z: 1 }, | ||
], | ||
}, | ||
{ | ||
name: 'five 3-dimensional points forming a pyramid with tolerance 0.5', | ||
path: [ | ||
{ x: 0, y: 0, z: 0 }, | ||
{ x: 1, y: 0, z: 0 }, | ||
{ x: 0, y: 1, z: 0 }, | ||
{ x: 0, y: 0, z: 1 }, | ||
{ x: 1, y: 1, z: 1 }, | ||
], | ||
tolerance: 0.5, | ||
simplified: [ | ||
{ x: 0, y: 0, z: 0 }, | ||
{ x: 1, y: 0, z: 0 }, | ||
{ x: 0, y: 1, z: 0 }, | ||
{ x: 0, y: 0, z: 1 }, | ||
{ x: 1, y: 1, z: 1 }, | ||
], | ||
}, | ||
// 4-dimensional points | ||
{ | ||
name: 'five 4-dimensional points on a line', | ||
path: Array.from({ length: 5 }, (_, i) => ({ x: i, y: i, z: i, w: i })), | ||
tolerance: 5, | ||
hq: false, | ||
simplified: [ | ||
{ x: 0, y: 0, z: 0, w: 0 }, | ||
{ x: 3, y: 3, z: 3, w: 3 }, | ||
{ x: 4, y: 4, z: 4, w: 4 }, | ||
], | ||
}, | ||
{ | ||
name: 'five 4-dimensional points on a line', | ||
path: Array.from({ length: 5 }, (_, i) => ({ x: i, y: i, z: i, w: i })), | ||
tolerance: 5, | ||
hq: true, | ||
simplified: [ | ||
{ x: 0, y: 0, z: 0, w: 0 }, | ||
{ x: 1, y: 1, z: 1, w: 1 }, | ||
{ x: 2, y: 2, z: 2, w: 2 }, | ||
{ x: 4, y: 4, z: 4, w: 4 }, | ||
], | ||
}, | ||
{ | ||
name: 'three 4-dimensional points not on a line', | ||
path: [ | ||
{ x: 1, y: 1, z: 1, w: 1 }, | ||
{ x: 0, y: 0, z: 0, w: 0 }, | ||
{ x: 0.5, y: 0.5, z: 0.5, w: 0.5 }, | ||
], | ||
tolerance: 1, | ||
simplified: [ | ||
{ x: 1, y: 1, z: 1, w: 1 }, | ||
{ x: 0.5, y: 0.5, z: 0.5, w: 0.5 }, | ||
], | ||
}, | ||
]; | ||
|
||
describe('simplify', () => { | ||
beforeEach(() => { | ||
jest.clearAllMocks(); | ||
}); | ||
it('should crash if dimensions are less than 2', () => { | ||
expect(() => new SimplifyPath(['x']).simplify([{ x: 0 }], 1)).toThrow(); | ||
}); | ||
|
||
for (const { name, path, tolerance, hq, simplified } of cases) { | ||
describe(`should simplify ${name}`, () => { | ||
let keys = path[0] ? Object.keys(path[0]) : undefined; | ||
if (keys?.length === 1) keys = undefined; | ||
const simplify = new SimplifyPath<any, any>(keys).simplify; | ||
if (!hq) { | ||
it('should return the simplified path', () => { | ||
if (tolerance == 1) { | ||
expect(simplify(path)).toEqual(simplified); | ||
} | ||
expect(simplify(path, tolerance)).toEqual(simplified); | ||
expect(simplify(path, tolerance, false)).toEqual(simplified); | ||
}); | ||
} | ||
if (hq || hq === undefined) { | ||
it('should return the simplified path with high quality', () => { | ||
expect(simplify(path, tolerance, true)).toEqual(simplified); | ||
}); | ||
} | ||
}); | ||
} | ||
}); |
Oops, something went wrong.