2022-11-01 19:13:21 +01:00
|
|
|
import {
|
|
|
|
SArray,
|
|
|
|
SDecimal,
|
|
|
|
SModel,
|
|
|
|
SNumeric,
|
|
|
|
SString,
|
|
|
|
SDate,
|
|
|
|
SBool,
|
|
|
|
Model,
|
|
|
|
ModelDefinition,
|
|
|
|
SDefine, ModelIdentifier
|
|
|
|
} from "../src";
|
2022-07-31 10:49:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Another test model.
|
|
|
|
*/
|
2022-11-01 19:13:21 +01:00
|
|
|
class Author extends Model<Author>
|
2022-07-31 10:49:32 +02:00
|
|
|
{
|
2022-11-01 19:13:21 +01:00
|
|
|
name: string;
|
|
|
|
firstName: string;
|
|
|
|
email: string;
|
|
|
|
createdAt: Date;
|
2022-09-18 19:47:38 +02:00
|
|
|
active: boolean = true;
|
|
|
|
|
2022-11-01 19:13:21 +01:00
|
|
|
protected SDefinition(): ModelDefinition<Author>
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
name: SDefine(SString),
|
|
|
|
firstName: SDefine(SString),
|
|
|
|
email: SDefine(SString),
|
|
|
|
createdAt: SDefine(SDate),
|
|
|
|
active: SDefine(SBool),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-09-18 19:27:23 +02:00
|
|
|
constructor(name: string = undefined, firstName: string = undefined, email: string = undefined, createdAt: Date = undefined)
|
2022-07-31 10:49:32 +02:00
|
|
|
{
|
|
|
|
super();
|
|
|
|
|
|
|
|
this.name = name;
|
|
|
|
this.firstName = firstName;
|
|
|
|
this.email = email;
|
2022-09-18 19:27:23 +02:00
|
|
|
this.createdAt = createdAt;
|
2022-07-31 10:49:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A test model.
|
|
|
|
*/
|
2022-11-01 19:13:21 +01:00
|
|
|
class Article extends Model<Article>
|
2022-07-31 10:49:32 +02:00
|
|
|
{
|
2022-11-01 19:13:21 +01:00
|
|
|
id: number;
|
|
|
|
title: string;
|
2022-07-31 10:49:32 +02:00
|
|
|
authors: Author[] = [];
|
2022-11-01 19:13:21 +01:00
|
|
|
text: string;
|
|
|
|
evaluation: number;
|
2022-07-31 10:49:32 +02:00
|
|
|
|
2022-11-01 19:13:21 +01:00
|
|
|
protected SIdentifier(): ModelIdentifier<Article>
|
|
|
|
{
|
|
|
|
return "id";
|
|
|
|
}
|
2022-07-31 10:49:32 +02:00
|
|
|
|
2022-11-01 19:13:21 +01:00
|
|
|
protected SDefinition(): ModelDefinition<Article>
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
id: SDefine(SNumeric),
|
|
|
|
title: SDefine(SString),
|
|
|
|
authors: SDefine(SArray(SModel(Author))),
|
|
|
|
text: SDefine(SString),
|
|
|
|
evaluation: SDefine(SDecimal),
|
|
|
|
};
|
|
|
|
}
|
2022-07-31 10:49:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
it("deserialize", () => {
|
|
|
|
expect((new Article()).deserialize({
|
|
|
|
id: 1,
|
|
|
|
title: "this is a test",
|
|
|
|
authors: [
|
2022-09-18 19:47:38 +02:00
|
|
|
{ name: "DOE", firstName: "John", email: "test@test.test", createdAt: "2022-08-07T08:47:01.000Z", active: true, },
|
|
|
|
{ name: "TEST", firstName: "Another", email: "another@test.test", createdAt: "2022-09-07T18:32:55.000Z", active: false, },
|
2022-07-31 10:49:32 +02:00
|
|
|
],
|
|
|
|
text: "this is a long test.",
|
|
|
|
evaluation: "25.23",
|
|
|
|
}).serialize()).toStrictEqual({
|
|
|
|
id: 1,
|
|
|
|
title: "this is a test",
|
|
|
|
authors: [
|
2022-09-18 19:47:38 +02:00
|
|
|
{ name: "DOE", firstName: "John", email: "test@test.test", createdAt: "2022-08-07T08:47:01.000Z", active: true, },
|
|
|
|
{ name: "TEST", firstName: "Another", email: "another@test.test", createdAt: "2022-09-07T18:32:55.000Z", active: false, },
|
2022-07-31 10:49:32 +02:00
|
|
|
],
|
|
|
|
text: "this is a long test.",
|
|
|
|
evaluation: "25.23",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("create and check state then serialize", () => {
|
2022-09-18 19:27:23 +02:00
|
|
|
const now = new Date();
|
2022-07-31 10:49:32 +02:00
|
|
|
const article = new Article();
|
|
|
|
article.id = 1;
|
|
|
|
article.title = "this is a test";
|
|
|
|
article.authors = [
|
2022-09-18 19:27:23 +02:00
|
|
|
new Author("DOE", "John", "test@test.test", now),
|
2022-07-31 10:49:32 +02:00
|
|
|
];
|
|
|
|
article.text = "this is a long test.";
|
|
|
|
article.evaluation = 25.23;
|
|
|
|
|
|
|
|
expect(article.isNew()).toBeTruthy();
|
|
|
|
expect(article.getIdentifier()).toStrictEqual(1);
|
|
|
|
|
|
|
|
expect(article.serialize()).toStrictEqual({
|
|
|
|
id: 1,
|
|
|
|
title: "this is a test",
|
|
|
|
authors: [
|
2022-09-18 19:47:38 +02:00
|
|
|
{ name: "DOE", firstName: "John", email: "test@test.test", createdAt: now.toISOString(), active: true, },
|
2022-07-31 10:49:32 +02:00
|
|
|
],
|
|
|
|
text: "this is a long test.",
|
|
|
|
evaluation: "25.23",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
it("deserialize then save", () => {
|
|
|
|
const article = (new Article()).deserialize({
|
|
|
|
id: 1,
|
|
|
|
title: "this is a test",
|
|
|
|
authors: [
|
2022-09-18 19:47:38 +02:00
|
|
|
{ name: "DOE", firstName: "John", email: "test@test.test", createdAt: new Date(), active: true, },
|
|
|
|
{ name: "TEST", firstName: "Another", email: "another@test.test", createdAt: new Date(), active: false, },
|
2022-07-31 10:49:32 +02:00
|
|
|
],
|
|
|
|
text: "this is a long test.",
|
|
|
|
evaluation: "25.23",
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(article.isNew()).toBeFalsy();
|
|
|
|
expect(article.isDirty()).toBeFalsy();
|
|
|
|
expect(article.evaluation).toStrictEqual(25.23);
|
|
|
|
|
|
|
|
article.text = "Modified text.";
|
|
|
|
|
|
|
|
expect(article.isDirty()).toBeTruthy();
|
|
|
|
|
|
|
|
expect(article.save()).toStrictEqual({
|
|
|
|
id: 1,
|
|
|
|
text: "Modified text.",
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("save with modified submodels", () => {
|
|
|
|
const article = (new Article()).deserialize({
|
|
|
|
id: 1,
|
|
|
|
title: "this is a test",
|
|
|
|
authors: [
|
2022-09-18 19:47:38 +02:00
|
|
|
{ name: "DOE", firstName: "John", email: "test@test.test", createdAt: new Date(), active: true, },
|
|
|
|
{ name: "TEST", firstName: "Another", email: "another@test.test", createdAt: new Date(), active: false, },
|
2022-07-31 10:49:32 +02:00
|
|
|
],
|
|
|
|
text: "this is a long test.",
|
|
|
|
evaluation: "25.23",
|
|
|
|
});
|
|
|
|
|
|
|
|
article.authors = article.authors.map((author) => {
|
|
|
|
author.name = "TEST";
|
|
|
|
return author;
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(article.save()).toStrictEqual({
|
|
|
|
id: 1,
|
|
|
|
authors: [
|
|
|
|
{ name: "TEST", },
|
|
|
|
{}, //{ name: "TEST", firstName: "Another", email: "another@test.test" },
|
|
|
|
],
|
|
|
|
});
|
|
|
|
});
|