-
-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathvalidate_spec.moon
More file actions
1356 lines (1124 loc) · 31.5 KB
/
validate_spec.moon
File metadata and controls
1356 lines (1124 loc) · 31.5 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
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import validate from require "lapis.validate"
run_with_errors = (fn) ->
import capture_errors from require "lapis.application"
req = {}
capture_errors(fn) req
req.errors
o = {
age: ""
name: "abc"
height: "12234234"
}
tests = {
{
{
{ "age", exists: true }
{ "name", exists: true }
{ "rupture", exists: true, "CUSTOM MESSAGE COOL" }
}
{ "age must be provided", "CUSTOM MESSAGE COOL" }
}
{
{
{ "name", exists: true, min_length: 4 }
{ "age", min_length: 4 }
{ "height", max_length: 5 }
}
{
"name must be at least 4 chars"
"age must be at least 4 chars"
"height must be at most 5 chars"
}
}
{
{
{ "height", is_integer: true }
{ "name", is_integer: true }
{ "age", is_integer: true }
}
{
"name must be an integer"
"age must be an integer"
}
}
{
{
{ "height", min_length: 4 }
}
nil
}
{
{
{ "age", optional: true, max_length: 2 }
{ "name", optional: true, max_length: 2 }
}
{
"name must be at most 2 chars"
}
}
{
{
{ "name", one_of: {"cruise", "control" } }
}
{
"name must be one of cruise, control"
}
}
{
{
{ "name", one_of: {"bcd", "abc" } }
}
}
{
{
{ "name", matches_pattern: "bc$" }
{ "age", matches_pattern: "." }
}
{
"age is not the right format"
}
}
}
describe "lapis.validate", ->
for {input, output} in *tests
it "should match", ->
errors = validate o, input
assert.same errors, output
it "should get key with error", ->
errors = validate o, {
{ "age", exists: true }
{ "name", exists: true }
{ "rupture", exists: true, "rupture is required" }
}, {keys: true }
assert.same errors, {
age: "age must be provided",
rupture: "rupture is required"
}
describe "assert_valid", ->
it "throws error", ->
import assert_valid from require "lapis.validate"
assert.same {
"thing must be provided"
}, run_with_errors ->
assert_valid { }, {
{"thing", exists: true}
}
it "passes on valid input", ->
import assert_valid from require "lapis.validate"
done = false
assert.same nil, run_with_errors ->
assert_valid {
thing: "cool"
}, {
{"thing", exists: true}
}
done = true
assert.true done
it "operates on tableshape type", ->
import assert_valid from require "lapis.validate"
types = require "lapis.validate.types"
assert.same {
'id: expected database ID integer'
'name: expected text between 1 and 10 characters'
}, run_with_errors ->
res = assert_valid {}, types.params_shape {
{"id", types.db_id}
{"name", types.limited_text 10 }
}
error "should not get here..."
done = false
assert.same nil, run_with_errors ->
res, state = assert_valid {
id: "15"
name: "Deep"
}, types.params_shape {
{"id", types.db_id\tag "cool" }
{"name", types.limited_text(10) / (s) -> "-#{s}-" }
}
assert.same {
id: 15
name: "-Deep-"
}, res
assert.same {
cool: 15
}, state
done = true
assert done
describe "lapis.validate.types", ->
it "creates assert type", ->
types = require "lapis.validate.types"
assert_string = types.assert_error(types.string)
assert.same {
[[expected type "string", got "number"]]
}, run_with_errors ->
assert_string 77
assert.same nil, run_with_errors ->
assert_string "hello"
describe "params_shape", ->
types = require "lapis.validate.types"
it "works with assert_error", ->
t = types.assert_error types.params_shape {
{"good", types.one_of {"yes", "no"} }
{"dog", types.string\tag "sweet"}
}
assert.same {
[[good: expected "yes", or "no"]]
[[dog: expected type "string", got "nil"]]
}, run_with_errors ->
t\transform {}
assert.same {
{
dog: "fool"
good: "no"
}
{
sweet: "fool"
}
}, {
t\transform { good: "no", dog: "fool", bye: "heheh" }
}
it "fails to create object with invalid spec", ->
assert.has_error(
->
types.params_shape {
item: "zone"
}
[[params_shape: Invalid validation specification object: expected type "table", got "string" (index: item)]]
)
assert.has_error(
->
types.params_shape {
{"one", "two"}
}
[[params_shape: Invalid validation specification object: field 2: expected tableshape type (index: 1)]]
)
assert.has_error(
->
types.params_shape {
{"one", types.string, fart: "zone"}
}
[[params_shape: Invalid validation specification object: extra fields: "fart" (index: 1)]]
)
it "tests basic object", ->
test_object = types.params_shape {
{"one", types.string}
{"two", types.string / (s) -> "-#{s}-"}
}
assert.same {
nil
{
[[params: expected type "table", got "string"]]
}
}, { test_object "wtf" }
assert.same {
nil
{
[[params: expected type "table", got "nil"]]
}
}, { test_object! }
assert.same {
nil
{
[[one: expected type "string", got "nil"]]
[[two: expected type "string", got "nil"]]
}
}, { test_object {} }
assert.same {
nil
{
[[one: expected type "string", got "number"]]
[[two: expected type "string", got "boolean"]]
}
}, { test_object {one: 55, two: true, whatthe: "heck"} }
assert.same {
nil
{
[[two: expected type "string", got "nil"]]
}
}, { test_object { one: "yes", another: false } }
assert.same {
nil
{
[[one: expected type "string", got "boolean"]]
}
}, { test_object { two: "sure", one: false } }
assert.same {
{
one: "whoa"
two: "-sure-"
}
}, { test_object\transform { two: "sure", one: "whoa", ignore: 99 } }
it "always returns new object", ->
s = types.params_shape {
{"color", types.literal "blue"}
}
input = { color: "blue" }
output = s\transform input
assert.same input, output
assert.false input == output, "input and output should be distinct objects"
it "tests object with state", ->
-- TODO:
it "test labels", ->
t = types.params_shape {
{"name", label: false, types.string}
{"inner", label: false, types.params_shape {
{"one", label: false, types.string}
{"two", types.string}
}}
}
_, errors = t\transform { }
assert.same {
[[expected type "string", got "nil"]]
[[params: expected type "table", got "nil"]]
}, errors
_, errors = t\transform {
name: false
inner: {
one: 23892
two: 23892
}
}
assert.same {
[[expected type "string", got "boolean"]]
[[expected type "string", got "number"]]
[[two: expected type "string", got "number"]]
}, errors
it "test nested validate", ->
test_object = types.params_shape {
{"alpha", types.one_of {"one", "two"} }
{"two", types.params_shape {
{"one", as: "sure", error: "you messed up", types.string\tag "one"}
{"two", label: "The Two", types.string / (s) -> "-#{s}-"}
}}
{"optional", label: "Optionals", types.nil + types.params_shape {
{"confirm", types.literal "true" }
}}
}
assert.same [[
params type {
alpha: "one", or "two"
two: params type {
one: type "string" tagged "one"
two: type "string"
}
optional: type "nil", or params type {confirm: "true"}
}]], tostring test_object
assert.same {
nil
{
[[alpha: expected "one", or "two"]]
[[two: params: expected type "table", got "nil"]]
}
}, { test_object {} }
assert.same {
nil
{
[[alpha: expected "one", or "two"]]
[[two: params: expected type "table", got "nil"]]
[[Optionals: expected type "nil", or params type {confirm: "true"}]]
}
}, { test_object { optional: "fart"} }
assert.same {
nil
{
[[alpha: expected "one", or "two"]]
[[two: you messed up]]
[[two: The Two: expected type "string", got "nil"]]
[[Optionals: expected type "nil", or params type {confirm: "true"}]]
}
}, { test_object { optional: {}, two: {}} }
assert.same {
nil
{
[[Optionals: expected type "nil", or params type {confirm: "true"}]]
}
}, { test_object { optional: {}, alpha: "one", two: {one: "yes", two: "no"}} }
assert.same {
{
alpha: "one"
optional: {confirm: "true"}
two: {
sure: "yes"
two: "-no-"
}
}
{
one: "yes"
}
}, {
test_object\transform {
optional: { confirm: "true", junk: "yes"}
alpha: "one"
two: {1,2,3, for: true, one: "yes", two: "no"}
}
}
it "numeric indicies", ->
t = types.params_shape {
{1, types.string}
{2, types.number}
}
assert.same {"tuple", 200}, (t\transform { "tuple", 200 })
assert.same {"tuple", 200}, (t\transform { "tuple", 200, "extra", things: "true" })
assert.same {
nil, {
[[2: expected type "number", got "string"]]
}
}, {
t\transform { "one", "two" }
}
assert.same {
nil, {
[[1: expected type "string", got "boolean"]]
[[2: expected type "number", got "boolean"]]
}
}, {
t\transform { false, true, "give" }
}
describe "params_map", ->
types = require "lapis.validate.types"
it "tests empty object", ->
map_t = types.params_map types.db_id, types.table
result, err = map_t\transform {}
assert.same {}, result
assert.falsy err
it "tests invalid input type", ->
params_t = types.params_map(types.db_id, types.table)
assert.same {nil, {[[params map: expected type "table", got "string"]]}}, { params_t\transform("not a table") }
it "tests simple map", ->
map_t = types.params_map types.db_id\tag("keys[]"), types.params_shape {
{"name", types.string\tag("names[]")}
}
res, state = map_t\transform {
"55": {name: "hello", exlude: 12}
"99": {name: "world"}
}
assert.same {
[55]: {name: "hello"}
[99]: {name: "world"}
}, res
assert.same 2, #state.names
assert.same 2, #state.keys
assert.same {
[55]: true
[99]: true
}, {k, true for k in *state.keys}
assert.same {
["hello"]: true
["world"]: true
}, {k, true for k in *state.names}
-- default iterator if there is only one error
it "single failure cases", ->
map_t = types.params_map types.db_id\tag("keys[]"), types.params_shape {
{"name", types.string\tag("names[]")}
{"custom", types.boolean + types.nil}
}
assert.same {
nil
{ [[item key: expected database ID integer]] }
}, {
map_t\transform {
"hello": { name: false } -- value not tested
"23": {name: "world"}
}
}
assert.same {
nil
{
[[item 99: name: expected type "string", got "boolean"]]
[[item 99: custom: expected type "boolean", or type "nil"]]
}
}, {
map_t\transform {
"99": { name: false, custom: 239 }
"23": { name: "world" }
}
}
it "custom join_error", ->
map_t = types.params_map types.db_id\tag("keys[]"), types.params_shape({
{"name", types.string\tag("names[]")}
{"custom", types.boolean + types.nil}
}), {
join_error: (err, key, value, error_type) =>
"map[#{error_type}]: #{key} #{err}"
}
assert.same {
nil
{ [[map[key]: hello expected database ID integer]] }
}, {
map_t\transform {
"hello": { name: false } -- value not tested
"23": {name: "world"}
}
}
assert.same {
nil
{
[[map[value]: 99 name: expected type "string", got "boolean"]]
[[map[value]: 99 custom: expected type "boolean", or type "nil"]]
}
}, {
map_t\transform {
"99": { name: false, custom: 239 }
"23": { name: "world" }
}
}
it "ordered_pairs", ->
map_t = types.params_map types.db_id\tag("keys[]"), types.params_shape({
{"name", types.string\tag("names[]")}
{"custom", types.boolean + types.nil}
}), {
iter: types.params_map.ordered_pairs
}
res, state = map_t\transform {
"55": {name: "hello", exlude: 12}
"99": {name: "world"}
}
assert.same {
keys: {55, 99}
names: {"hello", "world"}
}, state
-- we use custom iterator to ensure that order is consistent
it "multiple failure cases", ->
map_t = types.params_map types.db_id\tag("keys[]"), types.params_shape({
{"name", types.string\tag("names[]")}
{"custom", types.boolean + types.nil}
}), {
iter: types.params_map.ordered_pairs
}
assert.same {
nil
{
[[item 99: name: expected type "string", got "boolean"]]
[[item 99: custom: expected type "boolean", or type "nil"]]
[[item key: expected database ID integer]]
}
}, {
map_t\transform {
"hello": { name: false } -- value not tested
"23": {name: "world"}
"99": { name: false, custom: 239 }
}
}
it "transforms key and value", ->
change_key = types.string / (s) -> "*#{s}*"
change_value = types.table * types.clone / (t) ->
t.visited = true
t
map_t = types.params_map change_key, change_value
og_object = {
one: {thing: "zing"}
}
assert.same {
"*one*": {thing: "zing", visited: true}
}, map_t\transform og_object
assert.same {
one: {thing: "zing"}
}, og_object
it "strips tuples that transform to nil", ->
map_t = types.params_map types.string + types.number / nil, types.string + types.number / nil
assert.same {
hello: "world"
}, map_t\transform {
hello: "world"
[55]: "zone"
song: 404
}
describe "params_array", ->
types = require "lapis.validate.types"
it "empty object", ->
shape = types.params_array(types.string)
assert.same {}, shape\transform {}
assert.same {
nil, {[[params array: expected type "table", got "boolean"]]}
}, { shape\transform true }
it "array with simple type", ->
shape = types.params_array(types.string)
assert.same {"hello", "world"}, shape\transform {"hello", "world"}
assert.same {
nil, {[[item 1: expected type "string", got "boolean"]]}
}, { shape\transform {true} }
assert.same {
nil, {
[[item 1: expected type "string", got "number"]]
[[item 3: expected type "string", got "boolean"]]
}
}, { shape\transform {7, "true", false} }
it "contains params_shape", ->
t = types.params_array types.params_shape {
{"name", types.string}
{"age", types.number}
}
assert.same { }, t\transform { }
input = {
{name: "John", age: 30}
{name: "Jane", age: 28}
}
output = t\transform input
assert.same input, output
assert input != output, "Input and output should be distinct objects"
assert.same {
nil, {
[[item 1: name: expected type "string", got "nil"]]
[[item 3: age: expected type "number", got "string"]]
[[item 4: name: expected type "string", got "nil"]]
[[item 4: age: expected type "number", got "nil"]]
}
}, {
t\transform {
{name: nil, age: 30}
{name: "Dane", age: 2389}
{name: "Jane", age: "cool"}
{}
}
}
it "very nested object", ->
t = types.params_array types.params_shape {
{"id", types.number}
{"tags", types.params_array types.params_shape {
{"name", types.string}
}}
}
assert.same {}, t\transform {}
assert.same {
nil, {
[[item 1: id: expected type "number", got "nil"]]
-- this is not ideal (params: )
[[item 1: tags: params array: expected type "table", got "boolean"]]
}
}, {
t\transform {
{ tags: false }
}
}
assert.same {
nil, {
[[item 2: tags: item 1: params: expected type "table", got "boolean"]]
[[item 3: tags: item 1: params: expected type "table", got "string"]]
[[item 3: tags: item 2: params: expected type "table", got "function"]]
}
}, {
t\transform {
{ id: 1, tags: {} }
{ id: 2, tags: { false } }
{ id: 3, tags: { "true", -> } }
}
}
-- valid object
assert.same {
{
{
id: 1234
tags: {
{name: "hello"}
}
}
}
}, {
t\transform {
{
id: 1234
tags: {
{ name: "hello" }
}
}
}
}
it "params_array length type", ->
t = types.params_array types.params_shape({
{"name", types.string}
}), length: types.range(5,6)
assert.same {
nil
{"length expected range from 5 to 6"}
}, { t\transform {} }
it "custom iterator", ->
t = types.params_array types.params_shape({
{"name", types.string}
}), iter: pairs
out = t\transform {
"one": {name: "cool"}
{name: "zone", age: 5}
}
assert.same out, {
{name: "zone"}
{name: "cool"}
}
assert.same {
nil, {
[[item 1: name: expected type "string", got "number"]]
[[item one: name: expected type "string", got "boolean"]]
}
}, {
t\transform {
"one": {name: false}
{name: 9999, age: 5}
}
}
it "captures state", ->
t = types.params_array types.partial({
title: types.string\tag "things[]"
}) + types.string\tag("things[]") / (o) -> {title: o}
res, state = assert t\transform {
{ title: "cool" }
{ title: "zone", age: 5 }
"whazt"
}
assert.same {
things: {
"cool", "zone", "whazt"
}
}, state
assert.same {
{ title: "cool" }
{ title: "zone", age: 5 }
{ title: "whazt"}
}, res
describe "flatten_errors", ->
types = require "lapis.validate.types"
it "flattens errors", ->
t = types.flatten_errors types.params_shape {
{"id", types.string}
{"name", types.string}
}
assert.same {nil, [[params: expected type "table", got "boolean"]]}, { t\transform true}
assert.same {nil, [[id: expected type "string", got "nil", name: expected type "string", got "nil"]]}, { t\transform {}}
assert.same {nil, [[name: expected type "string", got "nil"]]}, { t\transform {
id: "hello"
}}
assert.same {
{
id: "hello"
name: "world"
}
}, { t\transform {
id: "hello"
name: "world"
}}
it "passes flat errors through", ->
t = types.flatten_errors types.string + types.number
assert.same {nil, [[expected type "string", or type "number"]]}, {t\transform true}
assert.same {nil, [[expected type "string", or type "number"]]}, {t\transform true}
describe "multi_params", ->
types = require "lapis.validate.types"
it "tests two params objects", ->
t = types.multi_params {
types.params_shape {
{"id", types.db_id}
}
types.params_shape {
{"name", types.valid_text}
}
}
assert.same {
nil, {[[params: expected type "table", got "nil"]]}
}, { t\transform nil }
assert.same {
nil, {[[params: expected type "table", got "string"]]}
}, { t\transform "hello" }
assert.same {
nil, {
"id: expected database ID integer"
"name: expected valid text"
}
}, { t\transform {} }
assert.same {
nil, {
"name: expected valid text"
}
}, { t\transform {id: 234} }
assert.same {
nil, {
"id: expected database ID integer"
}
}, { t\transform {name: "hello"} }
assert.same {
{
id: 12
name: "hello"
}
}, { t\transform {name: "hello", thing: "ff", id: 12} }
it "tests multi params objects with conditional", ->
t = types.multi_params {
types.params_shape {
{"id", types.db_id}
}
types.params_shape({
{"type", types.literal "a"}
{"name", types.valid_text}
}) + types.params_shape {
{"type", types.literal "b"}
{"label", types.valid_text}
}
}
-- this is hideous, but it's a lot of work to determine how to show the
-- error message in an ideal way
assert.same {
nil, {
[[id: expected database ID integer]]
[[expected params type {
type: "a"
name: valid text
}, or params type {
type: "b"
label: valid text
}]]
}
}, { t\transform {} }
assert.same {
nil, {
[[expected params type {
type: "a"
name: valid text
}, or params type {
type: "b"
label: valid text
}]]
}
}, { t\transform {
id: "23"
} }
assert.same {
nil, {
[[expected params type {
type: "a"
name: valid text
}, or params type {
type: "b"
label: valid text
}]]
}
}, { t\transform {
type: "b"
name: "fart"
id: "23"
} }
assert.same {
nil, {
[[expected params type {
type: "a"
name: valid text
}, or params type {
type: "b"
label: valid text
}]]
}
}, { t\transform {
type: "a"
label: "sum"
id: "23"
} }
assert.same {
{
id: 23
type: "a"
name: "nem"
}
}, { t\transform {
id: "23"
type: "a"
name: "nem"
} }
assert.same {
{
id: 99
type: "b"
label: "cool"
}
}, { t\transform {
id: "99"
type: "b"
label: "cool"
} }
describe "empty", ->
types = require "lapis.validate.types"
it "tests empty", ->
assert.same true, types.empty nil