2021-05-07 21:38:24 +02:00
|
|
|
import { strict as assert } from 'assert';
|
2021-03-16 22:00:08 +01:00
|
|
|
import migrationTemplate from './030';
|
2020-01-09 04:34:58 +01:00
|
|
|
|
2019-01-17 20:10:33 +01:00
|
|
|
const storage = {
|
|
|
|
meta: {},
|
|
|
|
data: {
|
|
|
|
NetworkController: {
|
|
|
|
network: 'fail',
|
|
|
|
provider: {
|
|
|
|
chainId: 'fail',
|
|
|
|
nickname: '',
|
|
|
|
rpcTarget: 'https://api.myetherwallet.com/eth',
|
|
|
|
ticker: 'ETH',
|
|
|
|
type: 'rinkeby',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
PreferencesController: {
|
|
|
|
frequentRpcListDetail: [
|
2020-11-03 00:41:28 +01:00
|
|
|
{
|
|
|
|
chainId: 'fail',
|
|
|
|
nickname: '',
|
|
|
|
rpcUrl: 'http://127.0.0.1:8545',
|
|
|
|
ticker: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
chainId: '1',
|
|
|
|
nickname: '',
|
|
|
|
rpcUrl: 'https://api.myetherwallet.com/eth',
|
|
|
|
ticker: 'ETH',
|
|
|
|
},
|
2019-01-17 20:10:33 +01:00
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2019-01-17 20:10:33 +01:00
|
|
|
|
2020-02-11 17:51:13 +01:00
|
|
|
describe('storage is migrated successfully', function () {
|
|
|
|
it('should work', function (done) {
|
2020-11-03 00:41:28 +01:00
|
|
|
migrationTemplate
|
|
|
|
.migrate(storage)
|
2019-07-31 22:17:11 +02:00
|
|
|
.then((migratedData) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
assert.equal(migratedData.meta.version, 30);
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.equal(
|
|
|
|
migratedData.data.PreferencesController.frequentRpcListDetail[0]
|
|
|
|
.chainId,
|
|
|
|
undefined,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.equal(
|
|
|
|
migratedData.data.PreferencesController.frequentRpcListDetail[1]
|
|
|
|
.chainId,
|
|
|
|
'1',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-11-03 00:41:28 +01:00
|
|
|
assert.equal(
|
|
|
|
migratedData.data.NetworkController.provider.chainId,
|
|
|
|
undefined,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
assert.equal(migratedData.data.NetworkController.network, undefined);
|
|
|
|
done();
|
2020-11-03 00:41:28 +01:00
|
|
|
})
|
2021-02-04 19:15:23 +01:00
|
|
|
.catch(done);
|
|
|
|
});
|
|
|
|
});
|