aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/app/edge-encryptor-test.js
blob: 1a6255b361a9505734e7755c473ed674516fd83b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
const assert = require('assert')

const EdgeEncryptor = require('../../../app/scripts/edge-encryptor')

var password = 'passw0rd1'
var data = 'some random data'

global.crypto = global.crypto || {
  getRandomValues: function (array) {
    for (let i = 0; i < array.length; i++) {
      array[i] = Math.random() * 100
    }
    return array
  },
}

describe('EdgeEncryptor', function () {

  const edgeEncryptor = new EdgeEncryptor()
  describe('encrypt', function () {

    it('should encrypt the data.', function (done) {
      edgeEncryptor.encrypt(password, data)
        .then(function (encryptedData) {
          assert.notEqual(data, encryptedData)
          assert.notEqual(encryptedData.length, 0)
          done()
        }).catch(function (err) {
          done(err)
        })
    })

    it('should return proper format.', function (done) {
      edgeEncryptor.encrypt(password, data)
        .then(function (encryptedData) {
          const encryptedObject = JSON.parse(encryptedData)
          assert.ok(encryptedObject.data, 'there is no data')
          assert.ok(encryptedObject.iv && encryptedObject.iv.length !== 0, 'there is no iv')
          assert.ok(encryptedObject.salt && encryptedObject.salt.length !== 0, 'there is no salt')
          done()
        }).catch(function (err) {
          done(err)
        })
    })

    it('should not return the same twice.', function (done) {

      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)
        done()
      })
    })
  })

  describe('decrypt', function () {
    it('should be able to decrypt the encrypted data.', function (done) {

      edgeEncryptor.encrypt(password, data)
        .then(function (encryptedData) {
          edgeEncryptor.decrypt(password, encryptedData)
          .then(function (decryptedData) {
            assert.equal(decryptedData, data)
            done()
          })
          .catch(function (err) {
            done(err)
          })
        })
        .catch(function (err) {
          done(err)
        })
    })

    it('cannot decrypt the encrypted data with wrong password.', function (done) {

      edgeEncryptor.encrypt(password, data)
        .then(function (encryptedData) {
          edgeEncryptor.decrypt('wrong password', encryptedData)
          .then(function (decryptedData) {
            assert.fail('could decrypt with wrong password')
            done()
          })
          .catch(function (err) {
            assert.ok(err instanceof Error)
            assert.equal(err.message, 'Incorrect password')
            done()
          })
        })
        .catch(function (err) {
          done(err)
        })
    })
  })
})