rc-js-util
Version:
A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.
201 lines (175 loc) • 5.91 kB
text/typescript
import { Mat2, TF32Mat2 } from "./mat2.js";
import { Test_setDefaultFlags } from "../../../test-util/test_set-default-flags.js";
describe("=> Mat2", () =>
{
beforeEach(() =>
{
Test_setDefaultFlags();
});
describe("=> getElement", () =>
{
it("| returns expected values", () =>
{
const m2 = Mat2.f32.factory.createOne(1, 2, 3, 4);
let counter = 1;
for (let j = 0; j < 2; ++j)
{
for (let i = 0; i < 2; ++i)
{
expect(m2.getValueAt(i, j)).toBe(counter++);
}
}
});
});
describe("=> createIdentityMatrix", () =>
{
it("| returns expected values", () =>
{
const m2 = Mat2.f32.factory
.createOneEmpty()
.setIdentityMatrix();
for (let i = 0; i < 2; ++i)
{
for (let j = 0; j < 2; ++j)
{
expect(m2.getValueAt(i, j)).toBe(i === j ? 1 : 0);
}
}
});
});
describe("=> createScalingMatrix", () =>
{
it("| returns the expected matrix", () =>
{
const m2 = Mat2.f32.factory
.createOneEmpty()
.fill(1)
.setScalingMatrix(10);
expect(m2.getValueAt(0, 0)).toBe(10);
expect(m2.getValueAt(1, 1)).toBe(1);
expect(m2.getValueAt(0, 1)).toBe(0);
expect(m2.getValueAt(1, 0)).toBe(0);
});
it("| multiplies as expected", () =>
{
const m2 = Mat2.f32.factory
.createOneEmpty()
.setScalingMatrix(2);
expect(m2.getVec2MultiplyX(1)).toBe(2);
});
});
describe("=> createTranslationMatrix", () =>
{
it("| returns the expected matrix", () =>
{
const m2 = Mat2.f32.factory
.createOneEmpty()
.fill(1)
.setTranslationMatrix(10);
expect(m2.getValueAt(0, 0)).toBe(1);
expect(m2.getValueAt(1, 1)).toBe(1);
expect(m2.getValueAt(0, 1)).toBe(10);
expect(m2.getValueAt(1, 0)).toBe(0);
});
it("| multiplies as expected", () =>
{
const m2 = Mat2.f32.factory
.createOneEmpty()
.setTranslationMatrix(5);
expect(m2.getVec2MultiplyX(1)).toBe(6);
});
});
describe("=> multiplyMat2", () =>
{
it("| returns the expected matrix", () =>
{
const identityMatrix = Mat2.f32.factory
.createOneEmpty()
.setIdentityMatrix();
const m2 = Mat2.f32.factory
.createOneEmpty()
.setIdentityMatrix();
const result = m2.multiplyMat2(identityMatrix);
for (let i = 0; i < 2; ++i)
{
for (let j = 0; j < 2; ++j)
{
expect(m2.getValueAt(i, j)).toBe(result.getValueAt(i, j));
}
}
});
it("| multiplies as expected transform & scale", () =>
{
const m2t = Mat2.f32.factory
.createOneEmpty()
.setTranslationMatrix(5);
const m2s = Mat2.f32.factory
.createOneEmpty()
.setScalingMatrix(2);
const m2 = m2t.multiplyMat2(m2s);
expect(m2.getVec2MultiplyX(1)).toBe(12);
});
it("| multiplies as expected scale & transform", () =>
{
const m2t = Mat2.f32.factory
.createOneEmpty()
.setTranslationMatrix(5);
const m2s = Mat2.f32.factory
.createOneEmpty()
.setScalingMatrix(2);
const m2 = m2s.multiplyMat2(m2t);
expect(m2.getVec2MultiplyX(1)).toBe(7);
});
});
describe("=> slice", () =>
{
it("| creates a copy", () =>
{
const a = Mat2.f32.factory.createOne(1, 2, 3, 4);
const b: TF32Mat2 = a.slice();
expect(a).toEqual(b);
expect(a).not.toBe(b);
expect(a.setIdentityMatrix).toBeDefined();
});
});
describe("=> scalarAdd", () =>
{
it("| adds", () =>
{
const a = Mat2.f32.factory.createOne(1, 2, 3, 4);
expect(a.scalarAdd(1)).toEqual(a.map(x => x + 1));
});
});
describe("=> scalarMultiply", () =>
{
it("| multiplies", () =>
{
const a = Mat2.f32.factory.createOne(1, 2, 3, 4);
expect(a.scalarMultiply(2)).toEqual(a.map(x => x * 2));
});
});
describe("=> isEqualTo", () =>
{
it("| returns true if all components are the same", () =>
{
const a = Mat2.f32.factory.createOne(1, 2, 3, 4);
const b = Mat2.f32.factory.createOne(1, 2, 3, 4);
expect(a.isEqualTo(b)).toBe(true);
});
it("| returns false if any component is different", () =>
{
const a1 = Mat2.f32.factory.createOne(0, 2, 3, 4);
const b1 = Mat2.f32.factory.createOne(1, 2, 3, 4);
expect(a1.isEqualTo(b1)).toBe(false);
const a2 = Mat2.f32.factory.createOne(1, 0, 3, 4);
const b2 = Mat2.f32.factory.createOne(1, 2, 3, 4);
expect(a2.isEqualTo(b2)).toBe(false);
const a3 = Mat2.f32.factory.createOne(1, 2, 0, 4);
const b3 = Mat2.f32.factory.createOne(1, 2, 3, 4);
expect(a3.isEqualTo(b3)).toBe(false);
const a4 = Mat2.f32.factory.createOne(1, 2, 3, 0);
const b4 = Mat2.f32.factory.createOne(1, 2, 3, 4);
expect(a4.isEqualTo(b4)).toBe(false);
});
});
});