'use strict'; var common = require('../common'); /* global WebCrypto */ describe('Check', function () { describe('init', function () { this.timeout(30000); before(function () { cleanup(); }); it('returns false and shows error, if a bot UA is detected', function () { jsc.assert(jsc.forall( 'string', jsc.elements(['Bot', 'bot']), 'string', function (prefix, botBit, suffix) { const clean = jsdom('', { 'userAgent': prefix + botBit + suffix }); $('body').html( '' + '' ); $.PrivateBin.Alert.init(); $.Legacy.Check.init(); const result1 = $.Legacy.Check.getInit() && !$.Legacy.Check.getStatus(), result2 = !$('#errormessage').hasClass('hidden'); clean(); return result1 && result2; } ), {tests: 10}); }); jsc.property( 'shows error, if no webcrypto is detected', 'bool', jsc.elements(['localhost', '127.0.0.1', '[::1]', '']), jsc.nearray(common.jscA2zString()), jsc.elements(['.onion', '.i2p', '']), function (secureProtocol, localhost, domain, tld) { const isDomain = localhost === '', isSecureContext = secureProtocol || !isDomain || tld.length > 0, clean = jsdom('', { 'url': (secureProtocol ? 'https' : 'http' ) + '://' + (isDomain ? domain.join('') + tld : localhost) + '/' }); $('body').html( ''+ '' ); $.PrivateBin.Alert.init(); $.Legacy.Check.init(); const result1 = $.Legacy.Check.getInit() && !$.Legacy.Check.getStatus(), result2 = isSecureContext === $('#errormessage').hasClass('hidden'), result3 = !$('#oldnotice').hasClass('hidden'); clean(); return result1 && result2 && result3; } ); jsc.property( 'shows error, if HTTP only site is detected', 'bool', jsc.nearray(common.jscA2zString()), function (secureProtocol, domain) { const clean = jsdom('', { 'url': (secureProtocol ? 'https' : 'http' ) + '://' + domain.join('') + '/' }); $('body').html( ''+ '' ); window.crypto = new WebCrypto(); $.PrivateBin.Alert.init(); $.Legacy.Check.init(); const result1 = $.Legacy.Check.getInit() && $.Legacy.Check.getStatus(), result2 = secureProtocol === $('#httpnotice').hasClass('hidden'); clean(); return result1 && result2; } ); }); });