mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-21 22:47:49 +00:00
31957566e5
This has not been necessary for a long time, and wwe can now remove it. Change-type: patch Signed-off-by: Cameron Diver <cameron@balena.io>
64 lines
2.3 KiB
TypeScript
64 lines
2.3 KiB
TypeScript
import * as Bluebird from 'bluebird';
|
|
import { stub } from 'sinon';
|
|
import { expect } from './lib/chai-config';
|
|
|
|
import * as iptables from '../src/lib/iptables';
|
|
|
|
describe('iptables', async () => {
|
|
it('calls iptables to delete and recreate rules to block a port', async () => {
|
|
stub(iptables, 'execAsync').returns(Bluebird.resolve(''));
|
|
|
|
await iptables.rejectOnAllInterfacesExcept(['foo', 'bar'], 42);
|
|
expect((iptables.execAsync as sinon.SinonStub).callCount).to.equal(16);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'iptables -D INPUT -p tcp --dport 42 -i foo -j ACCEPT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'iptables -I INPUT -p tcp --dport 42 -i foo -j ACCEPT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'iptables -D INPUT -p tcp --dport 42 -i bar -j ACCEPT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'iptables -I INPUT -p tcp --dport 42 -i bar -j ACCEPT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'iptables -D OUTPUT -p tcp --sport 42 -m state --state ESTABLISHED -j ACCEPT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'iptables -A OUTPUT -p tcp --sport 42 -m state --state ESTABLISHED -j ACCEPT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'iptables -D INPUT -p tcp --dport 42 -j REJECT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'iptables -A INPUT -p tcp --dport 42 -j REJECT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'ip6tables -D INPUT -p tcp --dport 42 -i foo -j ACCEPT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'ip6tables -I INPUT -p tcp --dport 42 -i foo -j ACCEPT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'ip6tables -D INPUT -p tcp --dport 42 -i bar -j ACCEPT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'ip6tables -I INPUT -p tcp --dport 42 -i bar -j ACCEPT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'ip6tables -D OUTPUT -p tcp --sport 42 -m state --state ESTABLISHED -j ACCEPT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'ip6tables -A OUTPUT -p tcp --sport 42 -m state --state ESTABLISHED -j ACCEPT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'ip6tables -D INPUT -p tcp --dport 42 -j REJECT',
|
|
);
|
|
expect(iptables.execAsync).to.be.calledWith(
|
|
'ip6tables -A INPUT -p tcp --dport 42 -j REJECT',
|
|
);
|
|
(iptables.execAsync as sinon.SinonStub).restore();
|
|
});
|
|
});
|