UnitTests
This commit is contained in:
121
test/InfoServer.test.js
Normal file
121
test/InfoServer.test.js
Normal file
@@ -0,0 +1,121 @@
|
||||
const fs = require('fs');
|
||||
const https = require('https');
|
||||
const createInfoServer = require('../server/InfoServer');
|
||||
const GCode = require('../robot/GCode');
|
||||
|
||||
function listen(server) {
|
||||
return new Promise((resolve, reject) => {
|
||||
server.listen(0, () => {
|
||||
const address = server.address();
|
||||
if (address && address.port) {
|
||||
resolve(address.port);
|
||||
} else {
|
||||
reject(new Error('Failed to get server port'));
|
||||
}
|
||||
});
|
||||
server.on('error', reject);
|
||||
});
|
||||
}
|
||||
|
||||
function request(url) {
|
||||
return new Promise((resolve, reject) => {
|
||||
const agent = new https.Agent({ rejectUnauthorized: false });
|
||||
https.get(url, { agent }, (res) => {
|
||||
let data = '';
|
||||
res.on('data', (chunk) => {
|
||||
data += chunk.toString();
|
||||
});
|
||||
res.on('end', () => {
|
||||
resolve({ statusCode: res.statusCode, body: data });
|
||||
});
|
||||
}).on('error', reject);
|
||||
});
|
||||
}
|
||||
|
||||
describe('InfoServer', () => {
|
||||
let server;
|
||||
let port;
|
||||
|
||||
afterEach(async () => {
|
||||
if (server) {
|
||||
await new Promise((resolve) => server.close(resolve));
|
||||
server = null;
|
||||
}
|
||||
});
|
||||
|
||||
test('returns status JSON with sender and shared state information', async () => {
|
||||
const key = fs.readFileSync('https/localhost.key');
|
||||
const cert = fs.readFileSync('https/localhost.pem');
|
||||
const httpsOptions = { key, cert, passphrase: 'abcd' };
|
||||
|
||||
const sharedState = {
|
||||
connectedClients: ['127.0.0.1'],
|
||||
lastCommands: ['G1 X10 Y10'],
|
||||
lastPings: ['Ping']
|
||||
};
|
||||
|
||||
const robot = {
|
||||
x: 1,
|
||||
y: 2,
|
||||
z: 3,
|
||||
phi: 0,
|
||||
theta: 0,
|
||||
psi: 0
|
||||
};
|
||||
|
||||
const senders = [
|
||||
{ name: 'Base', instance: { tSocket: {} } },
|
||||
{ name: 'Hand', instance: null }
|
||||
];
|
||||
|
||||
server = createInfoServer(httpsOptions, sharedState, robot, GCode, senders);
|
||||
port = await listen(server);
|
||||
|
||||
const { statusCode, body } = await request(`https://127.0.0.1:${port}/api/status`);
|
||||
expect(statusCode).toBe(200);
|
||||
|
||||
const status = JSON.parse(body);
|
||||
expect(status.clients).toEqual(['127.0.0.1']);
|
||||
expect(status.lastCommands).toEqual(['G1 X10 Y10']);
|
||||
expect(status.lastPings).toEqual(['Ping']);
|
||||
expect(status.senders).toEqual([
|
||||
{ name: 'Base', status: 'connected' },
|
||||
{ name: 'Hand', status: 'disconnected' }
|
||||
]);
|
||||
});
|
||||
|
||||
test('returns position JSON from GCode.getM114', async () => {
|
||||
const key = fs.readFileSync('https/localhost.key');
|
||||
const cert = fs.readFileSync('https/localhost.pem');
|
||||
const httpsOptions = { key, cert, passphrase: 'abcd' };
|
||||
|
||||
const sharedState = { connectedClients: [], lastCommands: [], lastPings: [] };
|
||||
const robot = { x: 10, y: 20, z: 30, phi: 0.1, theta: 0.2, psi: 0.3, xMotor: 0, alpha: 0, beta: 0, a: 0, b: 0, c: 0 };
|
||||
const senders = [];
|
||||
|
||||
server = createInfoServer(httpsOptions, sharedState, robot, GCode, senders);
|
||||
port = await listen(server);
|
||||
|
||||
const { statusCode, body } = await request(`https://127.0.0.1:${port}/api/position`);
|
||||
expect(statusCode).toBe(200);
|
||||
|
||||
const json = JSON.parse(body);
|
||||
expect(json.position).toEqual({ x: 10, y: 20, z: 30, a: 0.1, b: 0.2, c: 0.3 });
|
||||
});
|
||||
|
||||
test('returns 404 for unknown endpoints', async () => {
|
||||
const key = fs.readFileSync('https/localhost.key');
|
||||
const cert = fs.readFileSync('https/localhost.pem');
|
||||
const httpsOptions = { key, cert, passphrase: 'abcd' };
|
||||
|
||||
const sharedState = { connectedClients: [], lastCommands: [], lastPings: [] };
|
||||
const robot = { x: 0, y: 0, z: 0, phi: 0, theta: 0, psi: 0, xMotor: 0, alpha: 0, beta: 0, a: 0, b: 0, c: 0 };
|
||||
const senders = [];
|
||||
|
||||
server = createInfoServer(httpsOptions, sharedState, robot, GCode, senders);
|
||||
port = await listen(server);
|
||||
|
||||
const { statusCode } = await request(`https://127.0.0.1:${port}/api/unknown`);
|
||||
expect(statusCode).toBe(404);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user