2025-04-28 12:04:08 +00:00
|
|
|
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
|
2022-03-24 23:11:53 +01:00
|
|
|
import * as smartnetwork from '../ts/index.js';
|
2017-12-12 23:35:20 +01:00
|
|
|
|
2018-07-17 09:00:27 +02:00
|
|
|
let testSmartNetwork: smartnetwork.SmartNetwork;
|
2017-12-12 23:35:20 +01:00
|
|
|
|
|
|
|
tap.test('should create a valid instance of SmartNetwork', async () => {
|
2018-07-17 09:00:27 +02:00
|
|
|
testSmartNetwork = new smartnetwork.SmartNetwork();
|
2022-02-16 23:28:12 +01:00
|
|
|
expect(testSmartNetwork).toBeInstanceOf(smartnetwork.SmartNetwork);
|
2018-07-17 09:00:27 +02:00
|
|
|
});
|
2017-12-12 23:35:20 +01:00
|
|
|
|
|
|
|
tap.test('should perform a speedtest', async () => {
|
2021-04-13 10:09:39 +00:00
|
|
|
const result = await testSmartNetwork.getSpeed();
|
2021-04-28 14:27:22 +00:00
|
|
|
console.log(`Download speed for this instance is ${result.downloadSpeed}`);
|
|
|
|
console.log(`Upload speed for this instance is ${result.uploadSpeed}`);
|
2018-07-17 09:00:27 +02:00
|
|
|
});
|
2017-12-12 23:35:20 +01:00
|
|
|
|
2018-07-17 09:00:27 +02:00
|
|
|
tap.test('should determine wether a port is free', async () => {
|
2022-02-16 23:28:12 +01:00
|
|
|
await expectAsync(testSmartNetwork.isLocalPortUnused(8080)).toBeTrue();
|
2018-07-17 09:00:27 +02:00
|
|
|
});
|
|
|
|
|
2019-04-16 10:21:11 +02:00
|
|
|
tap.test('should scan a port', async () => {
|
2022-02-16 23:28:12 +01:00
|
|
|
await expectAsync(testSmartNetwork.isRemotePortAvailable('lossless.com:443')).toBeTrue();
|
|
|
|
await expectAsync(testSmartNetwork.isRemotePortAvailable('lossless.com', 443)).toBeTrue();
|
|
|
|
await expectAsync(testSmartNetwork.isRemotePortAvailable('lossless.com:444')).toBeFalse();
|
2019-04-16 10:21:11 +02:00
|
|
|
});
|
|
|
|
|
2019-09-08 16:15:10 +02:00
|
|
|
tap.test('should get gateways', async () => {
|
2019-09-08 14:59:47 +02:00
|
|
|
const gatewayResult = await testSmartNetwork.getGateways();
|
2019-09-06 18:26:32 +02:00
|
|
|
console.log(gatewayResult);
|
2019-09-06 18:28:39 +02:00
|
|
|
});
|
2019-09-06 18:26:32 +02:00
|
|
|
|
2019-09-08 16:15:10 +02:00
|
|
|
tap.test('should get the default gateway', async () => {
|
|
|
|
const gatewayResult = await testSmartNetwork.getDefaultGateway();
|
|
|
|
console.log(gatewayResult);
|
|
|
|
});
|
|
|
|
|
2019-11-23 16:07:04 +00:00
|
|
|
tap.test('should get public ips', async () => {
|
|
|
|
const ips = await testSmartNetwork.getPublicIps();
|
|
|
|
console.log(ips);
|
|
|
|
});
|
|
|
|
|
2018-07-17 09:00:27 +02:00
|
|
|
tap.start();
|