2022-01-19 18:05:44 +00:00
|
|
|
// tslint:disable-next-line:no-implicit-dependencies
|
|
|
|
import { expect, tap } from '@pushrocks/tapbundle';
|
2022-01-19 07:05:06 +00:00
|
|
|
|
2022-03-14 21:40:55 +00:00
|
|
|
import * as smartsocket from '../ts/index.js';
|
2022-01-19 18:05:44 +00:00
|
|
|
|
|
|
|
let testSmartsocket: smartsocket.Smartsocket;
|
|
|
|
let testSmartsocketClient: smartsocket.SmartsocketClient;
|
|
|
|
let testSocketFunctionForServer: smartsocket.SocketFunction<any>;
|
|
|
|
let testSocketFunctionClient: smartsocket.SocketFunction<any>;
|
|
|
|
|
|
|
|
export interface IReqResClient {
|
|
|
|
method: 'testFunction1';
|
|
|
|
request: {
|
|
|
|
value1: string;
|
|
|
|
};
|
|
|
|
response: {
|
|
|
|
value1: string;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IReqResServer {
|
|
|
|
method: 'testFunction2';
|
|
|
|
request: {
|
|
|
|
hi: string;
|
|
|
|
};
|
|
|
|
response: {
|
|
|
|
hi: string;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const testConfig = {
|
|
|
|
port: 3000,
|
|
|
|
};
|
|
|
|
|
|
|
|
// class smartsocket
|
|
|
|
tap.test('should create a new smartsocket', async () => {
|
|
|
|
testSmartsocket = new smartsocket.Smartsocket({ alias: 'testserver1', port: testConfig.port });
|
|
|
|
await testSmartsocket.start();
|
|
|
|
});
|
|
|
|
|
|
|
|
// class SocketFunction
|
|
|
|
tap.test('should register a new Function', async () => {
|
|
|
|
testSocketFunctionForServer = new smartsocket.SocketFunction({
|
|
|
|
funcDef: async (dataArg, socketConnectionArg) => {
|
|
|
|
return dataArg;
|
|
|
|
},
|
|
|
|
funcName: 'testFunction1',
|
|
|
|
});
|
|
|
|
testSmartsocket.addSocketFunction(testSocketFunctionForServer);
|
|
|
|
|
|
|
|
testSocketFunctionClient = new smartsocket.SocketFunction({
|
|
|
|
funcDef: async (dataArg, socketConnectionArg) => {
|
|
|
|
return dataArg;
|
|
|
|
},
|
|
|
|
funcName: 'testFunction2',
|
|
|
|
});
|
|
|
|
testSmartsocket.addSocketFunction(testSocketFunctionForServer);
|
|
|
|
});
|
|
|
|
|
|
|
|
// class SmartsocketClient
|
|
|
|
tap.test('should react to a new websocket connection from client', async () => {
|
|
|
|
testSmartsocketClient = new smartsocket.SmartsocketClient({
|
|
|
|
port: testConfig.port,
|
|
|
|
url: 'http://localhost',
|
|
|
|
alias: 'testClient1',
|
|
|
|
autoReconnect: true,
|
|
|
|
});
|
|
|
|
testSmartsocketClient.addSocketFunction(testSocketFunctionClient);
|
|
|
|
await testSmartsocketClient.connect();
|
|
|
|
});
|
|
|
|
|
|
|
|
tap.test('should be able to tag a connection from client', async (tools) => {
|
|
|
|
await testSmartsocketClient.addTag({
|
|
|
|
id: 'awesome',
|
|
|
|
payload: 'yes',
|
|
|
|
});
|
|
|
|
const tagOnServerSide = await testSmartsocket.socketConnections
|
|
|
|
.findSync((socketConnection) => {
|
|
|
|
return true;
|
|
|
|
})
|
|
|
|
.getTagById('awesome');
|
2022-03-14 21:40:55 +00:00
|
|
|
expect(tagOnServerSide.payload).toEqual('yes');
|
2022-01-19 18:05:44 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
tap.test('should be able to tag a connection from server', async (tools) => {
|
|
|
|
await testSmartsocket.socketConnections
|
|
|
|
.findSync((socketConnection) => {
|
|
|
|
return true;
|
|
|
|
})
|
|
|
|
.addTag({
|
|
|
|
id: 'awesome2',
|
|
|
|
payload: 'absolutely',
|
|
|
|
});
|
|
|
|
const tagOnClientSide = await testSmartsocketClient.socketConnection.getTagById('awesome2');
|
2022-03-14 21:40:55 +00:00
|
|
|
expect(tagOnClientSide.payload).toEqual('absolutely');
|
2022-01-19 18:05:44 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
tap.test('should be able to make a functionCall from client to server', async () => {
|
|
|
|
const response = await testSmartsocketClient.serverCall<IReqResClient>('testFunction1', {
|
|
|
|
value1: 'hello',
|
|
|
|
});
|
|
|
|
console.log(response);
|
2022-03-14 21:40:55 +00:00
|
|
|
expect(response.value1).toEqual('hello');
|
2022-01-19 18:05:44 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
tap.test('should be able to make a functionCall from server to client', async () => {
|
|
|
|
const response = await testSmartsocket.clientCall<IReqResServer>(
|
|
|
|
'testFunction2',
|
|
|
|
{
|
|
|
|
hi: 'hi there from server',
|
|
|
|
},
|
|
|
|
testSmartsocket.socketConnections.findSync((socketConnection) => {
|
|
|
|
return true;
|
|
|
|
})
|
|
|
|
);
|
|
|
|
console.log(response);
|
2022-03-14 21:40:55 +00:00
|
|
|
expect(response.hi).toEqual('hi there from server');
|
2022-01-19 18:05:44 +00:00
|
|
|
});
|
|
|
|
|
2022-01-20 15:50:25 +00:00
|
|
|
tap.test('client should disconnect and reconnect', async (toolsArg) => {
|
2022-01-19 18:05:44 +00:00
|
|
|
await testSmartsocketClient.disconnect();
|
|
|
|
await testSmartsocketClient.connect();
|
2022-01-20 15:50:25 +00:00
|
|
|
await toolsArg.delayFor(2000);
|
2022-03-14 21:40:55 +00:00
|
|
|
expect(testSmartsocket.socketConnections.getArray().length).toEqual(1);
|
2022-01-19 18:05:44 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// class smartsocket
|
|
|
|
tap.test('should be able to switch to a new server', async (toolsArg) => {
|
|
|
|
await testSmartsocket.stop();
|
|
|
|
testSmartsocket = new smartsocket.Smartsocket({ alias: 'testserver2', port: testConfig.port });
|
|
|
|
await testSmartsocket.start();
|
|
|
|
await toolsArg.delayFor(30000);
|
|
|
|
});
|
|
|
|
|
|
|
|
tap.test('should be able to locate a connection tag after reconnect', async (tools) => {
|
2022-03-14 21:40:55 +00:00
|
|
|
expect(testSmartsocket.socketConnections.getArray().length).toEqual(1);
|
2022-01-19 18:05:44 +00:00
|
|
|
const tagOnServerSide = await testSmartsocket.socketConnections
|
|
|
|
.findSync((socketConnection) => {
|
|
|
|
return true;
|
|
|
|
})
|
|
|
|
.getTagById('awesome');
|
2022-03-14 21:40:55 +00:00
|
|
|
expect(tagOnServerSide.payload).toEqual('yes');
|
2022-01-19 18:05:44 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// terminate
|
2022-03-24 11:52:28 +00:00
|
|
|
tap.test('should close the server', async (tools) => {
|
2022-01-19 18:05:44 +00:00
|
|
|
await testSmartsocketClient.stop();
|
|
|
|
await testSmartsocket.stop();
|
2022-03-24 11:52:28 +00:00
|
|
|
tools.delayFor(1000).then(() => process.exit(0));
|
2022-01-19 18:05:44 +00:00
|
|
|
});
|
2022-01-19 07:05:06 +00:00
|
|
|
|
|
|
|
tap.start();
|