This repository was archived by the owner on Mar 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Expand file tree
/
Copy patherrors.test.ts.snap
More file actions
465 lines (431 loc) · 11.9 KB
/
errors.test.ts.snap
File metadata and controls
465 lines (431 loc) · 11.9 KB
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`errors ConnectionCloseError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 504,
"errorCode": 10,
"errorReason": "reason",
"innerError": undefined,
"message": "CONNECTION ERROR: The connection got closed with the close code 10 and the following reason string reason",
"name": "ConnectionCloseError",
}
`;
exports[`errors ConnectionError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 500,
"errorCode": 10,
"errorReason": "reason",
"innerError": undefined,
"message": "error message",
"name": "ConnectionError",
}
`;
exports[`errors ConnectionNotOpenError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 503,
"errorCode": 10,
"errorReason": "reason",
"innerError": undefined,
"message": "Connection not open",
"name": "ConnectionNotOpenError",
}
`;
exports[`errors ConnectionTimeoutError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 502,
"duration": 5000,
"errorCode": undefined,
"errorReason": undefined,
"innerError": undefined,
"message": "CONNECTION TIMEOUT: timeout of 5000ms achieved",
"name": "ConnectionTimeoutError",
}
`;
exports[`errors ContractCodeNotStoredError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 404,
"innerError": undefined,
"message": "The contract code couldn't be stored, please check your gas limit.",
"name": "ContractCodeNotStoredError",
"receipt": {
"attr1": "attr1",
},
}
`;
exports[`errors ContractEventDoesNotExistError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 304,
"eventName": "eventName",
"innerError": undefined,
"message": "Event "eventName" doesn't exist in this contract.",
"name": "ContractEventDoesNotExistError",
}
`;
exports[`errors ContractMissingABIError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 302,
"innerError": undefined,
"message": "You must provide the json interface of the contract when instantiating a contract object.",
"name": "ContractMissingABIError",
}
`;
exports[`errors ContractMissingDeployDataError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 306,
"innerError": undefined,
"message": "No "data" specified in neither the given options, nor the default options.",
"name": "ContractMissingDeployDataError",
}
`;
exports[`errors ContractNoAddressDefinedError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 307,
"innerError": undefined,
"message": "This contract object doesn't have address set yet, please set an address first.",
"name": "ContractNoAddressDefinedError",
}
`;
exports[`errors ContractNoFromAddressDefinedError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 308,
"innerError": undefined,
"message": "No "from" address specified in neither the given options, nor the default options.",
"name": "ContractNoFromAddressDefinedError",
}
`;
exports[`errors ContractOnceRequiresCallbackError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 303,
"innerError": undefined,
"message": "Once requires a callback as the second parameter.",
"name": "ContractOnceRequiresCallbackError",
}
`;
exports[`errors ContractReservedEventError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 305,
"innerError": undefined,
"message": "Event "type" doesn't exist in this contract.",
"name": "ContractReservedEventError",
"type": "type",
}
`;
exports[`errors Eip838ExecutionError should get the data from error.data.data 1`] = `
{
"cause": [Eip838ExecutionError: Error],
"code": undefined,
"data": "0x0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016300000000000000000000000000000000000000000000000000000000000000",
"innerError": [Eip838ExecutionError: Error],
"message": "Error",
"name": "Eip838ExecutionError",
}
`;
exports[`errors Eip838ExecutionError should get the data from error.data.originalError.data 1`] = `
{
"cause": [Eip838ExecutionError: Error],
"code": undefined,
"data": "0x0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016300000000000000000000000000000000000000000000000000000000000000",
"innerError": [Eip838ExecutionError: Error],
"message": "Error",
"name": "Eip838ExecutionError",
}
`;
exports[`errors Eip838ExecutionError should return correctly when data is undefined 1`] = `
{
"cause": undefined,
"code": undefined,
"data": undefined,
"innerError": undefined,
"message": "Error",
"name": "Eip838ExecutionError",
}
`;
exports[`errors InvalidConnectionError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 501,
"errorCode": 10,
"errorReason": "reason",
"host": "my host",
"innerError": undefined,
"message": "CONNECTION ERROR: Couldn't connect to node my host.",
"name": "InvalidConnectionError",
}
`;
exports[`errors InvalidNumberOfParamsError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 200,
"expected": 20,
"got": 10,
"innerError": undefined,
"message": "Invalid number of parameters for "method". Got "10" expected "20"!",
"method": "method",
"name": "InvalidNumberOfParamsError",
}
`;
exports[`errors InvalidPropertiesForTransactionTypeError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 439,
"innerError": undefined,
"message": "The following properties are invalid for the transaction type 0x0: property",
"name": "InvalidPropertiesForTransactionTypeError",
}
`;
exports[`errors InvalidProviderError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 601,
"innerError": undefined,
"message": "Provider with url "my url" is not set or invalid",
"name": "InvalidProviderError",
}
`;
exports[`errors InvalidResponseError should have valid json structure 1`] = `
{
"cause": {
"code": 123,
"data": {
"a": "10",
"b": "20",
},
"message": "error message",
},
"code": 101,
"data": {
"a": "10",
"b": "20",
},
"innerError": {
"code": 123,
"data": {
"a": "10",
"b": "20",
},
"message": "error message",
},
"message": "Returned error: error message",
"name": "InvalidResponseError",
"request": undefined,
}
`;
exports[`errors MaxAttemptsReachedOnReconnectingError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 505,
"errorCode": undefined,
"errorReason": undefined,
"innerError": undefined,
"message": "Maximum number of reconnect attempts reached! (5)",
"name": "MaxAttemptsReachedOnReconnectingError",
}
`;
exports[`errors NoContractAddressFoundError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 403,
"innerError": undefined,
"message": "The transaction receipt didn't contain a contract address.",
"name": "NoContractAddressFoundError",
"receipt": {
"attr1": "attr1",
},
}
`;
exports[`errors PendingRequestsOnReconnectingError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 506,
"errorCode": undefined,
"errorReason": undefined,
"innerError": undefined,
"message": "CONNECTION ERROR: Provider started to reconnect before the response got received!",
"name": "PendingRequestsOnReconnectingError",
}
`;
exports[`errors ResolverMethodMissingError should have valid json structure 1`] = `
{
"address": "address",
"cause": undefined,
"code": 301,
"innerError": undefined,
"message": "The resolver at address does not implement requested method: "name".",
"name": "name",
}
`;
exports[`errors ResponseError should have valid json structure with data 1`] = `
{
"cause": {
"code": 123,
"data": {
"a": "10",
"b": "20",
},
"message": "error message",
},
"code": 100,
"data": {
"a": "10",
"b": "20",
},
"innerError": {
"code": 123,
"data": {
"a": "10",
"b": "20",
},
"message": "error message",
},
"message": "Returned error: error message",
"name": "ResponseError",
"request": undefined,
}
`;
exports[`errors ResponseError should have valid json structure without data 1`] = `
{
"cause": {
"code": 123,
"data": undefined,
"message": "error message",
},
"code": 100,
"data": undefined,
"innerError": {
"code": 123,
"data": undefined,
"message": "error message",
},
"message": "Returned error: error message",
"name": "ResponseError",
"request": undefined,
}
`;
exports[`errors ResponseError should include the array of inner errors 1`] = `
{
"cause": [MultipleErrors: Multiple errors occurred: [error message], [error message]],
"code": 100,
"data": [
{
"a": "10",
"b": "20",
},
{
"c": "30",
"d": "40",
},
],
"innerError": [MultipleErrors: Multiple errors occurred: [error message], [error message]],
"message": "Returned error: error message,error message",
"name": "ResponseError",
"request": undefined,
}
`;
exports[`errors RevertInstructionError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 401,
"innerError": undefined,
"message": "Your request got reverted with the following reason string: message",
"name": "RevertInstructionError",
"reason": "message",
"signature": "signature",
}
`;
exports[`errors SchemaFormatError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 1200,
"innerError": undefined,
"message": "Format for the type unsupported is unsupported",
"name": "SchemaFormatError",
"type": "unsupported",
}
`;
exports[`errors TransactionError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 400,
"innerError": undefined,
"message": "message",
"name": "TransactionError",
"receipt": {
"attr1": "attr1",
},
}
`;
exports[`errors TransactionOutOfGasError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 406,
"innerError": undefined,
"message": "Transaction ran out of gas. Please provide more gas:
{
"attr1": "attr1"
}",
"name": "TransactionOutOfGasError",
"receipt": {
"attr1": "attr1",
},
}
`;
exports[`errors TransactionRevertInstructionError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 402,
"data": undefined,
"innerError": undefined,
"message": "Transaction has been reverted by the EVM:
{"attr1":"attr1"}",
"name": "TransactionRevertInstructionError",
"reason": "message",
"receipt": {
"attr1": "attr1",
},
"signature": "signature",
}
`;
exports[`errors TransactionRevertWithCustomError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 438,
"customErrorArguments": {
"customErrorArgument": "customErrorArgument",
},
"customErrorDecodedSignature": "customErrorDecodedSignature",
"customErrorName": "customErrorName",
"data": "data",
"innerError": undefined,
"message": "Transaction has been reverted by the EVM",
"name": "TransactionRevertWithCustomError",
"reason": "reason",
"receipt": {
"attr1": "attr1",
},
"signature": "signature",
}
`;
exports[`errors TransactionRevertedWithoutReasonError should have valid json structure 1`] = `
{
"cause": undefined,
"code": 405,
"innerError": undefined,
"message": "Transaction has been reverted by the EVM:
{"attr1":"attr1"}",
"name": "TransactionRevertedWithoutReasonError",
"receipt": {
"attr1": "attr1",
},
}
`;