-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathhub.test.ts
50 lines (45 loc) · 1.52 KB
/
hub.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
import { afterAll, beforeAll, beforeEach, describe, test } from 'bun:test';
import { TRANSFER_AMOUNTS } from '@/constants';
import { createChainManager } from '@/managers/Factory';
import { ChainSetup } from '@/setup';
import { HubToPolimecTransfer } from '@/transfers/HubToPolimec';
import { Accounts, Asset, AssetSourceRelation, Chains } from '@/types';
describe('Polkadot Hub -> Polimec Transfer Tests', () => {
const sourceManager = createChainManager(Chains.PolkadotHub);
const destManager = createChainManager(Chains.Polimec);
const transferTest = new HubToPolimecTransfer(sourceManager, destManager);
const chainSetup = new ChainSetup();
beforeAll(async () => await chainSetup.initialize());
beforeEach(() => {
sourceManager.connect();
destManager.connect();
});
afterAll(async () => await chainSetup.cleanup());
test(
'Send DOT to Polimec',
() =>
transferTest.testTransfer({
account: Accounts.ALICE,
assets: [[Asset.DOT, TRANSFER_AMOUNTS.NATIVE, AssetSourceRelation.Parent]],
}),
{ timeout: 25000 },
);
test(
'Send USDT to Polimec',
() =>
transferTest.testTransfer({
account: Accounts.ALICE,
assets: [[Asset.USDT, TRANSFER_AMOUNTS.TOKENS, AssetSourceRelation.Self]],
}),
{ timeout: 25000 },
);
test(
'Send USDC to Polimec',
() =>
transferTest.testTransfer({
account: Accounts.ALICE,
assets: [[Asset.USDC, TRANSFER_AMOUNTS.TOKENS, AssetSourceRelation.Self]],
}),
{ timeout: 25000 },
);
});