mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
Add migration to actual migration array, fix test
This commit is contained in:
parent
4a1dd26fc9
commit
ab9db44f4a
@ -2,7 +2,9 @@ var path = require('path')
|
|||||||
var fs = require('fs')
|
var fs = require('fs')
|
||||||
|
|
||||||
var migration2 = require('../migrations/002')
|
var migration2 = require('../migrations/002')
|
||||||
|
var migration3 = require('../migrations/003')
|
||||||
|
|
||||||
module.exports = [
|
module.exports = [
|
||||||
migration2,
|
migration2,
|
||||||
|
migration3,
|
||||||
]
|
]
|
||||||
|
@ -2,21 +2,26 @@ var assert = require('assert')
|
|||||||
var path = require('path')
|
var path = require('path')
|
||||||
|
|
||||||
var wallet1 = require(path.join('..', 'lib', 'migrations', '001.json'))
|
var wallet1 = require(path.join('..', 'lib', 'migrations', '001.json'))
|
||||||
|
|
||||||
var migration2 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '002'))
|
var migration2 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '002'))
|
||||||
var migration3 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '003'))
|
var migration3 = require(path.join('..', '..', 'app', 'scripts', 'migrations', '003'))
|
||||||
|
|
||||||
describe('wallet1 is migrated successfully', function() {
|
describe('wallet1 is migrated successfully', function() {
|
||||||
|
|
||||||
it('should convert etherscan provider', function(done) {
|
it('should convert providers', function(done) {
|
||||||
|
|
||||||
|
wallet1.data.config.provider = { type: 'etherscan', rpcTarget: null }
|
||||||
|
|
||||||
var firstResult = migration2.migrate(wallet1.data)
|
var firstResult = migration2.migrate(wallet1.data)
|
||||||
assert.equal(firstResult.config.provider.type, 'rpc', 'provider should be rpc')
|
assert.equal(firstResult.config.provider.type, 'rpc', 'provider should be rpc')
|
||||||
assert.equal(firstResult.config.provider.rpcTarget, 'https://rpc.metamask.io/', 'provider should be our rpc')
|
assert.equal(firstResult.config.provider.rpcTarget, 'https://rpc.metamask.io/', 'main provider should be our rpc')
|
||||||
|
|
||||||
var oldTestRpc = 'https://rawtestrpc.metamask.io/'
|
var oldTestRpc = 'https://rawtestrpc.metamask.io/'
|
||||||
|
var newTestRpc = 'https://testrpc.metamask.io/'
|
||||||
firstResult.config.provider.rpcTarget = oldTestRpc
|
firstResult.config.provider.rpcTarget = oldTestRpc
|
||||||
|
|
||||||
var secondResult = migration3.migrate(firstResult)
|
var secondResult = migration3.migrate(firstResult)
|
||||||
assert.equal(firstResult.config.provider.rpcTarget, 'https://testrpc.metamask.io/', 'provider should be our rpc')
|
assert.equal(secondResult.config.provider.rpcTarget, newTestRpc)
|
||||||
|
|
||||||
done()
|
done()
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user