-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(ui): replace
vitest-canvas-mock
due to ReferenceError bug
- Loading branch information
Showing
7 changed files
with
62 additions
and
48 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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,56 @@ | ||
/** | ||
* Creates a mock for the HTML Canvas API in a testing environment. | ||
* | ||
* This function addresses the problem of testing components that rely on the | ||
* Canvas API in a Node.js environment, where the DOM and Canvas are not natively | ||
* available. Specifically, it solves issues related to testing components that | ||
* use libraries like @glideapps/glide-data-grid, which depend on canvas functionality. | ||
* | ||
* The mock provides stub implementations for commonly used CanvasRenderingContext2D | ||
* methods, allowing tests to run without throwing "not implemented" errors that | ||
* would typically occur when canvas methods are called in a non-browser environment. | ||
* | ||
* @returns An object containing the mocked context and getContext function. | ||
*/ | ||
export const mockHTMLCanvasElement = () => { | ||
/** | ||
* A partial mock of CanvasRenderingContext2D. | ||
* Only the most commonly used methods are mocked to keep the implementation lean. | ||
* Additional methods can be added here as needed. | ||
*/ | ||
const contextMock: Partial<CanvasRenderingContext2D> = { | ||
measureText: vi.fn().mockReturnValue({ | ||
width: 0, | ||
actualBoundingBoxAscent: 0, | ||
actualBoundingBoxDescent: 0, | ||
actualBoundingBoxLeft: 0, | ||
actualBoundingBoxRight: 0, | ||
fontBoundingBoxAscent: 0, | ||
fontBoundingBoxDescent: 0, | ||
}), | ||
fillRect: vi.fn(), | ||
clearRect: vi.fn(), | ||
getImageData: vi | ||
.fn() | ||
.mockReturnValue({ data: new Uint8ClampedArray(), width: 0, height: 0 }), | ||
save: vi.fn(), | ||
fillText: vi.fn(), | ||
restore: vi.fn(), | ||
beginPath: vi.fn(), | ||
moveTo: vi.fn(), | ||
lineTo: vi.fn(), | ||
closePath: vi.fn(), | ||
translate: vi.fn(), | ||
scale: vi.fn(), | ||
rotate: vi.fn(), | ||
arc: vi.fn(), | ||
rect: vi.fn(), | ||
}; | ||
|
||
const getContextMock = vi.fn().mockReturnValue(contextMock); | ||
|
||
// Override the getContext method on the HTMLCanvasElement prototype | ||
window.HTMLCanvasElement.prototype.getContext = getContextMock; | ||
|
||
return { contextMock, getContextMock }; | ||
}; |
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