-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathtools.test.ts
More file actions
3144 lines (2399 loc) · 116 KB
/
Copy pathtools.test.ts
File metadata and controls
3144 lines (2399 loc) · 116 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
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { afterEach, beforeEach, describe, expect, jest, test } from '@jest/globals';
/**
* Integration Tests for MCP Tools
*
* This file contains integration tests for tools registered with the MCP server.
* These tests verify the complete flow of tool registration and execution,
* focusing on how tools interact with the MCP framework and services.
*
* Key differences from unit tests (tools.unit.test.ts):
* - Tests the entire tool flow from registration to execution
* - Uses helper functions to simulate realistic tool usage
* - Tests both success and error paths for each tool
* - Verifies proper integration between tools and the MCP server
*/
import type { Address } from 'viem';
import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import { getRpcUrl, getSupportedNetworks } from '../../core/chains.js';
import { getPrivateKeyAsHex, isWalletEnabled, getWalletMode } from '../../core/config.js';
import { registerEVMTools } from '../../core/tools.js';
import * as services from '../../core/services/index.js';
import { getWalletProvider } from '../../core/wallet/index.js';
import { createDocsSearchTool } from '../../docs/index.js';
import { createMockServer, setupBalanceMocks, setupTransactionMocks, testToolError, testToolSuccess, verifyErrorResponse, verifySuccessResponse, type Tool } from './helpers/tool-test-helpers.js';
// Mock node-fetch
jest.mock('node-fetch');
import fetch, { Response } from 'node-fetch';
const mockFetch = fetch as jest.MockedFunction<typeof fetch>;
// Mock all service functions
jest.mock('../../core/services/index.js');
jest.mock('../../core/chains.js');
jest.mock('../../core/config.js');
jest.mock('../../core/wallet/index.js');
describe('EVM Tools', () => {
// Common test variables
const mockAddress = '0x1234567890123456789012345678901234567890' as Address;
const mockTokenAddress = '0x0987654321098765432109876543210987654321' as Address;
const mockTokenId = '123';
const mockNetwork = 'sei';
const mockError = new Error('Test error');
// Variables to hold server and registeredTools
let server: McpServer;
let registeredTools: Map<string, Tool>;
beforeEach(async () => {
// Create fresh mock server for each test
const mockServerResult = createMockServer();
server = mockServerResult.server;
registeredTools = mockServerResult.registeredTools;
// Setup configuration mocks first
(getRpcUrl as jest.Mock).mockReturnValue('https://rpc.sei.io');
(getSupportedNetworks as jest.Mock).mockReturnValue(['sei', 'sei-testnet']);
(getPrivateKeyAsHex as jest.Mock).mockReturnValue('0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890');
(isWalletEnabled as jest.Mock).mockReturnValue(true); // Enable wallet for testing
(getWalletMode as jest.Mock).mockReturnValue('private-key'); // Set wallet mode
// Mock wallet provider
const mockWalletProvider = {
isAvailable: jest.fn().mockReturnValue(true),
getName: jest.fn().mockReturnValue('private-key'),
getAddress: jest.fn().mockResolvedValue(mockAddress),
getWalletClient: jest.fn().mockResolvedValue({ account: { address: mockAddress } })
};
(getWalletProvider as jest.Mock).mockReturnValue(mockWalletProvider);
// Mock service functions
(services.getAddressFromProvider as jest.Mock).mockResolvedValue(mockAddress);
(services.getChainId as jest.Mock).mockResolvedValue(1 as never);
(services.getBlockNumber as jest.Mock).mockResolvedValue(BigInt(12345678) as never);
// Register tools after mocks are set up
registerEVMTools(server);
// Register docs search tool
await createDocsSearchTool(server);
// Reset fetch mock
mockFetch.mockReset();
// Mock formatJson function
// Create a type for the helpers object to avoid read-only property error
type ServiceHelpers = typeof services.helpers;
const helpersObj: ServiceHelpers = {
formatJson: jest.fn().mockImplementation((data: unknown) => JSON.stringify(data)) as unknown as (obj: unknown) => string,
parseEther: jest.fn() as unknown as (ether: string, unit?: "wei" | "gwei") => bigint,
validateAddress: jest.fn() as unknown as (address: string) => `0x${string}`
};
// Use Object.assign to avoid the read-only property error
Object.assign(services, { helpers: helpersObj });
});
afterEach(() => {
jest.clearAllMocks();
});
// Helper function to check if a tool exists
const checkToolExists = (toolName: string) => {
const tool = registeredTools.get(toolName);
if (!tool) {
console.log(`Tool '${toolName}' not found. Available tools: ${Array.from(registeredTools.keys()).join(', ')}`);
}
return tool;
};
// Group 1: Network Information Tools
describe('Network Information Tools', () => {
test('get_chain_info - success path', async () => {
const tool = checkToolExists('get_chain_info');
if (!tool) return;
const response = await testToolSuccess(tool, { network: mockNetwork });
expect(services.getChainId).toHaveBeenCalledWith(mockNetwork);
expect(services.getBlockNumber).toHaveBeenCalledWith(mockNetwork);
expect(getRpcUrl).toHaveBeenCalledWith(mockNetwork);
verifySuccessResponse(response, {
network: mockNetwork,
chainId: 1,
blockNumber: '12345678',
rpcUrl: 'https://rpc.sei.io'
});
});
test('get_chain_info - error path', async () => {
const tool = checkToolExists('get_chain_info');
if (!tool) return;
const response = await testToolError(tool, { network: mockNetwork }, services.getChainId as jest.Mock, mockError);
verifyErrorResponse(response, 'Error fetching chain info: Test error');
});
test('get_chain_info - success path with default network', async () => {
const tool = checkToolExists('get_chain_info');
if (!tool) return;
// Call without specifying network to test default parameter branch
const response = await testToolSuccess(tool, {});
expect(services.getChainId).toHaveBeenCalledWith('sei'); // DEFAULT_NETWORK is mocked as 'sei'
expect(services.getBlockNumber).toHaveBeenCalledWith('sei');
expect(getRpcUrl).toHaveBeenCalledWith('sei');
verifySuccessResponse(response, {
network: 'sei', // DEFAULT_NETWORK
chainId: 1,
blockNumber: '12345678',
rpcUrl: 'https://rpc.sei.io'
});
});
test('get_chain_info - error with non-Error object', async () => {
const tool = checkToolExists('get_chain_info');
if (!tool) return;
// Test the branch where error is not an Error instance
const nonErrorObject = "This is a string error";
(services.getChainId as jest.Mock).mockImplementationOnce(() => {
throw nonErrorObject;
});
const response = await tool.handler({ network: mockNetwork });
expect(response).toHaveProperty('isError', true);
expect(response.content[0].text).toContain('Error fetching chain info: This is a string error');
});
test('get_chain_info - error with blockNumber', async () => {
const tool = checkToolExists('get_chain_info');
if (!tool) return;
// Let getChainId succeed but getBlockNumber fail
(services.getChainId as jest.Mock).mockResolvedValueOnce(1);
(services.getBlockNumber as jest.Mock).mockImplementationOnce(() => {
throw mockError;
});
const response = await tool.handler({ network: mockNetwork });
expect(response).toHaveProperty('isError', true);
expect(response.content[0].text).toContain('Error fetching chain info: Test error');
});
test('get_supported_networks - success path', async () => {
const tool = checkToolExists('get_supported_networks');
if (!tool) return;
const response = await testToolSuccess(tool, {});
expect(getSupportedNetworks).toHaveBeenCalled();
verifySuccessResponse(response, {
supportedNetworks: ['sei', 'sei-testnet']
});
});
test('get_supported_networks - error path', async () => {
const tool = checkToolExists('get_supported_networks');
if (!tool) return;
const response = await testToolError(tool, {}, getSupportedNetworks as jest.Mock, mockError);
verifyErrorResponse(response, 'Error fetching supported networks: Test error');
});
test('get_supported_networks - error with non-Error object', async () => {
const tool = checkToolExists('get_supported_networks');
if (!tool) return;
// Test the branch where error is not an Error instance
const nonErrorObject = "This is a string error";
(getSupportedNetworks as jest.Mock).mockImplementationOnce(() => {
throw nonErrorObject;
});
const response = await tool.handler({});
expect(response).toHaveProperty('isError', true);
expect(response.content[0].text).toContain('Error fetching supported networks: This is a string error');
});
});
// Group 2: Block Tools
describe('Block Tools', () => {
const mockBlock = {
number: 12345678,
hash: '0xabcdef',
timestamp: 1234567890
};
beforeEach(() => {
(services.getBlockByNumber as jest.Mock).mockResolvedValue(mockBlock as never);
(services.getLatestBlock as jest.Mock).mockResolvedValue(mockBlock as never);
});
test('get_block_by_number - success path', async () => {
const tool = checkToolExists('get_block_by_number');
if (!tool) return;
const blockNumber = 12345678;
const response = await testToolSuccess(tool, { blockNumber, network: mockNetwork });
expect(services.getBlockByNumber).toHaveBeenCalledWith(blockNumber, mockNetwork);
expect(services.helpers.formatJson).toHaveBeenCalledWith(mockBlock);
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_block_by_number - error path', async () => {
const tool = checkToolExists('get_block_by_number');
if (!tool) return;
const blockNumber = 12345678;
const response = await testToolError(tool, { blockNumber, network: mockNetwork }, services.getBlockByNumber as jest.Mock, mockError);
verifyErrorResponse(response, `Error fetching block ${blockNumber}: Test error`);
});
test('get_block_by_number - success path with default network', async () => {
const tool = checkToolExists('get_block_by_number');
if (!tool) return;
const blockNumber = 12345678;
const response = await testToolSuccess(tool, { blockNumber });
expect(services.getBlockByNumber).toHaveBeenCalledWith(blockNumber, 'sei'); // DEFAULT_NETWORK
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_block_by_number - error with non-Error object', async () => {
const tool = checkToolExists('get_block_by_number');
if (!tool) return;
const blockNumber = 12345678;
const nonErrorObject = "This is a string error";
(services.getBlockByNumber as jest.Mock).mockImplementationOnce(() => {
throw nonErrorObject;
});
const response = await tool.handler({ blockNumber, network: mockNetwork });
expect(response).toHaveProperty('isError', true);
expect(response.content[0].text).toContain(`Error fetching block ${blockNumber}: This is a string error`);
});
test('get_latest_block - success path', async () => {
const tool = checkToolExists('get_latest_block');
if (!tool) return;
const response = await testToolSuccess(tool, { network: mockNetwork });
expect(services.getLatestBlock).toHaveBeenCalledWith(mockNetwork);
expect(services.helpers.formatJson).toHaveBeenCalledWith(mockBlock);
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_latest_block - error path', async () => {
const tool = checkToolExists('get_latest_block');
if (!tool) return;
const response = await testToolError(tool, { network: mockNetwork }, services.getLatestBlock as jest.Mock, mockError);
verifyErrorResponse(response, 'Error fetching latest block: Test error');
});
test('get_latest_block - success path with default network', async () => {
const tool = checkToolExists('get_latest_block');
if (!tool) return;
const response = await testToolSuccess(tool, {});
expect(services.getLatestBlock).toHaveBeenCalledWith('sei'); // DEFAULT_NETWORK
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_latest_block - error with non-Error object', async () => {
const tool = checkToolExists('get_latest_block');
if (!tool) return;
const nonErrorObject = "This is a string error";
(services.getLatestBlock as jest.Mock).mockImplementationOnce(() => {
throw nonErrorObject;
});
const response = await tool.handler({ network: mockNetwork });
expect(response).toHaveProperty('isError', true);
expect(response.content[0].text).toContain('Error fetching latest block: This is a string error');
});
});
// Group 3: Balance Tools
describe('Balance Tools', () => {
const { mockBalance, mockTokenInfo, mockNftInfo } = setupBalanceMocks();
beforeEach(() => {
(services.getBalance as jest.Mock).mockResolvedValue({ wei: BigInt(100), sei: '0.0000000000000001' } as never);
(services.getERC20Balance as jest.Mock).mockResolvedValue({
raw: BigInt(100),
formatted: '0.0000000000000001',
token: { symbol: 'TEST', decimals: 18 }
} as never);
(services.getERC721Balance as jest.Mock).mockResolvedValue(BigInt(2) as never);
(services.getERC1155Balance as jest.Mock).mockResolvedValue(BigInt(5) as never);
(services.getERC20TokenInfo as jest.Mock).mockResolvedValue(mockTokenInfo as never);
(services.getERC721TokenMetadata as jest.Mock).mockResolvedValue(mockNftInfo as never);
});
test('get_balance - success path', async () => {
const tool = checkToolExists('get_balance');
if (!tool) return;
const response = await testToolSuccess(tool, { address: mockAddress, network: mockNetwork });
expect(services.getBalance).toHaveBeenCalledWith(mockAddress, mockNetwork);
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_balance - error path', async () => {
const tool = checkToolExists('get_balance');
if (!tool) return;
const response = await testToolError(tool, { address: mockAddress, network: mockNetwork }, services.getBalance as jest.Mock, mockError);
verifyErrorResponse(response, 'Error fetching balance: Test error');
});
test('get_balance - success path with default network', async () => {
const tool = checkToolExists('get_balance');
if (!tool) return;
const response = await testToolSuccess(tool, { address: mockAddress });
expect(services.getBalance).toHaveBeenCalledWith(mockAddress, 'sei'); // DEFAULT_NETWORK
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_balance - error with non-Error object', async () => {
const tool = checkToolExists('get_balance');
if (!tool) return;
const nonErrorObject = "This is a string error";
(services.getBalance as jest.Mock).mockImplementationOnce(() => {
throw nonErrorObject;
});
const response = await tool.handler({ address: mockAddress, network: mockNetwork });
expect(response).toHaveProperty('isError', true);
expect(response.content[0].text).toContain('Error fetching balance: This is a string error');
});
test('get_erc20_balance - success path', async () => {
const tool = checkToolExists('get_erc20_balance');
if (!tool) return;
const address = '0x1234567890123456789012345678901234567890';
const tokenAddress = '0x0987654321098765432109876543210987654321';
const response = await testToolSuccess(tool, { tokenAddress, address, network: mockNetwork });
expect(services.getERC20Balance).toHaveBeenCalled();
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
expect(response.content[0].text).toContain('0.0000000000000001');
expect(response.content[0].text).toContain('raw');
expect(response.content[0].text).toContain('formatted');
expect(response.content[0].text).toContain('decimals');
});
test('get_erc20_balance - error path', async () => {
const tool = checkToolExists('get_erc20_balance');
if (!tool) return;
const address = '0x1234567890123456789012345678901234567890';
const tokenAddress = '0x0987654321098765432109876543210987654321';
const response = await testToolError(tool, { tokenAddress, address, network: mockNetwork }, services.getERC20Balance as jest.Mock, mockError);
verifyErrorResponse(response, 'Error fetching ERC20 balance for 0x1234567890123456789012345678901234567890: Test error');
});
test('get_erc20_balance - success path with default network', async () => {
const tool = checkToolExists('get_erc20_balance');
if (!tool) return;
const address = '0x1234567890123456789012345678901234567890';
const tokenAddress = '0x0987654321098765432109876543210987654321';
// Create a mock balance response
const mockBalance = {
raw: BigInt('1000000000000000000'),
formatted: '1.0',
token: {
decimals: 18,
symbol: 'TEST',
name: 'Test Token'
}
};
// Mock the getERC20Balance function to return a specific value
(services.getERC20Balance as jest.Mock).mockImplementationOnce((tokenAddress, address, network) => {
return Promise.resolve(mockBalance);
});
const params = {
tokenAddress,
address
};
const response = await tool.handler(params);
expect(services.getERC20Balance).toHaveBeenCalledWith(
tokenAddress,
address,
'sei' // DEFAULT_NETWORK
);
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
expect(JSON.parse(response.content[0].text)).toHaveProperty('balance');
});
test('get_erc20_balance - error with non-Error object', async () => {
const tool = checkToolExists('get_erc20_balance');
if (!tool) return;
const address = '0x1234567890123456789012345678901234567890';
const tokenAddress = '0x0987654321098765432109876543210987654321';
const nonErrorObject = "This is a string error";
(services.getERC20Balance as jest.Mock).mockImplementationOnce(() => {
throw nonErrorObject;
});
const response = await tool.handler({ tokenAddress, address, network: mockNetwork });
expect(response).toHaveProperty('isError', true);
expect(response.content[0].text).toContain(`Error fetching ERC20 balance for ${address}: This is a string error`);
});
test('get_token_balance - success path', async () => {
const tool = checkToolExists('get_token_balance');
if (!tool) return;
const response = await testToolSuccess(tool, { tokenAddress: mockTokenAddress, ownerAddress: mockAddress, network: mockNetwork });
expect(services.getERC20Balance).toHaveBeenCalledWith(mockTokenAddress, mockAddress, mockNetwork);
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_token_balance - error path', async () => {
const tool = checkToolExists('get_token_balance');
if (!tool) return;
const response = await testToolError(
tool,
{ address: mockAddress, tokenAddress: mockTokenAddress, network: mockNetwork },
services.getERC20Balance as jest.Mock,
mockError
);
verifyErrorResponse(response, 'Error fetching token balance: Test error');
});
test('get_token_balance - success path with default network', async () => {
const tool = checkToolExists('get_token_balance');
if (!tool) return;
const response = await testToolSuccess(tool, { ownerAddress: mockAddress, tokenAddress: mockTokenAddress });
expect(services.getERC20Balance).toHaveBeenCalledWith(mockTokenAddress, mockAddress, 'sei'); // DEFAULT_NETWORK
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_token_balance - error with non-Error object', async () => {
const tool = checkToolExists('get_token_balance');
if (!tool) return;
const nonErrorObject = "This is a string error";
(services.getERC20Balance as jest.Mock).mockImplementationOnce(() => {
throw nonErrorObject;
});
const response = await tool.handler({ address: mockAddress, tokenAddress: mockTokenAddress, network: mockNetwork });
expect(response).toHaveProperty('isError', true);
expect(response.content[0].text).toContain('Error fetching token balance: This is a string error');
});
test('get_nft_balance - success path', async () => {
const tool = checkToolExists('get_nft_balance');
if (!tool) return;
const response = await testToolSuccess(tool, { tokenAddress: mockTokenAddress, ownerAddress: mockAddress, network: mockNetwork });
expect(services.getERC721Balance).toHaveBeenCalledWith(mockTokenAddress, mockAddress, mockNetwork);
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_nft_balance - error path', async () => {
const tool = checkToolExists('get_nft_balance');
if (!tool) return;
const response = await testToolError(tool, { tokenAddress: mockTokenAddress, ownerAddress: mockAddress, network: mockNetwork }, services.getERC721Balance as jest.Mock, mockError);
verifyErrorResponse(response, 'Error fetching NFT balance: Test error');
});
test('get_nft_balance - success path with default network', async () => {
const tool = checkToolExists('get_nft_balance');
if (!tool) return;
const response = await testToolSuccess(tool, { tokenAddress: mockTokenAddress, ownerAddress: mockAddress });
expect(services.getERC721Balance).toHaveBeenCalledWith(mockTokenAddress, mockAddress, 'sei'); // DEFAULT_NETWORK
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_nft_balance - error with non-Error object', async () => {
const tool = checkToolExists('get_nft_balance');
if (!tool) return;
const nonErrorObject = "This is a string error";
(services.getERC721Balance as jest.Mock).mockImplementationOnce(() => {
throw nonErrorObject;
});
const response = await tool.handler({ tokenAddress: mockTokenAddress, ownerAddress: mockAddress, network: mockNetwork });
expect(response).toHaveProperty('isError', true);
expect(response.content[0].text).toContain('Error fetching NFT balance: This is a string error');
});
test('get_erc1155_balance - success path', async () => {
const tool = checkToolExists('get_erc1155_balance');
if (!tool) return;
const response = await testToolSuccess(tool, { tokenAddress: mockTokenAddress, tokenId: mockTokenId, ownerAddress: mockAddress, network: mockNetwork });
expect(services.getERC1155Balance).toHaveBeenCalledWith(mockTokenAddress, mockAddress, BigInt(mockTokenId), mockNetwork);
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_erc1155_balance - error path', async () => {
const tool = checkToolExists('get_erc1155_balance');
if (!tool) return;
const address = '0x1234567890123456789012345678901234567890';
const tokenAddress = '0x0987654321098765432109876543210987654321';
const tokenId = '123';
const response = await testToolError(tool, { tokenAddress, tokenId, ownerAddress: address, network: mockNetwork }, services.getERC1155Balance as jest.Mock, mockError);
verifyErrorResponse(response, 'Error fetching ERC1155 token balance: Test error');
});
test('get_erc1155_balance - error path with invalid token id', async () => {
const tool = checkToolExists('get_erc1155_balance');
if (!tool) return;
const address = '0x1234567890123456789012345678901234567890';
const tokenAddress = '0x0987654321098765432109876543210987654321';
const tokenId = 'abc';
const response = await tool.handler({ tokenAddress, tokenId, ownerAddress: address, network: mockNetwork });
verifyErrorResponse(response, 'Error fetching ERC1155 token balance: Cannot convert abc to a BigInt');
});
test('get_erc1155_balance - success path with default network', async () => {
const tool = checkToolExists('get_erc1155_balance');
if (!tool) return;
const response = await testToolSuccess(tool, { tokenAddress: mockTokenAddress, tokenId: mockTokenId, ownerAddress: mockAddress });
expect(services.getERC1155Balance).toHaveBeenCalledWith(mockTokenAddress, mockAddress, BigInt(mockTokenId), 'sei'); // DEFAULT_NETWORK
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_erc1155_balance - error with non-Error object', async () => {
const tool = checkToolExists('get_erc1155_balance');
if (!tool) return;
const nonErrorObject = "This is a string error";
(services.getERC1155Balance as jest.Mock).mockImplementationOnce(() => {
throw nonErrorObject;
});
const response = await tool.handler({ tokenAddress: mockTokenAddress, tokenId: mockTokenId, ownerAddress: mockAddress, network: mockNetwork });
expect(response).toHaveProperty('isError', true);
expect(response.content[0].text).toContain('Error fetching ERC1155 token balance: This is a string error');
});
test('get_token_balance_erc20 - success path', async () => {
const tool = checkToolExists('get_token_balance_erc20');
if (!tool) return;
const address = '0x1234567890123456789012345678901234567890';
const tokenAddress = '0x0987654321098765432109876543210987654321';
const response = await testToolSuccess(tool, { tokenAddress, address, network: mockNetwork });
expect(services.getERC20Balance).toHaveBeenCalled();
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
expect(response.content[0].text).toContain('0.0000000000000001');
});
test('get_token_balance_erc20 - error path', async () => {
const tool = checkToolExists('get_token_balance_erc20');
if (!tool) return;
const address = '0x1234567890123456789012345678901234567890';
const tokenAddress = '0x0987654321098765432109876543210987654321';
const response = await testToolError(tool, { tokenAddress, address, network: mockNetwork }, services.getERC20Balance as jest.Mock, mockError);
verifyErrorResponse(response, 'Error fetching ERC20 balance for 0x1234567890123456789012345678901234567890: Test error');
});
test('get_token_balance_erc20 - success path with default network', async () => {
const tool = checkToolExists('get_token_balance_erc20');
if (!tool) return;
const address = '0x1234567890123456789012345678901234567890';
const tokenAddress = '0x0987654321098765432109876543210987654321';
// Create a mock balance response
const mockBalance = {
raw: BigInt('1000000000000000000'),
formatted: '1.0',
token: {
decimals: 18,
symbol: 'TEST',
name: 'Test Token'
}
};
// Mock the getERC20Balance function to return a specific value
(services.getERC20Balance as jest.Mock).mockImplementationOnce((tokenAddress, address, network) => {
return Promise.resolve(mockBalance);
});
const params = {
tokenAddress,
address
};
const response = await tool.handler(params);
expect(services.getERC20Balance).toHaveBeenCalledWith(
tokenAddress,
address,
'sei' // DEFAULT_NETWORK
);
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
expect(JSON.parse(response.content[0].text)).toHaveProperty('balance');
});
test('get_token_balance_erc20 - error with non-Error object', async () => {
const tool = checkToolExists('get_token_balance_erc20');
if (!tool) return;
const address = '0x1234567890123456789012345678901234567890';
const tokenAddress = '0x0987654321098765432109876543210987654321';
const nonErrorObject = "This is a string error";
(services.getERC20Balance as jest.Mock).mockImplementationOnce(() => {
throw nonErrorObject;
});
const response = await tool.handler({ tokenAddress, address, network: mockNetwork });
expect(response).toHaveProperty('isError', true);
expect(response.content[0].text).toContain(`Error fetching ERC20 balance for ${address}: This is a string error`);
});
});
// Verify all expected tools are registered
describe('Wallet Tools', () => {
describe('get_address_from_private_key', () => {
test('get_address_from_private_key - success path', async () => {
const tool = checkToolExists('get_address_from_private_key');
if (!tool) return;
const mockPrivateKey = '0x1234567890abcdef';
const mockAddress = '0xabcdef1234567890';
// Mock the config function
(getPrivateKeyAsHex as jest.Mock).mockReturnValue(mockPrivateKey);
// Mock the service function
(services.getAddressFromProvider as jest.Mock).mockResolvedValue(mockAddress);
const response = await testToolSuccess(tool, {});
expect(services.getAddressFromProvider).toHaveBeenCalled();
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
const parsedResponse = JSON.parse(response.content[0].text);
expect(parsedResponse).toEqual({ address: mockAddress });
});
test('get_address_from_private_key - wallet not available', async () => {
const tool = checkToolExists('get_address_from_private_key');
if (!tool) return;
// Mock wallet provider to be unavailable
const mockWalletProvider = {
isAvailable: jest.fn().mockReturnValue(false),
getName: jest.fn().mockReturnValue('private-key')
};
(getWalletProvider as jest.Mock).mockReturnValue(mockWalletProvider);
const response = await testToolSuccess(tool, {});
verifyErrorResponse(response, "Error: Wallet provider 'private-key' is not available");
});
test('get_address_from_private_key - error path', async () => {
const tool = checkToolExists('get_address_from_private_key');
if (!tool) return;
// Mock wallet provider as available
const mockWalletProvider = {
isAvailable: jest.fn().mockReturnValue(true),
getName: jest.fn().mockReturnValue('private-key')
};
(getWalletProvider as jest.Mock).mockReturnValue(mockWalletProvider);
const response = await testToolError(tool, {}, services.getAddressFromProvider as jest.Mock, mockError);
verifyErrorResponse(response, 'Error deriving address from private key: Test error');
});
test('get_address_from_private_key - error with non-Error object', async () => {
const tool = checkToolExists('get_address_from_private_key');
if (!tool) return;
// Mock wallet provider as available
const mockWalletProvider = {
isAvailable: jest.fn().mockReturnValue(true),
getName: jest.fn().mockReturnValue('private-key')
};
(getWalletProvider as jest.Mock).mockReturnValue(mockWalletProvider);
// Mock the service function to throw a non-Error object
const nonErrorObject = "This is a string error";
(services.getAddressFromProvider as jest.Mock).mockImplementationOnce(() => {
throw nonErrorObject;
});
const response = await tool.handler({});
expect(response).toHaveProperty('isError', true);
expect(response.content[0].text).toContain('Error deriving address from private key: This is a string error');
});
});
// Test disabled wallet scenario
test('should handle disabled wallet mode', () => {
// Create a new server for this test
const mockServerResult = createMockServer();
const disabledWalletServer = mockServerResult.server;
const disabledWalletTools = mockServerResult.registeredTools;
// Mock wallet as disabled
(isWalletEnabled as jest.Mock).mockReturnValue(false);
// Mock console.error to verify it's called
const consoleSpy = jest.spyOn(console, 'error').mockImplementation();
// Register tools with disabled wallet
registerEVMTools(disabledWalletServer);
// Verify console.error was called with the expected message
expect(consoleSpy).toHaveBeenCalledWith('Wallet functionality is disabled. Wallet-dependent tools will not be available.');
// Verify wallet tools are not registered
expect(disabledWalletTools.has('get_address_from_private_key')).toBe(false);
expect(disabledWalletTools.has('transfer_sei')).toBe(false);
expect(disabledWalletTools.has('transfer_erc20')).toBe(false);
// Verify read-only tools are still registered
expect(disabledWalletTools.has('get_chain_info')).toBe(true);
expect(disabledWalletTools.has('get_balance')).toBe(true);
// Clean up
consoleSpy.mockRestore();
// Restore wallet enabled for other tests
(isWalletEnabled as jest.Mock).mockReturnValue(true);
});
// Verify all expected tools are registered
test('should register all expected tools', () => {
// Log the registered tools for debugging
console.log('Registered tools:', Array.from(registeredTools.keys()));
// Verify network information tools
expect(registeredTools.has('get_chain_info')).toBe(true);
expect(registeredTools.has('get_supported_networks')).toBe(true);
// Verify block tools
expect(registeredTools.has('get_block_by_number')).toBe(true);
expect(registeredTools.has('get_latest_block')).toBe(true);
// Verify balance tools
expect(registeredTools.has('get_balance')).toBe(true);
expect(registeredTools.has('get_token_balance')).toBe(true);
expect(registeredTools.has('get_nft_balance')).toBe(true);
expect(registeredTools.has('get_erc1155_balance')).toBe(true);
// Verify wallet tools
expect(registeredTools.has('get_address_from_private_key')).toBe(true);
// Verify transaction tools
expect(registeredTools.has('get_transaction')).toBe(true);
expect(registeredTools.has('get_transaction_receipt')).toBe(true);
// Verify transfer tools
expect(registeredTools.has('transfer_sei')).toBe(true);
expect(registeredTools.has('transfer_token')).toBe(true);
expect(registeredTools.has('transfer_nft')).toBe(true);
// Verify token information tools
expect(registeredTools.has('get_token_info')).toBe(true);
expect(registeredTools.has('get_nft_info')).toBe(true);
// Verify contract interaction tools
expect(registeredTools.has('read_contract')).toBe(true);
expect(registeredTools.has('write_contract')).toBe(true);
expect(registeredTools.has('deploy_contract')).toBe(true);
});
// Group 4: Transaction Tools
describe('Transaction Tools', () => {
const { mockHash, mockTransaction, mockTransactionReceipt } = setupTransactionMocks();
beforeEach(() => {
(services.getTransaction as jest.Mock).mockResolvedValue(mockTransaction as never);
(services.getTransactionReceipt as jest.Mock).mockResolvedValue(mockTransactionReceipt as never);
(services.estimateGas as jest.Mock).mockResolvedValue(BigInt(21000) as never);
});
test('get_transaction - success path', async () => {
const tool = checkToolExists('get_transaction');
if (!tool) return;
const txHash = '0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef';
const response = await testToolSuccess(tool, { txHash, network: mockNetwork });
expect(services.getTransaction).toHaveBeenCalledWith(txHash, mockNetwork);
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_transaction - error path', async () => {
const tool = checkToolExists('get_transaction');
if (!tool) return;
const txHash = '0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef';
const response = await testToolError(tool, { txHash, network: mockNetwork }, services.getTransaction as jest.Mock, mockError);
verifyErrorResponse(response, `Error fetching transaction ${txHash}: Test error`);
});
test('get_transaction - success path with default network', async () => {
const tool = checkToolExists('get_transaction');
if (!tool) return;
const txHash = '0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef';
const response = await testToolSuccess(tool, { txHash });
expect(services.getTransaction).toHaveBeenCalledWith(txHash, 'sei'); // DEFAULT_NETWORK
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_transaction - error with non-Error object', async () => {
const tool = checkToolExists('get_transaction');
if (!tool) return;
const txHash = '0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef';
const nonErrorObject = "This is a string error";
(services.getTransaction as jest.Mock).mockImplementationOnce(() => {
throw nonErrorObject;
});
const response = await tool.handler({ txHash, network: mockNetwork });
expect(response).toHaveProperty('isError', true);
expect(response.content[0].text).toContain(`Error fetching transaction ${txHash}: This is a string error`);
});
test('get_transaction_receipt - success path', async () => {
const tool = checkToolExists('get_transaction_receipt');
if (!tool) return;
const txHash = '0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef';
const response = await testToolSuccess(tool, { txHash, network: mockNetwork });
expect(services.getTransactionReceipt).toHaveBeenCalledWith(txHash, mockNetwork);
expect(response).toHaveProperty('content');
expect(response.content[0]).toHaveProperty('type', 'text');
});
test('get_transaction_receipt - error path', async () => {
const tool = checkToolExists('get_transaction_receipt');
if (!tool) return;
const txHash = '0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef';
const response = await testToolError(tool, { txHash, network: mockNetwork }, services.getTransactionReceipt as jest.Mock, mockError);
verifyErrorResponse(response, `Error fetching transaction receipt ${txHash}: Test error`);
});