Initial commit: Epson ePOS Node backend + Vue3 UI (printer matricial2)

This commit is contained in:
2025-09-27 16:06:57 -06:00
commit f3c13b356b
26 changed files with 5015 additions and 0 deletions

37
scripts/test_all.js Normal file
View File

@@ -0,0 +1,37 @@
// Orchestrator: starts the server and runs separated tests sequentially,
// waiting for confirmation (ok: true) from the printer between steps.
process.env.PRINTER_HOST = process.env.PRINTER_HOST || '192.168.87.147';
process.env.PRINTER_DEVICE_ID = process.env.PRINTER_DEVICE_ID || 'matricial2';
process.env.PRINTER_TIMEOUT_MS = process.env.PRINTER_TIMEOUT_MS || '60000';
process.env.PORT = process.env.PORT || '3001';
process.env.TEST_BASE_URL = process.env.TEST_BASE_URL || `http://localhost:${process.env.PORT}`;
require('../src/server.js');
const sleep = (ms) => new Promise((r) => setTimeout(r, ms));
async function run() {
const tests = [
require('./tests/01_text_simple'),
require('./tests/02_align_cut'),
require('./tests/03_font_size'),
require('./tests/04_batch_feeds'),
require('./tests/05_barcode'),
require('./tests/06_qr'),
require('./tests/07_pulse'),
];
await sleep(500); // give server time to bind
for (let i = 0; i < tests.length; i++) {
const fn = tests[i];
console.log(`\n>>> Running test ${i + 1}`);
await fn();
await sleep(800); // small gap between prints
}
console.log('\nAll tests completed successfully.');
}
run().catch((e) => { console.error(e); process.exit(1); });