Newer
Older
percord / util / tests / validate.test.js
@Flam3rboy Flam3rboy on 24 Aug 2021 680 bytes :white_check_mark: util unit tests
const { initDatabase } = require("../dist/util/Database");
const { User } = require("../dist/entities/User");

beforeAll(async () => {
	await initDatabase();

	new User().validate(); // initalize schema validator
});

describe("Validate model class properties", () => {
	describe("validation should be faster than 20ms", () => {
		expect(() => new User().validate()).toBeFasterThan(20);
	});

	describe("User", () => {
		test("object instead of string", () => {
			expect(() => {
				new User({ username: {} }).validate();
			}).toThrow();
		});
	});

	test("should not set opts", () => {
		const user = new User({ opts: { id: 0 } });
		expect(user.opts.id).not.toBe(0);
	});
});