npm-layer7-protections
Version:
Simple layer7 protections written in typescript
97 lines (89 loc) • 2.38 kB
text/typescript
import { assert } from 'chai';
import openFile from '../src/utils/openfile';
import isProxy from '../src/utils/isproxy';
import dropIp from '../src/utils/dropip';
import onError from '../src/utils/onerror';
import { database_file } from '../src';
describe('openFileYES', () => {
it('should open file', (done: any) => {
openFile('dist/' + database_file)
.then((res: string) => {
assert.equal(res, 'it works', 'Value should be it works');
done();
})
.catch((err: any) => {
done(err);
});
});
});
describe('openFileNO', () => {
it('should not open file', (done: any) => {
const database_file2: string = 'asd';
openFile(database_file2)
.then(() => {
throw new Error('Cant open file');
})
.catch((err: any) => {
assert.isDefined(err);
done();
});
});
});
describe('isProxyYES', () => {
it('should be a proxy', (done: any) => {
const ip: string | undefined = '213.100.168.84';
isProxy(ip)
.then((res: string) => {
assert.equal(res, 'it works', 'Value should be it works');
done();
})
.catch((err: any) => {
done(err);
});
});
});
describe('isProxyNO', () => {
it('should not be a proxy', (done: any) => {
const ip: string | undefined = '1.1.1.1';
isProxy(ip)
.then(() => {
done(new Error('Is not a proxy'));
})
.catch((err: any) => {
assert.isDefined(err);
done();
});
});
});
describe('dropIpYES', () => {
it('should be dropped', (done: any) => {
const ip: string | undefined = '127.0.0.1';
dropIp(ip)
.then((result: string) => {
assert.equal(result, 'it works', 'Value should be it works');
done();
})
.catch((err: any) => {
done(err);
});
});
});
describe('dropIpNO', () => {
it('should not be dropped', (done: any) => {
const ip: string | undefined = '127.0.0.1';
dropIp(ip)
.then(() => {
throw new Error('Cant drop ip');
})
.catch((err: any) => {
assert.isDefined(err);
done();
});
});
});
describe('onError', () => {
it('should be an error', (done: any) => {
assert.isBoolean(onError('error'));
done();
});
});