fork-openpgpjs/test/unittests.js
Ilya Chesnokov 08b7725b8c Create lightweight build that can lazily load indutny/elliptic if needed (#956)
This PR adds four config options to configure whether and how to load
indutny/elliptic: use_indutny_elliptic, external_indutny_elliptic,
indutny_elliptic_path and indutny_elliptic_fetch_options.

Also:

- Use tweetnacl.js instead of indutny/elliptic for curve25519 key generation

- Don't initialize indutny's curve25519, improving performance when using that curve

- Verify NIST signatures using Web Crypto instead of indutny/elliptic when not streaming

- Move KeyPair.sign/verify to ecdsa.js

- Move KeyPair.derive to ecdh.js

- Move keyFromPrivate and keyFromPublic to a new indutnyKey.js file
2019-10-25 16:07:57 +02:00

65 lines
1.8 KiB
JavaScript

// Old browser polyfills
if (typeof Symbol === 'undefined') {
require('core-js/fn/symbol');
}
if (typeof Promise === 'undefined') {
require('core-js/fn/promise');
}
if (typeof TransformStream === 'undefined') {
require('@mattiasbuelens/web-streams-polyfill');
}
(typeof window !== 'undefined' ? window : global).resolves = function(val) {
return new Promise(function(res) { res(val); });
};
(typeof window !== 'undefined' ? window : global).rejects = function(val) {
return new Promise(function(res, rej) { rej(val); });
};
(typeof window !== 'undefined' ? window : global).tryTests = function(name, tests, options) {
if (options.if) {
describe(name, function() {
if (options.before) { before(options.before); }
if (options.beforeEach) { beforeEach(options.beforeEach); }
tests();
if (options.afterEach) { afterEach(options.afterEach); }
if (options.after) { after(options.after); }
});
} else {
describe.skip(name + ' (no support --> skipping tests)', tests);
}
};
describe('Unit Tests', function () {
if (typeof window !== 'undefined') {
openpgp.config.s2k_iteration_count_byte = 0;
openpgp.config.indutny_elliptic_path = '../dist/elliptic.min.js';
afterEach(function () {
if (window.scrollY >= document.body.scrollHeight - window.innerHeight - 100
|| openpgp.config.ci) {
window.scrollTo(0, document.body.scrollHeight);
}
});
window.location.search.substr(1).split('&').forEach(param => {
const [key, value] = param.split('=');
if (key && key !== 'grep') {
openpgp.config[key] = decodeURIComponent(value);
try {
openpgp.config[key] = JSON.parse(openpgp.config[key]);
} catch(e) {}
}
});
}
require('./crypto');
require('./general');
require('./worker');
require('./security');
});