2018-02-21 05:31:27 +01:00
|
|
|
import assert from 'assert';
|
|
|
|
import * as api from '../../../app/api';
|
|
|
|
import Keychain from '../../../app/keychain';
|
|
|
|
|
|
|
|
const encoder = new TextEncoder();
|
|
|
|
const plaintext = encoder.encode('hello world!');
|
|
|
|
const metadata = {
|
|
|
|
name: 'test.txt',
|
|
|
|
type: 'text/plain'
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('API', function() {
|
|
|
|
describe('uploadFile', function() {
|
|
|
|
it('returns file info on success', async function() {
|
|
|
|
const keychain = new Keychain();
|
|
|
|
const encrypted = await keychain.encryptFile(plaintext);
|
|
|
|
const meta = await keychain.encryptMetadata(metadata);
|
|
|
|
const verifierB64 = await keychain.authKeyB64();
|
2018-02-24 20:24:12 +01:00
|
|
|
const p = function() {};
|
|
|
|
const up = api.uploadFile(encrypted, meta, verifierB64, keychain, p);
|
2018-02-21 05:31:27 +01:00
|
|
|
const result = await up.result;
|
|
|
|
assert.ok(result.url);
|
|
|
|
assert.ok(result.id);
|
|
|
|
assert.ok(result.ownerToken);
|
|
|
|
});
|
2018-02-24 20:24:12 +01:00
|
|
|
|
|
|
|
it('can be cancelled', async function() {
|
|
|
|
const keychain = new Keychain();
|
|
|
|
const encrypted = await keychain.encryptFile(plaintext);
|
|
|
|
const meta = await keychain.encryptMetadata(metadata);
|
|
|
|
const verifierB64 = await keychain.authKeyB64();
|
|
|
|
const p = function() {};
|
|
|
|
const up = api.uploadFile(encrypted, meta, verifierB64, keychain, p);
|
|
|
|
up.cancel();
|
|
|
|
try {
|
|
|
|
await up.result;
|
|
|
|
assert.fail('not cancelled');
|
|
|
|
} catch (e) {
|
|
|
|
assert.equal(e.message, '0');
|
|
|
|
}
|
|
|
|
});
|
2018-02-21 05:31:27 +01:00
|
|
|
});
|
|
|
|
});
|