2017-07-12 22:05:06 +02:00
|
|
|
const FileSender = window.FileSender;
|
2017-07-13 01:23:55 +02:00
|
|
|
const FileReceiver = window.FileReceiver;
|
2017-07-12 22:05:06 +02:00
|
|
|
const FakeFile = window.FakeFile;
|
|
|
|
const assert = window.assert;
|
2017-07-13 01:23:55 +02:00
|
|
|
const server = window.server;
|
|
|
|
const hexToArray = window.hexToArray;
|
|
|
|
const arrayToHex = window.arrayToHex;
|
|
|
|
const sinon = window.sinon;
|
2017-07-12 22:05:06 +02:00
|
|
|
|
|
|
|
let file;
|
|
|
|
let encryptedIV;
|
|
|
|
let fileHash;
|
|
|
|
let secretKey;
|
2017-07-13 01:23:55 +02:00
|
|
|
let originalBlob;
|
2017-07-12 22:05:06 +02:00
|
|
|
|
|
|
|
describe('File Sender', function() {
|
|
|
|
before(function() {
|
|
|
|
server.respondImmediately = true;
|
|
|
|
server.respondWith(
|
|
|
|
'POST',
|
|
|
|
'/upload',
|
|
|
|
function(request) {
|
2017-07-13 01:23:55 +02:00
|
|
|
const reader = new FileReader();
|
2017-07-12 22:05:06 +02:00
|
|
|
reader.readAsArrayBuffer(request.requestBody.get('data'));
|
|
|
|
|
|
|
|
reader.onload = function(event) {
|
|
|
|
file = this.result;
|
|
|
|
}
|
|
|
|
|
|
|
|
const responseObj = JSON.parse(request.requestHeaders['X-File-Metadata']);
|
|
|
|
request.respond(
|
|
|
|
200,
|
|
|
|
{'Content-Type': 'application/json'},
|
|
|
|
JSON.stringify({url: 'some url',
|
|
|
|
id: responseObj.id,
|
|
|
|
delete: responseObj.delete})
|
|
|
|
)
|
|
|
|
}
|
|
|
|
)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should get a loading event emission', function() {
|
2017-07-13 01:23:55 +02:00
|
|
|
const file = new FakeFile('hello_world.txt', ['This is some data.'])
|
|
|
|
const fs = new FileSender(file);
|
2017-07-12 22:05:06 +02:00
|
|
|
let testLoading = true;
|
|
|
|
|
|
|
|
fs.on('loading', isStillLoading => {
|
2017-07-13 01:23:55 +02:00
|
|
|
assert(!(!testLoading && isStillLoading));
|
|
|
|
testLoading = isStillLoading;
|
2017-07-12 22:05:06 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
return fs.upload()
|
|
|
|
.then(info => {
|
2017-07-13 01:23:55 +02:00
|
|
|
assert(info);
|
|
|
|
assert(!testLoading);
|
2017-07-12 22:05:06 +02:00
|
|
|
})
|
|
|
|
.catch(err => {
|
2017-07-13 01:23:55 +02:00
|
|
|
console.log(err, err.stack);
|
2017-07-12 22:05:06 +02:00
|
|
|
assert.fail();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should get a hashing event emission', function() {
|
2017-07-13 01:23:55 +02:00
|
|
|
const file = new FakeFile('hello_world.txt', ['This is some data.'])
|
|
|
|
const fs = new FileSender(file);
|
2017-07-12 22:05:06 +02:00
|
|
|
let testHashing = true;
|
|
|
|
|
|
|
|
fs.on('hashing', isStillHashing => {
|
2017-07-13 01:23:55 +02:00
|
|
|
assert(!(!testHashing && isStillHashing));
|
|
|
|
testHashing = isStillHashing;
|
2017-07-12 22:05:06 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
return fs.upload()
|
|
|
|
.then(info => {
|
2017-07-13 01:23:55 +02:00
|
|
|
assert(info);
|
|
|
|
assert(!testHashing);
|
2017-07-12 22:05:06 +02:00
|
|
|
})
|
|
|
|
.catch(err => {
|
2017-07-13 01:23:55 +02:00
|
|
|
console.log(err, err.stack);
|
2017-07-12 22:05:06 +02:00
|
|
|
assert.fail();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should get a encrypting event emission', function() {
|
2017-07-13 01:23:55 +02:00
|
|
|
const file = new FakeFile('hello_world.txt', ['This is some data.'])
|
|
|
|
const fs = new FileSender(file);
|
2017-07-12 22:05:06 +02:00
|
|
|
let testEncrypting = true;
|
|
|
|
|
|
|
|
fs.on('encrypting', isStillEncrypting => {
|
2017-07-13 01:23:55 +02:00
|
|
|
assert(!(!testEncrypting && isStillEncrypting));
|
|
|
|
testEncrypting = isStillEncrypting;
|
2017-07-12 22:05:06 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
return fs.upload()
|
|
|
|
.then(info => {
|
2017-07-13 01:23:55 +02:00
|
|
|
assert(info);
|
|
|
|
assert(!testEncrypting);
|
2017-07-12 22:05:06 +02:00
|
|
|
})
|
|
|
|
.catch(err => {
|
2017-07-13 01:23:55 +02:00
|
|
|
console.log(err, err.stack);
|
2017-07-12 22:05:06 +02:00
|
|
|
assert.fail();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should encrypt a file properly', function(done) {
|
2017-07-13 01:23:55 +02:00
|
|
|
const newFile = new FakeFile('hello_world.txt', ['This is some data.'])
|
|
|
|
const fs = new FileSender(newFile);
|
2017-07-12 22:05:06 +02:00
|
|
|
fs.upload().then(info => {
|
2017-07-13 01:23:55 +02:00
|
|
|
const key = info.secretKey;
|
2017-07-12 22:05:06 +02:00
|
|
|
secretKey = info.secretKey;
|
2017-07-13 01:23:55 +02:00
|
|
|
const IV = info.fileId;
|
2017-07-12 22:05:06 +02:00
|
|
|
encryptedIV = info.fileId;
|
|
|
|
|
2017-07-13 01:23:55 +02:00
|
|
|
const readRaw = new FileReader;
|
2017-07-12 22:05:06 +02:00
|
|
|
readRaw.onload = function(event) {
|
2017-07-13 01:23:55 +02:00
|
|
|
const rawArray = new Uint8Array(this.result);
|
|
|
|
originalBlob = rawArray;
|
2017-07-12 22:05:06 +02:00
|
|
|
|
|
|
|
window.crypto.subtle.digest('SHA-256', rawArray).then(hash => {
|
|
|
|
fileHash = hash;
|
|
|
|
window.crypto.subtle.importKey(
|
|
|
|
'jwk',
|
|
|
|
{
|
|
|
|
kty: 'oct',
|
|
|
|
k: key,
|
|
|
|
alg: 'A128GCM',
|
|
|
|
ext: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'AES-GCM'
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
['encrypt', 'decrypt']
|
|
|
|
)
|
|
|
|
.then(cryptoKey => {
|
|
|
|
window.crypto.subtle.encrypt(
|
|
|
|
{
|
|
|
|
name: 'AES-GCM',
|
|
|
|
iv: hexToArray(IV),
|
|
|
|
additionalData: hash,
|
|
|
|
tagLength: 128
|
|
|
|
},
|
|
|
|
cryptoKey,
|
|
|
|
rawArray
|
|
|
|
)
|
|
|
|
.then(encrypted => {
|
|
|
|
assert(new Uint8Array(encrypted).toString() ===
|
|
|
|
new Uint8Array(file).toString());
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
readRaw.readAsArrayBuffer(newFile);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2017-07-13 01:23:55 +02:00
|
|
|
describe('File Receiver', function() {
|
|
|
|
|
|
|
|
class FakeXHR {
|
|
|
|
constructor() {
|
|
|
|
this.response = file;
|
|
|
|
this.status = 200;
|
|
|
|
}
|
|
|
|
|
|
|
|
static setup() {
|
|
|
|
FakeXHR.prototype.open = sinon.spy();
|
|
|
|
FakeXHR.prototype.send = function () {
|
|
|
|
this.onload();
|
|
|
|
}
|
|
|
|
|
|
|
|
FakeXHR.prototype.originalXHR = window.XMLHttpRequest;
|
|
|
|
|
|
|
|
FakeXHR.prototype.getResponseHeader = function () {
|
|
|
|
return JSON.stringify({
|
|
|
|
aad: arrayToHex(new Uint8Array(fileHash)),
|
|
|
|
filename: 'hello_world.txt',
|
|
|
|
id: encryptedIV
|
|
|
|
})
|
|
|
|
}
|
|
|
|
window.XMLHttpRequest = FakeXHR;
|
|
|
|
}
|
|
|
|
|
|
|
|
static restore() {
|
|
|
|
// originalXHR is a sinon FakeXMLHttpRequest, since
|
|
|
|
// fakeServer.create() is called in frontend.bundle.js
|
|
|
|
window.XMLHttpRequest.prototype.originalXHR.restore();
|
|
|
|
}
|
|
|
|
}
|
2017-07-12 22:05:06 +02:00
|
|
|
|
|
|
|
const cb = function(done) {
|
|
|
|
if (file === undefined ||
|
|
|
|
encryptedIV === undefined ||
|
|
|
|
fileHash === undefined ||
|
|
|
|
secretKey === undefined) {
|
2017-07-13 01:23:55 +02:00
|
|
|
assert.fail('Please run file sending tests before trying to receive the files.');
|
|
|
|
done();
|
2017-07-12 22:05:06 +02:00
|
|
|
}
|
|
|
|
|
2017-07-13 01:23:55 +02:00
|
|
|
FakeXHR.setup();
|
2017-07-12 22:05:06 +02:00
|
|
|
done();
|
|
|
|
}
|
|
|
|
|
|
|
|
before(cb)
|
|
|
|
|
2017-07-13 01:23:55 +02:00
|
|
|
after(function() {
|
|
|
|
FakeXHR.restore();
|
|
|
|
})
|
|
|
|
|
2017-07-12 22:05:06 +02:00
|
|
|
it('Should decrypt properly', function() {
|
2017-07-13 01:23:55 +02:00
|
|
|
const fr = new FileReceiver();
|
|
|
|
location.hash = secretKey;
|
|
|
|
return fr.download().then(([decrypted, name]) => {
|
|
|
|
assert(name);
|
|
|
|
assert(new Uint8Array(decrypted).toString() ===
|
|
|
|
new Uint8Array(originalBlob).toString())
|
|
|
|
}).catch(err => {
|
|
|
|
console.log(err, err.stack);
|
|
|
|
assert.fail();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should emit decrypting events', function() {
|
|
|
|
const fr = new FileReceiver();
|
2017-07-12 22:05:06 +02:00
|
|
|
location.hash = secretKey;
|
2017-07-13 01:23:55 +02:00
|
|
|
|
|
|
|
let testDecrypting = true;
|
|
|
|
|
|
|
|
fr.on('decrypting', isStillDecrypting => {
|
|
|
|
assert(!(!testDecrypting && isStillDecrypting));
|
|
|
|
testDecrypting = isStillDecrypting;
|
|
|
|
});
|
|
|
|
|
2017-07-13 18:53:59 +02:00
|
|
|
fr.on('safe', isSafe => {
|
|
|
|
assert(isSafe);
|
|
|
|
})
|
|
|
|
|
2017-07-12 22:05:06 +02:00
|
|
|
return fr.download().then(([decrypted, name]) => {
|
2017-07-13 01:23:55 +02:00
|
|
|
assert(decrypted);
|
|
|
|
assert(name);
|
|
|
|
assert(!testDecrypting);
|
2017-07-12 22:05:06 +02:00
|
|
|
}).catch(err => {
|
2017-07-13 01:23:55 +02:00
|
|
|
console.log(err, err.stack);
|
|
|
|
assert.fail();
|
2017-07-12 22:05:06 +02:00
|
|
|
})
|
|
|
|
})
|
2017-07-13 01:23:55 +02:00
|
|
|
|
|
|
|
it('Should emit hashing events', function() {
|
|
|
|
const fr = new FileReceiver();
|
|
|
|
location.hash = secretKey;
|
|
|
|
|
|
|
|
let testHashing = true;
|
|
|
|
|
|
|
|
fr.on('hashing', isStillHashing => {
|
|
|
|
assert(!(!testHashing && isStillHashing));
|
|
|
|
testHashing = isStillHashing;
|
|
|
|
});
|
|
|
|
|
2017-07-13 18:53:59 +02:00
|
|
|
fr.on('safe', isSafe => {
|
|
|
|
assert(isSafe);
|
|
|
|
})
|
|
|
|
|
2017-07-13 01:23:55 +02:00
|
|
|
return fr.download().then(([decrypted, name]) => {
|
|
|
|
assert(decrypted);
|
|
|
|
assert(name);
|
|
|
|
assert(!testHashing);
|
|
|
|
}).catch(err => {
|
|
|
|
assert.fail();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-07-13 21:14:27 +02:00
|
|
|
it('Should catch fraudulent checksums', function(done) {
|
|
|
|
// Use the secret key and file hash of the previous file to encrypt,
|
|
|
|
// which has a different hash than this one (different strings).
|
2017-07-13 01:23:55 +02:00
|
|
|
const newFile = new FakeFile('hello_world.txt',
|
|
|
|
['This is some data, with a changed hash.'])
|
|
|
|
const readRaw = new FileReader();
|
|
|
|
|
|
|
|
readRaw.onload = function(event) {
|
|
|
|
const plaintext = new Uint8Array(this.result);
|
|
|
|
window.crypto.subtle.importKey(
|
|
|
|
'jwk',
|
|
|
|
{
|
|
|
|
kty: 'oct',
|
|
|
|
k: secretKey,
|
|
|
|
alg: 'A128GCM',
|
|
|
|
ext: true
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'AES-GCM'
|
|
|
|
},
|
|
|
|
true,
|
|
|
|
['encrypt', 'decrypt']
|
|
|
|
)
|
|
|
|
.then(key => {
|
2017-07-13 21:14:27 +02:00
|
|
|
// The file hash used here is the hash of the fake
|
|
|
|
// file from the previous test; it's a phony checksum.
|
2017-07-13 01:23:55 +02:00
|
|
|
return window.crypto.subtle.encrypt(
|
|
|
|
{
|
|
|
|
name: 'AES-GCM',
|
|
|
|
iv: hexToArray(encryptedIV),
|
|
|
|
additionalData: fileHash,
|
|
|
|
tagLength: 128
|
|
|
|
},
|
|
|
|
key,
|
|
|
|
plaintext
|
|
|
|
)
|
|
|
|
})
|
|
|
|
.then(encrypted => {
|
|
|
|
file = encrypted;
|
|
|
|
const fr = new FileReceiver();
|
|
|
|
location.hash = secretKey;
|
|
|
|
|
2017-07-13 18:53:59 +02:00
|
|
|
fr.on('unsafe', isUnsafe => {
|
|
|
|
assert(isUnsafe)
|
|
|
|
})
|
|
|
|
|
2017-07-13 22:47:43 +02:00
|
|
|
fr.on('safe', () => {
|
|
|
|
// This event should not be emitted.
|
|
|
|
assert.fail();
|
|
|
|
})
|
|
|
|
|
2017-07-13 01:23:55 +02:00
|
|
|
fr.download().then(() => {
|
|
|
|
assert.fail();
|
|
|
|
done();
|
|
|
|
}).catch(err => {
|
|
|
|
assert(1);
|
|
|
|
done();
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
readRaw.readAsArrayBuffer(newFile);
|
|
|
|
})
|
|
|
|
|
|
|
|
it('Should not decrypt with an incorrect checksum', function() {
|
|
|
|
FakeXHR.prototype.getResponseHeader = function () {
|
|
|
|
return JSON.stringify({
|
|
|
|
aad: 'some_bad_hashz',
|
|
|
|
filename: 'hello_world.txt',
|
|
|
|
id: encryptedIV
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
const fr = new FileReceiver();
|
|
|
|
location.hash = secretKey;
|
|
|
|
|
|
|
|
return fr.download().then(([decrypted, name]) => {
|
|
|
|
assert(decrypted);
|
|
|
|
assert(name);
|
|
|
|
assert.fail();
|
|
|
|
}).catch(err => {
|
|
|
|
assert(1);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2017-07-12 22:05:06 +02:00
|
|
|
})
|