smartnetwork/test/test.ts

43 lines
1.5 KiB
TypeScript
Raw Normal View History

2022-02-16 22:28:12 +00:00
import { expect, expectAsync, tap } from '@pushrocks/tapbundle';
2022-03-24 22:11:53 +00:00
import * as smartnetwork from '../ts/index.js';
2017-12-12 22:35:20 +00:00
2018-07-17 07:00:27 +00:00
let testSmartNetwork: smartnetwork.SmartNetwork;
2017-12-12 22:35:20 +00:00
tap.test('should create a valid instance of SmartNetwork', async () => {
2018-07-17 07:00:27 +00:00
testSmartNetwork = new smartnetwork.SmartNetwork();
2022-02-16 22:28:12 +00:00
expect(testSmartNetwork).toBeInstanceOf(smartnetwork.SmartNetwork);
2018-07-17 07:00:27 +00:00
});
2017-12-12 22:35:20 +00: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 07:00:27 +00:00
});
2017-12-12 22:35:20 +00:00
2018-07-17 07:00:27 +00:00
tap.test('should determine wether a port is free', async () => {
2022-02-16 22:28:12 +00:00
await expectAsync(testSmartNetwork.isLocalPortUnused(8080)).toBeTrue();
2018-07-17 07:00:27 +00:00
});
2019-04-16 08:21:11 +00:00
tap.test('should scan a port', async () => {
2022-02-16 22:28:12 +00: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 08:21:11 +00:00
});
2019-09-08 14:15:10 +00:00
tap.test('should get gateways', async () => {
2019-09-08 12:59:47 +00:00
const gatewayResult = await testSmartNetwork.getGateways();
2019-09-06 16:26:32 +00:00
console.log(gatewayResult);
2019-09-06 16:28:39 +00:00
});
2019-09-06 16:26:32 +00:00
2019-09-08 14:15:10 +00: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 07:00:27 +00:00
tap.start();