-
Notifications
You must be signed in to change notification settings - Fork 820
/
Copy pathconditional-validation.spec.ts
95 lines (80 loc) · 2.66 KB
/
conditional-validation.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
import { IsNotEmpty, ValidateIf, IsOptional, Equals } from '../../src/decorator/decorators';
import { Validator } from '../../src/validation/Validator';
const validator = new Validator();
describe('conditional validation', () => {
it("shouldn't validate a property when the condition is false", () => {
expect.assertions(1);
class MyClass {
@ValidateIf(o => false)
@IsNotEmpty()
title: string;
}
const model = new MyClass();
return validator.validate(model).then(errors => {
expect(errors.length).toEqual(0);
});
});
it('should validate a property when the condition is true', () => {
expect.assertions(5);
class MyClass {
@ValidateIf(o => true)
@IsNotEmpty()
title: string = '';
}
const model = new MyClass();
return validator.validate(model).then(errors => {
expect(errors.length).toEqual(1);
expect(errors[0].target).toEqual(model);
expect(errors[0].property).toEqual('title');
expect(errors[0].constraints).toEqual({ isNotEmpty: 'title should not be empty' });
expect(errors[0].value).toEqual('');
});
});
it('should pass the object being validated to the condition function', () => {
expect.assertions(3);
class MyClass {
@ValidateIf(o => {
expect(o).toBeInstanceOf(MyClass);
expect(o.title).toEqual('title');
return true;
})
@IsNotEmpty()
title: string = 'title';
}
const model = new MyClass();
return validator.validate(model).then(errors => {
expect(errors.length).toEqual(0);
});
});
it('should validate a property when value is empty', () => {
expect.assertions(5);
class MyClass {
@IsOptional()
@Equals('test')
title: string = '';
}
const model = new MyClass();
return validator.validate(model).then(errors => {
expect(errors.length).toEqual(1);
expect(errors[0].target).toEqual(model);
expect(errors[0].property).toEqual('title');
expect(errors[0].constraints).toEqual({ equals: 'title must be equal to test' });
expect(errors[0].value).toEqual('');
});
});
it('should validate a property when value is supplied', () => {
class MyClass {
@IsOptional()
@Equals('test')
title: string = 'bad_value';
}
const model = new MyClass();
return validator.validate(model).then(errors => {
expect(errors.length).toEqual(1);
expect(errors[0].target).toEqual(model);
expect(errors[0].property).toEqual('title');
expect(errors[0].constraints).toEqual({ equals: 'title must be equal to test' });
expect(errors[0].value).toEqual('bad_value');
});
});
});