| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- 'use strict';
- // testing prerequisites
- global.assert = require('assert');
- global.jsc = require('jsverify');
- global.jsdom = require('jsdom-global');
- global.cleanup = global.jsdom();
- global.fs = require('fs');
- // application libraries to test
- global.$ = global.jQuery = require('./jquery-3.4.1');
- global.sjcl = require('./sjcl-1.0.7');
- global.Base64 = require('./base64-2.4.5').Base64;
- global.RawDeflate = require('./rawdeflate-0.5').RawDeflate;
- global.RawDeflate.inflate = require('./rawinflate-0.3').RawDeflate.inflate;
- require('./prettify');
- global.prettyPrint = window.PR.prettyPrint;
- global.prettyPrintOne = window.PR.prettyPrintOne;
- global.showdown = require('./showdown-1.8.6');
- global.DOMPurify = require('./purify-2.0.7');
- require('./bootstrap-3.3.7');
- require('./privatebin');
- // internal variables
- 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'],
- alnumString = a2zString.concat(['0','1','2','3','4','5','6','7','8','9']),
- queryString = alnumString.concat(['+','%','&','.','*','-','_']),
- hashString = queryString.concat(['!']),
- base64String = alnumString.concat(['+','/','=']).concat(
- a2zString.map(function(c) {
- return c.toUpperCase();
- })
- ),
- schemas = ['ftp','gopher','http','https','ws','wss'],
- supportedLanguages = ['de', 'es', 'fr', 'it', 'no', 'pl', 'pt', 'oc', 'ru', 'sl', 'zh'],
- mimeTypes = ['image/png', 'application/octet-stream'],
- formats = ['plaintext', 'markdown', 'syntaxhighlighting'],
- logFile = fs.createWriteStream('test.log'),
- mimeFile = fs.createReadStream('/etc/mime.types'),
- mimeLine = '';
- // redirect console messages to log file
- console.info = console.warn = console.error = function () {
- logFile.write(Array.prototype.slice.call(arguments).join('') + '\n');
- };
- // 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) {
- mimeTypes.push(line);
- }
- }
- // common testing helper functions
- // provides random lowercase characters from a to z
- exports.jscA2zString = function() {
- return jsc.elements(a2zString);
- };
- // provides random lowercase alpha numeric characters (a to z and 0 to 9)
- exports.jscAlnumString = function() {
- return jsc.elements(alnumString);
- };
- // provides random characters allowed in GET queries
- exports.jscQueryString = function() {
- return jsc.elements(queryString);
- };
- // provides random characters allowed in hash queries
- exports.jscHashString = function() {
- return jsc.elements(hashString);
- };
- // provides random characters allowed in base64 encoded strings
- exports.jscBase64String = function() {
- return jsc.elements(base64String);
- };
- // provides a random URL schema supported by the whatwg-url library
- exports.jscSchemas = function() {
- return jsc.elements(schemas);
- };
- // provides a random supported language string
- exports.jscSupportedLanguages = function() {
- return jsc.elements(supportedLanguages);
- };
- // provides a random mime type
- exports.jscMimeTypes = function() {
- return jsc.elements(mimeTypes);
- };
- // provides a random PrivateBin paste formatter
- exports.jscFormats = function() {
- return jsc.elements(formats);
- };
|