1
- import { isAddress , zeroAddress } from 'viem' ;
2
- import { describe , expect , test } from 'vitest' ;
3
- import { defaultOptions } from '../../test/helpers' ;
1
+ import { mockErc721Abi } from '@boostxyz/evm' ;
2
+ import { loadFixture } from '@nomicfoundation/hardhat-network-helpers' ;
3
+ import {
4
+ encodeAbiParameters ,
5
+ encodeFunctionData ,
6
+ isAddress ,
7
+ parseEther ,
8
+ toFunctionSelector ,
9
+ zeroAddress ,
10
+ } from 'viem' ;
11
+ import { beforeAll , beforeEach , describe , expect , test } from 'vitest' ;
12
+ import type { MockERC721 } from '../../test/MockERC721' ;
13
+ import { accounts } from '../../test/accounts' ;
14
+ import {
15
+ type Fixtures ,
16
+ defaultOptions ,
17
+ deployFixtures ,
18
+ fundErc721 ,
19
+ } from '../../test/helpers' ;
4
20
import { ERC721MintAction } from './ERC721MintAction' ;
5
21
6
- describe ( 'ERC721MintAction' , ( ) => {
22
+ let fixtures : Fixtures , erc721 : MockERC721 ;
23
+
24
+ beforeAll ( async ( ) => {
25
+ fixtures = await loadFixture ( deployFixtures ) ;
26
+ } ) ;
27
+
28
+ const mintSelector = toFunctionSelector ( 'function mint(address to)' ) ;
29
+
30
+ function nonPayableAction ( fixtures : Fixtures , erc721 : MockERC721 ) {
31
+ return function nonPayableAction ( ) {
32
+ return fixtures . registry . clone (
33
+ crypto . randomUUID ( ) ,
34
+ new fixtures . bases . ERC721MintAction ( defaultOptions , {
35
+ chainId : BigInt ( 31_337 ) ,
36
+ target : erc721 . assertValidAddress ( ) ,
37
+ selector : mintSelector ,
38
+ value : 0n ,
39
+ } ) ,
40
+ ) ;
41
+ } ;
42
+ }
43
+
44
+ describe ( 'ContractAction' , ( ) => {
45
+ beforeEach ( async ( ) => {
46
+ erc721 = await loadFixture ( fundErc721 ( defaultOptions ) ) ;
47
+ } ) ;
48
+
7
49
test ( 'can successfully be deployed' , async ( ) => {
8
50
const action = new ERC721MintAction ( defaultOptions , {
9
51
chainId : BigInt ( 31_337 ) ,
@@ -14,4 +56,56 @@ describe('ERC721MintAction', () => {
14
56
await action . deploy ( ) ;
15
57
expect ( isAddress ( action . assertValidAddress ( ) ) ) . toBe ( true ) ;
16
58
} ) ;
59
+
60
+ test ( 'can read chain id' , async ( ) => {
61
+ const action = await loadFixture ( nonPayableAction ( fixtures , erc721 ) ) ;
62
+ expect ( await action . chainId ( ) ) . toBe ( BigInt ( 31_337 ) ) ;
63
+ } ) ;
64
+
65
+ test ( 'can read target' , async ( ) => {
66
+ const action = await loadFixture ( nonPayableAction ( fixtures , erc721 ) ) ;
67
+ expect ( ( await action . target ( ) ) . toLowerCase ( ) ) . toBe (
68
+ erc721 . assertValidAddress ( ) . toLowerCase ( ) ,
69
+ ) ;
70
+ } ) ;
71
+
72
+ test ( 'can read selector' , async ( ) => {
73
+ const action = await loadFixture ( nonPayableAction ( fixtures , erc721 ) ) ;
74
+ expect ( await action . selector ( ) ) . toBe ( mintSelector ) ;
75
+ } ) ;
76
+
77
+ test ( 'can read value' , async ( ) => {
78
+ const action = await loadFixture ( nonPayableAction ( fixtures , erc721 ) ) ;
79
+ expect ( await action . value ( ) ) . toBe ( parseEther ( '0.1' ) ) ;
80
+ } ) ;
81
+
82
+ test ( 'prepare will properly encode execution payload' , async ( ) => {
83
+ const action = await loadFixture ( nonPayableAction ( fixtures , erc721 ) ) ;
84
+ const { account } = accounts . at ( 1 ) ! ;
85
+ const payload = await action . prepare (
86
+ encodeAbiParameters ( [ { type : 'address' , name : 'address' } ] , [ account ] ) ,
87
+ ) ;
88
+ expect ( payload ) . toBe (
89
+ encodeFunctionData ( {
90
+ abi : mockErc721Abi ,
91
+ functionName : 'mint' ,
92
+ args : [ account ] ,
93
+ } ) ,
94
+ ) ;
95
+ } ) ;
96
+
97
+ test ( 'nonpayable execute' , async ( ) => {
98
+ const action = await loadFixture ( nonPayableAction ( fixtures , erc721 ) ) ;
99
+ const { account } = accounts . at ( 1 ) ! ;
100
+ const [ success ] = await action . execute (
101
+ encodeAbiParameters (
102
+ [
103
+ { type : 'address' , name : 'to' } ,
104
+ { type : 'uint256' , name : 'amount' } ,
105
+ ] ,
106
+ [ account , parseEther ( '100' ) ] ,
107
+ ) ,
108
+ ) ;
109
+ expect ( success ) . toBe ( true ) ;
110
+ } ) ;
17
111
} ) ;
0 commit comments