mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-21 17:37:01 +01:00
Use strict assertion mode everywhere (#11012)
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.
This commit is contained in:
parent
14dc6b58cc
commit
f47cfbbb3e
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import { stripHexPrefix } from 'ethereumjs-util';
|
||||
import accountImporter from '.';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import sinon from 'sinon';
|
||||
import { KOVAN_CHAIN_ID } from '../../../shared/constants/network';
|
||||
import CachedBalancesController from './cached-balances';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import sinon from 'sinon';
|
||||
import { ObservableStore } from '@metamask/obs-store';
|
||||
import contracts from '@metamask/contract-metadata';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import sinon from 'sinon';
|
||||
import EnsController from '.';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import sinon from 'sinon';
|
||||
import proxyquire from 'proxyquire';
|
||||
import nock from 'nock';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import EventEmitter from 'events';
|
||||
import { ComposedStore, ObservableStore } from '@metamask/obs-store';
|
||||
import { JsonRpcEngine } from 'json-rpc-engine';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import { txMetaStub } from '../../../../test/stub/tx-meta-stub';
|
||||
import {
|
||||
createPendingNonceMiddleware,
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import sinon from 'sinon';
|
||||
import {
|
||||
MAINNET_CHAIN_ID,
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import sinon from 'sinon';
|
||||
|
||||
import { ethers } from 'ethers';
|
||||
@ -645,7 +645,7 @@ describe('SwapsController', function () {
|
||||
topAggId,
|
||||
resultQuotes,
|
||||
] = await swapsController._findTopQuoteAndCalculateSavings(testInput);
|
||||
assert.equal(topAggId, [TEST_AGG_ID_2]);
|
||||
assert.equal(topAggId, TEST_AGG_ID_2);
|
||||
assert.deepStrictEqual(resultQuotes, expectedResultQuotes);
|
||||
});
|
||||
});
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import sinon from 'sinon';
|
||||
import { ObservableStore } from '@metamask/obs-store';
|
||||
import TokenRatesController from './token-rates';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import { ObservableStore } from '@metamask/obs-store';
|
||||
import ComposableObservableStore from './ComposableObservableStore';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import {
|
||||
KOVAN_CHAIN_ID,
|
||||
MAINNET_CHAIN_ID,
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import cleanErrorStack from './cleanErrorStack';
|
||||
|
||||
describe('Clean Error Stack', function () {
|
||||
@ -14,7 +14,7 @@ describe('Clean Error Stack', function () {
|
||||
});
|
||||
|
||||
it('tests error with message', function () {
|
||||
assert.equal(cleanErrorStack(testError), 'Error: Test Message');
|
||||
assert.equal(cleanErrorStack(testError).toString(), 'Error: Test Message');
|
||||
});
|
||||
|
||||
it('tests error with undefined name', function () {
|
||||
@ -29,6 +29,6 @@ describe('Clean Error Stack', function () {
|
||||
});
|
||||
|
||||
it('tests error with blank message', function () {
|
||||
assert.equal(cleanErrorStack(blankMsgError), 'Error');
|
||||
assert.equal(cleanErrorStack(blankMsgError).toString(), 'Error');
|
||||
});
|
||||
});
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import { obj as createThoughStream } from 'through2';
|
||||
import createMetaRPCHandler from './createMetaRPCHandler';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction';
|
||||
import MessageManager from './message-manager';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import { obj as createThoughStream } from 'through2';
|
||||
import metaRPCClientFactory from './metaRPCClientFactory';
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import fs from 'fs';
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import { cloneDeep } from 'lodash';
|
||||
import liveMigrations from '../../migrations';
|
||||
import data from '../../first-time-state';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import nodeify from './nodeify';
|
||||
|
||||
describe('nodeify', function () {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction';
|
||||
import PersonalMessageManager from './personal-message-manager';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import { cloneDeep } from 'lodash';
|
||||
import KeyringController from 'eth-keyring-controller';
|
||||
import firstTimeState from '../first-time-state';
|
||||
|
@ -1,5 +1,5 @@
|
||||
import EventEmitter from 'events';
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import { ObservableStore } from '@metamask/obs-store';
|
||||
import { ethErrors } from 'eth-rpc-errors';
|
||||
import { typedSignatureHash, TYPED_MESSAGE_SCHEMA } from 'eth-sig-util';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import sinon from 'sinon';
|
||||
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction';
|
||||
import TypedMessageManager from './typed-message-manager';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import extension from 'extensionizer';
|
||||
import { stripHexPrefix } from 'ethereumjs-util';
|
||||
import BN from 'bn.js';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import sinon from 'sinon';
|
||||
import { cloneDeep } from 'lodash';
|
||||
import nock from 'nock';
|
||||
@ -493,8 +493,8 @@ describe('MetaMaskController', function () {
|
||||
);
|
||||
} catch (e) {
|
||||
assert.equal(
|
||||
e,
|
||||
'Error: MetamaskController:getKeyringForDevice - Unknown device',
|
||||
e.message,
|
||||
'MetamaskController:getKeyringForDevice - Unknown device',
|
||||
);
|
||||
}
|
||||
});
|
||||
@ -535,8 +535,8 @@ describe('MetaMaskController', function () {
|
||||
);
|
||||
} catch (e) {
|
||||
assert.equal(
|
||||
e,
|
||||
'Error: MetamaskController:getKeyringForDevice - Unknown device',
|
||||
e.message,
|
||||
'MetamaskController:getKeyringForDevice - Unknown device',
|
||||
);
|
||||
}
|
||||
});
|
||||
@ -554,8 +554,8 @@ describe('MetaMaskController', function () {
|
||||
await metamaskController.forgetDevice('Some random device name');
|
||||
} catch (e) {
|
||||
assert.equal(
|
||||
e,
|
||||
'Error: MetamaskController:getKeyringForDevice - Unknown device',
|
||||
e.message,
|
||||
'MetamaskController:getKeyringForDevice - Unknown device',
|
||||
);
|
||||
}
|
||||
});
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import wallet2 from '../../../test/lib/migrations/002.json';
|
||||
import migration21 from './021';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction';
|
||||
import migration22 from './022';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction';
|
||||
import migration23 from './023';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import data from '../first-time-state';
|
||||
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction';
|
||||
import migration24 from './024';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import data from '../first-time-state';
|
||||
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction';
|
||||
import migration25 from './025';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import firstTimeState from '../first-time-state';
|
||||
import migration26 from './026';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import firstTimeState from '../first-time-state';
|
||||
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction';
|
||||
import migration27 from './027';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import firstTimeState from '../first-time-state';
|
||||
import migration28 from './028';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import { TRANSACTION_STATUSES } from '../../../shared/constants/transaction';
|
||||
import migration29 from './029';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migrationTemplate from './030';
|
||||
|
||||
const storage = {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migration31 from './031';
|
||||
|
||||
describe('migration #31', function () {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migration33 from './033';
|
||||
|
||||
describe('Migration to delete notice controller', function () {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migration34 from './034';
|
||||
|
||||
describe('migration #34', function () {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migration35 from './035';
|
||||
|
||||
describe('migration #35', function () {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migration36 from './036';
|
||||
|
||||
describe('migration #36', function () {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migration37 from './037';
|
||||
|
||||
describe('migration #37', function () {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migration39 from './039';
|
||||
|
||||
describe('migration #39', function () {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migration40 from './040';
|
||||
|
||||
describe('migration #40', function () {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migration41 from './041';
|
||||
|
||||
describe('migration #41', function () {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migration42 from './042';
|
||||
|
||||
describe('migration #42', function () {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migration45 from './045';
|
||||
|
||||
describe('migration #45', function () {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migration49 from './049';
|
||||
|
||||
describe('migration #49', function () {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import {
|
||||
GOERLI,
|
||||
GOERLI_CHAIN_ID,
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migration56 from './056';
|
||||
|
||||
const BAD_TOKEN_DATA = { symbol: null, decimals: null };
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import wallet1 from '../../../test/lib/migrations/001.json';
|
||||
import vault4 from '../../../test/lib/migrations/004.json';
|
||||
import migration2 from './002';
|
||||
@ -52,7 +52,7 @@ describe('wallet1 is migrated successfully', function () {
|
||||
const fourthData = fourthResult.data;
|
||||
assert.equal(
|
||||
fourthData.config.provider.rpcTarget,
|
||||
null,
|
||||
undefined,
|
||||
'old rpcTarget should not exist.',
|
||||
);
|
||||
assert.equal(
|
||||
@ -65,15 +65,15 @@ describe('wallet1 is migrated successfully', function () {
|
||||
})
|
||||
.then((fifthResult) => {
|
||||
const fifthData = fifthResult.data;
|
||||
assert.equal(fifthData.vault, null, 'old vault should not exist');
|
||||
assert.equal(fifthData.vault, undefined, 'old vault should not exist');
|
||||
assert.equal(
|
||||
fifthData.walletNicknames,
|
||||
null,
|
||||
undefined,
|
||||
'old walletNicknames should not exist',
|
||||
);
|
||||
assert.equal(
|
||||
fifthData.config.selectedAccount,
|
||||
null,
|
||||
undefined,
|
||||
'old config.selectedAccount should not exist',
|
||||
);
|
||||
assert.equal(
|
||||
@ -102,7 +102,7 @@ describe('wallet1 is migrated successfully', function () {
|
||||
.then((sixthResult) => {
|
||||
assert.equal(
|
||||
sixthResult.data.KeyringController.selectedAccount,
|
||||
null,
|
||||
undefined,
|
||||
'old selectedAccount should not exist',
|
||||
);
|
||||
assert.equal(
|
||||
@ -117,12 +117,12 @@ describe('wallet1 is migrated successfully', function () {
|
||||
.then((seventhResult) => {
|
||||
assert.equal(
|
||||
seventhResult.data.transactions,
|
||||
null,
|
||||
undefined,
|
||||
'old transactions should not exist',
|
||||
);
|
||||
assert.equal(
|
||||
seventhResult.data.gasMultiplier,
|
||||
null,
|
||||
undefined,
|
||||
'old gasMultiplier should not exist',
|
||||
);
|
||||
assert.equal(
|
||||
@ -142,7 +142,7 @@ describe('wallet1 is migrated successfully', function () {
|
||||
.then((eighthResult) => {
|
||||
assert.equal(
|
||||
eighthResult.data.noticesList,
|
||||
null,
|
||||
undefined,
|
||||
'old noticesList should not exist',
|
||||
);
|
||||
assert.equal(
|
||||
@ -157,22 +157,22 @@ describe('wallet1 is migrated successfully', function () {
|
||||
.then((ninthResult) => {
|
||||
assert.equal(
|
||||
ninthResult.data.currentFiat,
|
||||
null,
|
||||
undefined,
|
||||
'old currentFiat should not exist',
|
||||
);
|
||||
assert.equal(
|
||||
ninthResult.data.fiatCurrency,
|
||||
null,
|
||||
undefined,
|
||||
'old fiatCurrency should not exist',
|
||||
);
|
||||
assert.equal(
|
||||
ninthResult.data.conversionRate,
|
||||
null,
|
||||
undefined,
|
||||
'old conversionRate should not exist',
|
||||
);
|
||||
assert.equal(
|
||||
ninthResult.data.conversionDate,
|
||||
null,
|
||||
undefined,
|
||||
'old conversionDate should not exist',
|
||||
);
|
||||
|
||||
@ -198,7 +198,7 @@ describe('wallet1 is migrated successfully', function () {
|
||||
.then((tenthResult) => {
|
||||
assert.equal(
|
||||
tenthResult.data.shapeShiftTxList,
|
||||
null,
|
||||
undefined,
|
||||
'old shapeShiftTxList should not exist',
|
||||
);
|
||||
assert.equal(
|
||||
@ -211,12 +211,12 @@ describe('wallet1 is migrated successfully', function () {
|
||||
.then((eleventhResult) => {
|
||||
assert.equal(
|
||||
eleventhResult.data.isDisclaimerConfirmed,
|
||||
null,
|
||||
undefined,
|
||||
'isDisclaimerConfirmed should not exist',
|
||||
);
|
||||
assert.equal(
|
||||
eleventhResult.data.TOSHash,
|
||||
null,
|
||||
undefined,
|
||||
'TOSHash should not exist',
|
||||
);
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import migrationTemplate from './template';
|
||||
|
||||
const storage = {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import nock from 'nock';
|
||||
|
||||
import getFetchWithTimeout from './fetch-with-timeout';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import {
|
||||
MAINNET_CHAIN_ID,
|
||||
MAINNET_NETWORK_ID,
|
||||
|
@ -1,4 +1,4 @@
|
||||
const assert = require('assert');
|
||||
const { strict: assert } = require('assert');
|
||||
|
||||
const enLocaleMessages = require('../../app/_locales/en/messages.json');
|
||||
const { tinyDelayMs, regularDelayMs, largeDelayMs } = require('./helpers');
|
||||
|
@ -1,4 +1,4 @@
|
||||
import assert from 'assert';
|
||||
import { strict as assert } from 'assert';
|
||||
import currencyFormatter from 'currency-formatter';
|
||||
import availableCurrencies from '../../ui/helpers/constants/available-conversions.json';
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
import './globalPatch';
|
||||
import 'ses/lockdown';
|
||||
import '../../app/scripts/runLockdown';
|
||||
import assert from 'assert'; /* eslint-disable-line import/first,import/order */
|
||||
import { strict as assert } from 'assert'; /* eslint-disable-line import/first,import/order */
|
||||
|
||||
describe('Promise global is immutable', function () {
|
||||
it('throws when reassinging promise (syntax 1)', function () {
|
||||
|
Loading…
Reference in New Issue
Block a user