-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathassert.d.lua
More file actions
493 lines (459 loc) · 16.3 KB
/
Copy pathassert.d.lua
File metadata and controls
493 lines (459 loc) · 16.3 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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
---@meta _
---
---Validation assertion helpers that throw an error if the validation fails.
---
---```lua
---local assert = mods.assert
---
---assert.number(123) --> 123
---assert.number("nope") --> raises error: "number expected, got string"
---assert(123, "number") --> runs validation, returns nil
---```
---
---@class mods.assert
---@field [string] fun<T>(v:T, optional?:boolean, msg?:string, lvl?:integer):T
---@overload fun<T>(v:T, validator:mods.validatorName, msg?:string, optional?:boolean, lvl?:integer):T
local M = {}
--------------------------------------------------------------------------------
-- Type Checks
--------------------------------------------------------------------------------
---
---Asserts that `v` is a boolean. Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.boolean(true) --> true
---assert.boolean(1) --> raises error: "boolean expected, got number"
---```
---
---@section Type Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.boolean(v, msg, optional, lvl) end
---
---Asserts that `v` is a cdata value (LuaJIT only). Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.cdata(val) --> val
---```
---
---@section Type Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.cdata(v, msg, optional, lvl) end
---
---Asserts that `v` is a function. Returns `v` if successful, otherwise raises an error.
---
---```lua
---local fn = function() end
---assert.Function(fn) --> fn
---assert.Function(1) --> raises error: "function expected, got number"
---```
---
---@section Type Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.Function(v, msg, optional, lvl) end
---
---Asserts that `v` is `nil`. Returns `nil` if successful, otherwise raises an error.
---
---```lua
---assert.Nil(nil) --> nil
---assert.Nil(0) --> raises error: "nil expected, got number"
---```
---
---@section Type Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.Nil(v, msg, optional, lvl) end
---
---Asserts that `v` is a number. Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.number(42) --> 42
---assert.number("x") --> raises error: "number expected, got string"
---```
---
---@section Type Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.number(v, msg, optional, lvl) end
---
---Asserts that `v` is a string. Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.string("hello") --> "hello"
---assert.string(1) --> raises error: "string expected, got number"
---```
---
---@section Type Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.string(v, msg, optional, lvl) end
---
---Asserts that `v` is a table. Returns `v` if successful, otherwise raises an error.
---
---```lua
---local t = {}
---assert.table(t) --> t
---assert.table(1) --> raises error: "table expected, got number"
---```
---
---@section Type Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.table(v, msg, optional, lvl) end
---
---Asserts that `v` is a thread. Returns `v` if successful, otherwise raises an error.
---
---```lua
---local co = coroutine.create(function() end)
---assert.thread(co) --> co
---assert.thread(1) --> raises error: "thread expected, got number"
---```
---
---@section Type Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.thread(v, msg, optional, lvl) end
---
---Asserts that `v` is a userdata value. Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.userdata(io.stdout) --> io.stdout
---assert.userdata(1) --> raises error: "userdata expected, got number"
---```
---
---@section Type Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.userdata(v, msg, optional, lvl) end
--------------------------------------------------------------------------------
-- Value Checks
--------------------------------------------------------------------------------
---
---Asserts that `v` is callable. Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.callable(print) --> print
---assert.callable(1) --> raises error: "callable value expected, got 1"
---```
---
---@section Value Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.callable(v, msg, optional, lvl) end
---
---Asserts that `v` is defined (not `nil`). Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.defined(1) --> 1
---assert.defined(nil) --> raises error: "defined value expected, got no value"
---```
---
---@section Value Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.defined(v, msg, optional, lvl) end
---
---Asserts that `v` is exactly `false`. Returns `false` if successful, otherwise raises an error.
---
---```lua
---assert.False(false) --> false
---assert.False(true) --> raises error: "false value expected, got true"
---```
---
---@section Value Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.False(v, msg, optional, lvl) end
---
---Asserts that `v` is falsy (either `false` or `nil`). Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.falsy(false) --> false
---assert.falsy(1) --> raises error: "falsy value expected, got 1"
---```
---
---@section Value Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.falsy(v, msg, optional, lvl) end
---
---Asserts that `v` is a finite number. Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.finite(123) --> 123
---assert.finite(math.huge) --> raises error: "finite value expected, got inf"
---```
---
---@section Value Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.finite(v, msg, optional, lvl) end
---
---Asserts that `v` is a float (has a fractional part). Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.float(1.5) --> 1.5
---assert.float(1) --> raises error: "float value expected, got 1"
---```
---
---@section Value Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.float(v, msg, optional, lvl) end
---
---Asserts that `v` is an infinite number. Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.infinite(math.huge) --> inf
---assert.infinite(123) --> raises error: "infinite value expected, got 123"
---```
---
---@section Value Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.infinite(v, msg, optional, lvl) end
---
---Asserts that `v` is an integer. Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.integer(1) --> 1
---assert.integer(1.5) --> raises error: "integer value expected, got 1.5"
---```
---
---@section Value Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.integer(v, msg, optional, lvl) end
---
---Asserts that `v` is a NaN (not-a-number) value. Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.nan(0/0) --> NaN
---assert.nan(1) --> raises error: "nan value expected, got 1"
---```
---
---@section Value Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.nan(v, msg, optional, lvl) end
---
---Asserts that `v` is exactly `true`. Returns `true` if successful, otherwise raises an error.
---
---```lua
---assert.True(true) --> true
---assert.True(false) --> raises error: "true value expected, got false"
---```
---
---@section Value Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.True(v, msg, optional, lvl) end
---
---Asserts that `v` is truthy (neither `false` nor `nil`). Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.truthy(1) --> 1
---assert.truthy(false) --> raises error: "truthy value expected, got false"
---```
---
---@section Value Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T v The passed value.
function M.truthy(v, msg, optional, lvl) end
--------------------------------------------------------------------------------
-- Path Checks (Requires LuaFileSystem / lfs)
--------------------------------------------------------------------------------
---
---Asserts that `v` is a valid filesystem path. Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.path("README.md") --> "README.md"
---```
---
---@section Path Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T path The passed path string.
function M.path(v, msg, optional, lvl) end
---
---Asserts that `v` is a block device path. Returns `v` if successful, otherwise raises an error.
---
---@section Path Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T path The passed path string.
function M.block_device(v, msg, optional, lvl) end
---
---Asserts that `v` is a character device path. Returns `v` if successful, otherwise raises an error.
---
---@section Path Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T path The passed path string.
function M.char_device(v, msg, optional, lvl) end
---
---Asserts that `v` is a block or character device path. Returns `v` if successful, otherwise raises an error.
---
---@section Path Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T path The passed path string.
function M.device(v, msg, optional, lvl) end
---
---Asserts that `v` is a directory path. Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.dir("src") --> "src"
---```
---
---@section Path Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T path The passed path string.
function M.dir(v, msg, optional, lvl) end
---
---Asserts that `v` is a FIFO path. Returns `v` if successful, otherwise raises an error.
---
---@section Path Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T path The passed path string.
function M.fifo(v, msg, optional, lvl) end
---
---Asserts that `v` is a file path. Returns `v` if successful, otherwise raises an error.
---
---```lua
---assert.file("README.md") --> "README.md"
---```
---
---@section Path Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T path The passed path string.
function M.file(v, msg, optional, lvl) end
---
---Asserts that `v` is a symlink path. Returns `v` if successful, otherwise raises an error.
---
---@section Path Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T path The passed path string.
function M.symlink(v, msg, optional, lvl) end
---
---Asserts that `v` is a socket path. Returns `v` if successful, otherwise raises an error.
---
---@section Path Checks
---@generic T
---@param v T Value to validate.
---@param msg? string Optional override template.
---@param optional? boolean Skip validation when `v` is `nil`.
---@param lvl? integer Optional error level for `error()` (defaults to 2).
---@return T path The passed path string.
function M.socket(v, msg, optional, lvl) end
return M