Spaces:
Runtime error
Runtime error
File size: 1,858 Bytes
0e27770 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | var srs = require('./lib/secure-random-string.js');
//my awesome test framework
var test = function(name, what, ref, c) {
process.stdout.write(name);
if (typeof(c) !== 'boolean') {
c = true;
}
if (typeof(what) === 'function') {
what = what();
}
if (typeof(ref) === 'function') {
ref = ref();
}
if ((what === ref) === c) {
process.stdout.write(' β');
} else {
process.stdout.write(' β\n');
process.stdout.write(' ----> expected | ' + (typeof(ref) === 'string' ? ref.replace(/ /g, 'Β·') + '\n' : ref + '\n'));
process.stdout.write(' ----> got | ' + (typeof(what) === 'string' ? what.replace(/ /g, 'Β·') + '\n' : what + '\n'));
}
process.stdout.write('\n');
};
// async tests
srs(function(err, sr) {
test('generate a random string 32 chars long',
sr.length,
32
);
});
srs({length: 1}, function(err, sr) {
test('generate a random string 1 char long',
sr.length,
1
);
});
srs({length: 256}, function(err, sr) {
test('generate a random string 256 chars long',
sr.length,
256
);
});
srs({alphanumeric: true}, function(err, sr) {;
test('Must contain alphanumeric only',
sr.match(/^[a-zA-Z0-9_]*$/g)[0] === sr,
true
);
});
srs({alphanumeric: true, length: 40}, function(err, sr) {;
test('Must contain alphanumeric only and be 40 chars long',
sr.match(/^[a-zA-Z0-9_]*$/g)[0] === sr && sr.length === 40,
true
);
});
// sync tests
test('generate a random string 32 chars long (sync)', srs().length, 32);
test('generate a random string 1 chars long (sync)', srs({length: 1}).length, 1);
test('generate a random string 256 chars long (sync)', srs({length: 256}).length, 256);
//in 2000 chars there should be at least one substitution
test('check that the random string is urlsafe', (function() {
var s = srs({length: 2000});
return s.indexOf('+') + s.indexOf('/') === -2;
})(), true);
|