-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.ts
210 lines (146 loc) · 6.87 KB
/
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
/* tslint:disable:max-line-length array-type */
import { TestFixture, TestCase, Expect, SpyOn, Setup, Teardown, Any, AsyncTest, Timeout, Test } from "alsatian";
import { mockObservable } from "@neworbit/knockout-test-utils";
import { createKnockoutWrapper, ValidateFunction } from "./index";
import { ValidationFunction } from "not-valid";
const validationSystem: { validate: ValidateFunction } = {
validate: async <T> (validators: any[], value: T) => await []
};
const getMockObservable = <T>(value?: T) => mockObservable<T>(value).observable as KnockoutObservable<T>;
function wait(waitPeriodMilliseconds: number) {
return new Promise(resolve => setTimeout(resolve, waitPeriodMilliseconds));
}
const DEBOUNCE_WAIT_PERIOD = 351;
@TestFixture()
export class ValidationTests {
private validateSpy: any;
@Setup
public setup() {
this.validateSpy = SpyOn(validationSystem, "validate");
}
@Teardown
public teardown() {
this.validateSpy.restore();
}
@Test()
@TestCase([ ])
@TestCase([ () => "bad" ])
public async shouldPassValidatorsToValidationSystem(validators: any[]) {
const value = getMockObservable<string>();
const errors = getMockObservable<string[]>();
const bindValidation = createKnockoutWrapper(validationSystem.validate).bindValidation;
bindValidation(validators, value, errors);
// trigger the validation
value("trigger it");
await wait(DEBOUNCE_WAIT_PERIOD);
Expect(validationSystem.validate).toHaveBeenCalledWith(validators, Any);
}
@Test()
@TestCase("some value")
@TestCase("thierry henry is the best football player of all time")
public async shouldPassValueToValidationSystem(input: string) {
const value = getMockObservable<string>();
const errors = getMockObservable<string[]>();
const bindValidation = createKnockoutWrapper(validationSystem.validate).bindValidation;
bindValidation([ ], value, errors);
// trigger the validation
value(input);
await wait(DEBOUNCE_WAIT_PERIOD);
Expect(validationSystem.validate).toHaveBeenCalledWith(Any<Array<ValidationFunction<any>>>(Array), input);
}
@Test()
@TestCase([ "green error", "blue error" ])
@TestCase([ "biscuits and cake a happy man doth make" ])
public async shouldPassValidationErrorsToErrorObservable(providedErrors: string[]) {
const value = getMockObservable<string>();
const errors = getMockObservable<string[]>();
this.validateSpy.andReturn(Promise.resolve(providedErrors));
const bindValidation = createKnockoutWrapper(validationSystem.validate).bindValidation;
bindValidation([ ], value, errors);
// trigger the validation
value("bad!");
await wait(DEBOUNCE_WAIT_PERIOD);
Expect(errors()).toEqual(providedErrors);
}
@Test()
@TestCase(20)
@TestCase(30)
public async shouldValidateInitialValueOnBind(input: number) {
const value = getMockObservable<number>(input);
const errors = getMockObservable<string[]>();
const bindValidation = createKnockoutWrapper(validationSystem.validate).bindValidation;
bindValidation([ ], value, errors);
await wait(DEBOUNCE_WAIT_PERIOD);
Expect(validationSystem.validate).toHaveBeenCalledWith(Any<Array<ValidationFunction<any>>>(Array), input);
}
@Timeout(1000)
@AsyncTest()
public async shouldDebounceValidationsIfTooSoon() {
const value = getMockObservable<number>(10);
const errors = getMockObservable<string[]>();
const bindValidation = createKnockoutWrapper(validationSystem.validate).bindValidation;
bindValidation([ ], value, errors);
// set value immediately and update a short time after
value(20);
await wait(200); // wait 200ms which is less than the debounce time
value(30);
await wait(DEBOUNCE_WAIT_PERIOD);
// first should not be hit due to debouncing
Expect(validationSystem.validate).not.toHaveBeenCalledWith(Any<Array<ValidationFunction<any>>>(Array), 20);
Expect(validationSystem.validate).toHaveBeenCalledWith(Any<Array<ValidationFunction<any>>>(Array), 30);
}
@Timeout(1000)
@Test()
public async shouldNotDebounceValidationsAfterTwoHundredMilliseconds() {
const value = getMockObservable<number>(10);
const errors = getMockObservable<string[]>();
const bindValidation = createKnockoutWrapper(validationSystem.validate).bindValidation;
bindValidation([ ], value, errors);
// set value immediately and update after 151ms
value(20);
await wait(DEBOUNCE_WAIT_PERIOD); // wait until the debounce timeout
value(30);
await wait(DEBOUNCE_WAIT_PERIOD);
// both should be hit (spaced apart so no debounce)
Expect(validationSystem.validate).toHaveBeenCalledWith(Any<Array<ValidationFunction<any>>>(Array), 20);
Expect(validationSystem.validate).toHaveBeenCalledWith(Any<Array<ValidationFunction<any>>>(Array), 30);
}
@Timeout(1000)
@Test()
public async shouldRevalidateForFirstDependentObservable() {
const value = getMockObservable<number>(10);
const errors = getMockObservable<string[]>();
const dependent = getMockObservable<number>(500);
const bindValidation = createKnockoutWrapper(validationSystem.validate).bindValidation;
bindValidation([ ], value, errors, [ dependent ]);
await wait(DEBOUNCE_WAIT_PERIOD);
dependent(600);
await wait(DEBOUNCE_WAIT_PERIOD);
Expect(validationSystem.validate).toHaveBeenCalled().exactly(2);
}
@Timeout(1000)
@Test()
public async shouldRevalidateForSecondDependentObservable() {
const value = getMockObservable<number>(10);
const errors = getMockObservable<string[]>();
const firstDependent = getMockObservable<number>(500);
const secondDependent = getMockObservable<number>(800);
const bindValidation = createKnockoutWrapper(validationSystem.validate).bindValidation;
bindValidation([ ], value, errors, [ firstDependent, secondDependent ]);
await wait(DEBOUNCE_WAIT_PERIOD);
secondDependent(600);
await wait(DEBOUNCE_WAIT_PERIOD);
Expect(validationSystem.validate).toHaveBeenCalled().exactly(2);
}
@Test()
public async shouldDebounceForDependentObservables() {
const value = getMockObservable<number>(10);
const errors = getMockObservable<string[]>();
const dependent = getMockObservable<number>(500);
const bindValidation = createKnockoutWrapper(validationSystem.validate).bindValidation;
bindValidation([ ], value, errors, [ dependent ]);
dependent(600);
await wait(DEBOUNCE_WAIT_PERIOD);
Expect(validationSystem.validate).toHaveBeenCalled().exactly(1);
}
}