-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalidators.test.ts
More file actions
398 lines (345 loc) · 14 KB
/
Copy pathvalidators.test.ts
File metadata and controls
398 lines (345 loc) · 14 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
import { describe, it, expect } from 'vitest';
import { Validators } from './validators';
import { ValidationError } from './errors';
describe('Validators', () => {
describe('validateStellarAddress', () => {
it('should validate correct Stellar addresses', () => {
const result = Validators.validateStellarAddress(
'GBIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7GNU3'
);
expect(result.isValid).toBe(true);
expect(result.error).toBeUndefined();
});
it('should reject empty address', () => {
const result = Validators.validateStellarAddress('');
expect(result.isValid).toBe(false);
expect(result.error).toContain('non-empty string');
});
it('should reject non-string input', () => {
const result = Validators.validateStellarAddress(123 as any);
expect(result.isValid).toBe(false);
expect(result.error).toContain('non-empty string');
});
it('should reject address without G prefix', () => {
const result = Validators.validateStellarAddress(
'ABIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7GNU3'
);
expect(result.isValid).toBe(false);
expect(result.error).toContain("start with 'G'");
});
it('should reject address with wrong length', () => {
const result = Validators.validateStellarAddress('GABCD');
expect(result.isValid).toBe(false);
expect(result.error).toContain('56 characters');
});
it('should reject address with invalid characters', () => {
const result = Validators.validateStellarAddress(
'GBIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7GNU0'
);
expect(result.isValid).toBe(false);
expect(result.error).toContain('invalid base32 characters');
});
});
describe('validateAmount', () => {
it('should validate bigint amounts', () => {
const result = Validators.validateAmount(1000n);
expect(result.isValid).toBe(true);
});
it('should validate number amounts', () => {
const result = Validators.validateAmount(1000);
expect(result.isValid).toBe(true);
});
it('should validate string amounts', () => {
const result = Validators.validateAmount('1000');
expect(result.isValid).toBe(true);
});
it('should reject zero when not allowed', () => {
const result = Validators.validateAmount(0n);
expect(result.isValid).toBe(false);
expect(result.error).toContain('cannot be zero');
});
it('should allow zero when explicitly allowed', () => {
const result = Validators.validateAmount(0n, { allowZero: true });
expect(result.isValid).toBe(true);
});
it('should reject negative amounts', () => {
const result = Validators.validateAmount(-100n);
expect(result.isValid).toBe(false);
expect(result.error).toContain('cannot be negative');
});
it('should reject infinite numbers', () => {
const result = Validators.validateAmount(Infinity);
expect(result.isValid).toBe(false);
expect(result.error).toContain('finite integer number');
});
it('should reject invalid string amounts', () => {
const result = Validators.validateAmount('abc');
expect(result.isValid).toBe(false);
expect(result.error).toContain('valid integer string');
});
it('should enforce minimum', () => {
const result = Validators.validateAmount(50n, { min: 100n });
expect(result.isValid).toBe(false);
expect(result.error).toContain('at least 100');
});
it('should enforce maximum', () => {
const result = Validators.validateAmount(200n, { max: 100n });
expect(result.isValid).toBe(false);
expect(result.error).toContain('at most 100');
});
it('should accept amount within range', () => {
const result = Validators.validateAmount(50n, { min: 10n, max: 100n });
expect(result.isValid).toBe(true);
});
});
describe('validateDate', () => {
it('should validate Date objects', () => {
const futureDate = new Date(Date.now() + 86400000);
const result = Validators.validateDate(futureDate);
expect(result.isValid).toBe(true);
});
it('should validate timestamp numbers', () => {
const futureTimestamp = Date.now() + 86400000;
const result = Validators.validateDate(futureTimestamp);
expect(result.isValid).toBe(true);
});
it('should validate date strings', () => {
const futureDateString = new Date(Date.now() + 86400000).toISOString().slice(0, 10);
const result = Validators.validateDate(futureDateString);
expect(result.isValid).toBe(true);
});
it('should reject negative timestamps', () => {
const result = Validators.validateDate(-1);
expect(result.isValid).toBe(false);
expect(result.error).toContain('cannot be negative');
});
it('should reject invalid date strings', () => {
const result = Validators.validateDate('invalid-date');
expect(result.isValid).toBe(false);
expect(result.error).toContain('Invalid date string');
});
it('should reject past dates when not allowed', () => {
const pastDate = new Date(Date.now() - 86400000);
const result = Validators.validateDate(pastDate);
expect(result.isValid).toBe(false);
expect(result.error).toContain('cannot be in the past');
});
it('should allow past dates when explicitly allowed', () => {
const pastDate = new Date(Date.now() - 86400000);
const result = Validators.validateDate(pastDate, { allowPast: true });
expect(result.isValid).toBe(true);
});
it('should reject future dates when not allowed', () => {
const futureDate = new Date(Date.now() + 86400000);
const result = Validators.validateDate(futureDate, { allowFuture: false });
expect(result.isValid).toBe(false);
expect(result.error).toContain('cannot be in the future');
});
it('should enforce minimum date', () => {
const minDate = new Date('2025-01-01');
const earlierDate = new Date('2024-12-31');
const result = Validators.validateDate(earlierDate, { min: minDate, allowPast: true });
expect(result.isValid).toBe(false);
expect(result.error).toContain('after');
});
it('should enforce maximum date', () => {
const maxDate = new Date('2025-12-31');
const laterDate = new Date('2026-01-01');
const result = Validators.validateDate(laterDate, { max: maxDate, allowPast: true });
expect(result.isValid).toBe(false);
expect(result.error).toContain('before');
});
});
describe('validateDiscountRate', () => {
it('should validate valid discount rates', () => {
const result = Validators.validateDiscountRate(300);
expect(result.isValid).toBe(true);
});
it('should reject non-finite numbers', () => {
const result = Validators.validateDiscountRate(Infinity);
expect(result.isValid).toBe(false);
expect(result.error).toContain('finite integer number');
});
it('should reject zero when not allowed', () => {
const result = Validators.validateDiscountRate(0);
expect(result.isValid).toBe(false);
expect(result.error).toContain('cannot be zero');
});
it('should allow zero when explicitly allowed', () => {
const result = Validators.validateDiscountRate(0, { allowZero: true });
expect(result.isValid).toBe(true);
});
it('should reject negative rates', () => {
const result = Validators.validateDiscountRate(-100);
expect(result.isValid).toBe(false);
expect(result.error).toContain('cannot be negative');
});
it('should enforce minimum', () => {
const result = Validators.validateDiscountRate(50, { min: 100 });
expect(result.isValid).toBe(false);
expect(result.error).toContain('at least 100');
});
it('should enforce maximum', () => {
const result = Validators.validateDiscountRate(500, { max: 300 });
expect(result.isValid).toBe(false);
expect(result.error).toContain('at most 300');
});
it('should default max to 10000 (100%)', () => {
const result = Validators.validateDiscountRate(15000);
expect(result.isValid).toBe(false);
expect(result.error).toContain('cannot exceed 10000');
});
it('should accept rate within range', () => {
const result = Validators.validateDiscountRate(300, { min: 0, max: 10000 });
expect(result.isValid).toBe(true);
});
});
describe('validateComposite', () => {
it('should pass when all validators pass', () => {
const result = Validators.validateComposite('test', [
(_val) => ({ isValid: true }),
(_val) => ({ isValid: true }),
]);
expect(result.isValid).toBe(true);
});
it('should fail on first validation error', () => {
const result = Validators.validateComposite('test', [
(_val) => ({ isValid: false, error: 'First error' }),
(_val) => ({ isValid: false, error: 'Second error' }),
]);
expect(result.isValid).toBe(false);
expect(result.error).toBe('First error');
});
it('should handle empty validator array', () => {
const result = Validators.validateComposite('test', []);
expect(result.isValid).toBe(true);
});
});
describe('validateInvoiceSubmission', () => {
it('should validate valid invoice submission', () => {
const result = Validators.validateInvoiceSubmission({
freelancer: 'GBIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7GNU3',
payer: 'GFMT2BIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7',
amount: 1000n,
dueDate: Math.floor(Date.now() / 1000) + 86400,
discountRate: 300,
});
expect(result.isValid).toBe(true);
});
it('should reject invalid freelancer address', () => {
const result = Validators.validateInvoiceSubmission({
freelancer: 'invalid',
payer: 'GFMT2BIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7',
amount: 1000n,
dueDate: Math.floor(Date.now() / 1000) + 86400,
discountRate: 300,
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('freelancer');
});
it('should reject invalid payer address', () => {
const result = Validators.validateInvoiceSubmission({
freelancer: 'GBIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7GNU3',
payer: 'invalid',
amount: 1000n,
dueDate: Math.floor(Date.now() / 1000) + 86400,
discountRate: 300,
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('payer');
});
it('should reject zero amount', () => {
const result = Validators.validateInvoiceSubmission({
freelancer: 'GBIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7GNU3',
payer: 'GFMT2BIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7',
amount: 0n,
dueDate: Math.floor(Date.now() / 1000) + 86400,
discountRate: 300,
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('amount');
});
it('should reject past due date', () => {
const result = Validators.validateInvoiceSubmission({
freelancer: 'GBIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7GNU3',
payer: 'GFMT2BIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7',
amount: 1000n,
dueDate: Math.floor(Date.now() / 1000) - 86400,
discountRate: 300,
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('cannot be in the past');
});
it('should reject invalid discount rate', () => {
const result = Validators.validateInvoiceSubmission({
freelancer: 'GBIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7GNU3',
payer: 'GFMT2BIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7',
amount: 1000n,
dueDate: Math.floor(Date.now() / 1000) + 86400,
discountRate: 15000,
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('discountRate');
});
});
describe('validateFunding', () => {
it('should validate valid funding parameters', () => {
const result = Validators.validateFunding({
funder: 'GBIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7GNU3',
invoiceId: 1n,
});
expect(result.isValid).toBe(true);
});
it('should reject invalid funder address', () => {
const result = Validators.validateFunding({
funder: 'invalid',
invoiceId: 1n,
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('funder');
});
it('should reject negative invoice ID', () => {
const result = Validators.validateFunding({
funder: 'GBIPW5ELSZAHOV4DKRY7GNU3CJQX6FMT2BIPW5ELSZAHOV4DKRY7GNU3',
invoiceId: -1n,
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('cannot be negative');
});
});
describe('validatePayment', () => {
it('should validate valid payment parameters', () => {
const result = Validators.validatePayment({
invoiceId: 1n,
});
expect(result.isValid).toBe(true);
});
it('should reject negative invoice ID', () => {
const result = Validators.validatePayment({
invoiceId: -1n,
});
expect(result.isValid).toBe(false);
expect(result.error).toContain('cannot be negative');
});
});
describe('assertValid', () => {
it('should not throw when validation passes', () => {
expect(() => {
Validators.assertValid({ isValid: true });
}).not.toThrow();
});
it('should throw ValidationError when validation fails', () => {
expect(() => {
Validators.assertValid({ isValid: false, error: 'Test error' });
}).toThrow(ValidationError);
expect(() => {
Validators.assertValid({ isValid: false, error: 'Test error' });
}).toThrow('Test error');
});
it('should include context in error message when provided', () => {
expect(() => {
Validators.assertValid({ isValid: false, error: 'Test error' }, 'submitInvoice');
}).toThrow('submitInvoice: Test error');
});
});
});