1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-10 20:52:42 +01:00
server/util/tests/validate.test.js
2021-08-26 02:07:16 +02:00

32 lines
729 B
JavaScript

const { initDatabase } = require("../dist/util/Database");
const { User } = require("../dist/entities/User");
jest.setTimeout(10000);
beforeAll((done) => {
initDatabase().then(() => {
new User().validate(); // warm up schema/model
done();
});
});
describe("Validate model class properties", () => {
describe("User", () => {
test("object instead of string", async () => {
expect(() => {
new User({ username: {} }).validate();
}).toThrow();
});
});
test("validation should be faster than 20ms", () => {
expect(() => {
new User().validate();
}).toBeFasterThan(20);
});
test("should not set opts", () => {
const user = new User({ opts: { id: 0 } });
expect(user.opts.id).not.toBe(0);
});
});