mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 06:07:06 +01:00
4048feeaac
* Increase likelyhood of valid method signatures being returned by getMethodData * Update coverage * Update coverage * Update coverage * add a migration to clear knownMethodData * Small typo changes Co-authored-by: Alex <adonesky@gmail.com>
105 lines
3.4 KiB
JavaScript
105 lines
3.4 KiB
JavaScript
import { HttpProvider } from 'ethjs';
|
||
import nock from 'nock';
|
||
import {
|
||
TRANSACTION_GROUP_STATUSES,
|
||
TRANSACTION_STATUSES,
|
||
TRANSACTION_ENVELOPE_TYPES,
|
||
} from '../../../shared/constants/transaction';
|
||
import * as utils from './transactions.util';
|
||
|
||
describe('Transactions utils', () => {
|
||
describe('getStatusKey', () => {
|
||
it('should return the correct status', () => {
|
||
const tests = [
|
||
{
|
||
transaction: {
|
||
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
txReceipt: {
|
||
status: '0x0',
|
||
},
|
||
},
|
||
expected: TRANSACTION_STATUSES.FAILED,
|
||
},
|
||
{
|
||
transaction: {
|
||
status: TRANSACTION_STATUSES.CONFIRMED,
|
||
txReceipt: {
|
||
status: '0x1',
|
||
},
|
||
},
|
||
expected: TRANSACTION_STATUSES.CONFIRMED,
|
||
},
|
||
{
|
||
transaction: {
|
||
status: TRANSACTION_GROUP_STATUSES.PENDING,
|
||
},
|
||
expected: TRANSACTION_GROUP_STATUSES.PENDING,
|
||
},
|
||
];
|
||
|
||
tests.forEach(({ transaction, expected }) => {
|
||
expect(utils.getStatusKey(transaction)).toStrictEqual(expected);
|
||
});
|
||
});
|
||
});
|
||
|
||
describe('isLegacyTransaction', () => {
|
||
it('should return true if transaction is type-0', () => {
|
||
expect(
|
||
utils.isLegacyTransaction({ type: TRANSACTION_ENVELOPE_TYPES.LEGACY }),
|
||
).toStrictEqual(true);
|
||
});
|
||
it('should return false if transaction is not type-0', () => {
|
||
expect(
|
||
utils.isLegacyTransaction({
|
||
type: TRANSACTION_ENVELOPE_TYPES.FEE_MARKET,
|
||
}),
|
||
).toStrictEqual(false);
|
||
});
|
||
});
|
||
|
||
describe('getMethodDataAsync', () => {
|
||
global.ethereumProvider = new HttpProvider(
|
||
'https://mainnet.infura.io/v3/341eacb578dd44a1a049cbc5f6fd4035',
|
||
);
|
||
it('returns a valid signature for setApprovalForAll', async () => {
|
||
nock('https://www.4byte.directory:443', { encodedQueryParams: true })
|
||
.get('/api/v1/signatures/')
|
||
.query({ hex_signature: '0xa22cb465' })
|
||
.reply(200, {
|
||
count: 2,
|
||
next: null,
|
||
previous: null,
|
||
results: [
|
||
{
|
||
id: 841519,
|
||
created_at: '2022-06-12T00:50:19.305588Z',
|
||
text_signature: 'niceFunctionHerePlzClick943230089(address,bool)',
|
||
hex_signature: '0xa22cb465',
|
||
bytes_signature: '¢,´e',
|
||
},
|
||
{
|
||
id: 29659,
|
||
created_at: '2018-04-11T21:47:39.980645Z',
|
||
text_signature: 'setApprovalForAll(address,bool)',
|
||
hex_signature: '0xa22cb465',
|
||
bytes_signature: '¢,´e',
|
||
},
|
||
],
|
||
});
|
||
nock('https://mainnet.infura.io:443', { encodedQueryParams: true })
|
||
.post('/v3/341eacb578dd44a1a049cbc5f6fd4035')
|
||
.reply(200, (_, requestBody) => ({
|
||
id: requestBody.id,
|
||
jsonrpc: '2.0',
|
||
result:
|
||
'0x0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002f6e69636546756e6374696f6e48657265506c7a436c69636b39343332333030383928616464726573732c626f6f6c290000000000000000000000000000000000',
|
||
}));
|
||
expect(await utils.getMethodDataAsync('0xa22cb465')).toStrictEqual({
|
||
name: 'Set Approval For All',
|
||
params: [{ type: 'address' }, { type: 'bool' }],
|
||
});
|
||
});
|
||
});
|
||
});
|