-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathoption.test.ts
More file actions
241 lines (193 loc) · 5.23 KB
/
option.test.ts
File metadata and controls
241 lines (193 loc) · 5.23 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
/* eslint-disable unicorn/prevent-abbreviations */
import { assert, describe, it } from 'vitest';
import { Err, None, Ok, Some } from '../src/types';
describe('option tests', () => {
it('option isSome', () => {
const option = Some('foo');
assert.isTrue(option.isSome());
assert.isFalse(option.isNone());
});
it('option isSomeAnd', () => {
const option = Some('foo');
assert.isTrue(option.isSomeAnd((value) => value.length === 3));
assert.isFalse(option.isSomeAnd((value) => value.length === 2));
assert.isFalse(option.isNone());
});
it('option isNone', () => {
const option = None;
assert.isFalse(option.isSome());
assert.isTrue(option.isNone());
});
it('option map', () => {
const optionA = Some('foo');
assert.deepEqual(
optionA.map((value) => value.length),
Some(3),
);
const optionB = None;
assert.deepEqual(
optionB.map(() => 3),
None,
);
});
it('option mapOr', () => {
const optionA = Some('foo');
assert.equal(
optionA.mapOr(2, (value) => value.length),
3,
);
const optionB = None;
assert.equal(
optionB.mapOr(2, () => 3),
2,
);
});
it('option mapOrElse', () => {
const optionA = Some('foo');
assert.equal(
optionA.mapOrElse(
() => 2,
(value) => value.length,
),
3,
);
const optionB = None;
assert.equal(
optionB.mapOrElse(
() => 2,
() => 3,
),
2,
);
});
it('option okOr', () => {
const optionA = Some('foo');
assert.deepEqual(optionA.okOr('Error'), Ok('foo'));
const optionB = None;
assert.deepEqual(optionB.okOr('Error'), Err('Error'));
});
it('option okOrElse', () => {
const optionA = Some('foo');
assert.deepEqual(
optionA.okOrElse(() => 'Error'),
Ok('foo'),
);
const optionB = None;
assert.deepEqual(
optionB.okOrElse(() => 'Error'),
Err('Error'),
);
});
it('option and', () => {
const optionA = Some('foo');
assert.deepEqual(optionA.and(Some('bar')), Some('bar'));
const optionB = None;
assert.deepEqual(optionB.and(Some('var')), None);
});
it('option andThen', () => {
const optionA = Some('foo');
assert.deepEqual(
optionA.andThen((value) => Some(value.length)),
Some(3),
);
const optionB = Some('foo');
assert.deepEqual(
optionB.andThen(() => None),
None,
);
const optionC = None;
assert.deepEqual(
optionC.andThen(() => Some(3)),
None,
);
});
it('option filter', () => {
const optionA = Some('foo');
assert.deepEqual(
optionA.filter((value) => value.length === 3),
Some('foo'),
);
const optionB = Some('foo');
assert.deepEqual(
optionB.filter((value) => value.length === 2),
None,
);
const optionC = None;
assert.deepEqual(
optionC.filter(() => true),
None,
);
});
it('option or', () => {
const optionA = Some('foo');
const optionAOr = optionA.or(Some('bar'));
assert.deepEqual(optionAOr, Some('foo'));
const optionB = None;
const optionBOr = optionB.or(Some('bar'));
assert.deepEqual(optionBOr, Some('bar'));
});
it('option orElse', () => {
const optionA = Some('foo');
const optionAOr = optionA.orElse(() => Some('bar'));
assert.deepEqual(optionAOr, Some('foo'));
const optionB = None;
const optionBOr = optionB.orElse(() => Some('bar'));
assert.deepEqual(optionBOr, Some('bar'));
});
it('option xor', () => {
const optionA = Some('foo');
const someA = optionA.xor(None);
const noneA = optionA.xor(Some('bar'));
assert.deepEqual(someA, Some('foo'));
assert.deepEqual(noneA, None);
const optionB = None;
const noneB = optionB.xor(None);
const someB = optionB.xor(Some('bar'));
assert.deepEqual(noneB, None);
assert.deepEqual(someB, Some('bar'));
});
it('option contains', () => {
const optionA = Some('foo');
assert.isTrue(optionA.contains('foo'));
const optionB = Some('foo');
assert.isFalse(optionB.contains('bar'));
});
it('option zip', () => {
const option = Some('foo');
const zipped = option.zip(Some(3));
assert.deepEqual(zipped.unwrap(), ['foo', 3]);
const zippedNone = option.zip(None);
assert.deepEqual(zippedNone, None);
});
it('option zipWith', () => {
const option = Some('foo');
const zipped = option.zipWith(Some(3), (str, num) => str.repeat(num));
assert.deepEqual(zipped, Some('foofoofoo'));
const zippedNone = option.zipWith(None, () => 'bar');
assert.deepEqual(zippedNone, None);
});
it('option unwrap', () => {
const option = Some('foo');
assert.equal(option.unwrap(), 'foo');
const optionNone = None;
assert.throw(() => optionNone.unwrap());
});
it('option unwrapOr', () => {
const optionA = Some('foo');
assert.equal(optionA.unwrapOr('bar'), 'foo');
const optionB = None;
assert.equal(optionB.unwrapOr(3), 3);
});
it('option unwrapOrElse', () => {
const optionA = Some('foo');
assert.equal(
optionA.unwrapOrElse(() => 3),
'foo',
);
const optionB = None;
assert.equal(
optionB.unwrapOrElse(() => 3),
3,
);
});
});