1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-25 21:00:23 +02:00
metamask-extension/test/unit/migrations/migrator-test.js

121 lines
3.4 KiB
JavaScript
Raw Normal View History

import fs from 'fs'
import assert from 'assert'
import { cloneDeep } from 'lodash'
import Migrator from '../../../app/scripts/lib/migrator'
import liveMigrations from '../../../app/scripts/migrations'
2020-08-18 21:24:47 +02:00
import data from '../../../app/scripts/first-time-state'
const stubMigrations = [
2017-05-11 19:47:58 +02:00
{
version: 1,
2020-08-18 21:24:47 +02:00
migrate: (state) => {
2017-05-11 19:47:58 +02:00
// clone the data just like we do in migrations
2020-08-18 21:24:47 +02:00
const clonedData = cloneDeep(state)
2017-05-11 19:47:58 +02:00
clonedData.meta.version = 1
return Promise.resolve(clonedData)
},
},
{
version: 2,
2020-08-18 21:24:47 +02:00
migrate: (state) => {
const clonedData = cloneDeep(state)
2017-05-11 19:47:58 +02:00
clonedData.meta.version = 2
return Promise.resolve(clonedData)
},
},
{
version: 3,
2020-08-18 21:24:47 +02:00
migrate: (state) => {
const clonedData = cloneDeep(state)
2017-05-11 19:47:58 +02:00
clonedData.meta.version = 3
return Promise.resolve(clonedData)
},
},
]
2019-12-03 21:50:55 +01:00
const versionedData = { meta: { version: 0 }, data: { hello: 'world' } }
const firstTimeState = {
meta: { version: 0 },
data,
}
describe('migrations', function () {
describe('liveMigrations require list', function () {
let migrationNumbers
before(function () {
const fileNames = fs.readdirSync('./app/scripts/migrations/')
migrationNumbers = fileNames
.reduce((acc, filename) => {
const name = filename.split('.')[0]
2020-11-03 00:41:28 +01:00
if (/^\d+$/u.test(name)) {
acc.push(name)
}
return acc
}, [])
.map((num) => parseInt(num, 10))
})
it('should include all migrations', function () {
migrationNumbers.forEach((num) => {
const migration = liveMigrations.find((m) => m.version === num)
2020-11-03 00:41:28 +01:00
assert(
migration,
`migration not included in 'migrations/index.js': ${num}`,
)
})
})
it('should have tests for all migrations', function () {
const fileNames = fs.readdirSync('./test/unit/migrations/')
const testNumbers = fileNames
.reduce((acc, filename) => {
const name = filename.split('-test.')[0]
2020-11-03 00:41:28 +01:00
if (/^\d+$/u.test(name)) {
acc.push(name)
}
return acc
}, [])
.map((num) => parseInt(num, 10))
migrationNumbers.forEach((num) => {
if (num >= 33) {
2020-11-03 00:41:28 +01:00
assert.ok(
testNumbers.includes(num),
`no test found for migration: ${num}`,
)
}
})
})
})
describe('Migrator', function () {
it('migratedData version should be version 3', async function () {
const migrator = new Migrator({ migrations: stubMigrations })
const migratedData = await migrator.migrateData(versionedData)
assert.equal(migratedData.meta.version, stubMigrations[2].version)
})
it('should match the last version in live migrations', async function () {
const migrator = new Migrator({ migrations: liveMigrations })
const migratedData = await migrator.migrateData(firstTimeState)
const last = liveMigrations.length - 1
assert.equal(migratedData.meta.version, liveMigrations[last].version)
})
it('should emit an error', async function () {
const migrator = new Migrator({
2020-11-03 00:41:28 +01:00
migrations: [
{
version: 1,
async migrate() {
throw new Error('test')
},
},
2020-11-03 00:41:28 +01:00
],
})
await assert.rejects(migrator.migrateData({ meta: { version: 0 } }))
2020-01-15 22:54:28 +01:00
})
2018-04-06 04:28:53 +02:00
})
2017-05-11 19:47:58 +02:00
})