fix(compliance): improve compliance

This commit is contained in:
2025-05-27 15:26:22 +00:00
parent be123e41c9
commit 0b6d91447e
6 changed files with 2737 additions and 3540 deletions

View File

@ -1,524 +1,380 @@
import { tap } from '@git.zone/tstest/tapbundle';
import * as plugins from '../plugins.js';
import { EInvoice } from '../../../ts/index.js';
import { PerformanceTracker } from '../performance.tracker.js';
const performanceTracker = new PerformanceTracker('EDGE-05: Zero-Byte PDFs');
tap.test('EDGE-05: Zero-Byte PDFs - should handle zero-byte and minimal PDF files', async (t) => {
const einvoice = new EInvoice();
tap.test('EDGE-05: Zero-Byte PDFs - should handle zero-byte and minimal PDF files', async () => {
// Test 1: Truly zero-byte PDF
const zeroByteFile = await performanceTracker.measureAsync(
'truly-zero-byte-pdf',
async () => {
const zeroPDF = Buffer.alloc(0);
try {
const result = await einvoice.extractFromPDF(zeroPDF);
return {
handled: true,
hasContent: !!result,
hasXML: result?.xml !== undefined,
hasAttachments: result?.attachments?.length > 0,
error: null,
bufferSize: zeroPDF.length
};
} catch (error) {
return {
handled: true,
hasContent: false,
error: error.message,
errorType: error.constructor.name,
bufferSize: zeroPDF.length
};
}
await PerformanceTracker.track('truly-zero-byte-pdf', async () => {
const zeroPDF = Buffer.alloc(0);
try {
const result = await EInvoice.fromPdf(zeroPDF);
console.log('Zero-byte PDF: unexpectedly succeeded', result);
} catch (error) {
console.log('Zero-byte PDF: properly failed with error:', error.message);
}
);
t.ok(zeroByteFile.handled, 'Zero-byte PDF was handled');
t.notOk(zeroByteFile.hasContent, 'Zero-byte PDF has no content');
t.equal(zeroByteFile.bufferSize, 0, 'Buffer size is zero');
});
// Test 2: Minimal PDF structure
const minimalPDFStructure = await performanceTracker.measureAsync(
'minimal-pdf-structure',
async () => {
const minimalPDFs = [
{
name: 'header-only',
content: Buffer.from('%PDF-1.4')
},
{
name: 'header-and-eof',
content: Buffer.from('%PDF-1.4\n%%EOF')
},
{
name: 'empty-catalog',
content: Buffer.from(
'%PDF-1.4\n' +
'1 0 obj\n<< /Type /Catalog >>\nendobj\n' +
'xref\n0 2\n' +
'0000000000 65535 f\n' +
'0000000009 00000 n\n' +
'trailer\n<< /Size 2 /Root 1 0 R >>\n' +
'startxref\n64\n%%EOF'
)
},
{
name: 'single-empty-page',
content: Buffer.from(
'%PDF-1.4\n' +
'1 0 obj\n<< /Type /Catalog /Pages 2 0 R >>\nendobj\n' +
'2 0 obj\n<< /Type /Pages /Count 0 /Kids [] >>\nendobj\n' +
'xref\n0 3\n' +
'0000000000 65535 f\n' +
'0000000009 00000 n\n' +
'0000000052 00000 n\n' +
'trailer\n<< /Size 3 /Root 1 0 R >>\n' +
'startxref\n110\n%%EOF'
)
}
];
const results = [];
for (const pdf of minimalPDFs) {
try {
const result = await einvoice.extractFromPDF(pdf.content);
results.push({
name: pdf.name,
size: pdf.content.length,
processed: true,
hasXML: !!result?.xml,
hasAttachments: result?.attachments?.length > 0,
hasMetadata: !!result?.metadata
});
} catch (error) {
results.push({
name: pdf.name,
size: pdf.content.length,
processed: false,
error: error.message
});
}
}
return results;
}
);
minimalPDFStructure.forEach(result => {
t.ok(result.processed || result.error, `Minimal PDF ${result.name} was processed`);
t.notOk(result.hasXML, `Minimal PDF ${result.name} has no XML`);
});
// Test 3: Truncated PDF files
const truncatedPDFs = await performanceTracker.measureAsync(
'truncated-pdf-files',
async () => {
// Start with a valid PDF structure and truncate at different points
const fullPDF = Buffer.from(
'%PDF-1.4\n' +
'1 0 obj\n<< /Type /Catalog /Pages 2 0 R >>\nendobj\n' +
'2 0 obj\n<< /Type /Pages /Count 1 /Kids [3 0 R] >>\nendobj\n' +
'3 0 obj\n<< /Type /Page /Parent 2 0 R /MediaBox [0 0 612 792] >>\nendobj\n' +
'xref\n0 4\n' +
'0000000000 65535 f\n' +
'0000000009 00000 n\n' +
'0000000052 00000 n\n' +
'0000000110 00000 n\n' +
'trailer\n<< /Size 4 /Root 1 0 R >>\n' +
'startxref\n196\n%%EOF'
);
const truncationPoints = [
{ name: 'after-header', bytes: 10 },
{ name: 'mid-object', bytes: 50 },
{ name: 'before-xref', bytes: 150 },
{ name: 'mid-xref', bytes: 250 },
{ name: 'before-eof', bytes: fullPDF.length - 5 }
];
const results = [];
for (const point of truncationPoints) {
const truncated = fullPDF.slice(0, point.bytes);
try {
const result = await einvoice.extractFromPDF(truncated);
results.push({
truncationPoint: point.name,
size: truncated.length,
recovered: true,
hasPartialData: !!result
});
} catch (error) {
results.push({
truncationPoint: point.name,
size: truncated.length,
recovered: false,
error: error.message,
isCorruptionError: error.message.includes('corrupt') || error.message.includes('truncated')
});
}
}
return results;
}
);
truncatedPDFs.forEach(result => {
t.ok(!result.recovered || result.isCorruptionError,
`Truncated PDF at ${result.truncationPoint} should fail or be detected as corrupt`);
});
// Test 4: PDF with zero-byte attachment
const zeroByteAttachment = await performanceTracker.measureAsync(
'pdf-with-zero-byte-attachment',
async () => {
// Create a PDF with an embedded file of zero bytes
const pdfWithEmptyAttachment = Buffer.from(
'%PDF-1.4\n' +
'1 0 obj\n<< /Type /Catalog /Names 2 0 R >>\nendobj\n' +
'2 0 obj\n<< /EmbeddedFiles 3 0 R >>\nendobj\n' +
'3 0 obj\n<< /Names [(empty.xml) 4 0 R] >>\nendobj\n' +
'4 0 obj\n<< /Type /Filespec /F (empty.xml) /EF << /F 5 0 R >> >>\nendobj\n' +
'5 0 obj\n<< /Type /EmbeddedFile /Length 0 >>\nstream\n\nendstream\nendobj\n' +
'xref\n0 6\n' +
'0000000000 65535 f\n' +
'0000000009 00000 n\n' +
'0000000062 00000 n\n' +
'0000000103 00000 n\n' +
'0000000151 00000 n\n' +
'0000000229 00000 n\n' +
'trailer\n<< /Size 6 /Root 1 0 R >>\n' +
'startxref\n307\n%%EOF'
);
try {
const result = await einvoice.extractFromPDF(pdfWithEmptyAttachment);
return {
processed: true,
hasAttachments: result?.attachments?.length > 0,
attachmentCount: result?.attachments?.length || 0,
firstAttachmentSize: result?.attachments?.[0]?.size || 0,
firstAttachmentName: result?.attachments?.[0]?.name || null
};
} catch (error) {
return {
processed: false,
error: error.message
};
}
}
);
t.ok(zeroByteAttachment.processed, 'PDF with zero-byte attachment was processed');
if (zeroByteAttachment.hasAttachments) {
t.equal(zeroByteAttachment.firstAttachmentSize, 0, 'Attachment size is zero');
}
// Test 5: PDF with only metadata
const metadataOnlyPDF = await performanceTracker.measureAsync(
'pdf-with-only-metadata',
async () => {
const pdfWithMetadata = Buffer.from(
'%PDF-1.4\n' +
'1 0 obj\n<< /Type /Catalog /Metadata 2 0 R >>\nendobj\n' +
'2 0 obj\n<< /Type /Metadata /Subtype /XML /Length 100 >>\n' +
'stream\n' +
'<?xml version="1.0"?><x:xmpmeta xmlns:x="adobe:ns:meta/"><rdf:RDF></rdf:RDF></x:xmpmeta>\n' +
'endstream\nendobj\n' +
'xref\n0 3\n' +
'0000000000 65535 f\n' +
'0000000009 00000 n\n' +
'0000000068 00000 n\n' +
'trailer\n<< /Size 3 /Root 1 0 R >>\n' +
'startxref\n259\n%%EOF'
);
try {
const result = await einvoice.extractFromPDF(pdfWithMetadata);
return {
processed: true,
hasMetadata: !!result?.metadata,
hasXML: !!result?.xml,
hasContent: !!result?.content,
isEmpty: !result?.xml && !result?.attachments?.length
};
} catch (error) {
return {
processed: false,
error: error.message
};
}
}
);
t.ok(metadataOnlyPDF.processed, 'PDF with only metadata was processed');
t.ok(metadataOnlyPDF.isEmpty, 'PDF with only metadata has no invoice content');
// Test 6: Compressed empty streams
const compressedEmptyStreams = await performanceTracker.measureAsync(
'compressed-empty-streams',
async () => {
const compressionMethods = [
{ name: 'flate', filter: '/FlateDecode' },
{ name: 'lzw', filter: '/LZWDecode' },
{ name: 'ascii85', filter: '/ASCII85Decode' },
{ name: 'asciihex', filter: '/ASCIIHexDecode' }
];
const results = [];
for (const method of compressionMethods) {
const pdf = Buffer.from(
await PerformanceTracker.track('minimal-pdf-structure', async () => {
const minimalPDFs = [
{
name: 'header-only',
content: Buffer.from('%PDF-1.4')
},
{
name: 'header-and-eof',
content: Buffer.from('%PDF-1.4\n%%EOF')
},
{
name: 'empty-catalog',
content: Buffer.from(
'%PDF-1.4\n' +
`1 0 obj\n<< /Length 0 /Filter ${method.filter} >>\n` +
'stream\n\nendstream\nendobj\n' +
'1 0 obj\n<< /Type /Catalog >>\nendobj\n' +
'xref\n0 2\n' +
'0000000000 65535 f\n' +
'0000000009 00000 n\n' +
'trailer\n<< /Size 2 >>\n' +
'startxref\n100\n%%EOF'
);
try {
const result = await einvoice.processPDFStream(pdf);
results.push({
method: method.name,
handled: true,
decompressed: true
});
} catch (error) {
results.push({
method: method.name,
handled: true,
error: error.message
});
}
'trailer\n<< /Size 2 /Root 1 0 R >>\n' +
'startxref\n64\n%%EOF'
)
}
];
for (const pdf of minimalPDFs) {
try {
await EInvoice.fromPdf(pdf.content);
console.log(`Minimal PDF ${pdf.name}: size=${pdf.content.length}, extracted invoice`);
} catch (error) {
console.log(`Minimal PDF ${pdf.name}: failed - ${error.message}`);
}
return results;
}
);
compressedEmptyStreams.forEach(result => {
t.ok(result.handled, `Empty ${result.method} stream was handled`);
});
// Test 7: Zero-page PDF
const zeroPagePDF = await performanceTracker.measureAsync(
'zero-page-pdf',
async () => {
const zeroPagesPDF = Buffer.from(
'%PDF-1.4\n' +
'1 0 obj\n<< /Type /Catalog /Pages 2 0 R >>\nendobj\n' +
'2 0 obj\n<< /Type /Pages /Count 0 /Kids [] >>\nendobj\n' +
'xref\n0 3\n' +
'0000000000 65535 f\n' +
'0000000009 00000 n\n' +
'0000000058 00000 n\n' +
'trailer\n<< /Size 3 /Root 1 0 R >>\n' +
'startxref\n115\n%%EOF'
);
// Test 3: Truncated PDF files
await PerformanceTracker.track('truncated-pdf-files', async () => {
// Start with a valid PDF structure and truncate at different points
const fullPDF = Buffer.from(
'%PDF-1.4\n' +
'1 0 obj\n<< /Type /Catalog /Pages 2 0 R >>\nendobj\n' +
'2 0 obj\n<< /Type /Pages /Count 1 /Kids [3 0 R] >>\nendobj\n' +
'3 0 obj\n<< /Type /Page /Parent 2 0 R /MediaBox [0 0 612 792] >>\nendobj\n' +
'xref\n0 4\n' +
'0000000000 65535 f\n' +
'0000000009 00000 n\n' +
'0000000052 00000 n\n' +
'0000000110 00000 n\n' +
'trailer\n<< /Size 4 /Root 1 0 R >>\n' +
'startxref\n196\n%%EOF'
);
const truncationPoints = [
{ name: 'after-header', bytes: 10 },
{ name: 'mid-object', bytes: 50 },
{ name: 'before-xref', bytes: 150 },
{ name: 'before-eof', bytes: fullPDF.length - 5 }
];
for (const point of truncationPoints) {
const truncated = fullPDF.subarray(0, point.bytes);
try {
const result = await einvoice.extractFromPDF(zeroPagesPDF);
return {
processed: true,
pageCount: result?.pageCount || 0,
hasContent: !!result?.content,
canExtractXML: !!result?.xml
};
await EInvoice.fromPdf(truncated);
console.log(`Truncated PDF at ${point.name}: unexpectedly succeeded`);
} catch (error) {
return {
processed: false,
error: error.message
};
console.log(`Truncated PDF at ${point.name}: properly failed - ${error.message}`);
}
}
);
t.ok(zeroPagePDF.processed || zeroPagePDF.error, 'Zero-page PDF was handled');
if (zeroPagePDF.processed) {
t.equal(zeroPagePDF.pageCount, 0, 'Page count is zero');
}
// Test 8: PDF with empty form fields
const emptyFormFields = await performanceTracker.measureAsync(
'pdf-with-empty-form-fields',
async () => {
const formPDF = Buffer.from(
'%PDF-1.4\n' +
'1 0 obj\n<< /Type /Catalog /AcroForm 2 0 R >>\nendobj\n' +
'2 0 obj\n<< /Fields [] >>\nendobj\n' +
'xref\n0 3\n' +
'0000000000 65535 f\n' +
'0000000009 00000 n\n' +
'0000000065 00000 n\n' +
'trailer\n<< /Size 3 /Root 1 0 R >>\n' +
'startxref\n100\n%%EOF'
);
try {
const result = await einvoice.extractFromPDF(formPDF);
return {
processed: true,
hasForm: !!result?.form,
formFieldCount: result?.form?.fields?.length || 0,
hasData: !!result?.data
};
} catch (error) {
return {
processed: false,
error: error.message
};
}
}
);
t.ok(emptyFormFields.processed, 'PDF with empty form fields was processed');
// Test 9: Recovery attempts on zero-byte files
const recoveryAttempts = await performanceTracker.measureAsync(
'recovery-attempts-zero-byte',
async () => {
const corruptScenarios = [
{
name: 'no-header',
content: Buffer.from('This is not a PDF')
},
{
name: 'binary-garbage',
content: Buffer.from([0xFF, 0xFE, 0xFD, 0xFC, 0x00, 0x01, 0x02, 0x03])
},
{
name: 'html-instead',
content: Buffer.from('<html><body>Not a PDF</body></html>')
},
{
name: 'partial-header',
content: Buffer.from('%PDF-')
},
{
name: 'wrong-version',
content: Buffer.from('%PDF-99.9\n%%EOF')
}
];
const results = [];
for (const scenario of corruptScenarios) {
try {
const result = await einvoice.extractFromPDF(scenario.content, {
attemptRecovery: true
});
results.push({
scenario: scenario.name,
recovered: !!result,
hasAnyData: !!result?.xml || !!result?.attachments?.length
});
} catch (error) {
results.push({
scenario: scenario.name,
recovered: false,
errorMessage: error.message,
recognized: error.message.includes('PDF') || error.message.includes('format')
});
}
}
return results;
}
);
recoveryAttempts.forEach(result => {
t.ok(!result.recovered, `Recovery should fail for ${result.scenario}`);
t.ok(result.recognized, `Error should recognize invalid PDF format`);
});
// Test 10: Batch processing with zero-byte PDFs
const batchWithZeroBytes = await performanceTracker.measureAsync(
'batch-processing-zero-byte',
async () => {
const batch = [
{ name: 'normal', content: createValidPDF() },
{ name: 'zero-byte', content: Buffer.alloc(0) },
{ name: 'normal2', content: createValidPDF() },
{ name: 'header-only', content: Buffer.from('%PDF-1.4') },
{ name: 'normal3', content: createValidPDF() }
];
// Test 4: PDF extraction and embedding
await PerformanceTracker.track('pdf-extraction-embedding', async () => {
// Create an invoice first
const einvoice = new EInvoice();
einvoice.issueDate = new Date(2024, 0, 1);
einvoice.invoiceId = 'ZERO-001';
einvoice.from = {
type: 'company',
name: 'Test Company',
description: 'Testing zero-byte scenarios',
address: {
streetName: 'Test Street',
houseNumber: '1',
postalCode: '12345',
city: 'Test City',
country: 'DE'
},
status: 'active',
foundedDate: { year: 2020, month: 1, day: 1 },
registrationDetails: {
vatId: 'DE123456789',
registrationId: 'HRB 12345',
registrationName: 'Commercial Register'
}
};
einvoice.to = {
type: 'person',
name: 'Test',
surname: 'Customer',
salutation: 'Mr' as const,
sex: 'male' as const,
title: 'Doctor' as const,
description: 'Test customer',
address: {
streetName: 'Customer Street',
houseNumber: '2',
postalCode: '54321',
city: 'Customer City',
country: 'DE'
}
};
einvoice.items = [{
position: 1,
name: 'Test Service',
articleNumber: 'SRV-001',
unitType: 'EA',
unitQuantity: 1,
unitNetPrice: 100,
vatPercentage: 19
}];
try {
// Generate UBL
const ublString = await einvoice.toXmlString('ubl');
console.log(`Generated UBL invoice: ${ublString.length} bytes`);
const results = {
total: batch.length,
successful: 0,
failed: 0,
skipped: 0,
errors: []
// Try to embed in a minimal PDF (this will likely fail)
const minimalPDF = Buffer.from('%PDF-1.4\n%%EOF');
await einvoice.embedInPdf(minimalPDF, 'ubl');
console.log(`Embedded XML in minimal PDF: success`);
} catch (error) {
console.log(`PDF embedding test failed: ${error.message}`);
}
});
// Test 5: Empty invoice edge cases
await PerformanceTracker.track('empty-invoice-edge-cases', async () => {
const testCases = [
{
name: 'no-items',
setup: (invoice: EInvoice) => {
invoice.items = [];
}
},
{
name: 'empty-strings',
setup: (invoice: EInvoice) => {
invoice.invoiceId = '';
invoice.items = [{
position: 1,
name: '',
articleNumber: '',
unitType: 'EA',
unitQuantity: 0,
unitNetPrice: 0,
vatPercentage: 0
}];
}
},
{
name: 'zero-amounts',
setup: (invoice: EInvoice) => {
invoice.items = [{
position: 1,
name: 'Zero Value Item',
articleNumber: 'ZERO-001',
unitType: 'EA',
unitQuantity: 0,
unitNetPrice: 0,
vatPercentage: 0
}];
}
}
];
for (const testCase of testCases) {
const einvoice = new EInvoice();
einvoice.issueDate = new Date(2024, 0, 1);
einvoice.invoiceId = 'EMPTY-001';
einvoice.from = {
type: 'company',
name: 'Empty Test Company',
description: 'Testing empty scenarios',
address: {
streetName: 'Test Street',
houseNumber: '1',
postalCode: '12345',
city: 'Test City',
country: 'DE'
},
status: 'active',
foundedDate: { year: 2020, month: 1, day: 1 },
registrationDetails: {
vatId: 'DE123456789',
registrationId: 'HRB 12345',
registrationName: 'Commercial Register'
}
};
for (const item of batch) {
try {
const result = await einvoice.extractFromPDF(item.content);
if (result?.xml || result?.attachments?.length) {
results.successful++;
} else {
results.skipped++;
}
} catch (error) {
results.failed++;
results.errors.push({
name: item.name,
error: error.message
});
einvoice.to = {
type: 'company',
name: 'Customer Company',
description: 'Customer',
address: {
streetName: 'Customer Street',
houseNumber: '2',
postalCode: '54321',
city: 'Customer City',
country: 'DE'
},
status: 'active',
foundedDate: { year: 2019, month: 1, day: 1 },
registrationDetails: {
vatId: 'DE987654321',
registrationId: 'HRB 54321',
registrationName: 'Commercial Register'
}
}
};
return results;
// Apply test-specific setup
testCase.setup(einvoice);
try {
const ciiString = await einvoice.toXmlString('cii');
console.log(`Empty test ${testCase.name}: generated ${ciiString.length} bytes`);
// Try validation
const validationResult = await einvoice.validate();
console.log(`Empty test ${testCase.name} validation: ${validationResult.valid ? 'valid' : 'invalid'}`);
if (!validationResult.valid) {
console.log(`Validation errors: ${validationResult.errors.length}`);
}
} catch (error) {
console.log(`Empty test ${testCase.name} failed: ${error.message}`);
}
}
);
});
t.equal(batchWithZeroBytes.total,
batchWithZeroBytes.successful + batchWithZeroBytes.failed + batchWithZeroBytes.skipped,
'All batch items were processed');
t.ok(batchWithZeroBytes.failed > 0, 'Some zero-byte PDFs failed as expected');
// Test 6: Batch processing with zero-byte PDFs
await PerformanceTracker.track('batch-processing-zero-byte', async () => {
const batch = [
{ name: 'zero-byte', content: Buffer.alloc(0) },
{ name: 'header-only', content: Buffer.from('%PDF-1.4') },
{ name: 'invalid', content: Buffer.from('Not a PDF') },
{ name: 'valid-minimal', content: createMinimalValidPDF() }
];
let successful = 0;
let failed = 0;
for (const item of batch) {
try {
await EInvoice.fromPdf(item.content);
successful++;
console.log(`Batch item ${item.name}: extracted successfully`);
} catch (error) {
failed++;
console.log(`Batch item ${item.name}: failed - ${error.message}`);
}
}
console.log(`Batch processing complete: ${successful} successful, ${failed} failed`);
});
// Print performance summary
performanceTracker.printSummary();
// Test 7: Memory efficiency with zero content
await PerformanceTracker.track('memory-efficiency-zero-content', async () => {
const iterations = 100;
const beforeMem = process.memoryUsage();
// Create many empty invoices
const invoices: EInvoice[] = [];
for (let i = 0; i < iterations; i++) {
const einvoice = new EInvoice();
einvoice.issueDate = new Date(2024, 0, 1);
einvoice.invoiceId = `MEM-${i}`;
einvoice.from = {
type: 'company',
name: 'Memory Test',
description: 'Testing memory',
address: {
streetName: 'Test Street',
houseNumber: '1',
postalCode: '12345',
city: 'Test City',
country: 'DE'
},
status: 'active',
foundedDate: { year: 2020, month: 1, day: 1 },
registrationDetails: {
vatId: 'DE123456789',
registrationId: 'HRB 12345',
registrationName: 'Commercial Register'
}
};
einvoice.to = {
type: 'person',
name: 'Test',
surname: 'Customer',
salutation: 'Mr' as const,
sex: 'male' as const,
title: 'Doctor' as const,
description: 'Test customer',
address: {
streetName: 'Customer Street',
houseNumber: '2',
postalCode: '54321',
city: 'Customer City',
country: 'DE'
}
};
einvoice.items = []; // Empty items
invoices.push(einvoice);
}
const afterMem = process.memoryUsage();
const memDiff = {
heapUsed: Math.round((afterMem.heapUsed - beforeMem.heapUsed) / 1024 / 1024 * 100) / 100,
rss: Math.round((afterMem.rss - beforeMem.rss) / 1024 / 1024 * 100) / 100
};
console.log(`Created ${iterations} empty invoices`);
console.log(`Memory usage increase: Heap: ${memDiff.heapUsed}MB, RSS: ${memDiff.rss}MB`);
// Try to process them all
let processedCount = 0;
for (const invoice of invoices) {
try {
const xml = await invoice.toXmlString('ubl');
if (xml && xml.length > 0) {
processedCount++;
}
} catch (error) {
// Expected for empty invoices
}
}
console.log(`Successfully processed ${processedCount} out of ${iterations} empty invoices`);
});
});
// Helper function to create a valid PDF with invoice attachment
function createValidPDF(): Buffer {
// Helper function to create a minimal valid PDF
function createMinimalValidPDF(): Buffer {
return Buffer.from(
'%PDF-1.4\n' +
'1 0 obj\n<< /Type /Catalog /Names 2 0 R >>\nendobj\n' +
'2 0 obj\n<< /EmbeddedFiles 3 0 R >>\nendobj\n' +
'3 0 obj\n<< /Names [(invoice.xml) 4 0 R] >>\nendobj\n' +
'4 0 obj\n<< /Type /Filespec /F (invoice.xml) /EF << /F 5 0 R >> >>\nendobj\n' +
'5 0 obj\n<< /Type /EmbeddedFile /Length 50 >>\nstream\n' +
'<?xml version="1.0"?><Invoice><ID>TEST</ID></Invoice>\n' +
'endstream\nendobj\n' +
'xref\n0 6\n' +
'1 0 obj\n<< /Type /Catalog /Pages 2 0 R >>\nendobj\n' +
'2 0 obj\n<< /Type /Pages /Count 0 /Kids [] >>\nendobj\n' +
'xref\n0 3\n' +
'0000000000 65535 f\n' +
'0000000009 00000 n\n' +
'0000000062 00000 n\n' +
'0000000103 00000 n\n' +
'0000000151 00000 n\n' +
'0000000229 00000 n\n' +
'trailer\n<< /Size 6 /Root 1 0 R >>\n' +
'startxref\n350\n%%EOF'
'0000000058 00000 n\n' +
'trailer\n<< /Size 3 /Root 1 0 R >>\n' +
'startxref\n115\n%%EOF'
);
}