F95API/test/classes/mapping/platform-user.ts

46 lines
1.5 KiB
TypeScript
Raw Normal View History

2021-03-10 11:32:13 +00:00
"use strict";
// Public module from npm
import chai from "chai";
import chaiAsPromised from "chai-as-promised";
import { INVALID_USER_ID, USER_NOT_LOGGED } from "../../../src/scripts/classes/errors";
// Module from files
import { PlatformUser } from "../../../src";
import Shared from "../../../src/scripts/shared";
2021-03-10 11:32:13 +00:00
chai.use(chaiAsPromised);
const { expect } = chai;
export function suite(): void {
it("Set invalid ID", function setInvalidID() {
const user = new PlatformUser();
expect(user.setID(-1)).to.be.rejectedWith(INVALID_USER_ID);
expect(user.setID(null)).to.be.rejectedWith(INVALID_USER_ID);
});
2021-03-10 11:32:13 +00:00
it("Fetch platform user without ID", async function fetchWithoutID() {
Shared.setIsLogged(true);
2021-03-10 11:32:13 +00:00
const user = new PlatformUser();
await expect(user.fetch()).to.be.rejectedWith(INVALID_USER_ID);
});
it("Fetch platform user with null ID", async function fetchWithNullID() {
Shared.setIsLogged(true);
const user = new PlatformUser(null);
await expect(user.fetch()).to.be.rejectedWith(INVALID_USER_ID);
});
2021-03-10 11:32:13 +00:00
it("Fetch platform user with invalid ID", async function fetchWithInvalidID() {
Shared.setIsLogged(true);
2021-03-10 11:32:13 +00:00
const user = new PlatformUser(-1);
await expect(user.fetch()).to.be.rejectedWith(INVALID_USER_ID);
});
it("Fetch platform user without authentication", async function fetchWithoutAuth() {
Shared.setIsLogged(false);
2021-03-10 11:32:13 +00:00
const user = new PlatformUser(1234);
await expect(user.fetch()).to.be.rejectedWith(USER_NOT_LOGGED);
});
}