Merge pull request #687 from cmgustavo/bug/test-storage

Fixes on storage tests (removes current localStorage)
This commit is contained in:
Manuel Aráoz 2014-06-17 11:04:48 -03:00
commit 9e79e58c35
2 changed files with 29 additions and 13 deletions

View File

@ -7,8 +7,10 @@ if (typeof process === 'undefined' || !process.version) {
var copay = copay || require('../copay');
var LocalEncrypted = copay.StorageLocalEncrypted;
var fakeWallet = 'fake-wallet-id';
var timeStamp = Date.now();
describe('Storage/LocalEncrypted model', function() {
var wid = 'fake-wallet-id';
var s = new LocalEncrypted();
s._setPassphrase('mysupercoolpassword');
@ -18,14 +20,19 @@ if (typeof process === 'undefined' || !process.version) {
});
it('should fail when encrypting without a password', function() {
var s = new LocalEncrypted();
(function(){s.set(wid, 'x', 1);}).should.throw();
(function(){
s.set(fakeWallet, timeStamp, 1);
localStorage.removeItem(fakeWallet +'::'+ timeStamp);
}).should.throw();
});
it('should be able to encrypt and decrypt', function() {
s._write('key', 'value');
s._read('key').should.equal('value');
s._write(fakeWallet+timeStamp, 'value');
s._read(fakeWallet+timeStamp).should.equal('value');
localStorage.removeItem(fakeWallet+timeStamp);
});
it('should be able to set a value', function() {
s.set(wid, 'x', 1);
s.set(fakeWallet, timeStamp, 1);
localStorage.removeItem(fakeWallet +'::'+ timeStamp);
});
var getSetData = [
1,1000,-15, -1000,
@ -40,22 +47,24 @@ if (typeof process === 'undefined' || !process.version) {
];
getSetData.forEach(function(obj) {
it('should be able to set a value and get it for '+JSON.stringify(obj), function() {
s.set(wid, 'x', obj);
var obj2 = s.get(wid, 'x');
s.set(fakeWallet, timeStamp, obj);
var obj2 = s.get(fakeWallet, timeStamp);
JSON.stringify(obj2).should.equal(JSON.stringify(obj));
localStorage.removeItem(fakeWallet +'::'+ timeStamp);
});
});
describe('#export', function() {
it('should export the encrypted wallet', function() {
localStorage.clear();
var storage = new LocalEncrypted({password: 'password'});
storage.set('walletId', 'test', 'testval');
storage.set(fakeWallet, timeStamp, 'testval');
var obj = {test:'testval'};
var encrypted = storage.export(obj);
encrypted.length.should.be.greaterThan(10);
localStorage.removeItem(fakeWallet +'::'+ timeStamp);
//encrypted.slice(0,6).should.equal("53616c");
});
});
});
}

View File

@ -7,7 +7,7 @@ if (typeof process === 'undefined' || !process.version) {
var copay = copay || require('../copay');
var LocalPlain = copay.StorageLocalPlain;
describe.skip('Storage/LocalPlain model', function() {
describe('Storage/LocalPlain model', function() {
it('should create an instance', function() {
var s = new LocalPlain();
@ -16,7 +16,9 @@ if (typeof process === 'undefined' || !process.version) {
describe('#setFromObj', function() {
it('should set keys from an object', function() {
localStorage.clear();
var fakeWallet = 'fake-wallet-id';
var timeStamp = Date.now();
var obj = {
test: 'testval',
opts: {
@ -24,8 +26,13 @@ if (typeof process === 'undefined' || !process.version) {
}
};
var storage = new LocalPlain();
storage.setFromObj('walletId', obj);
storage.get('walletId', 'test').should.equal('testval');
storage.setFromObj(fakeWallet+timeStamp, obj);
storage.get(fakeWallet+timeStamp, 'test').should.equal('testval');
// Clean data used in localstorage
localStorage.removeItem(fakeWallet+timeStamp+'::test');
localStorage.removeItem(fakeWallet+timeStamp+'::opts');
localStorage.removeItem('nameFor::'+fakeWallet+timeStamp);
});
});
});