Files
cloudron-box/src/test/network-test.js
T
Girish Ramakrishnan 47d57a3971 fold sysinfo into network
the backends are network backends
2023-08-03 13:38:42 +05:30

145 lines
5.6 KiB
JavaScript

/* global it:false */
/* global describe:false */
/* global before:false */
/* global after:false */
'use strict';
const BoxError = require('../boxerror.js'),
common = require('./common.js'),
expect = require('expect.js'),
fs = require('fs'),
network = require('../network.js'),
paths = require('../paths.js'),
safe = require('safetydance');
describe('Network', function () {
const { setup, cleanup, auditSource } = common;
before(setup);
after(cleanup);
describe('Blocklist', function () {
before(function () {
fs.writeFileSync(paths.FIREWALL_BLOCKLIST_FILE, '', 'utf8');
});
it('can get empty blocklist', async function () {
const result = await network.getBlocklist();
expect(result).to.equal('');
});
it('can set empty blocklist', async function () {
await network.setBlocklist('', auditSource);
const result = await network.getBlocklist();
expect(result).to.equal('');
});
it('can set single IPv4 in blocklist', async function () {
await network.setBlocklist('192.168.178.1', auditSource);
const result = await network.getBlocklist();
expect(result).to.equal('192.168.178.1');
});
it('can set single IPv6 in blocklist', async function () {
await network.setBlocklist('2a02:8106:2f:bb00:7afc:5703:ee71:3ef8', auditSource);
const result = await network.getBlocklist();
expect(result).to.equal('2a02:8106:2f:bb00:7afc:5703:ee71:3ef8');
});
it('can set mixed IPs with comment in blocklist', async function () {
await network.setBlocklist('2a02:8106:2f:bb00:7afc:5703:ee71:3ef8\n# some comment\n192.168.178.1', auditSource);
const result = await network.getBlocklist();
expect(result).to.equal('2a02:8106:2f:bb00:7afc:5703:ee71:3ef8\n# some comment\n192.168.178.1');
});
it('can set single IPv4 range in blocklist', async function () {
await network.setBlocklist('192.168.178.1/24', auditSource);
const result = await network.getBlocklist();
expect(result).to.equal('192.168.178.1/24');
});
it('can set single IPv6 range in blocklist', async function () {
await network.setBlocklist('2001:db8::', auditSource);
const result = await network.getBlocklist();
expect(result).to.equal('2001:db8::');
});
it('cannot set IPv4 in blocklist if source is same', async function () {
const [error] = await safe(network.setBlocklist('127.0.0.1', { ip: '127.0.0.1' }));
expect(error.reason).to.equal(BoxError.BAD_FIELD);
});
it('cannot set IPv6 in blocklist if source is same', async function () {
const [error] = await safe(network.setBlocklist('2001:db8:1234::1', { ip: '2001:db8:1234::1' }));
expect(error.reason).to.equal(BoxError.BAD_FIELD);
});
it('cannot set IPv4 range in blocklist if source is same', async function () {
const [error] = await safe(network.setBlocklist('127.0.0.1/32', { ip: '127.0.0.1' }));
expect(error.reason).to.equal(BoxError.BAD_FIELD);
});
it('cannot set IPv6 range in blocklist if source is same', async function () {
const [error] = await safe(network.setBlocklist('2001:db8:1234:::', { ip: '2001:db8:1234::1' }));
expect(error.reason).to.equal(BoxError.BAD_FIELD);
});
it('can set IPv4 in blocklist if source is IPv6', async function () {
await network.setBlocklist('192.168.178.1', { ip: '2001:db8:1234::1' });
const result = await network.getBlocklist();
expect(result).to.equal('192.168.178.1');
});
it('can set IPv6 in blocklist if source is IPv4', async function () {
await network.setBlocklist('2001:db8:1234::1', auditSource);
const result = await network.getBlocklist();
expect(result).to.equal('2001:db8:1234::1');
});
it('can set IPv4 range in blocklist if source is IPv6', async function () {
await network.setBlocklist('192.168.178.1/32', { ip: '2001:db8:1234::1' });
const result = await network.getBlocklist();
expect(result).to.equal('192.168.178.1/32');
});
it('can set IPv6 range in blocklist if source is IPv4', async function () {
await network.setBlocklist('2001:db8:1234::', auditSource);
const result = await network.getBlocklist();
expect(result).to.equal('2001:db8:1234::');
});
});
describe('IPv6 config', function () {
it('can get default IPv6 setting', async function () {
const config = await network.getIPv6Config();
expect(config.provider).to.be('noop');
});
it('can set IPv6 setting', async function () {
await network.setIPv6Config({ provider: 'generic' });
const config = await network.getIPv6Config();
expect(config.provider).to.be('generic');
});
it('test machine has IPv6 support', function () {
expect(network.hasIPv6()).to.equal(true);
});
});
describe('Dynamic DNS', function () {
it('can get default dyndns', async function () {
expect(await network.getDynamicDns()).to.be(false);
});
it('can set dyndns', async function () {
await network.setDynamicDns(true);
});
it('can get dyndns', async function () {
expect(await network.getDynamicDns()).to.be(true);
});
});
});