diff options
author | Quentin <quentin@deuxfleurs.fr> | 2020-02-09 20:09:20 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2020-02-09 20:09:20 +0100 |
commit | 96c6da392fc3236754c273a299728ad0360b3d51 (patch) | |
tree | db6732c726c731396b482debe329cd5894613d02 /docker/netiquette/test | |
parent | ba5590ce97953f66702b149fd7840bcb58d4b463 (diff) | |
download | infrastructure-96c6da392fc3236754c273a299728ad0360b3d51.tar.gz infrastructure-96c6da392fc3236754c273a299728ad0360b3d51.zip |
[diplomate] Skeleton for our UPNP configurator
Diffstat (limited to 'docker/netiquette/test')
-rw-r--r-- | docker/netiquette/test/io.mjs | 10 | ||||
-rw-r--r-- | docker/netiquette/test/iptables.mjs | 28 | ||||
-rw-r--r-- | docker/netiquette/test/runner.mjs | 28 |
3 files changed, 0 insertions, 66 deletions
diff --git a/docker/netiquette/test/io.mjs b/docker/netiquette/test/io.mjs deleted file mode 100644 index d88ad15..0000000 --- a/docker/netiquette/test/io.mjs +++ /dev/null @@ -1,10 +0,0 @@ -import chai from 'chai' -import { readFile } from '../src/io/files.mjs' -const expect = chai.expect - -export default [ - (async () => { - const dirname = import.meta.url.replace(/^file:\/\//g, '').replace(/io.mjs$/g, '') - expect(await readFile(`${dirname}/../package.json`, 'utf-8')).to.include('Quentin') - }) -] diff --git a/docker/netiquette/test/iptables.mjs b/docker/netiquette/test/iptables.mjs deleted file mode 100644 index 1ae1cb0..0000000 --- a/docker/netiquette/test/iptables.mjs +++ /dev/null @@ -1,28 +0,0 @@ -'use strict' - -import chai from 'chai' -import iptables from '../src/injector/iptables.mjs' -const expect = chai.expect - -export default [ - (async () => { - const effective_actions = [] - const expected_actions = [ - 'iptables -A INPUT -p tcp --dport 56 -j ACCEPT', - 'iptables -A INPUT -p tcp --dport 53 -j ACCEPT', - 'iptables -A INPUT -p udp --match multiport --dports 25630:25999 -j ACCEPT', - 'iptables -D INPUT -p tcp --dport 54 -j ACCEPT' - ] - - const mockLog = () => {} - const mockReadFile = (file, opt) => '-A INPUT -p tcp --dport 53 -j ACCEPT' - const mockExecCommand = (cmd, opts) => { - if (cmd.match(/^iptables -S/g)) return { stdout: '-A INPUT -p tcp --dport 54 -j ACCEPT' } - else effective_actions.push(cmd) - return { stdout: '' } } - - const fw = await iptables('static', mockReadFile, mockExecCommand, mockLog) - await fw(['public_port=56/tcp', 'public_port=25630-25999/udp', 'public_port=13', 'traefik.entrypoints=Host:im.deuxfleurs.fr;PathPrefix:/_matrix']) - expect(effective_actions).to.have.members(expected_actions) - }) -] diff --git a/docker/netiquette/test/runner.mjs b/docker/netiquette/test/runner.mjs deleted file mode 100644 index b4da1de..0000000 --- a/docker/netiquette/test/runner.mjs +++ /dev/null @@ -1,28 +0,0 @@ -'use strict' - -import io from './io.mjs' -import iptables from './iptables.mjs' - -(async () => { - const res = await [ - ...io, - ...iptables - ].map(async f => { - try { - await f() - return 'passed' - } - catch(e) { - console.error(e) - return 'failed' - } - }).reduce(async (acc, r) => { - const accumulator = await acc - const result = await r - accumulator.total++ - accumulator[result]++ - return accumulator - }, {total: 0, passed: 0, failed: 0}) - - console.log(`Done. passed: ${res.passed}, failed: ${res.failed}, total: ${res.total}`) -})() |