mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
f47cfbbb3e
The `assert` module has two modes: "Legacy" and "strict". When using strict mode, the "strict" version of each assertion method is implied. Whereas in legacy mode, by default it will use the deprecated, "loose" version of each assertion. We now use strict mode everywhere. A few tests required updates where they were asserting the wrong thing, and it was passing beforehand due to the loose matching.
122 lines
2.6 KiB
JavaScript
122 lines
2.6 KiB
JavaScript
import { strict as assert } from 'assert';
|
|
import migration36 from './036';
|
|
|
|
describe('migration #36', function () {
|
|
it('should update the version metadata', function (done) {
|
|
const oldStorage = {
|
|
meta: {
|
|
version: 35,
|
|
},
|
|
data: {},
|
|
};
|
|
|
|
migration36
|
|
.migrate(oldStorage)
|
|
.then((newStorage) => {
|
|
assert.deepEqual(newStorage.meta, {
|
|
version: 36,
|
|
});
|
|
done();
|
|
})
|
|
.catch(done);
|
|
});
|
|
|
|
it('should remove privacyMode if featureFlags.privacyMode was false', function (done) {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
PreferencesController: {
|
|
featureFlags: {
|
|
privacyMode: false,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
migration36
|
|
.migrate(oldStorage)
|
|
.then((newStorage) => {
|
|
assert.deepEqual(newStorage.data.PreferencesController, {
|
|
featureFlags: {},
|
|
});
|
|
done();
|
|
})
|
|
.catch(done);
|
|
});
|
|
|
|
it('should remove privacyMode if featureFlags.privacyMode was true', function (done) {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
PreferencesController: {
|
|
featureFlags: {
|
|
privacyMode: true,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
migration36
|
|
.migrate(oldStorage)
|
|
.then((newStorage) => {
|
|
assert.deepEqual(newStorage.data.PreferencesController, {
|
|
featureFlags: {},
|
|
});
|
|
done();
|
|
})
|
|
.catch(done);
|
|
});
|
|
|
|
it('should NOT change any state if privacyMode does not exist', function (done) {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
PreferencesController: {
|
|
migratedPrivacyMode: true,
|
|
featureFlags: {},
|
|
},
|
|
},
|
|
};
|
|
|
|
migration36
|
|
.migrate(oldStorage)
|
|
.then((newStorage) => {
|
|
assert.deepEqual(newStorage.data, oldStorage.data);
|
|
done();
|
|
})
|
|
.catch(done);
|
|
});
|
|
|
|
it('should NOT change any state if PreferencesController is missing', function (done) {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {},
|
|
};
|
|
|
|
migration36
|
|
.migrate(oldStorage)
|
|
.then((newStorage) => {
|
|
assert.deepEqual(newStorage.data, oldStorage.data);
|
|
done();
|
|
})
|
|
.catch(done);
|
|
});
|
|
|
|
it('should NOT change any state if featureFlags is missing', function (done) {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
PreferencesController: {},
|
|
},
|
|
};
|
|
|
|
migration36
|
|
.migrate(oldStorage)
|
|
.then((newStorage) => {
|
|
assert.deepEqual(newStorage.data, oldStorage.data);
|
|
done();
|
|
})
|
|
.catch(done);
|
|
});
|
|
});
|