This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
transfer.test.ts
290 lines (276 loc) · 8.39 KB
/
transfer.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
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
import {
INSUFFICIENT_FUNDS_MESSAGE,
INVALID_VAULT_LOCK_LENGTH_MESSAGE,
MAX_TOKEN_LOCK_BLOCK_LENGTH,
MIN_TOKEN_LOCK_BLOCK_LENGTH,
} from './constants';
import { safeTransfer, safeVaultedTransfer } from './transfer';
import { BlockHeight, RegistryVaults, VaultData, mIOToken } from './types';
describe('safeTransfer function', () => {
it('should throw an error if fromAddress is the same as toAddress', () => {
expect(() => {
safeTransfer({
balances: { foo: 1, bar: 2 },
qty: new mIOToken(1),
fromAddress: 'foo',
toAddress: 'foo',
});
}).toThrowError('Invalid target specified');
});
it.each([
[{ foo: 1, bar: 2 }, 'baz'],
[{ foo: Number.NaN, bar: 2 }, 'foo'],
[{ foo: Math.sqrt(-1), bar: 2 }, 'foo'],
])(
"should throw an error if balances %p can't be used to retrieve fromAddress %s",
(balances, fromAddress) => {
expect(() => {
safeTransfer({
balances,
qty: new mIOToken(1),
fromAddress,
toAddress: 'biz',
});
}).toThrowError('Caller balance is not defined!');
},
);
it('should throw an error if fromAddress does not have enough balance', () => {
expect(() => {
safeTransfer({
balances: { foo: 1, bar: 2 },
qty: new mIOToken(2),
fromAddress: 'foo',
toAddress: 'bar',
});
}).toThrowError('Insufficient funds for this transaction.');
});
it('should increment toAddress balance, and decrement fromAddress, by qty in balances object', () => {
const balances = { foo: 2, bar: 2 };
const fromAddress = 'foo';
const toAddress = 'bar';
safeTransfer({
balances,
qty: new mIOToken(1),
fromAddress,
toAddress,
});
expect(balances).toEqual({ foo: 1, bar: 3 });
});
it('should create and increment toAddress balance, and decrement fromAddress, by qty in balances object', () => {
const balances = { foo: 2 };
const fromAddress = 'foo';
const toAddress = 'bar';
safeTransfer({
balances,
qty: new mIOToken(1),
fromAddress,
toAddress,
});
expect(balances).toEqual({ foo: 1, bar: 1 });
});
it('should increment toAddress balance in balances object by qty and remove fully decremented fromAddress balance', () => {
const balances = { foo: 1, bar: 2 };
const fromAddress = 'foo';
const toAddress = 'bar';
safeTransfer({
balances,
qty: new mIOToken(1),
fromAddress,
toAddress,
});
expect(balances).toEqual({ bar: 3 });
});
});
describe('safeVaultedTransfer function', () => {
it.each([
[{ foo: 1, bar: 2 }, 'baz'],
[{ foo: Number.NaN, bar: 2 }, 'foo'],
[{ foo: Math.sqrt(-1), bar: 2 }, 'foo'],
])(
"should throw an error if balances %p can't be used to retrieve fromAddress %s",
(balances, fromAddress) => {
expect(() => {
safeVaultedTransfer({
balances,
vaults: {},
qty: new mIOToken(1),
fromAddress,
id: 'new-vaulted-transfer',
toAddress: 'biz',
lockLength: new BlockHeight(MIN_TOKEN_LOCK_BLOCK_LENGTH),
startHeight: new BlockHeight(0),
});
}).toThrowError(INSUFFICIENT_FUNDS_MESSAGE);
},
);
it('should throw an error if fromAddress does not have enough balance', () => {
expect(() => {
safeVaultedTransfer({
balances: { foo: 0 },
vaults: {},
qty: new mIOToken(1),
fromAddress: 'foo',
id: 'new-vaulted-transfer',
toAddress: 'biz',
lockLength: new BlockHeight(MIN_TOKEN_LOCK_BLOCK_LENGTH),
startHeight: new BlockHeight(0),
});
}).toThrowError(INSUFFICIENT_FUNDS_MESSAGE);
});
it.each([0, MAX_TOKEN_LOCK_BLOCK_LENGTH + 1])(
'should throw an error if lock length is invalid %s',
(lockLength) => {
expect(() => {
const balances = { foo: 2, bar: 2 };
safeVaultedTransfer({
balances,
vaults: {},
qty: new mIOToken(1),
fromAddress: 'foo',
id: 'new-vaulted-transfer',
toAddress: 'biz',
lockLength: new BlockHeight(lockLength),
startHeight: new BlockHeight(0),
});
}).toThrowError(INVALID_VAULT_LOCK_LENGTH_MESSAGE);
},
);
it('should create vault in toAddress with qty and lock length, and decrement fromAddress, by qty in balances object', () => {
const balances = { foo: 2, bar: 2 };
const vaults: RegistryVaults = {};
const qty = 1;
const fromAddress = 'foo';
const toAddress = 'bar';
const expectedNewVaultData: VaultData = {
balance: qty,
start: 0,
end: MIN_TOKEN_LOCK_BLOCK_LENGTH,
};
safeVaultedTransfer({
balances,
vaults: vaults,
qty: new mIOToken(1),
fromAddress,
id: 'new-vaulted-transfer',
toAddress,
lockLength: new BlockHeight(MIN_TOKEN_LOCK_BLOCK_LENGTH),
startHeight: new BlockHeight(0),
});
expect(balances).toEqual({ foo: 1, bar: 2 });
expect(vaults[toAddress]['new-vaulted-transfer']).toEqual(
expectedNewVaultData,
);
});
it('should create a second vault in toAddress with qty and lock length, and decrement fromAddress, by qty in balances object', () => {
const balances = { foo: 2, bar: 2 };
const qty = 1;
const fromAddress = 'foo';
const toAddress = 'bar';
const vaults: RegistryVaults = {
[toAddress]: {
'existing-vault-id': {
balance: 1,
end: 100,
start: 0,
},
},
};
const expectedNewVaultData: VaultData = {
balance: qty,
start: 0,
end: MIN_TOKEN_LOCK_BLOCK_LENGTH,
};
safeVaultedTransfer({
balances,
qty: new mIOToken(1),
fromAddress,
toAddress,
vaults,
lockLength: new BlockHeight(MIN_TOKEN_LOCK_BLOCK_LENGTH),
startHeight: new BlockHeight(0),
id: 'new-vaulted-transfer',
});
expect(balances).toEqual({ foo: 1, bar: 2 });
expect(vaults[toAddress]['new-vaulted-transfer']).toEqual(
expectedNewVaultData,
);
});
it('should create vault in toAddress with qty and lock length and decrement balance of fromAddress', () => {
const balances = { foo: 1, bar: 2 };
const vaults: RegistryVaults = {};
const qty = 1;
const fromAddress = 'foo';
const toAddress = 'bar';
safeVaultedTransfer({
balances,
qty: new mIOToken(1),
fromAddress,
toAddress,
vaults,
lockLength: new BlockHeight(MIN_TOKEN_LOCK_BLOCK_LENGTH),
startHeight: new BlockHeight(0),
id: 'new-vaulted-transfer',
});
const expectedNewVaultData: VaultData = {
balance: qty,
start: 0,
end: MIN_TOKEN_LOCK_BLOCK_LENGTH,
};
expect(balances).toEqual({ bar: 2 });
expect(vaults[toAddress]['new-vaulted-transfer']).toEqual(
expectedNewVaultData,
);
});
it('should create vault in toAddress with qty and lock length, and decrement fromAddress, by qty in balances object when they are both the same', () => {
const balances = { foo: 2, bar: 2 };
const vaults: RegistryVaults = {};
const qty = 1;
const fromAddress = 'foo';
const toAddress = fromAddress;
safeVaultedTransfer({
balances,
qty: new mIOToken(1),
fromAddress,
toAddress,
vaults,
lockLength: new BlockHeight(MIN_TOKEN_LOCK_BLOCK_LENGTH),
startHeight: new BlockHeight(0),
id: 'new-vaulted-transfer',
});
const expectedNewVaultData: VaultData = {
balance: qty,
start: 0,
end: MIN_TOKEN_LOCK_BLOCK_LENGTH,
};
expect(balances).toEqual({ foo: 1, bar: 2 });
expect(vaults[toAddress]['new-vaulted-transfer']).toEqual(
expectedNewVaultData,
);
});
it('should error if the vault id for the toAddress already exists', () => {
const balances = { foo: 2, bar: 2 };
const fromAddress = 'foo';
const toAddress = 'bar';
const vaults: RegistryVaults = {
[toAddress]: {
'existing-vault-id': {
balance: 1,
end: 100,
start: 0,
},
},
};
expect(() =>
safeVaultedTransfer({
balances,
qty: new mIOToken(1),
fromAddress,
toAddress,
vaults,
lockLength: new BlockHeight(MIN_TOKEN_LOCK_BLOCK_LENGTH),
startHeight: new BlockHeight(0),
id: 'existing-vault-id',
}),
).toThrowError(`Vault with id 'existing-vault-id' already exists`);
});
});