advent22/ui/src/__tests__/rectangle.spec.ts

96 lines
2.7 KiB
TypeScript
Raw Normal View History

import { describe, expect, it } from "vitest";
2023-01-21 02:59:46 +00:00
2024-08-23 16:38:04 +00:00
import { Rectangle } from "@/lib/rects/rectangle";
import { Vector2D } from "@/lib/rects/vector2d";
2023-01-23 14:38:49 +00:00
2023-01-23 15:07:40 +00:00
describe("Rectangle Tests", () => {
2023-01-23 14:38:49 +00:00
const v1 = new Vector2D(1, 2);
const v2 = new Vector2D(4, 6);
const r1 = new Rectangle(v1, v2);
const r2 = new Rectangle(v2, v1);
function check_rectangle(
r: Rectangle,
2023-09-07 02:08:56 +00:00
left: number,
top: number,
width: number,
height: number,
2025-12-28 16:35:10 +00:00
): void {
expect(r.left).toEqual(left);
expect(r.top).toEqual(top);
expect(r.width).toEqual(width);
expect(r.height).toEqual(height);
expect(r.area).toEqual(width * height);
expect(r.middle.x).toEqual(left + 0.5 * width);
expect(r.middle.y).toEqual(top + 0.5 * height);
}
it("should create a default rectangle", () => {
2026-02-22 13:09:56 +00:00
expect.hasAssertions();
check_rectangle(new Rectangle(), 0, 0, 0, 0);
});
2023-01-23 14:38:49 +00:00
it("should create a rectangle", () => {
2026-02-22 13:09:56 +00:00
expect.hasAssertions();
check_rectangle(r1, 1, 2, 3, 4);
2023-01-23 14:38:49 +00:00
});
it("should create the same rectangle backwards", () => {
2026-02-22 13:09:56 +00:00
expect.hasAssertions();
check_rectangle(r2, 1, 2, 3, 4);
2023-01-23 14:38:49 +00:00
});
it("should compare rectangles", () => {
expect(r1.equals(r2)).toBe(true);
expect(r1.equals(new Rectangle())).toBe(false);
2023-09-07 02:08:56 +00:00
});
2023-01-23 14:38:49 +00:00
it("should create the same rectangle transposed", () => {
const v1t = new Vector2D(v1.x, v2.y);
const v2t = new Vector2D(v2.x, v1.y);
expect(r1.equals(new Rectangle(v1t, v2t))).toBe(true);
2023-01-23 14:38:49 +00:00
});
it("should contain itself", () => {
expect(r1.contains(v1)).toBe(true);
expect(r1.contains(v2)).toBe(true);
2023-01-23 14:38:49 +00:00
expect(r1.contains(r1.origin)).toBe(true);
expect(r1.contains(r1.corner)).toBe(true);
expect(r1.contains(r1.middle)).toBe(true);
2023-01-23 14:38:49 +00:00
});
it("should not contain certain points", () => {
expect(r1.contains(new Vector2D(0, 0))).toBe(false);
expect(r1.contains(new Vector2D(100, 100))).toBe(false);
2023-01-23 14:38:49 +00:00
});
it("should update a rectangle", () => {
2026-02-22 13:09:56 +00:00
expect.hasAssertions();
const v = new Vector2D(1, 1);
check_rectangle(r1.update(v1.plus(v), undefined), 2, 3, 2, 3);
check_rectangle(r1.update(v1.minus(v), undefined), 0, 1, 4, 5);
check_rectangle(r1.update(undefined, v2.plus(v)), 1, 2, 4, 5);
check_rectangle(r1.update(undefined, v2.minus(v)), 1, 2, 2, 3);
check_rectangle(r1.update(v1.plus(v), v2.plus(v)), 2, 3, 3, 4);
check_rectangle(r1.update(v1.minus(v), v2.minus(v)), 0, 1, 3, 4);
check_rectangle(r1.update(v1.minus(v), v2.plus(v)), 0, 1, 5, 6);
check_rectangle(r1.update(v1.plus(v), v2.minus(v)), 2, 3, 1, 2);
});
it("should move a rectangle", () => {
2026-02-22 13:09:56 +00:00
expect.hasAssertions();
const v = new Vector2D(1, 1);
check_rectangle(r1.move(v), 2, 3, 3, 4);
});
2023-09-07 02:08:56 +00:00
});