mirror of
https://github.com/valentineus/iii-client.git
synced 2025-07-01 10:30:27 +03:00
Simple tests have been added
This commit is contained in:
42
src/test.js
Normal file
42
src/test.js
Normal file
@ -0,0 +1,42 @@
|
||||
import { assert } from 'chai';
|
||||
|
||||
import {
|
||||
decryptJSON,
|
||||
connect,
|
||||
decrypt,
|
||||
encrypt,
|
||||
send
|
||||
} from './index';
|
||||
|
||||
describe('iii-client:', () => {
|
||||
var uuid = '109cd867-0ef3-4473-af71-7543a9b2fccd';
|
||||
var cuid = '0340feab-b09e-4960-96e9-c9518b1fb157';
|
||||
var text = 'Hello, World!';
|
||||
var data = JSON.stringify({ text });
|
||||
|
||||
it('encrypt():', () => {
|
||||
assert.notEqual(text, encrypt(text));
|
||||
});
|
||||
|
||||
it('decrypt():', () => {
|
||||
var encrypted = encrypt(text);
|
||||
assert.equal(text, decrypt(encrypted));
|
||||
});
|
||||
|
||||
it('decryptJSON():', () => {
|
||||
var encrypted = encrypt(data);
|
||||
assert.equal(data, decrypt(encrypted).toString());
|
||||
});
|
||||
|
||||
it('connect():', () => {
|
||||
connect(uuid, (request) => {
|
||||
assert.isObject(request);
|
||||
});
|
||||
});
|
||||
|
||||
it('send():', () => {
|
||||
send(cuid, text, (request) => {
|
||||
assert.isObject(request);
|
||||
});
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user