0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2025-03-14 00:38:41 -04:00

Vertices.contains unit tests

This commit is contained in:
gsenden 2024-05-17 23:04:34 +02:00
parent e1a59ff819
commit 17ae70c57a

View file

@ -510,5 +510,61 @@ describe('Vertices.translate', () => {
// TODO: This causes a read from undefined. This should probably be fixed.
expect(result).toThrow("Cannot read properties of undefined (reading 'length')");
});
});
describe('Vertices.contains', () => {
it('should be able to get if a vector is contained within the valid vertices', () => {
// Arrange
const vertices = getTestVerticesSqaureWithoutBody();
const vector = { x: 2., y: 2. };
// Act
const result = Vertices.contains(vertices, vector);
// Assert
expect(result).toEqual(true);
});
it('should be able to get if a vector is not contained within the valid vertices', () => {
// Arrange
const vertices = getTestVerticesSqaureWithoutBody();
const vector = { x: 200., y: 200. };
// Act
const result = Vertices.contains(vertices, vector);
// Assert
expect(result).toEqual(false);
});
it('should not be able to get if an undefined vector is provided', () => {
// Arrange
const vertices = getTestVerticesSqaureWithoutBody();
const vector = undefined;
// Act
const result = () => Vertices.contains(vertices, vector);
// Assert
// TODO: This causes a read from undefined. This should probably be fixed.
expect(result).toThrow("Cannot read properties of undefined (reading 'x')");
});
it('should not be able to get if undefined vertices are provided', () => {
// Arrange
const vertices = undefined;
const vector = { x: 2., y: 2. };;
// Act
const result = () => Vertices.contains(vertices, vector);
// Assert
// TODO: This causes a read from undefined. This should probably be fixed.
expect(result).toThrow("Cannot read properties of undefined (reading 'length')");
});
});