diff options
author | Csaba Solya <csaba.solya@gmail.com> | 2018-02-23 17:08:23 +0800 |
---|---|---|
committer | Csaba Solya <csaba.solya@gmail.com> | 2018-02-23 17:08:23 +0800 |
commit | c1aa59f6eddac0a37f0084e37ab1281e109d1c80 (patch) | |
tree | 2fbfe948ebce248df6f96fe28c07d3529d5f813d | |
parent | 2f3463048685759319eb320c916cc7bc23a41649 (diff) | |
download | tangerine-wallet-browser-c1aa59f6eddac0a37f0084e37ab1281e109d1c80.tar tangerine-wallet-browser-c1aa59f6eddac0a37f0084e37ab1281e109d1c80.tar.gz tangerine-wallet-browser-c1aa59f6eddac0a37f0084e37ab1281e109d1c80.tar.bz2 tangerine-wallet-browser-c1aa59f6eddac0a37f0084e37ab1281e109d1c80.tar.lz tangerine-wallet-browser-c1aa59f6eddac0a37f0084e37ab1281e109d1c80.tar.xz tangerine-wallet-browser-c1aa59f6eddac0a37f0084e37ab1281e109d1c80.tar.zst tangerine-wallet-browser-c1aa59f6eddac0a37f0084e37ab1281e109d1c80.zip |
adding tests
-rw-r--r-- | test/unit/edge-encryptor-test.js | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/test/unit/edge-encryptor-test.js b/test/unit/edge-encryptor-test.js new file mode 100644 index 000000000..627386051 --- /dev/null +++ b/test/unit/edge-encryptor-test.js @@ -0,0 +1,66 @@ +const assert = require('assert') + +const EdgeEncryptor = require('../../app/scripts/edge-encryptor') + +var password = 'passw0rd1' +var data = 'some random data' + +// polyfill fetch +global.crypto = global.crypto || { + getRandomValues (array) { + for (let i = 0; i < array.length; i++) { + array[i] = Math.random() * 100; + } + } +} + +describe('EdgeEncryptor', function () { + const edgeEncryptor = new EdgeEncryptor() + + describe('encrypt', function () { + + it('should encrypt the data.', function () { + edgeEncryptor.encrypt(password, data) + .then(function (encryptedData) { + assert.notEqual(data, encryptedData) + assert.notEqual(encryptedData.length, 0) + done() + }).catch(function (err) { + done(err) + }) + }) + + it('should not return the same twice.', function () { + + const encryptPromises = [] + encryptPromises.push(edgeEncryptor.encrypt(password, data)) + encryptPromises.push(edgeEncryptor.encrypt(password, data)) + + Promise.all(encryptPromises).then((encryptedData) => { + assert.equal(encryptedData.length, 2) + assert.notEqual(encryptedData[0], encryptedData[1]) + assert.notEqual(encryptedData[0].length, 0) + assert.notEqual(encryptedData[1].length, 0) + }) + }) + }) + + describe('decrypt', function () { + it('should be able to decrypt the encrypted data.', function () { + + edgeEncryptor.encrypt(password, data) + .then(function (encryptedData) { + edgeEncryptor.decrypt(password, encryptedData) + .then(function (decryptedData) { + assert.equal(decryptedData, data) + }) + .catch(function (err) { + done(err) + }) + }) + .catch(function (err) { + done(err) + }) + }) + }) +}) |