mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-07-12 05:33:52 +00:00
c05b99fdb6
- Modified ExclamationMarkIcon.svg to have a transparent background with a white outline and a white exclamation mark inside, providing a clearer alert visual.
81 lines
2.4 KiB
TypeScript
81 lines
2.4 KiB
TypeScript
/**
|
|
* @jest-environment jsdom
|
|
*/
|
|
import { ProgressBar } from "../../../src/client/graphics/ProgressBar";
|
|
|
|
describe("ProgressBar", () => {
|
|
let ctx: CanvasRenderingContext2D;
|
|
let canvas: HTMLCanvasElement;
|
|
|
|
beforeEach(() => {
|
|
canvas = document.createElement("canvas");
|
|
canvas.width = 100;
|
|
canvas.height = 20;
|
|
ctx = {
|
|
clearRect: jest.fn(),
|
|
fillRect: jest.fn(),
|
|
beginPath: jest.fn(),
|
|
arc: jest.fn(),
|
|
fill: jest.fn(),
|
|
stroke: jest.fn(),
|
|
measureText: jest.fn(() => ({ width: 10 })),
|
|
fillText: jest.fn(),
|
|
save: jest.fn(),
|
|
restore: jest.fn(),
|
|
translate: jest.fn(),
|
|
rotate: jest.fn(),
|
|
drawImage: jest.fn(),
|
|
setTransform: jest.fn(),
|
|
globalAlpha: 1,
|
|
fillStyle: "",
|
|
strokeStyle: "",
|
|
lineWidth: 1,
|
|
font: "",
|
|
} as unknown as CanvasRenderingContext2D;
|
|
jest
|
|
.spyOn(HTMLCanvasElement.prototype, "getContext")
|
|
.mockReturnValue(ctx);
|
|
});
|
|
|
|
it("should initialize and draw the background", () => {
|
|
const spyClearRect = jest.spyOn(ctx, "clearRect");
|
|
const spyFillRect = jest.spyOn(ctx, "fillRect");
|
|
const bar = new ProgressBar(["#ff0000", "#00ff00"], ctx, 2, 2, 80, 10, 0.5);
|
|
expect(spyClearRect).toHaveBeenCalledWith(0, 0, 82, 12);
|
|
expect(spyFillRect).toHaveBeenCalledWith(1, 1, 80, 10);
|
|
expect(ctx.fillStyle).toBe("#00ff00");
|
|
expect(bar.getX()).toBe(2);
|
|
expect(bar.getY()).toBe(2);
|
|
});
|
|
|
|
it("should set progress and draw the progress bar", () => {
|
|
const bar = new ProgressBar(["#ff0000", "#00ff00"], ctx, 2, 2, 80, 10);
|
|
const spyFillRect = jest.spyOn(ctx, "fillRect");
|
|
bar.setProgress(0.5);
|
|
expect(bar.getProgress()).toBe(0.5);
|
|
expect(spyFillRect).toHaveBeenCalledWith(
|
|
2,
|
|
2,
|
|
Math.floor(0.5 * (80 - 2)),
|
|
8,
|
|
);
|
|
expect(ctx.fillStyle).toBe("#00ff00");
|
|
|
|
bar.setProgress(0.1);
|
|
expect(ctx.fillStyle).toBe("#ff0000");
|
|
});
|
|
|
|
it("should clamp progress between 0 and 1 on init", () => {
|
|
const bar = new ProgressBar(["#ff0000", "#00ff00"], ctx, 2, 2, 80, 10, -1);
|
|
expect(bar.getProgress()).toBe(0);
|
|
const bar2 = new ProgressBar(["#ff0000", "#00ff00"], ctx, 2, 2, 80, 10, 2);
|
|
expect(bar2.getProgress()).toBe(1);
|
|
});
|
|
|
|
it("should handle empty colors array gracefully", () => {
|
|
const bar = new ProgressBar([], ctx, 2, 2, 80, 10, 0.5);
|
|
expect(() => bar.setProgress(0.5)).not.toThrow();
|
|
expect(ctx.fillStyle).toBe("#808080");
|
|
});
|
|
});
|