adding test for bot UAs

pull/407/head
El RIDO 2019-06-22 09:12:31 +02:00
parent d0365faf76
commit 59153633b8
No known key found for this signature in database
GPG Key ID: 0F5C940A6BD81F92
1 changed files with 31 additions and 0 deletions

31
js/test/InitialCheck.js Normal file
View File

@ -0,0 +1,31 @@
'use strict';
var common = require('../common');
describe('InitialCheck', function () {
describe('init', function () {
this.timeout(30000);
before(function () {
cleanup();
});
jsc.property(
'returns false and shows error, if a bot UA is detected',
'string',
jsc.elements(['Bot', 'bot']),
'string',
function (
prefix, botBit, suffix
) {
const clean = jsdom(
'<html><body><div id="errormessage" class="hidden"></div></body></html>',
{'userAgent': prefix + botBit + suffix}
);
var result1 = $.PrivateBin.InitialCheck.init(),
result2 = !$('#errormessage').hasClass('hidden');
clean();
return result1 && result2;
}
);
});
});