forked from CodeChain-io/codechain-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTransaction.spec.ts
109 lines (102 loc) · 3.24 KB
/
Transaction.spec.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
import { SDK } from "..";
import {
CODECHAIN_NETWORK_ID,
mintAsset,
sendTransaction,
SERVER_URL
} from "./helper";
const sdk = new SDK({
server: SERVER_URL,
keyStoreType: "memory",
networkId: CODECHAIN_NETWORK_ID
});
const { H160, H256 } = SDK.Core.classes;
test("AssetMintTransaction fromJSONToTransaction", async () => {
const metadata = `{seed: ${Math.random()}}`;
const lockScriptHash = new H160("0000000000000000000000000000000000000000");
const supply = 100;
const approver = null;
const { hash } = await mintAsset({
metadata,
lockScriptHash,
supply,
approver
});
while (!(await sdk.rpc.chain.containsTransaction(hash))) {
await new Promise(resolve => setTimeout(resolve, 100));
}
const tx = await sdk.rpc.chain.getTransaction(hash);
if (tx == null) {
throw Error("Cannot get the tx");
}
expect(tx.unsigned.type()).toEqual("mintAsset");
expect(tx.unsigned.toJSON().action).toMatchObject({
metadata,
output: {
lockScriptHash: expect.anything(),
// FIXME: Buffer[]
parameters: expect.anything(),
// FIXME: Change it to U64
supply: expect.anything()
},
// FIXME: null or H160
approver: null
});
});
test("AssetTransferTransaction fromJSONToTransaction", async () => {
const shardId = 0;
const addressA = await sdk.key.createAssetAddress();
const addressB = await sdk.key.createAssetAddress();
const mintTx = sdk.core
.createAssetScheme({
shardId,
metadata: "metadata of non-permissioned asset",
supply: 100,
approver: undefined
})
.createMintTransaction({ recipient: addressA });
await sendTransaction({ transaction: mintTx });
const firstAsset = await sdk.rpc.chain.getAsset(
mintTx.tracker(),
0,
shardId
);
if (firstAsset == null) {
throw Error("Cannot get the first asset");
}
const transferTx = await sdk.core.createTransferAssetTransaction();
transferTx.addInputs(firstAsset);
transferTx.addOutputs({
assetType: firstAsset.assetType,
shardId,
recipient: addressB,
quantity: 100
});
await sdk.key.signTransactionInput(transferTx, 0);
const { hash } = await sendTransaction({
transaction: transferTx
});
const tx = await sdk.rpc.chain.getTransaction(hash);
if (tx == null) {
throw Error("Cannot get a tx");
}
// FIXME: Remove anythings when *Data fields are flattened
const expectedInput = expect.objectContaining({
prevOut: expect.objectContaining({
tracker: expect.any(H256),
index: expect.anything(),
assetType: expect.any(H160),
shardId: expect.anything(),
quantity: expect.anything()
}),
lockScript: expect.anything(),
unlockScript: expect.anything()
});
expect(tx.unsigned.type()).toEqual("transferAsset");
expect((tx.unsigned as any)._transaction).toMatchObject({
burns: [],
inputs: expect.arrayContaining([expectedInput]),
outputs: expect.anything(),
networkId: expect.anything()
});
});