2025-05-25 19:45:37 +00:00
|
|
|
import { tap, expect } from '@git.zone/tstest/tapbundle';
|
2025-05-26 10:17:50 +00:00
|
|
|
import * as plugins from '../../plugins.ts';
|
|
|
|
import { EInvoice } from '../../../ts/index.ts';
|
2025-05-25 19:45:37 +00:00
|
|
|
|
|
|
|
const testTimeout = 300000; // 5 minutes timeout for conversion processing
|
|
|
|
|
|
|
|
// CONV-06: Data Loss Detection
|
|
|
|
// Tests detection and reporting of data loss during format conversions
|
|
|
|
// including field mapping limitations, unsupported features, and precision loss
|
|
|
|
|
2025-05-26 10:17:50 +00:00
|
|
|
tap.test('CONV-06: Data Loss Detection - Field Mapping Loss', async () => {
|
2025-05-25 19:45:37 +00:00
|
|
|
// Test data loss detection during conversions with rich data
|
|
|
|
const richDataUblXml = `<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2">
|
|
|
|
<ID>DATA-LOSS-TEST-001</ID>
|
|
|
|
<IssueDate>2024-01-15</IssueDate>
|
|
|
|
<InvoiceTypeCode>380</InvoiceTypeCode>
|
|
|
|
<DocumentCurrencyCode>EUR</DocumentCurrencyCode>
|
|
|
|
<Note>Rich data invoice for data loss detection testing</Note>
|
|
|
|
<InvoicePeriod>
|
|
|
|
<StartDate>2024-01-01</StartDate>
|
|
|
|
<EndDate>2024-01-31</EndDate>
|
|
|
|
<Description>January 2024 billing period</Description>
|
|
|
|
</InvoicePeriod>
|
|
|
|
<OrderReference>
|
|
|
|
<ID>ORDER-12345</ID>
|
|
|
|
<IssueDate>2023-12-15</IssueDate>
|
|
|
|
</OrderReference>
|
|
|
|
<BillingReference>
|
|
|
|
<InvoiceDocumentReference>
|
|
|
|
<ID>BILLING-REF-678</ID>
|
|
|
|
</InvoiceDocumentReference>
|
|
|
|
</BillingReference>
|
|
|
|
<DespatchDocumentReference>
|
|
|
|
<ID>DESPATCH-890</ID>
|
|
|
|
</DespatchDocumentReference>
|
|
|
|
<ReceiptDocumentReference>
|
|
|
|
<ID>RECEIPT-ABC</ID>
|
|
|
|
</ReceiptDocumentReference>
|
|
|
|
<ContractDocumentReference>
|
|
|
|
<ID>CONTRACT-XYZ</ID>
|
|
|
|
</ContractDocumentReference>
|
|
|
|
<AdditionalDocumentReference>
|
|
|
|
<ID>ADDITIONAL-DOC-123</ID>
|
|
|
|
<DocumentType>Specification</DocumentType>
|
|
|
|
<Attachment>
|
|
|
|
<EmbeddedDocumentBinaryObject mimeCode="application/pdf" filename="spec.pdf">UERGIGNvbnRlbnQgRXhhbXBsZQ==</EmbeddedDocumentBinaryObject>
|
|
|
|
</Attachment>
|
|
|
|
</AdditionalDocumentReference>
|
|
|
|
<AccountingSupplierParty>
|
|
|
|
<Party>
|
|
|
|
<PartyIdentification>
|
|
|
|
<ID schemeID="0088">1234567890123</ID>
|
|
|
|
</PartyIdentification>
|
|
|
|
<PartyName>
|
|
|
|
<Name>Rich Data Supplier Ltd</Name>
|
|
|
|
</PartyName>
|
|
|
|
<PostalAddress>
|
|
|
|
<StreetName>Innovation Street 123</StreetName>
|
|
|
|
<AdditionalStreetName>Building A, Floor 5</AdditionalStreetName>
|
|
|
|
<CityName>Tech City</CityName>
|
|
|
|
<PostalZone>12345</PostalZone>
|
|
|
|
<CountrySubentity>Tech State</CountrySubentity>
|
|
|
|
<AddressLine>
|
|
|
|
<Line>Additional address information</Line>
|
|
|
|
</AddressLine>
|
|
|
|
<Country>
|
|
|
|
<IdentificationCode>DE</IdentificationCode>
|
|
|
|
</Country>
|
|
|
|
</PostalAddress>
|
|
|
|
<PartyTaxScheme>
|
|
|
|
<CompanyID>DE123456789</CompanyID>
|
|
|
|
<TaxScheme>
|
|
|
|
<ID>VAT</ID>
|
|
|
|
</TaxScheme>
|
|
|
|
</PartyTaxScheme>
|
|
|
|
<PartyLegalEntity>
|
|
|
|
<RegistrationName>Rich Data Supplier Limited</RegistrationName>
|
|
|
|
<CompanyID schemeID="0021">HRB123456</CompanyID>
|
|
|
|
</PartyLegalEntity>
|
|
|
|
<Contact>
|
|
|
|
<Name>John Doe</Name>
|
|
|
|
<Telephone>+49-30-12345678</Telephone>
|
|
|
|
<Telefax>+49-30-12345679</Telefax>
|
|
|
|
<ElectronicMail>john.doe@richdata.com</ElectronicMail>
|
|
|
|
</Contact>
|
|
|
|
</Party>
|
|
|
|
</AccountingSupplierParty>
|
|
|
|
<AccountingCustomerParty>
|
|
|
|
<Party>
|
|
|
|
<PartyIdentification>
|
|
|
|
<ID schemeID="0088">9876543210987</ID>
|
|
|
|
</PartyIdentification>
|
|
|
|
<PartyName>
|
|
|
|
<Name>Rich Data Customer GmbH</Name>
|
|
|
|
</PartyName>
|
|
|
|
<PostalAddress>
|
|
|
|
<StreetName>Customer Boulevard 456</StreetName>
|
|
|
|
<CityName>Customer City</CityName>
|
|
|
|
<PostalZone>54321</PostalZone>
|
|
|
|
<Country>
|
|
|
|
<IdentificationCode>DE</IdentificationCode>
|
|
|
|
</Country>
|
|
|
|
</PostalAddress>
|
|
|
|
</Party>
|
|
|
|
</AccountingCustomerParty>
|
|
|
|
<Delivery>
|
|
|
|
<DeliveryLocation>
|
|
|
|
<Address>
|
|
|
|
<StreetName>Delivery Street 789</StreetName>
|
|
|
|
<CityName>Delivery City</CityName>
|
|
|
|
<PostalZone>98765</PostalZone>
|
|
|
|
<Country>
|
|
|
|
<IdentificationCode>DE</IdentificationCode>
|
|
|
|
</Country>
|
|
|
|
</Address>
|
|
|
|
</DeliveryLocation>
|
|
|
|
<ActualDeliveryDate>2024-01-10</ActualDeliveryDate>
|
|
|
|
</Delivery>
|
|
|
|
<PaymentMeans>
|
|
|
|
<PaymentMeansCode>58</PaymentMeansCode>
|
|
|
|
<PaymentID>PAYMENT-ID-456</PaymentID>
|
|
|
|
<PayeeFinancialAccount>
|
|
|
|
<ID>DE89370400440532013000</ID>
|
|
|
|
<Name>Rich Data Account</Name>
|
|
|
|
<FinancialInstitutionBranch>
|
|
|
|
<ID>COBADEFFXXX</ID>
|
|
|
|
</FinancialInstitutionBranch>
|
|
|
|
</PayeeFinancialAccount>
|
|
|
|
</PaymentMeans>
|
|
|
|
<PaymentTerms>
|
|
|
|
<Note>Payment due within 30 days. 2% discount if paid within 10 days.</Note>
|
|
|
|
</PaymentTerms>
|
|
|
|
<AllowanceCharge>
|
|
|
|
<ChargeIndicator>false</ChargeIndicator>
|
|
|
|
<AllowanceChargeReasonCode>95</AllowanceChargeReasonCode>
|
|
|
|
<AllowanceChargeReason>Volume discount</AllowanceChargeReason>
|
|
|
|
<Amount currencyID="EUR">10.00</Amount>
|
|
|
|
<BaseAmount currencyID="EUR">100.00</BaseAmount>
|
|
|
|
<MultiplierFactorNumeric>0.1</MultiplierFactorNumeric>
|
|
|
|
</AllowanceCharge>
|
|
|
|
<InvoiceLine>
|
|
|
|
<ID>1</ID>
|
|
|
|
<InvoicedQuantity unitCode="C62">2</InvoicedQuantity>
|
|
|
|
<LineExtensionAmount currencyID="EUR">90.00</LineExtensionAmount>
|
|
|
|
<OrderLineReference>
|
|
|
|
<LineID>ORDER-LINE-1</LineID>
|
|
|
|
</OrderLineReference>
|
|
|
|
<Item>
|
|
|
|
<Description>Premium product with rich metadata</Description>
|
|
|
|
<Name>Rich Data Product Pro</Name>
|
|
|
|
<BuyersItemIdentification>
|
|
|
|
<ID>BUYER-SKU-123</ID>
|
|
|
|
</BuyersItemIdentification>
|
|
|
|
<SellersItemIdentification>
|
|
|
|
<ID>SELLER-SKU-456</ID>
|
|
|
|
</SellersItemIdentification>
|
|
|
|
<ManufacturersItemIdentification>
|
|
|
|
<ID>MFG-SKU-789</ID>
|
|
|
|
</ManufacturersItemIdentification>
|
|
|
|
<StandardItemIdentification>
|
|
|
|
<ID schemeID="0160">1234567890123</ID>
|
|
|
|
</StandardItemIdentification>
|
|
|
|
<ItemSpecificationDocumentReference>
|
|
|
|
<ID>SPEC-DOC-001</ID>
|
|
|
|
</ItemSpecificationDocumentReference>
|
|
|
|
<OriginCountry>
|
|
|
|
<IdentificationCode>DE</IdentificationCode>
|
|
|
|
</OriginCountry>
|
|
|
|
<CommodityClassification>
|
|
|
|
<ItemClassificationCode listID="UNSPSC">43211508</ItemClassificationCode>
|
|
|
|
</CommodityClassification>
|
|
|
|
<ClassifiedTaxCategory>
|
|
|
|
<Percent>19.00</Percent>
|
|
|
|
<TaxScheme>
|
|
|
|
<ID>VAT</ID>
|
|
|
|
</TaxScheme>
|
|
|
|
</ClassifiedTaxCategory>
|
|
|
|
<AdditionalItemProperty>
|
|
|
|
<Name>Color</Name>
|
|
|
|
<Value>Blue</Value>
|
|
|
|
</AdditionalItemProperty>
|
|
|
|
<AdditionalItemProperty>
|
|
|
|
<Name>Weight</Name>
|
|
|
|
<Value>2.5</Value>
|
|
|
|
<ValueQuantity unitCode="KGM">2.5</ValueQuantity>
|
|
|
|
</AdditionalItemProperty>
|
|
|
|
</Item>
|
|
|
|
<Price>
|
|
|
|
<PriceAmount currencyID="EUR">50.00</PriceAmount>
|
|
|
|
<BaseQuantity unitCode="C62">1</BaseQuantity>
|
|
|
|
</Price>
|
|
|
|
</InvoiceLine>
|
|
|
|
<TaxTotal>
|
|
|
|
<TaxAmount currencyID="EUR">17.10</TaxAmount>
|
|
|
|
<TaxSubtotal>
|
|
|
|
<TaxableAmount currencyID="EUR">90.00</TaxableAmount>
|
|
|
|
<TaxAmount currencyID="EUR">17.10</TaxAmount>
|
|
|
|
<TaxCategory>
|
|
|
|
<Percent>19.00</Percent>
|
|
|
|
<TaxScheme>
|
|
|
|
<ID>VAT</ID>
|
|
|
|
</TaxScheme>
|
|
|
|
</TaxCategory>
|
|
|
|
</TaxSubtotal>
|
|
|
|
</TaxTotal>
|
|
|
|
<LegalMonetaryTotal>
|
|
|
|
<LineExtensionAmount currencyID="EUR">100.00</LineExtensionAmount>
|
|
|
|
<AllowanceTotalAmount currencyID="EUR">10.00</AllowanceTotalAmount>
|
|
|
|
<TaxExclusiveAmount currencyID="EUR">90.00</TaxExclusiveAmount>
|
|
|
|
<TaxInclusiveAmount currencyID="EUR">107.10</TaxInclusiveAmount>
|
|
|
|
<PayableAmount currencyID="EUR">107.10</PayableAmount>
|
|
|
|
</LegalMonetaryTotal>
|
|
|
|
</Invoice>`;
|
|
|
|
|
|
|
|
try {
|
|
|
|
const invoice = new EInvoice();
|
2025-05-26 10:17:50 +00:00
|
|
|
await invoice.loadXml(richDataUblXml);
|
|
|
|
expect(invoice).toBeTruthy();
|
2025-05-25 19:45:37 +00:00
|
|
|
|
|
|
|
// Extract original data elements for comparison
|
|
|
|
const originalData = {
|
|
|
|
invoicePeriod: richDataUblXml.includes('InvoicePeriod'),
|
|
|
|
orderReference: richDataUblXml.includes('OrderReference'),
|
|
|
|
billingReference: richDataUblXml.includes('BillingReference'),
|
|
|
|
additionalDocuments: richDataUblXml.includes('AdditionalDocumentReference'),
|
|
|
|
embeddedDocuments: richDataUblXml.includes('EmbeddedDocumentBinaryObject'),
|
|
|
|
contactInformation: richDataUblXml.includes('Contact'),
|
|
|
|
deliveryInformation: richDataUblXml.includes('Delivery'),
|
|
|
|
paymentMeans: richDataUblXml.includes('PaymentMeans'),
|
|
|
|
allowanceCharges: richDataUblXml.includes('AllowanceCharge'),
|
|
|
|
itemProperties: richDataUblXml.includes('AdditionalItemProperty'),
|
|
|
|
itemIdentifications: richDataUblXml.includes('BuyersItemIdentification'),
|
|
|
|
taxDetails: richDataUblXml.includes('TaxSubtotal')
|
|
|
|
};
|
|
|
|
|
2025-05-26 10:17:50 +00:00
|
|
|
console.log('Original UBL data elements detected:');
|
2025-05-25 19:45:37 +00:00
|
|
|
Object.entries(originalData).forEach(([key, value]) => {
|
2025-05-26 10:17:50 +00:00
|
|
|
console.log(` ${key}: ${value}`);
|
2025-05-25 19:45:37 +00:00
|
|
|
});
|
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
// Note: conversion functionality not yet implemented
|
|
|
|
// This test will serve as a specification for future implementation
|
|
|
|
console.log('\nData loss detection test - specification mode');
|
|
|
|
console.log('Future implementation should detect data loss when converting between formats');
|
|
|
|
|
|
|
|
// Simulate what the conversion API should look like
|
2025-05-25 19:45:37 +00:00
|
|
|
const conversionTargets = ['CII', 'XRECHNUNG'];
|
|
|
|
|
|
|
|
for (const target of conversionTargets) {
|
2025-05-26 13:33:21 +00:00
|
|
|
console.log(`\nPlanned: Testing data loss in UBL to ${target} conversion...`);
|
2025-05-25 19:45:37 +00:00
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
// When conversion is implemented, it should work like this:
|
|
|
|
// const convertedInvoice = invoice.convertTo(target);
|
|
|
|
// const convertedXml = convertedInvoice.getXml();
|
|
|
|
|
|
|
|
// For now, simulate the expected behavior:
|
|
|
|
const convertedXml = ''; // Placeholder for future implementation
|
|
|
|
|
|
|
|
if (target === 'CII') {
|
|
|
|
// Simulate what data preservation checks should look like
|
|
|
|
const preservedData = {
|
2025-05-25 19:45:37 +00:00
|
|
|
invoicePeriod: convertedXml.includes('Period') || convertedXml.includes('BillingPeriod'),
|
|
|
|
orderReference: convertedXml.includes('ORDER-12345') || convertedXml.includes('OrderReference'),
|
|
|
|
billingReference: convertedXml.includes('BILLING-REF-678') || convertedXml.includes('BillingReference'),
|
|
|
|
additionalDocuments: convertedXml.includes('ADDITIONAL-DOC-123') || convertedXml.includes('AdditionalDocument'),
|
|
|
|
embeddedDocuments: convertedXml.includes('UERGIGNvbnRlbnQgRXhhbXBsZQ==') || convertedXml.includes('EmbeddedDocument'),
|
|
|
|
contactInformation: convertedXml.includes('john.doe@richdata.com') || convertedXml.includes('Contact'),
|
|
|
|
deliveryInformation: convertedXml.includes('Delivery Street') || convertedXml.includes('Delivery'),
|
|
|
|
paymentMeans: convertedXml.includes('DE89370400440532013000') || convertedXml.includes('PaymentMeans'),
|
|
|
|
allowanceCharges: convertedXml.includes('Volume discount') || convertedXml.includes('Allowance'),
|
|
|
|
itemProperties: convertedXml.includes('Color') || convertedXml.includes('Blue'),
|
|
|
|
itemIdentifications: convertedXml.includes('BUYER-SKU-123') || convertedXml.includes('ItemIdentification'),
|
|
|
|
taxDetails: convertedXml.includes('17.10') && convertedXml.includes('19.00')
|
|
|
|
};
|
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
console.log(`Data preservation in ${target} format:`);
|
|
|
|
let preservedCount = 0;
|
|
|
|
let totalElements = 0;
|
|
|
|
|
|
|
|
Object.entries(preservedData).forEach(([key, preserved]) => {
|
|
|
|
const wasOriginal = originalData[key];
|
|
|
|
console.log(` ${key}: ${wasOriginal ? (preserved ? 'PRESERVED' : 'LOST') : 'N/A'}`);
|
|
|
|
if (wasOriginal) {
|
|
|
|
totalElements++;
|
|
|
|
if (preserved) preservedCount++;
|
|
|
|
}
|
|
|
|
});
|
2025-05-25 19:45:37 +00:00
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
const preservationRate = totalElements > 0 ? (preservedCount / totalElements) * 100 : 0;
|
|
|
|
const dataLossRate = 100 - preservationRate;
|
|
|
|
|
|
|
|
console.log(`\n${target} Conversion Results:`);
|
|
|
|
console.log(` Elements preserved: ${preservedCount}/${totalElements}`);
|
|
|
|
console.log(` Preservation rate: ${preservationRate.toFixed(1)}%`);
|
|
|
|
console.log(` Data loss rate: ${dataLossRate.toFixed(1)}%`);
|
2025-05-25 19:45:37 +00:00
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
if (dataLossRate > 0) {
|
|
|
|
console.log(` ⚠ Data loss detected in ${target} conversion`);
|
|
|
|
|
|
|
|
// Identify specific losses
|
|
|
|
const lostElements = Object.entries(preservedData)
|
|
|
|
.filter(([key, preserved]) => originalData[key] && !preserved)
|
|
|
|
.map(([key]) => key);
|
|
|
|
|
|
|
|
if (lostElements.length > 0) {
|
|
|
|
console.log(` Lost elements: ${lostElements.join(', ')}`);
|
2025-05-25 19:45:37 +00:00
|
|
|
}
|
|
|
|
} else {
|
2025-05-26 13:33:21 +00:00
|
|
|
console.log(` ✓ No data loss detected in ${target} conversion`);
|
2025-05-25 19:45:37 +00:00
|
|
|
}
|
2025-05-26 13:33:21 +00:00
|
|
|
|
|
|
|
// Future API should include data loss reporting
|
|
|
|
console.log(' Future feature: Data loss report API should be available');
|
2025-05-25 19:45:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (error) {
|
2025-05-26 13:33:21 +00:00
|
|
|
console.log(`Field mapping loss test failed: ${error.message}`);
|
2025-05-25 19:45:37 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
tap.test('CONV-06: Data Loss Detection - Precision Loss', async () => {
|
2025-05-25 19:45:37 +00:00
|
|
|
|
|
|
|
// Test precision loss in numeric values during conversion
|
|
|
|
const precisionTestXml = `<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2">
|
|
|
|
<ID>PRECISION-TEST-001</ID>
|
|
|
|
<IssueDate>2024-01-15</IssueDate>
|
|
|
|
<InvoiceTypeCode>380</InvoiceTypeCode>
|
|
|
|
<DocumentCurrencyCode>EUR</DocumentCurrencyCode>
|
|
|
|
<InvoiceLine>
|
|
|
|
<ID>1</ID>
|
|
|
|
<InvoicedQuantity unitCode="C62">3.14159</InvoicedQuantity>
|
|
|
|
<LineExtensionAmount currencyID="EUR">33.33333</LineExtensionAmount>
|
|
|
|
<Item>
|
|
|
|
<Name>Precision Test Product</Name>
|
|
|
|
<AdditionalItemProperty>
|
|
|
|
<Name>Precise Weight</Name>
|
|
|
|
<Value>2.718281828</Value>
|
|
|
|
</AdditionalItemProperty>
|
|
|
|
<AdditionalItemProperty>
|
|
|
|
<Name>Very Precise Measurement</Name>
|
|
|
|
<Value>1.4142135623730951</Value>
|
|
|
|
</AdditionalItemProperty>
|
|
|
|
</Item>
|
|
|
|
<Price>
|
|
|
|
<PriceAmount currencyID="EUR">10.617</PriceAmount>
|
|
|
|
</Price>
|
|
|
|
</InvoiceLine>
|
|
|
|
<TaxTotal>
|
|
|
|
<TaxAmount currencyID="EUR">6.33333</TaxAmount>
|
|
|
|
<TaxSubtotal>
|
|
|
|
<TaxableAmount currencyID="EUR">33.33333</TaxableAmount>
|
|
|
|
<TaxAmount currencyID="EUR">6.33333</TaxAmount>
|
|
|
|
<TaxCategory>
|
|
|
|
<Percent>19.00000</Percent>
|
|
|
|
</TaxCategory>
|
|
|
|
</TaxSubtotal>
|
|
|
|
</TaxTotal>
|
|
|
|
<LegalMonetaryTotal>
|
|
|
|
<LineExtensionAmount currencyID="EUR">33.33333</LineExtensionAmount>
|
|
|
|
<TaxExclusiveAmount currencyID="EUR">33.33333</TaxExclusiveAmount>
|
|
|
|
<TaxInclusiveAmount currencyID="EUR">39.66666</TaxInclusiveAmount>
|
|
|
|
<PayableAmount currencyID="EUR">39.66666</PayableAmount>
|
|
|
|
</LegalMonetaryTotal>
|
|
|
|
</Invoice>`;
|
|
|
|
|
|
|
|
try {
|
|
|
|
const invoice = new EInvoice();
|
2025-05-26 13:33:21 +00:00
|
|
|
await invoice.loadXml(precisionTestXml);
|
2025-05-25 19:45:37 +00:00
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
console.log('Testing precision loss during format conversion...');
|
2025-05-25 19:45:37 +00:00
|
|
|
|
|
|
|
// Extract original precision values
|
|
|
|
const originalPrecisionValues = {
|
|
|
|
quantity: '3.14159',
|
|
|
|
lineAmount: '33.33333',
|
|
|
|
priceAmount: '10.617',
|
|
|
|
taxAmount: '6.33333',
|
|
|
|
preciseWeight: '2.718281828',
|
|
|
|
veryPreciseMeasurement: '1.4142135623730951'
|
|
|
|
};
|
|
|
|
|
|
|
|
const conversionTargets = ['CII'];
|
|
|
|
|
|
|
|
for (const target of conversionTargets) {
|
2025-05-26 13:33:21 +00:00
|
|
|
console.log(`\nTesting precision preservation in ${target} conversion...`);
|
2025-05-25 19:45:37 +00:00
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
// Future implementation should test precision preservation
|
|
|
|
console.log(' Precision test placeholder - conversion not yet implemented');
|
|
|
|
console.log(' When implemented, should check if precision values like:');
|
|
|
|
Object.entries(originalPrecisionValues).forEach(([key, originalValue]) => {
|
|
|
|
console.log(` - ${key}: ${originalValue}`);
|
|
|
|
});
|
|
|
|
console.log(' Are preserved or rounded during conversion');
|
2025-05-25 19:45:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (error) {
|
2025-05-26 13:33:21 +00:00
|
|
|
console.log(`Precision loss test failed: ${error.message}`);
|
2025-05-25 19:45:37 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
tap.test('CONV-06: Data Loss Detection - Unsupported Features', async () => {
|
2025-05-25 19:45:37 +00:00
|
|
|
|
|
|
|
// Test handling of format-specific features that may not be supported in target format
|
|
|
|
const unsupportedFeaturesTests = [
|
|
|
|
{
|
|
|
|
name: 'UBL Specific Features',
|
|
|
|
xml: `<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2">
|
|
|
|
<ID>UNSUPPORTED-UBL-001</ID>
|
|
|
|
<IssueDate>2024-01-15</IssueDate>
|
|
|
|
<InvoiceTypeCode>380</InvoiceTypeCode>
|
|
|
|
<UUID>550e8400-e29b-41d4-a716-446655440000</UUID>
|
|
|
|
<ProfileID>urn:fdc:peppol.eu:2017:poacc:billing:01:1.0</ProfileID>
|
|
|
|
<ProfileExecutionID>urn:fdc:peppol.eu:2017:poacc:billing:01:1.0</ProfileExecutionID>
|
|
|
|
<BuyerCustomerParty>
|
|
|
|
<Party>
|
|
|
|
<PartyName>
|
|
|
|
<Name>Different Customer Structure</Name>
|
|
|
|
</PartyName>
|
|
|
|
</Party>
|
|
|
|
</BuyerCustomerParty>
|
|
|
|
<TaxRepresentativeParty>
|
|
|
|
<PartyName>
|
|
|
|
<Name>Tax Representative</Name>
|
|
|
|
</PartyName>
|
|
|
|
</TaxRepresentativeParty>
|
|
|
|
<ProjectReference>
|
|
|
|
<ID>PROJECT-123</ID>
|
|
|
|
</ProjectReference>
|
|
|
|
</Invoice>`,
|
|
|
|
features: ['UUID', 'ProfileExecutionID', 'BuyerCustomerParty', 'TaxRepresentativeParty', 'ProjectReference']
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Advanced Payment Features',
|
|
|
|
xml: `<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2">
|
|
|
|
<ID>PAYMENT-FEATURES-001</ID>
|
|
|
|
<IssueDate>2024-01-15</IssueDate>
|
|
|
|
<InvoiceTypeCode>380</InvoiceTypeCode>
|
|
|
|
<PrepaidPayment>
|
|
|
|
<PaidAmount currencyID="EUR">50.00</PaidAmount>
|
|
|
|
<PaidDate>2024-01-01</PaidDate>
|
|
|
|
</PrepaidPayment>
|
|
|
|
<PaymentMeans>
|
|
|
|
<PaymentMeansCode>31</PaymentMeansCode>
|
|
|
|
<PaymentDueDate>2024-02-15</PaymentDueDate>
|
|
|
|
<InstructionID>INSTRUCTION-789</InstructionID>
|
|
|
|
<PaymentChannelCode>ONLINE</PaymentChannelCode>
|
|
|
|
</PaymentMeans>
|
|
|
|
<PaymentTerms>
|
|
|
|
<SettlementDiscountPercent>2.00</SettlementDiscountPercent>
|
|
|
|
<PenaltySurchargePercent>1.50</PenaltySurchargePercent>
|
|
|
|
<PaymentMeansID>PAYMENT-MEANS-ABC</PaymentMeansID>
|
|
|
|
</PaymentTerms>
|
|
|
|
</Invoice>`,
|
|
|
|
features: ['PrepaidPayment', 'PaymentDueDate', 'InstructionID', 'PaymentChannelCode', 'SettlementDiscountPercent', 'PenaltySurchargePercent']
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
for (const featureTest of unsupportedFeaturesTests) {
|
2025-05-26 13:33:21 +00:00
|
|
|
console.log(`\nTesting unsupported features: ${featureTest.name}`);
|
2025-05-25 19:45:37 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
const invoice = new EInvoice();
|
2025-05-26 13:33:21 +00:00
|
|
|
await invoice.loadXml(featureTest.xml);
|
2025-05-25 19:45:37 +00:00
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
// Test conversion to different formats
|
|
|
|
const targets = ['CII'];
|
|
|
|
|
|
|
|
for (const target of targets) {
|
|
|
|
console.log(` Converting to ${target}...`);
|
2025-05-25 19:45:37 +00:00
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
// Future implementation should test feature preservation
|
|
|
|
console.log(' Feature preservation test placeholder - conversion not yet implemented');
|
|
|
|
console.log(' When implemented, should check if features like:');
|
|
|
|
featureTest.features.forEach(feature => {
|
|
|
|
console.log(` - ${feature}`);
|
|
|
|
});
|
|
|
|
console.log(' Are preserved in the target format');
|
2025-05-25 19:45:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (error) {
|
2025-05-26 13:33:21 +00:00
|
|
|
console.log(` ✗ ${featureTest.name} test failed: ${error.message}`);
|
2025-05-25 19:45:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
tap.test('CONV-06: Data Loss Detection - Round-Trip Loss Analysis', async () => {
|
2025-05-25 19:45:37 +00:00
|
|
|
|
|
|
|
// Test data loss in round-trip conversions (UBL → CII → UBL)
|
|
|
|
const roundTripTestXml = `<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<Invoice xmlns="urn:oasis:names:specification:ubl:schema:xsd:Invoice-2">
|
|
|
|
<ID>ROUND-TRIP-001</ID>
|
|
|
|
<IssueDate>2024-01-15</IssueDate>
|
|
|
|
<InvoiceTypeCode>380</InvoiceTypeCode>
|
|
|
|
<DocumentCurrencyCode>EUR</DocumentCurrencyCode>
|
|
|
|
<Note>Round-trip conversion test</Note>
|
|
|
|
<AccountingSupplierParty>
|
|
|
|
<Party>
|
|
|
|
<PartyName>
|
|
|
|
<Name>Round Trip Supplier</Name>
|
|
|
|
</PartyName>
|
|
|
|
<PostalAddress>
|
|
|
|
<StreetName>Round Trip Street 123</StreetName>
|
|
|
|
<CityName>Round Trip City</CityName>
|
|
|
|
<PostalZone>12345</PostalZone>
|
|
|
|
<Country>
|
|
|
|
<IdentificationCode>DE</IdentificationCode>
|
|
|
|
</Country>
|
|
|
|
</PostalAddress>
|
|
|
|
</Party>
|
|
|
|
</AccountingSupplierParty>
|
|
|
|
<InvoiceLine>
|
|
|
|
<ID>1</ID>
|
|
|
|
<InvoicedQuantity unitCode="C62">1.5</InvoicedQuantity>
|
|
|
|
<LineExtensionAmount currencyID="EUR">75.50</LineExtensionAmount>
|
|
|
|
<Item>
|
|
|
|
<Name>Round Trip Product</Name>
|
|
|
|
<Description>Product for round-trip testing</Description>
|
|
|
|
</Item>
|
|
|
|
<Price>
|
|
|
|
<PriceAmount currencyID="EUR">50.33</PriceAmount>
|
|
|
|
</Price>
|
|
|
|
</InvoiceLine>
|
|
|
|
<LegalMonetaryTotal>
|
|
|
|
<LineExtensionAmount currencyID="EUR">75.50</LineExtensionAmount>
|
|
|
|
<TaxExclusiveAmount currencyID="EUR">75.50</TaxExclusiveAmount>
|
|
|
|
<TaxInclusiveAmount currencyID="EUR">89.85</TaxInclusiveAmount>
|
|
|
|
<PayableAmount currencyID="EUR">89.85</PayableAmount>
|
|
|
|
</LegalMonetaryTotal>
|
|
|
|
</Invoice>`;
|
|
|
|
|
|
|
|
try {
|
|
|
|
const originalInvoice = new EInvoice();
|
2025-05-26 13:33:21 +00:00
|
|
|
await originalInvoice.loadXml(roundTripTestXml);
|
2025-05-25 19:45:37 +00:00
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
console.log('Testing round-trip data loss (UBL → CII → UBL)...');
|
2025-05-25 19:45:37 +00:00
|
|
|
|
|
|
|
// Extract key data from original
|
|
|
|
const originalData = {
|
|
|
|
id: 'ROUND-TRIP-001',
|
|
|
|
supplierName: 'Round Trip Supplier',
|
|
|
|
streetName: 'Round Trip Street 123',
|
|
|
|
cityName: 'Round Trip City',
|
|
|
|
postalCode: '12345',
|
|
|
|
productName: 'Round Trip Product',
|
|
|
|
quantity: '1.5',
|
|
|
|
price: '50.33',
|
|
|
|
lineAmount: '75.50',
|
|
|
|
payableAmount: '89.85'
|
|
|
|
};
|
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
// Future implementation should test round-trip conversion
|
|
|
|
console.log('Round-trip conversion test placeholder - conversion not yet implemented');
|
|
|
|
console.log('Expected flow: UBL → CII → UBL');
|
|
|
|
console.log('When implemented, should check if data like:');
|
|
|
|
Object.entries(originalData).forEach(([key, value]) => {
|
|
|
|
console.log(` - ${key}: ${value}`);
|
|
|
|
});
|
|
|
|
console.log('Is preserved through the round-trip conversion');
|
2025-05-25 19:45:37 +00:00
|
|
|
|
|
|
|
} catch (error) {
|
2025-05-26 13:33:21 +00:00
|
|
|
console.log(`Round-trip loss analysis failed: ${error.message}`);
|
2025-05-25 19:45:37 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2025-05-26 13:33:21 +00:00
|
|
|
// Note: Performance summary test removed as it relies on unimplemented conversion functionality
|
|
|
|
|
|
|
|
tap.start();
|