-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tests.ts
147 lines (134 loc) · 2.75 KB
/
Tests.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
import { Boolean, Test } from 'ts-toolbelt'
import { check, Fail, Pass } from 'ts-toolbelt/out/Test'
import { Equals } from 'ts-toolbelt/out/Any/Equals'
import { Extends } from 'ts-toolbelt/out/Any/Extends'
export type User = {
name: string
age: number
deepKey: {
deepKey: {
goodDeepKey: number
badDeepKey: []
}
}
friend: {
name: string
}
friends?: {
boyNextDoor: string
}
data: {
address: {
street: string
city: string
}
}
}
const mike: User = {
name: 'Mike',
age: 42,
deepKey: {
deepKey: {
goodDeepKey: 42,
badDeepKey: [],
},
},
friends: {
boyNextDoor: 'Jason',
},
friend: {
name: 'Albert',
},
data: {
address: {
street: 'Park Avenue',
city: 'New York',
},
},
}
const johnDoe: User = {
name: 'John Doe',
age: 33,
deepKey: {
deepKey: {
goodDeepKey: 42,
badDeepKey: [],
},
},
friend: {
name: 'Jane Doe',
},
friends: {
boyNextDoor: 'Tom',
},
data: {
address: {
street: '123 Main St',
city: 'Anytown',
},
},
}
export const janeSmith: User = {
name: 'Jane Smith',
age: 27,
deepKey: {
deepKey: {
goodDeepKey: 24,
badDeepKey: [],
},
},
friend: {
name: 'John Smith',
},
friends: {
boyNextDoor: 'Jerry',
},
data: {
address: {
street: '456 Elm St',
city: 'Sometown',
},
},
}
export const user: User = mike
export const users: User[] = [mike, johnDoe, janeSmith]
export const twoAlicesAndBob: User[] = [
{
name: 'Alice',
age: 30,
deepKey: { deepKey: { goodDeepKey: 1, badDeepKey: [] } },
friend: { name: 'Bob' },
friends: { boyNextDoor: 'Charlie' },
data: { address: { street: '123 Apple St', city: 'Wonderland' } },
},
{
name: 'Alice',
age: 35,
deepKey: { deepKey: { goodDeepKey: 2, badDeepKey: [] } },
friend: { name: 'Dave' },
data: { address: { street: '456 Banana Ave', city: 'Dreamland' } },
},
{
name: 'Bob',
age: 40,
deepKey: { deepKey: { goodDeepKey: 3, badDeepKey: [] } },
friend: { name: 'Alice' },
data: { address: { street: '789 Cherry Blvd', city: 'Fairyland' } },
},
]
/*
* literally same as ts-toolbelt check, but with default Outcome === 1 (true)
* */
export declare const checkEquals: {
<Type, Expect, Outcome extends 1 | 0 = Test.Pass>(
debug?: Type
): Equals<Equals<Type, Expect>, Outcome>
}
export declare const checkExtends: {
//by default, expect Outcome to be 1 (true)
<Extendable, Extended, Outcome extends 1 | 0 = Test.Pass>(
debug?: Extendable
): Equals<Extends<Extendable, Extended>, Outcome>
}
export declare const isTrue: { <Cond extends Pass>(): Pass }
export declare const isFalse: { <Cond extends Fail>(): Pass }