-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabi.test.ts
221 lines (195 loc) · 5.29 KB
/
abi.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
import { describe, expect, test } from 'vitest'
import {
AbiDecodingDataSizeInvalidError,
AbiDecodingDataSizeTooSmallError,
AbiEncodingArrayLengthMismatchError,
AbiEncodingLengthMismatchError,
AbiEventSignatureEmptyTopicsError,
DecodeLogDataMismatch,
DecodeLogTopicsMismatch,
InvalidAbiDecodingTypeError,
InvalidAbiEncodingTypeError,
InvalidArrayError,
} from './abi.js'
test('AbiDecodingDataSizeInvalidError', () => {
expect(
new AbiDecodingDataSizeInvalidError({ data: '0x1234', size: 2 }),
).toMatchInlineSnapshot(`
[AbiDecodingDataSizeInvalidError: Data size of 2 bytes is invalid.
Size must be in increments of 32 bytes (size % 32 === 0).
Data: 0x1234 (2 bytes)
Version: [email protected]]
`)
})
test('AbiDecodingDataSizeTooSmallError', () => {
expect(
new AbiDecodingDataSizeTooSmallError({
data: '0x1234',
params: [
{ name: 'a', type: 'uint256' },
{ name: 'b', type: 'uint256' },
],
size: 2,
}),
).toMatchInlineSnapshot(`
[AbiDecodingDataSizeTooSmallError: Data size of 2 bytes is too small for given parameters.
Params: (uint256 a, uint256 b)
Data: 0x1234 (2 bytes)
Version: [email protected]]
`)
})
test('InvalidAbiDecodingTypeError', () => {
expect(
new InvalidAbiDecodingTypeError('lol', { docsPath: '/lol' }),
).toMatchInlineSnapshot(`
[InvalidAbiDecodingType: Type "lol" is not a valid decoding type.
Please provide a valid ABI type.
Docs: https://viem.sh/lol
Version: [email protected]]
`)
})
test('AbiEncodingArrayLengthMismatchError', () => {
expect(
new AbiEncodingArrayLengthMismatchError({
expectedLength: 69,
givenLength: 420,
type: 'uint256[3]',
}),
).toMatchInlineSnapshot(`
[AbiEncodingArrayLengthMismatchError: ABI encoding array length mismatch for type uint256[3].
Expected length: 69
Given length: 420
Version: [email protected]]
`)
})
test('AbiEncodingLengthMismatchError', () => {
expect(
new AbiEncodingLengthMismatchError({
expectedLength: 69,
givenLength: 420,
}),
).toMatchInlineSnapshot(`
[AbiEncodingLengthMismatchError: ABI encoding params/values length mismatch.
Expected length (params): 69
Given length (values): 420
Version: [email protected]]
`)
})
test('AbiEventSignatureEmptyTopicsError', () => {
expect(
new AbiEventSignatureEmptyTopicsError({ docsPath: '/test' }),
).toMatchInlineSnapshot(`
[AbiEventSignatureEmptyTopicsError: Cannot extract event signature from empty topics.
Docs: https://viem.sh/test
Version: [email protected]]
`)
})
test('DecodeLogDataMismatch', () => {
expect(
new DecodeLogDataMismatch({
abiItem: {
name: 'Event',
inputs: [
{ name: 'a', type: 'uint256' },
{ name: 'b', type: 'uint256' },
],
type: 'event',
},
data: '0x1234',
params: [
{ name: 'a', type: 'uint256' },
{ name: 'b', type: 'uint256' },
],
size: 2,
}),
).toMatchInlineSnapshot(`
[DecodeLogDataMismatch: Data size of 2 bytes is too small for non-indexed event parameters.
Params: (uint256 a, uint256 b)
Data: 0x1234 (2 bytes)
Version: [email protected]]
`)
})
describe('DecodeLogTopicsMismatch', () => {
test('default', () => {
expect(
new DecodeLogTopicsMismatch({
abiItem: {
inputs: [
{
indexed: true,
name: 'from',
type: 'address',
},
{
indexed: true,
name: 'to',
type: 'address',
},
{
indexed: true,
name: 'id',
type: 'uint256',
},
],
name: 'Transfer',
type: 'event',
},
param: {
indexed: true,
name: 'id',
type: 'uint256',
},
}),
).toMatchInlineSnapshot(`
[DecodeLogTopicsMismatch: Expected a topic for indexed event parameter "id" on event "Transfer(address from, address to, uint256 id)".
Version: [email protected]]
`)
})
test('unnamed', () => {
expect(
new DecodeLogTopicsMismatch({
abiItem: {
inputs: [
{
indexed: true,
type: 'address',
},
{
indexed: true,
type: 'address',
},
{
indexed: true,
type: 'uint256',
},
],
name: 'Transfer',
type: 'event',
},
param: {
indexed: true,
type: 'uint256',
},
}),
).toMatchInlineSnapshot(`
[DecodeLogTopicsMismatch: Expected a topic for indexed event parameter on event "Transfer(address, address, uint256)".
Version: [email protected]]
`)
})
})
test('InvalidAbiEncodingTypeError', () => {
expect(
new InvalidAbiEncodingTypeError('lol', { docsPath: '/lol' }),
).toMatchInlineSnapshot(`
[InvalidAbiEncodingType: Type "lol" is not a valid encoding type.
Please provide a valid ABI type.
Docs: https://viem.sh/lol
Version: [email protected]]
`)
})
test('InvalidArrayError', () => {
expect(new InvalidArrayError('lol')).toMatchInlineSnapshot(`
[InvalidArrayError: Value "lol" is not a valid array.
Version: [email protected]]
`)
})