1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/test/unit/migrations/037-test.js

125 lines
3.4 KiB
JavaScript
Raw Normal View History

import assert from 'assert'
import migration37 from '../../../app/scripts/migrations/037'
describe('migration #37', function () {
it('should update the version metadata', function (done) {
const oldStorage = {
2020-11-03 00:41:28 +01:00
meta: {
version: 36,
},
2020-11-03 00:41:28 +01:00
data: {},
}
2020-11-03 00:41:28 +01:00
migration37
.migrate(oldStorage)
.then((newStorage) => {
assert.deepEqual(newStorage.meta, {
2020-11-03 00:41:28 +01:00
version: 37,
})
done()
})
.catch(done)
})
it('should transform old state to new format', function (done) {
const oldStorage = {
2020-11-03 00:41:28 +01:00
meta: {},
data: {
AddressBookController: {
addressBook: {
'0x1De7e54679bfF0c23856FbF547b2394e723FCA91': {
address: '0x1De7e54679bfF0c23856FbF547b2394e723FCA91',
chainId: '4',
memo: '',
name: 'account 3',
},
'0x32Be343B94f860124dC4fEe278FDCBD38C102D88': {
address: '0x32Be343B94f860124dC4fEe278FDCBD38C102D88',
chainId: '4',
memo: '',
name: 'account 2',
},
// there are no repeated addresses by the current implementation
'0x1De7e54679bfF0c23856FbF547b2394e723FCA93': {
address: '0x1De7e54679bfF0c23856FbF547b2394e723FCA93',
chainId: '2',
memo: '',
name: 'account 2',
},
},
},
},
}
2020-11-03 00:41:28 +01:00
migration37
.migrate(oldStorage)
.then((newStorage) => {
assert.deepEqual(newStorage.data.AddressBookController.addressBook, {
2020-11-03 00:41:28 +01:00
4: {
'0x1De7e54679bfF0c23856FbF547b2394e723FCA91': {
address: '0x1De7e54679bfF0c23856FbF547b2394e723FCA91',
chainId: '4',
isEns: false,
memo: '',
name: 'account 3',
},
'0x32Be343B94f860124dC4fEe278FDCBD38C102D88': {
address: '0x32Be343B94f860124dC4fEe278FDCBD38C102D88',
chainId: '4',
isEns: false,
memo: '',
name: 'account 2',
},
},
2020-11-03 00:41:28 +01:00
2: {
'0x1De7e54679bfF0c23856FbF547b2394e723FCA93': {
address: '0x1De7e54679bfF0c23856FbF547b2394e723FCA93',
chainId: '2',
isEns: false,
memo: '',
name: 'account 2',
},
},
})
done()
})
.catch(done)
})
it('ens validation test', function (done) {
const oldStorage = {
2020-11-03 00:41:28 +01:00
meta: {},
data: {
AddressBookController: {
addressBook: {
'0x1De7e54679bfF0c23856FbF547b2394e723FCA91': {
address: '0x1De7e54679bfF0c23856FbF547b2394e723FCA91',
chainId: '4',
memo: '',
name: 'metamask.eth',
},
},
},
},
}
2020-11-03 00:41:28 +01:00
migration37
.migrate(oldStorage)
.then((newStorage) => {
assert.deepEqual(newStorage.data.AddressBookController.addressBook, {
2020-11-03 00:41:28 +01:00
4: {
'0x1De7e54679bfF0c23856FbF547b2394e723FCA91': {
address: '0x1De7e54679bfF0c23856FbF547b2394e723FCA91',
chainId: '4',
isEns: true,
memo: '',
name: 'metamask.eth',
},
},
})
done()
})
.catch(done)
})
})