-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.test.ts
200 lines (183 loc) · 5.79 KB
/
index.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
import {
AssertionError,
asserts,
checks,
checksNonNullish,
ensures,
ensuresNonNullish,
error,
IllegalStateError,
isDefined,
PostconditionError,
PreconditionError,
requires,
requiresNonNullish,
unreachable,
} from './index';
const expectError = (
fun: () => unknown,
errorType: new (...args: any[]) => Error,
message: string
) => {
try {
fun();
fail('Function should never succeed');
} catch (e: any) {
expect(e.name).toBe(errorType.name);
expect(e.message).toBe(message);
}
};
describe('contracts', () => {
const contractTest = (
contract: (condition: boolean, message?: string) => asserts condition,
errorType: new (...args: any[]) => Error,
defaultMessage: string
) => {
describe(contract.name, () => {
it('should not error if the condition is met', () => {
expect(() => contract(true)).not.toThrowError();
});
it('should throw the associated error if the condition is not met', () => {
expectError(() => contract(false), errorType, defaultMessage);
});
it('should throw the associated error with the given message if the condition is not met', () => {
expectError(
() => contract(false, 'Custom message'),
errorType,
'Custom message'
);
});
});
};
contractTest(requires, PreconditionError, 'Unmet precondition');
contractTest(checks, IllegalStateError, 'Callee invariant violation');
contractTest(ensures, PostconditionError, 'Unmet postcondition');
contractTest(asserts, AssertionError, '');
});
describe('NonNullish contracts', () => {
const contractTest = (
contract: <T>(value: T, message?: string) => NonNullable<T>,
errorType: new (...args: any[]) => Error
): void => {
describe(contract.name, () => {
it('should not error if the value is defined', () => {
expect(() => contract('A nice String')).not.toThrowError();
});
it('should throw an Error if the value is not defined', () => {
expectError(
() => contract(null),
errorType,
'Value must not be null or undefined'
);
});
});
};
contractTest(requiresNonNullish, PreconditionError);
contractTest(checksNonNullish, IllegalStateError);
contractTest(ensuresNonNullish, PostconditionError);
});
describe('error', () => {
it('should always error', () => {
expectError(() => error(), IllegalStateError, '');
});
it('should error with the given type', () => {
expectError(() => error(PreconditionError), PreconditionError, '');
});
it('should error with the given type and message', () => {
expectError(
() => error(PreconditionError, 'Failed!'),
PreconditionError,
'Failed!'
);
});
it('should error with the given message', () => {
expectError(() => error('Failed!'), IllegalStateError, 'Failed!');
});
});
describe('isDefined', () => {
it('should return true for defined values', () => {
expect(isDefined('TypeScript')).toBe(true);
expect(isDefined('')).toBe(true);
expect(isDefined(0)).toBe(true);
expect(isDefined(false)).toBe(true);
});
it('should return false for null-ish values', () => {
expect(isDefined(undefined)).toBe(false);
expect(isDefined(null)).toBe(false);
});
});
describe('unreachable', () => {
it('should always throw an error at runtime', () => {
expectError(
() => unreachable(true as never),
AssertionError,
'Reached an unreachable case'
);
});
it('should always throw an error at runtime with the given message', () => {
expectError(
() => unreachable(true as never, 'Test'),
AssertionError,
'Test'
);
});
it('should not throw an error when the switch is exhaustive', () => {
enum MyEnum {
A,
B,
}
function myFun(foo: MyEnum): string {
switch (foo) {
case MyEnum.A:
return 'a';
case MyEnum.B:
return 'b';
default:
unreachable(foo);
}
}
expect(() => myFun(MyEnum.A)).not.toThrow();
expect(() => myFun(MyEnum.B)).not.toThrow();
});
});
describe('examples', () => {
it('should help with password validation', () => {
// create a "nominal" type and a matching type guard
/** A nominal type. The `_type` property does not exist at runtime. */
type Nominal<T, D> = { _type: T } & D;
/** A string that is a valid email address. */
type Email = Nominal<'email', string>;
/** A string that is a good password. */
type Password = Nominal<'password', string>;
/** Returns `true` if the given value is a valid email address. */
function isEmail(value: string): value is Email {
return !!value && value.includes('@');
}
/** Returns `true` if the given value meets the requirements. */
function isGoodPassword(value: string): value is Password {
return !!value && value.length >= 8;
}
// make sure to use the nominal type in later functions
function insert(email: Email, password: Password): void {}
// the signup endpoint
function signUp(email: string, password: string) {
// use the contracts with your type guards ...
requires(isEmail(email), 'Value must be a valid email address');
requires(isGoodPassword(password), 'Password must meet requirements');
// ... to tell the compiler that email and password are in fact of type Email and Password,
// so that you can call the insert function!
insert(email, password);
}
expect(() => signUp('[email protected]', 'abc12345')).not.toThrow();
expectError(
() => signUp('typescript.com', 'abc12345'),
PreconditionError,
'Value must be a valid email address'
);
expectError(
() => signUp('[email protected]', '1234'),
PreconditionError,
'Password must meet requirements'
);
});
});