Review suggested test case

pull/78/head
Beaudan 6 years ago
parent 5084d8cfec
commit a0584a68c9

@ -26,6 +26,13 @@ describe('FallBackSessionCipher', () => {
const { type } = await fallbackCipher.encrypt(buffer);
assert.strictEqual(type, textsecure.protobuf.Envelope.Type.FRIEND_REQUEST);
});
it('should encrypt and then decrypt a message with the same result', async () => {
const arr = new Uint8Array([1,2,3,4,5]);
const { body } = await fallbackCipher.encrypt(arr.buffer);
const result = await fallbackCipher.decrypt(body);
assert.deepEqual(result, arr.buffer);
});
});
describe('LibLoki Protocol', () => {

Loading…
Cancel
Save