2022-06-17 23:11:09 +02:00
|
|
|
|
import { HttpProvider } from 'ethjs';
|
|
|
|
|
import nock from 'nock';
|
2020-11-07 08:38:12 +01:00
|
|
|
|
import {
|
2023-01-18 15:47:29 +01:00
|
|
|
|
TransactionGroupStatus,
|
|
|
|
|
TransactionStatus,
|
|
|
|
|
TransactionEnvelopeType,
|
2021-04-28 21:53:59 +02:00
|
|
|
|
} from '../../../shared/constants/transaction';
|
2021-02-04 19:15:23 +01:00
|
|
|
|
import * as utils from './transactions.util';
|
2018-09-19 02:20:28 +02:00
|
|
|
|
|
2021-04-15 20:01:46 +02:00
|
|
|
|
describe('Transactions utils', () => {
|
|
|
|
|
describe('getStatusKey', () => {
|
|
|
|
|
it('should return the correct status', () => {
|
2018-10-16 00:00:47 +02:00
|
|
|
|
const tests = [
|
|
|
|
|
{
|
|
|
|
|
transaction: {
|
2023-01-18 15:47:29 +01:00
|
|
|
|
status: TransactionStatus.confirmed,
|
2018-10-16 00:00:47 +02:00
|
|
|
|
txReceipt: {
|
|
|
|
|
status: '0x0',
|
|
|
|
|
},
|
|
|
|
|
},
|
2023-01-18 15:47:29 +01:00
|
|
|
|
expected: TransactionStatus.failed,
|
2018-10-16 00:00:47 +02:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
transaction: {
|
2023-01-18 15:47:29 +01:00
|
|
|
|
status: TransactionStatus.confirmed,
|
2018-10-16 00:00:47 +02:00
|
|
|
|
txReceipt: {
|
|
|
|
|
status: '0x1',
|
|
|
|
|
},
|
|
|
|
|
},
|
2023-01-18 15:47:29 +01:00
|
|
|
|
expected: TransactionStatus.confirmed,
|
2018-10-16 00:00:47 +02:00
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
transaction: {
|
2023-01-18 15:47:29 +01:00
|
|
|
|
status: TransactionGroupStatus.pending,
|
2018-10-16 00:00:47 +02:00
|
|
|
|
},
|
2023-01-18 15:47:29 +01:00
|
|
|
|
expected: TransactionGroupStatus.pending,
|
2018-10-16 00:00:47 +02:00
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
|
];
|
2018-10-16 00:00:47 +02:00
|
|
|
|
|
|
|
|
|
tests.forEach(({ transaction, expected }) => {
|
2021-04-15 20:01:46 +02:00
|
|
|
|
expect(utils.getStatusKey(transaction)).toStrictEqual(expected);
|
2021-02-04 19:15:23 +01:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
2021-10-06 20:29:57 +02:00
|
|
|
|
|
|
|
|
|
describe('isLegacyTransaction', () => {
|
|
|
|
|
it('should return true if transaction is type-0', () => {
|
|
|
|
|
expect(
|
2023-01-18 15:47:29 +01:00
|
|
|
|
utils.isLegacyTransaction({ type: TransactionEnvelopeType.legacy }),
|
2021-10-06 20:29:57 +02:00
|
|
|
|
).toStrictEqual(true);
|
|
|
|
|
});
|
|
|
|
|
it('should return false if transaction is not type-0', () => {
|
|
|
|
|
expect(
|
|
|
|
|
utils.isLegacyTransaction({
|
2023-01-18 15:47:29 +01:00
|
|
|
|
type: TransactionEnvelopeType.feeMarket,
|
2021-10-06 20:29:57 +02:00
|
|
|
|
}),
|
|
|
|
|
).toStrictEqual(false);
|
|
|
|
|
});
|
|
|
|
|
});
|
2022-06-17 23:11:09 +02:00
|
|
|
|
|
|
|
|
|
describe('getMethodDataAsync', () => {
|
|
|
|
|
global.ethereumProvider = new HttpProvider(
|
|
|
|
|
'https://mainnet.infura.io/v3/341eacb578dd44a1a049cbc5f6fd4035',
|
|
|
|
|
);
|
2023-08-04 19:28:37 +02:00
|
|
|
|
it('returns a valid signature for setApprovalForAll when use4ByteResolution privacy setting is ON', async () => {
|
2022-06-17 23:11:09 +02:00
|
|
|
|
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',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
});
|
2023-08-04 19:28:37 +02:00
|
|
|
|
expect(await utils.getMethodDataAsync('0xa22cb465', true)).toStrictEqual({
|
2022-06-17 23:11:09 +02:00
|
|
|
|
name: 'Set Approval For All',
|
|
|
|
|
params: [{ type: 'address' }, { type: 'bool' }],
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
2021-02-04 19:15:23 +01:00
|
|
|
|
});
|