230 lines
5.1 KiB
TypeScript
Raw Normal View History

2025-03-26 14:51:14 +00:00
import * as plugins from "./plugins.js";
import * as paths from "./paths.js";
import * as interfaces from "../ts_shared/interfaces/index.js";
import { expect, tap } from "@push.rocks/tapbundle";
import * as deesDocumentServer from "../ts/index.js";
2023-10-16 18:28:12 +02:00
let testPdfServiceInstance: deesDocumentServer.PdfService;
2025-03-26 14:51:14 +00:00
const testLetterData: plugins.tsclass.finance.TInvoice = {
type: "invoice",
invoiceType: "debitnote",
2023-10-16 18:28:12 +02:00
date: null,
objectActions: [],
pdf: null,
2025-03-26 14:51:14 +00:00
id: "XX-CLIENT-48765",
invoiceId: "XX-CLIENT-48765",
reverseCharge: true,
dueInDays: 30,
currency: "EUR",
notes: [],
status: null,
deliveryDate: new Date().getTime(),
periodOfPerformance: null,
printResult: null,
items: [
{
name: "Website Creation",
unitQuantity: 1,
unitNetPrice: 1200,
unitType: "item",
vatPercentage: 0,
position: 1,
},
],
2023-10-16 18:28:12 +02:00
from: {
2025-03-26 14:51:14 +00:00
name: "PdfService Test Company",
type: "company",
status: "active",
foundedDate: { day: 1, month: 1, year: 2025 },
description: "doing pdf stuff",
2023-10-16 18:28:12 +02:00
address: {
2025-03-26 14:51:14 +00:00
streetName: "Awesome Street",
houseNumber: "5",
city: "Bremen",
country: "Germany",
postalCode: "28359",
2023-10-16 18:28:12 +02:00
},
sepaConnection: {
2025-03-26 14:51:14 +00:00
bic: "BPOTBEB1",
iban: "BE72000000001616",
},
registrationDetails: {
vatId: "",
registrationName: "",
registrationId: "",
2023-10-16 18:28:12 +02:00
},
},
to: {
2025-03-26 14:51:14 +00:00
name: "Awesome To Company",
type: "company",
status: "active",
foundedDate: { day: 1, month: 1, year: 2025 },
description: "a company that does stuff",
2023-10-16 18:28:12 +02:00
address: {
2025-03-26 14:51:14 +00:00
streetName: "Awesome Street",
houseNumber: "5",
city: "Bremen",
country: "Germany",
postalCode: "28359",
},
registrationDetails: {
vatId: "",
registrationName: "",
registrationId: "",
2023-10-16 18:28:12 +02:00
},
},
incidenceId: null,
language: null,
legalContact: null,
pdfAttachments: null,
2025-03-26 14:51:14 +00:00
subject: "Invoice XX-CLIENT-48765",
2023-10-16 18:28:12 +02:00
versionInfo: {
2025-03-26 14:51:14 +00:00
type: "final",
version: "1.0.0",
2023-10-16 18:28:12 +02:00
},
};
2025-03-26 14:51:14 +00:00
tap.test("should create a document from an invoice", async () => {
2023-10-16 18:28:12 +02:00
testPdfServiceInstance = new deesDocumentServer.PdfService({});
await testPdfServiceInstance.start();
expect(testPdfServiceInstance).toBeInstanceOf(deesDocumentServer.PdfService);
});
2025-03-26 14:51:14 +00:00
tap.test("should create an invoice", async () => {
2023-10-16 18:28:12 +02:00
let counter = 0;
const saveResult = async (optionsArg: {
2025-03-26 14:51:14 +00:00
letterData: plugins.tsclass.finance.TInvoice;
documentSettings: interfaces.IDocumentSettings;
}) => {
2025-03-26 14:51:14 +00:00
const pdfResult = await testPdfServiceInstance.createPdfFromLetterObject(
optionsArg
);
await plugins.smartfile.memory.toFs(
Buffer.from(pdfResult.buffer),
2025-03-26 14:51:14 +00:00
plugins.path.join(paths.nogitDir, `test-${counter++}.pdf`)
);
};
await saveResult({
letterData: testLetterData,
documentSettings: {},
});
2023-10-16 18:28:12 +02:00
await saveResult({
letterData: {
...testLetterData,
versionInfo: {
2025-03-26 14:51:14 +00:00
type: "draft",
version: "1.0.0",
},
},
documentSettings: {},
2023-10-16 18:28:12 +02:00
});
2025-03-26 14:51:14 +00:00
(testLetterData.items = [
2023-10-16 18:28:12 +02:00
{
2025-03-26 14:51:14 +00:00
name: "Website Creation",
2023-10-16 18:28:12 +02:00
unitQuantity: 1,
unitNetPrice: 1200,
2025-03-26 14:51:14 +00:00
unitType: "item",
2023-10-16 18:28:12 +02:00
vatPercentage: 0,
position: 1,
2023-10-16 18:28:12 +02:00
},
{
2025-03-26 14:51:14 +00:00
name: "Hosting",
2023-10-16 18:28:12 +02:00
unitQuantity: 1,
unitNetPrice: 1200,
2025-03-26 14:51:14 +00:00
unitType: "item",
2023-10-16 18:28:12 +02:00
vatPercentage: 19,
position: 2,
2023-10-16 18:28:12 +02:00
},
2023-10-17 12:00:36 +02:00
{
2025-03-26 14:51:14 +00:00
name: "Overnight Shipping",
2023-10-17 12:00:36 +02:00
unitQuantity: 1,
unitNetPrice: 1200,
2025-03-26 14:51:14 +00:00
unitType: "item",
2023-10-17 12:00:36 +02:00
vatPercentage: 24,
position: 3,
},
{
2025-03-26 14:51:14 +00:00
name: "Website Creation",
2023-10-17 12:00:36 +02:00
unitQuantity: 1,
unitNetPrice: 1200,
2025-03-26 14:51:14 +00:00
unitType: "item",
2023-10-17 12:00:36 +02:00
vatPercentage: 0,
position: 4,
2023-10-17 12:00:36 +02:00
},
{
2025-03-26 14:51:14 +00:00
name: "Hosting",
2023-10-17 12:00:36 +02:00
unitQuantity: 1,
unitNetPrice: 1200,
2025-03-26 14:51:14 +00:00
unitType: "item",
2023-10-17 12:00:36 +02:00
vatPercentage: 19,
position: 5,
2023-10-17 12:00:36 +02:00
},
{
2025-03-26 14:51:14 +00:00
name: "Overnight Shipping",
2023-10-17 12:00:36 +02:00
unitQuantity: 1,
unitNetPrice: 1200,
2025-03-26 14:51:14 +00:00
unitType: "item",
2023-10-17 12:00:36 +02:00
vatPercentage: 24,
position: 6,
},
{
2025-03-26 14:51:14 +00:00
name: "Website Creation",
2023-10-17 12:00:36 +02:00
unitQuantity: 1,
unitNetPrice: 1200,
2025-03-26 14:51:14 +00:00
unitType: "item",
2023-10-17 12:00:36 +02:00
vatPercentage: 0,
position: 7,
2023-10-17 12:00:36 +02:00
},
{
2025-03-26 14:51:14 +00:00
name: "Hosting",
2023-10-17 12:00:36 +02:00
unitQuantity: 1,
unitNetPrice: 1200,
2025-03-26 14:51:14 +00:00
unitType: "item",
2023-10-17 12:00:36 +02:00
vatPercentage: 19,
position: 8,
2023-10-17 12:00:36 +02:00
},
{
2025-03-26 14:51:14 +00:00
name: "Overnight Shipping",
2023-10-17 12:00:36 +02:00
unitQuantity: 1,
unitNetPrice: 1200,
2025-03-26 14:51:14 +00:00
unitType: "item",
2023-10-17 12:00:36 +02:00
vatPercentage: 24,
position: 9,
},
{
2025-03-26 14:51:14 +00:00
name: "Website Creation",
2023-10-17 12:00:36 +02:00
unitQuantity: 1,
unitNetPrice: 1200,
2025-03-26 14:51:14 +00:00
unitType: "item",
2023-10-17 12:00:36 +02:00
vatPercentage: 0,
position: 10,
2023-10-17 12:00:36 +02:00
},
{
2025-03-26 14:51:14 +00:00
name: "Hosting",
2023-10-17 12:00:36 +02:00
unitQuantity: 1,
unitNetPrice: 1200,
2025-03-26 14:51:14 +00:00
unitType: "item",
2023-10-17 12:00:36 +02:00
vatPercentage: 19,
position: 11,
2023-10-17 12:00:36 +02:00
},
2023-10-16 18:28:12 +02:00
{
2025-03-26 14:51:14 +00:00
name: "Overnight Shipping",
2023-10-16 18:28:12 +02:00
unitQuantity: 1,
unitNetPrice: 1200,
2025-03-26 14:51:14 +00:00
unitType: "item",
2023-10-16 18:28:12 +02:00
vatPercentage: 24,
position: 12,
2023-10-16 18:28:12 +02:00
},
]),
await saveResult({
letterData: testLetterData,
documentSettings: {},
});
2023-10-16 18:28:12 +02:00
});
2025-03-26 14:51:14 +00:00
tap.test("should stop the service", async () => {
2023-10-16 18:28:12 +02:00
await testPdfServiceInstance.stop();
});
tap.start();