2017-12-13 07:40:48 +01:00
|
|
|
'use strict';
|
|
|
|
|
2017-12-14 07:19:05 +01:00
|
|
|
// testing prerequisites
|
2018-03-01 06:43:30 +01:00
|
|
|
global.assert = require('assert');
|
2017-12-13 07:40:48 +01:00
|
|
|
global.jsc = require('jsverify');
|
|
|
|
global.jsdom = require('jsdom-global');
|
|
|
|
global.cleanup = global.jsdom();
|
2019-06-20 22:30:49 +02:00
|
|
|
global.URL = require('jsdom-url').URL;
|
2017-12-13 07:40:48 +01:00
|
|
|
global.fs = require('fs');
|
2020-06-01 08:07:25 +02:00
|
|
|
global.WebCrypto = require('@peculiar/webcrypto').Crypto;
|
2017-12-13 07:40:48 +01:00
|
|
|
|
2017-12-14 07:19:05 +01:00
|
|
|
// application libraries to test
|
2022-02-11 12:22:16 +01:00
|
|
|
global.$ = global.jQuery = require('./jquery-3.6.0');
|
2018-12-27 21:32:13 +01:00
|
|
|
global.RawDeflate = require('./rawinflate-0.3').RawDeflate;
|
2022-03-30 06:05:37 +02:00
|
|
|
global.zlib = require('./zlib-1.2.12').zlib;
|
2017-12-13 07:40:48 +01:00
|
|
|
require('./prettify');
|
|
|
|
global.prettyPrint = window.PR.prettyPrint;
|
|
|
|
global.prettyPrintOne = window.PR.prettyPrintOne;
|
2022-03-13 20:05:38 +01:00
|
|
|
global.showdown = require('./showdown-2.0.3');
|
2022-02-18 07:36:09 +01:00
|
|
|
global.DOMPurify = require('./purify-2.3.6');
|
|
|
|
global.baseX = require('./base-x-4.0.0').baseX;
|
2019-09-18 07:31:32 +02:00
|
|
|
global.Legacy = require('./legacy').Legacy;
|
2022-02-20 16:13:34 +01:00
|
|
|
require('./bootstrap-3.4.1');
|
2017-12-13 07:40:48 +01:00
|
|
|
require('./privatebin');
|
|
|
|
|
2017-12-14 07:19:05 +01:00
|
|
|
// internal variables
|
2019-01-20 11:05:34 +01:00
|
|
|
var a2zString = ['a','b','c','d','e','f','g','h','i','j','k','l','m',
|
|
|
|
'n','o','p','q','r','s','t','u','v','w','x','y','z'],
|
|
|
|
digitString = ['0','1','2','3','4','5','6','7','8','9'],
|
|
|
|
alnumString = a2zString.concat(digitString),
|
|
|
|
hexString = digitString.concat(['a','b','c','d','e','f']),
|
|
|
|
queryString = alnumString.concat(['+','%','&','.','*','-','_']),
|
|
|
|
hashString = queryString.concat(['!']),
|
2017-12-14 07:19:05 +01:00
|
|
|
base64String = alnumString.concat(['+','/','=']).concat(
|
|
|
|
a2zString.map(function(c) {
|
|
|
|
return c.toUpperCase();
|
|
|
|
})
|
|
|
|
),
|
2020-01-18 10:44:35 +01:00
|
|
|
schemas = ['ftp','http','https'],
|
2017-12-14 07:19:05 +01:00
|
|
|
supportedLanguages = ['de', 'es', 'fr', 'it', 'no', 'pl', 'pt', 'oc', 'ru', 'sl', 'zh'],
|
|
|
|
mimeTypes = ['image/png', 'application/octet-stream'],
|
2017-12-18 14:25:08 +01:00
|
|
|
formats = ['plaintext', 'markdown', 'syntaxhighlighting'],
|
2017-12-14 07:19:05 +01:00
|
|
|
mimeFile = fs.createReadStream('/etc/mime.types'),
|
|
|
|
mimeLine = '';
|
|
|
|
|
2017-12-13 07:40:48 +01:00
|
|
|
// populate mime types from environment
|
|
|
|
mimeFile.on('data', function(data) {
|
|
|
|
mimeLine += data;
|
|
|
|
var index = mimeLine.indexOf('\n');
|
|
|
|
while (index > -1) {
|
|
|
|
var line = mimeLine.substring(0, index);
|
|
|
|
mimeLine = mimeLine.substring(index + 1);
|
|
|
|
parseMime(line);
|
|
|
|
index = mimeLine.indexOf('\n');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
mimeFile.on('end', function() {
|
|
|
|
if (mimeLine.length > 0) {
|
|
|
|
parseMime(mimeLine);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
function parseMime(line) {
|
|
|
|
// ignore comments
|
|
|
|
var index = line.indexOf('#');
|
|
|
|
if (index > -1) {
|
|
|
|
line = line.substring(0, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ignore bits after tabs
|
|
|
|
index = line.indexOf('\t');
|
|
|
|
if (index > -1) {
|
|
|
|
line = line.substring(0, index);
|
|
|
|
}
|
|
|
|
if (line.length > 0) {
|
2017-12-14 07:19:05 +01:00
|
|
|
mimeTypes.push(line);
|
2017-12-13 07:40:48 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 07:19:05 +01:00
|
|
|
// common testing helper functions
|
2018-12-29 18:40:59 +01:00
|
|
|
exports.atob = atob;
|
|
|
|
exports.btoa = btoa;
|
2017-12-14 07:19:05 +01:00
|
|
|
|
|
|
|
// provides random lowercase characters from a to z
|
|
|
|
exports.jscA2zString = function() {
|
|
|
|
return jsc.elements(a2zString);
|
2018-01-06 13:32:07 +01:00
|
|
|
};
|
2017-12-14 07:19:05 +01:00
|
|
|
|
|
|
|
// provides random lowercase alpha numeric characters (a to z and 0 to 9)
|
|
|
|
exports.jscAlnumString = function() {
|
|
|
|
return jsc.elements(alnumString);
|
2018-01-06 13:32:07 +01:00
|
|
|
};
|
2017-12-14 07:19:05 +01:00
|
|
|
|
2019-01-20 11:05:34 +01:00
|
|
|
//provides random characters allowed in hexadecimal notation
|
|
|
|
exports.jscHexString = function() {
|
|
|
|
return jsc.elements(hexString);
|
|
|
|
};
|
|
|
|
|
2017-12-14 07:19:05 +01:00
|
|
|
// provides random characters allowed in GET queries
|
|
|
|
exports.jscQueryString = function() {
|
|
|
|
return jsc.elements(queryString);
|
2018-01-06 13:32:07 +01:00
|
|
|
};
|
2017-12-14 07:19:05 +01:00
|
|
|
|
2018-08-11 07:33:33 +02:00
|
|
|
// provides random characters allowed in hash queries
|
|
|
|
exports.jscHashString = function() {
|
|
|
|
return jsc.elements(hashString);
|
|
|
|
};
|
|
|
|
|
2017-12-14 07:31:09 +01:00
|
|
|
// provides random characters allowed in base64 encoded strings
|
|
|
|
exports.jscBase64String = function() {
|
|
|
|
return jsc.elements(base64String);
|
2018-01-06 13:32:07 +01:00
|
|
|
};
|
2017-12-14 07:31:09 +01:00
|
|
|
|
2017-12-14 07:19:05 +01:00
|
|
|
// provides a random URL schema supported by the whatwg-url library
|
|
|
|
exports.jscSchemas = function() {
|
|
|
|
return jsc.elements(schemas);
|
2018-01-06 13:32:07 +01:00
|
|
|
};
|
2017-12-14 07:19:05 +01:00
|
|
|
|
|
|
|
// provides a random supported language string
|
|
|
|
exports.jscSupportedLanguages = function() {
|
|
|
|
return jsc.elements(supportedLanguages);
|
2018-01-06 13:32:07 +01:00
|
|
|
};
|
2017-12-14 07:19:05 +01:00
|
|
|
|
2017-12-18 14:25:08 +01:00
|
|
|
// provides a random mime type
|
|
|
|
exports.jscMimeTypes = function() {
|
|
|
|
return jsc.elements(mimeTypes);
|
2018-01-06 13:32:07 +01:00
|
|
|
};
|
2017-12-18 14:25:08 +01:00
|
|
|
|
|
|
|
// provides a random PrivateBin paste formatter
|
|
|
|
exports.jscFormats = function() {
|
|
|
|
return jsc.elements(formats);
|
2018-01-06 13:32:07 +01:00
|
|
|
};
|