You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

22 lines
562 B

import test from 'ava';
import reverseShell from 'this';
test('reverseShell is a function', t => {
t.is(typeof reverseShell, 'function');
});
test('reverseShell returns shell code with /host:port variables', t => {
const req = {
url: '/foo:bar'
};
const returnValue = reverseShell(req);
t.true(returnValue.indexOf('("foo",bar)') > -1);
});
test('reverseShell returns usage if host and port aren\'t set', t => {
const req = {
url: ''
};
const returnValue = reverseShell(req);
t.true(returnValue.indexOf('# Reverse Shell as a Service') === 0);
});