107 lines
5.6 KiB
TypeScript
107 lines
5.6 KiB
TypeScript
import {AssertionError} from "node:assert";
|
|
import {LearningObject} from "../../src/entities/content/learning-object.entity";
|
|
import {FilteredLearningObject, LearningPath} from "../../src/interfaces/learning-content";
|
|
import {LearningPath as LearningPathEntity} from "../../src/entities/content/learning-path.entity"
|
|
import { expect } from "vitest";
|
|
|
|
// Ignored properties because they belang for example to the class, not to the entity itself.
|
|
const IGNORE_PROPERTIES = ["parent"];
|
|
|
|
/**
|
|
* Checks if the actual entity from the database conforms to the entity that was added previously.
|
|
* @param actual The actual entity retrieved from the database
|
|
* @param expected The (previously added) entity we would expect to retrieve
|
|
*/
|
|
export function expectToBeCorrectEntity<T extends object>(
|
|
actual: {entity: T, name?: string},
|
|
expected: {entity: T, name?: string}
|
|
): void {
|
|
if (!actual.name) {
|
|
actual.name = "actual";
|
|
}
|
|
if (!expected.name) {
|
|
expected.name = "expected";
|
|
}
|
|
for (let property in expected.entity) {
|
|
if (
|
|
property !in IGNORE_PROPERTIES
|
|
&& expected.entity[property] !== undefined // If we don't expect a certain value for a property, we assume it can be filled in by the database however it wants.
|
|
&& typeof expected.entity[property] !== "function" // Functions obviously are not persisted via the database
|
|
) {
|
|
if (!actual.entity.hasOwnProperty(property)) {
|
|
throw new AssertionError({
|
|
message: `${expected.name} has defined property ${property}, but ${actual.name} is missing it.`
|
|
});
|
|
}
|
|
if (typeof expected.entity[property] === "boolean") { // Sometimes, booleans get represented by numbers 0 and 1 in the objects actual from the database.
|
|
if (!!expected.entity[property] !== !!actual.entity[property]) {
|
|
throw new AssertionError({
|
|
message: `${property} was ${expected.entity[property]} in ${expected.name},
|
|
but ${actual.entity[property]} (${!!expected.entity[property]}) in ${actual.name}`
|
|
});
|
|
}
|
|
} else if (typeof expected.entity[property] !== typeof actual.entity[property]) {
|
|
throw new AssertionError({
|
|
message: `${property} has type ${typeof expected.entity[property]} in ${expected.name}, but type ${typeof actual.entity[property]} in ${actual.name}.`
|
|
});
|
|
} else if (typeof expected.entity[property] === "object") {
|
|
expectToBeCorrectEntity(
|
|
{
|
|
name: actual.name + "." + property,
|
|
entity: actual.entity[property] as object
|
|
}, {
|
|
name: expected.name + "." + property,
|
|
entity: expected.entity[property] as object
|
|
}
|
|
);
|
|
} else {
|
|
if (expected.entity[property] !== actual.entity[property]) {
|
|
throw new AssertionError({
|
|
message: `${property} was ${expected.entity[property]} in ${expected.name}, but ${actual.entity[property]} in ${actual.name}`
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Checks that filtered is the correct representation of original as FilteredLearningObject.
|
|
* @param filtered the representation as FilteredLearningObject
|
|
* @param original the original entity added to the database
|
|
*/
|
|
export function expectToBeCorrectFilteredLearningObject(filtered: FilteredLearningObject, original: LearningObject) {
|
|
expect(filtered.uuid).toEqual(original.uuid);
|
|
expect(filtered.version).toEqual(original.version);
|
|
expect(filtered.language).toEqual(original.language);
|
|
expect(filtered.keywords).toEqual(original.keywords);
|
|
expect(filtered.key).toEqual(original.hruid);
|
|
expect(filtered.targetAges).toEqual(original.targetAges);
|
|
expect(filtered.title).toEqual(original.title);
|
|
expect(!!filtered.teacherExclusive).toEqual(original.teacherExclusive) // !!: Workaround: MikroORM with SQLite returns 0 and 1 instead of booleans.
|
|
expect(filtered.skosConcepts).toEqual(original.skosConcepts);
|
|
expect(filtered.estimatedTime).toEqual(original.estimatedTime);
|
|
expect(filtered.educationalGoals).toEqual(original.educationalGoals);
|
|
expect(filtered.difficulty).toEqual(original.difficulty || 1);
|
|
expect(filtered.description).toEqual(original.description);
|
|
expect(filtered.returnValue?.callback_url).toEqual(original.returnValue.callbackUrl);
|
|
expect(filtered.returnValue?.callback_schema).toEqual(JSON.parse(original.returnValue.callbackSchema));
|
|
expect(filtered.contentType).toEqual(original.contentType);
|
|
expect(filtered.contentLocation).toEqual(original.contentLocation || null);
|
|
expect(filtered.htmlUrl).toContain(`/${original.hruid}/html`);
|
|
expect(filtered.htmlUrl).toContain(`language=${original.language}`);
|
|
expect(filtered.htmlUrl).toContain(`version=${original.version}`);
|
|
}
|
|
|
|
/**
|
|
* Check that a learning path returned by a LearningPathRetriever, the LearningPathService or an API endpoint
|
|
* is a correct representation of the given learning path entity.
|
|
*
|
|
* @param learningPath The learning path returned by the retriever, service or endpoint
|
|
* @param expectedEntity The expected entity
|
|
*/
|
|
export function expectToBeCorrectLearningPath(learningPath: LearningPath, expectedEntity: LearningPathEntity) {
|
|
expect(learningPath.hruid).toEqual(expectedEntity.hruid);
|
|
expect(learningPath.language).toEqual(expectedEntity.language);
|
|
expect(learningPath.description).toEqual(expectedEntity.description);
|
|
}
|