1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 12:52:33 +02:00
metamask-extension/test/unit/migrations/028-test.js

82 lines
2.2 KiB
JavaScript
Raw Normal View History

import assert from 'assert';
import firstTimeState from '../../../app/scripts/first-time-state';
import migration28 from '../../../app/scripts/migrations/028';
2018-08-09 22:41:16 +02:00
const oldStorage = {
2020-11-03 00:41:28 +01:00
meta: {},
data: {
PreferencesController: {
tokens: [
{ address: '0xa', symbol: 'A', decimals: 4 },
{ address: '0xb', symbol: 'B', decimals: 4 },
],
identities: {
2018-08-09 22:41:16 +02:00
'0x6d14': {},
'0x3695': {},
},
},
},
};
2018-08-09 22:41:16 +02:00
describe('migration #28', function () {
it('should add corresponding tokens to accountTokens', function (done) {
2020-11-03 00:41:28 +01:00
migration28
.migrate(oldStorage)
2018-08-09 22:41:16 +02:00
.then((newStorage) => {
const newTokens = newStorage.data.PreferencesController.tokens;
2020-11-03 00:41:28 +01:00
const newAccountTokens =
newStorage.data.PreferencesController.accountTokens;
2018-08-09 22:41:16 +02:00
2020-11-03 00:41:28 +01:00
const testTokens = [
{ address: '0xa', symbol: 'A', decimals: 4 },
{ address: '0xb', symbol: 'B', decimals: 4 },
];
2020-11-03 00:41:28 +01:00
assert.equal(
newTokens.length,
0,
'tokens is expected to have the length of 0',
);
2020-11-03 00:41:28 +01:00
assert.equal(
newAccountTokens['0x6d14'].mainnet.length,
2,
'tokens for address is expected to have the length of 2',
);
2020-11-03 00:41:28 +01:00
assert.equal(
newAccountTokens['0x3695'].mainnet.length,
2,
'tokens for address is expected to have the length of 2',
);
2020-11-03 00:41:28 +01:00
assert.equal(
Object.keys(newAccountTokens).length,
2,
'account tokens should be created for all identities',
);
2020-11-03 00:41:28 +01:00
assert.deepEqual(
newAccountTokens['0x6d14'].mainnet,
testTokens,
'tokens for address should be the same than before',
);
2020-11-03 00:41:28 +01:00
assert.deepEqual(
newAccountTokens['0x3695'].mainnet,
testTokens,
'tokens for address should be the same than before',
);
done();
2018-08-09 22:41:16 +02:00
})
.catch(done);
});
2018-08-09 22:41:16 +02:00
it('should successfully migrate first time state', function (done) {
2020-11-03 00:41:28 +01:00
migration28
.migrate({
meta: {},
data: firstTimeState,
})
2018-08-09 22:41:16 +02:00
.then((migratedData) => {
assert.equal(migratedData.meta.version, migration28.version);
done();
2020-11-03 00:41:28 +01:00
})
.catch(done);
});
});