actions-test/tests/ws.js

190 lines
5.4 KiB
JavaScript
Raw Permalink Normal View History

2023-03-10 12:44:23 +01:00
import WebSocket from 'ws';
import { uts, wait } from '../dist/sys/tools.js';
2023-03-10 16:28:24 +01:00
import ws from "./tests/ws.js"
import { spawn } from "child_process";
import { oConf } from "../dist/sys/config.js"
import mariadb from "mariadb";
let inCI = process.argv.includes("ci");
oConf.connect(inCI ? 'test.juml' : 'testLocal.juml');
const connection = await mariadb.createConnection({
host: oConf.get("Database", "host"),
port: oConf.get("Database", "port"),
user: oConf.get("Database", "user"),
password: oConf.get("Database", "password"),
database: oConf.get("Database", "database"),
multipleStatements: true
});
await wait(100);
let req = await connection.query("SELECT table_name as n FROM information_schema.tables WHERE table_schema = ?;", [oConf.get("Database", "database")]);
let sql = [...req].map(d => "DROP TABLE IF EXISTS `" + d.n + "`;").join("");
if (sql.length > 5) await connection.query("SET FOREIGN_KEY_CHECKS = 0;" + sql + "SET FOREIGN_KEY_CHECKS = 1;", []);
connection.close();
2023-03-10 12:44:23 +01:00
function conn(url) {
const ws = new WebSocket(url);
ws.on('close', function open() {
wsOpen = false;
});
let wsOpen = true;
var list = [];
var c = 0;
ws.on('message', function message(data) {
data = data.toString();
if (data == "error") return void console.log("Server error");
var json = JSON.parse(data);
for (let i = 0; i < list.length; i++) {
const e = list[i];
if (e[0] == json.id) {
e[2]({ state: json.state, data: json.data });
list.splice(i, 1);
return;
}
}
});
this.close = function () {
ws.close();
}
setInterval(() => {
for (let i = 0; i < list.length; i++) {
const e = list[i];
if (e[1] + 5 < uts()) {
e[2]("timeout");
list.splice(i, 1);
}
}
}, 1000);
function req(act, data) {
return new Promise((res, rej) => {
if (!wsOpen) {
console.error("WebSocket is closed");
rej("WebSocket is closed");
return;
}
var id = ++c;
list.push([id, uts(), res, rej]);
ws.send(JSON.stringify({
id,
act,
data
}));
})
}
this.req = req;
};
function shallowEqual(object1, object2) {
const keys1 = Object.keys(object1);
const keys2 = Object.keys(object2);
if (keys1.length < keys2.length) {
return false;
}
for (let key of keys1) {
2023-03-18 15:34:19 +01:00
if (typeof object1[key] == "object" && object1[key] != null) {
if(typeof object2[key] != "object") return false;
if(!shallowEqual(object1[key], object2[key])) return false;
} else if (object1[key] != null && object1[key] != object2[key]) {
2023-03-10 12:44:23 +01:00
return false;
}
}
return true;
}
2023-03-10 16:28:24 +01:00
async function wsTester(url) {
2023-03-10 12:44:23 +01:00
async function test(conn, act, data, expState, expData) {
console.log("Testing Act:", act, "with Data:", data);
let resp = await conn.req(act, data);
if (resp.state != expState) {
2023-03-18 15:34:19 +01:00
console.error(`Expected state: '${expState}', but got: '${resp.state}' (Data: ${typeof resp.data == "object" ? JSON.stringify(resp.data) : resp.data})`);
2023-03-10 12:44:23 +01:00
kill();
process.exit(1);
}
if (typeof expData == "object" && expData != null) {
if (!shallowEqual(expData, resp.data)) {
2023-03-18 12:46:17 +01:00
console.error(`Expected data: '${JSON.stringify(expData, null, 2)}', but got: '${JSON.stringify(resp.data, null, 2)}'`);
2023-03-10 12:44:23 +01:00
kill();
process.exit(1);
}
2023-03-10 16:28:24 +01:00
} else if (expData != null) {
2023-03-10 12:44:23 +01:00
if (expData != resp.data) {
console.error(`Expected data: '${expData}', but got: '${resp.data}'`);
kill();
process.exit(1);
}
}
return resp.data;
}
2023-03-10 16:28:24 +01:00
for (let i = 0; i < ws.length; i++) {
const currTest = ws[i];
console.log(`Testing '${currTest[0]}':`);
2023-03-10 12:44:23 +01:00
const handler = [new conn(url)];
2023-03-18 00:01:03 +01:00
await wait(1000);
2023-03-10 12:44:23 +01:00
let resp = true;
try {
2023-03-10 16:28:24 +01:00
resp = await currTest[1](handler[0], test, async () => {
2023-03-10 12:44:23 +01:00
let h = new conn(url);
2023-03-18 00:01:03 +01:00
await wait(1000);
2023-03-10 12:44:23 +01:00
handler.push(h);
return h;
});
} catch (error) {
console.error("Test Error: ", error);
kill();
process.exit(1);
}
2023-03-10 16:28:24 +01:00
handler.forEach(h => h.close());
2023-03-10 12:44:23 +01:00
if (resp === false) {
console.log("Test respond with error indication!");
kill();
process.exit(1);
}
}
}
2023-03-10 16:28:24 +01:00
const ls = spawn('node', ['.', '-c', inCI ? 'test.juml' : 'testLocal.juml', '-d']);
process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0;
ls.stdout.on('data', (data) => {
process.stdout.write(data);
if (data.includes("Listening...")) test();
});
ls.stderr.on('data', (data) => {
console.error(`stderr: ${data}`);
});
ls.on('close', (code) => {
console.log(`child process exited with code ${code}`);
process.exit(code);
});
function kill() {
ls.kill('SIGINT');
}
let startet = false;
async function test() {
if (startet) return;
startet = true;
2023-03-10 22:45:02 +01:00
console.log("Start testing WebSocket");
2023-03-10 16:28:24 +01:00
await wsTester("wss://localhost:7224/");
kill();
process.exit(0);
}