forked from geldata/gel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_constraints.py
1649 lines (1414 loc) · 53.3 KB
/
test_constraints.py
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
#
# This source file is part of the EdgeDB open source project.
#
# Copyright 2012-present MagicStack Inc. and the EdgeDB authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import os.path
import edgedb
from edb.testbase import server as tb
class TestConstraintsSchema(tb.QueryTestCase):
SCHEMA = os.path.join(os.path.dirname(__file__), 'schemas',
'constraints.esdl')
async def _run_link_tests(self, cases, objtype, link):
qry = """
INSERT {objtype} {{{{
{link} := {{value!r}}
}}}};
""".format(
objtype=objtype, link=link
)
for val, expected in cases:
async with self._run_and_rollback():
expr = qry.format(value=str(val))
if expected == 'good':
try:
await self.con.execute(expr)
except Exception as ex:
raise AssertionError(f'{expr!r} failed') from ex
else:
with self.assertRaisesRegex(
edgedb.ConstraintViolationError, expected):
await self.con.execute(expr)
async def test_constraints_scalar_length(self):
data = {
# max-length is 10
(10 ** 10,
'constraint_length must be no longer than 10 characters.'),
(10 ** 10 - 1, 'good'),
(10 ** 7 - 1,
'constraint_length must be no shorter than 8 characters'),
(10 ** 7, 'good'),
}
await self._run_link_tests(data, 'default::Object', 'c_length')
data = {
(10 ** 10,
'constraint_length must be no longer than 10 characters.'),
(10 ** 10 - 1, 'good'),
(10 ** 8 - 1,
'constraint_length_2 must be no shorter than 9 characters'),
(10 ** 8, 'good'),
}
await self._run_link_tests(data, 'default::Object', 'c_length_2')
data = {
(10 ** 10,
'constraint_length must be no longer than 10 characters.'),
(10 ** 10 - 1, 'good'),
(10 ** 9 - 1, 'c_length_3 must be no shorter than 10 characters'),
}
await self._run_link_tests(data, 'default::Object', 'c_length_3')
async def test_constraints_scalar_minmax(self):
data = {
# max-value is "9999999989"
(10 ** 9 - 1, "Maximum allowed value for .* is '9999999989'."),
(10 ** 9 - 11, 'good'),
# min-value is "99990000"
(10 ** 8 - 10 ** 4 - 1,
"Minimum allowed value for .* is '99990000'."),
(10 ** 8 - 21, 'good'),
}
await self._run_link_tests(data, 'default::Object', 'c_minmax')
async def test_constraints_scalar_strvalue(self):
data = {
# last digit is 9
(10 ** 9 - 12, 'invalid .*'),
# and the first is 9 too
(10 ** 9 - 10 ** 8 - 1, 'invalid .*'),
# and that all characters are digits
('99900~0009', 'invalid .*'),
# and that first three chars are nines
('9900000009', 'invalid .*'),
('9999000009', 'good'),
}
await self._run_link_tests(data, 'default::Object', 'c_strvalue')
async def test_constraints_scalar_enum_01(self):
data = {
('foobar', 'must be one of:'),
('bar', 'good'),
('foo', 'good'),
}
await self._run_link_tests(data, 'default::Object', 'c_enum')
async def test_constraints_scalar_enum_02(self):
data = {
('foo', 'invalid'),
('fuz', 'good'),
('buz', 'good'),
}
await self._run_link_tests(data, 'default::Object', 'c_my_enum')
async def test_constraints_exclusive_simple(self):
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
await self.con.execute("""
INSERT UniqueName {
name := 'Test'
};
INSERT UniqueName {
name := 'Test'
};
""")
async def test_constraints_exclusive_inherited(self):
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
await self.con.execute("""
INSERT UniqueNameInherited {
name := 'Test'
};
INSERT UniqueNameInherited {
name := 'Test'
};
""")
async def test_constraints_exclusive_across_ancestry(self):
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
await self.con.execute("""
INSERT UniqueName {
name := 'exclusive_name_across'
};
INSERT UniqueNameInherited {
name := 'exclusive_name_across'
};
""")
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
await self.con.execute("""
INSERT UniqueNameInherited {
name := 'exclusive_name_across'
};
INSERT UniqueName {
name := 'exclusive_name_across'
};
""")
async with self._run_and_rollback():
await self.con.execute("""
INSERT UniqueName {
name := 'exclusive_name_ok'
};
INSERT UniqueNameInherited {
name := 'exclusive_name_inherited_ok'
};
""")
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
await self.con.execute("""
UPDATE
UniqueNameInherited
FILTER
UniqueNameInherited.name =
'exclusive_name_inherited_ok'
SET {
name := 'exclusive_name_ok'
};
""")
async def test_constraints_exclusive_case_insensitive(self):
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
await self.con.execute("""
INSERT UniqueName_3 {
name := 'TeSt'
};
INSERT UniqueName_3 {
name := 'tEsT'
};
""")
async def test_constraints_exclusive_delegation(self):
async with self._run_and_rollback():
# This is OK, the name exclusivity constraint is delegating
await self.con.execute("""
INSERT AbstractConstraintParent {
name := 'exclusive_name_ap'
};
INSERT AbstractConstraintParent {
name := 'exclusive_name_ap'
};
""")
# This is OK too
await self.con.execute("""
INSERT AbstractConstraintParent {
name := 'exclusive_name_ap1'
};
INSERT AbstractConstraintPureChild {
name := 'exclusive_name_ap1'
};
""")
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
# Not OK, abstract constraint materializes into a real one
await self.con.execute("""
INSERT AbstractConstraintPureChild {
name := 'exclusive_name_ap2'
};
INSERT AbstractConstraintPureChild {
name := 'exclusive_name_ap2'
};
""")
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
# Not OK, abstract constraint materializes into a real one
await self.con.execute("""
INSERT AbstractConstraintMixedChild {
name := 'exclusive_name_ap2'
};
INSERT AbstractConstraintMixedChild {
name := 'exclusive_name_AP2'
};
""")
async with self._run_and_rollback():
# This is OK, duplication is in different children
await self.con.execute("""
INSERT AbstractConstraintPureChild {
name := 'exclusive_name_ap3'
};
INSERT AbstractConstraintMixedChild {
name := 'exclusive_name_ap3'
};
""")
# This is OK, the name exclusivity constraint is abstract again
await self.con.execute("""
INSERT AbstractConstraintPropagated {
name := 'exclusive_name_ap4'
};
INSERT AbstractConstraintPropagated {
name := 'exclusive_name_ap4'
};
""")
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
# Not OK, yet
await self.con.execute("""
INSERT BecomingAbstractConstraint {
name := 'exclusive_name_ap5'
};
INSERT BecomingAbstractConstraintChild {
name := 'exclusive_name_ap5'
};
""")
async with self._run_and_rollback():
await self.con.execute("""
INSERT BecomingConcreteConstraint {
name := 'exclusive_name_ap6'
};
INSERT BecomingConcreteConstraintChild {
name := 'exclusive_name_ap6'
};
""")
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
await self.con.execute("""
INSERT LosingAbstractConstraintParent {
name := 'exclusive_name_ap7'
};
INSERT LosingAbstractConstraintParent {
name := 'exclusive_name_ap7'
};
""")
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
await self.con.execute("""
INSERT AbstractConstraintMultipleParentsFlattening{
name := 'exclusive_name_ap8'
};
INSERT AbstractConstraintMultipleParentsFlattening{
name := 'exclusive_name_ap8'
};
""")
async def test_constraints_exclusive_multi_property_distinct(self):
await self.con.execute("""
INSERT PropertyContainer {
tags := {"one", "two"}
};
""")
async with self.assertRaisesRegexTx(
edgedb.ConstraintViolationError,
"tags violates exclusivity constraint",
):
await self.con.execute("""
INSERT PropertyContainer {
tags := {"one", "three"}
};
""")
async with self.assertRaisesRegexTx(
edgedb.ConstraintViolationError,
"tags violates exclusivity constraint",
):
await self.con.execute("""
INSERT PropertyContainer {
tags := {"four", "four"}
};
""")
async def test_constraints_objects(self):
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
"ObjCnstr violates exclusivity constraint"):
await self.con.execute("""
INSERT ObjCnstr {
first_name := "foo", last_name := "bar" };
INSERT ObjCnstr {
first_name := "foo", last_name := "baz" }
""")
async with self._run_and_rollback():
await self.con.execute("""
INSERT ObjCnstr {
first_name := "foo", last_name := "bar",
label := (INSERT Label {text := "obj_test" })
};
""")
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
"ObjCnstr violates exclusivity constraint"):
await self.con.execute("""
INSERT ObjCnstr {
first_name := "emarg", last_name := "hatch",
label := (SELECT Label
FILTER .text = "obj_test" LIMIT 1) };
""")
class TestConstraintsSchemaMigration(tb.QueryTestCase):
SCHEMA = os.path.join(os.path.dirname(__file__),
'schemas', 'constraints_migration',
'schema.esdl')
async def test_constraints_exclusive_migration(self):
new_schema_f = os.path.join(os.path.dirname(__file__),
'schemas', 'constraints_migration',
'updated_schema.esdl')
with open(new_schema_f) as f:
new_schema = f.read()
await self.migrate(new_schema)
async with self._run_and_rollback():
# This is OK, the name exclusivity constraint is abstract
await self.con.execute("""
INSERT AbstractConstraintParent {
name := 'exclusive_name_ap'
};
INSERT AbstractConstraintParent {
name := 'exclusive_name_ap'
};
""")
# This is OK too
await self.con.execute("""
INSERT AbstractConstraintParent {
name := 'exclusive_name_ap1'
};
INSERT AbstractConstraintPureChild {
name := 'exclusive_name_ap1'
};
""")
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
# Not OK, abstract constraint materializes into a real one
await self.con.execute("""
INSERT AbstractConstraintPureChild {
name := 'exclusive_name_ap2'
};
INSERT AbstractConstraintPureChild {
name := 'exclusive_name_ap2'
};
""")
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
# Not OK, abstract constraint materializes into a real one
await self.con.execute("""
INSERT AbstractConstraintMixedChild {
name := 'exclusive_name_ap2'
};
INSERT AbstractConstraintMixedChild {
name := 'exclusive_name_AP2'
};
""")
async with self._run_and_rollback():
# This is OK, duplication is in different children
await self.con.execute("""
INSERT AbstractConstraintMixedChild {
name := 'exclusive_name_ap3'
};
INSERT AbstractConstraintPureChild {
name := 'exclusive_name_ap3'
};
""")
async with self._run_and_rollback():
# This is OK, the name exclusivity constraint is abstract again
await self.con.execute("""
INSERT AbstractConstraintPropagated {
name := 'exclusive_name_ap4'
};
INSERT AbstractConstraintPropagated {
name := 'exclusive_name_ap4'
};
""")
async with self._run_and_rollback():
# OK, former constraint was turned into an abstract constraint
await self.con.execute("""
INSERT BecomingAbstractConstraint {
name := 'exclusive_name_ap5'
};
INSERT BecomingAbstractConstraintChild {
name := 'exclusive_name_ap5'
};
""")
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
# Constraint is no longer abstract
await self.con.execute("""
INSERT BecomingConcreteConstraint {
name := 'exclusive_name_ap6'
};
INSERT BecomingConcreteConstraintChild {
name := 'exclusive_name_ap6'
};
""")
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
# Constraint is no longer abstract
await self.con.execute("""
INSERT LosingAbstractConstraintParent {
name := 'exclusive_name_ap6'
};
INSERT LosingAbstractConstraintParent {
name := 'exclusive_name_ap6'
};
""")
async with self._run_and_rollback():
await self.con.execute("""
INSERT LosingAbstractConstraintParent2 {
name := 'exclusive_name_ap7'
};
INSERT LosingAbstractConstraintParent2 {
name := 'exclusive_name_ap7'
};
""")
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint'):
# Constraint is no longer abstract
await self.con.execute("""
INSERT AbstractConstraintMultipleParentsFlattening{
name := 'exclusive_name_ap8'
};
INSERT AbstractConstraintMultipleParentsFlattening{
name := 'exclusive_name_AP8'
};
""")
async with self._run_and_rollback():
with self.assertRaisesRegex(
edgedb.ConstraintViolationError,
"nope!"):
await self.con.execute("""
INSERT ObjCnstr {
first_name := "foo", last_name := "bar" };
INSERT ObjCnstr {
first_name := "foo", last_name := "baz" }
""")
class TestConstraintsDDL(tb.DDLTestCase):
async def test_constraints_ddl_01(self):
qry = """
CREATE ABSTRACT LINK translated_label {
CREATE PROPERTY lang -> std::str;
CREATE PROPERTY prop1 -> std::str;
};
CREATE ABSTRACT LINK link_with_exclusive_property {
CREATE PROPERTY exclusive_property -> std::str {
CREATE CONSTRAINT std::exclusive;
};
};
CREATE ABSTRACT LINK link_with_exclusive_property_inherited
EXTENDING link_with_exclusive_property;
CREATE TYPE UniqueName {
CREATE PROPERTY name -> std::str {
CREATE CONSTRAINT std::exclusive;
};
CREATE LINK link_with_exclusive_property -> std::Object;
};
"""
await self.con.execute(qry)
# Simple exclusivity constraint on a link
async with self.assertRaisesRegexTx(
edgedb.ConstraintViolationError,
'name violates exclusivity constraint',
):
await self.con.execute("""
INSERT UniqueName {
name := 'Test'
};
INSERT UniqueName {
name := 'Test'
};
""")
qry = """
CREATE TYPE AbstractConstraintParent {
CREATE PROPERTY name -> std::str {
CREATE DELEGATED CONSTRAINT std::exclusive;
};
};
CREATE TYPE AbstractConstraintPureChild
EXTENDING AbstractConstraintParent;
"""
await self.con.execute(qry)
# This is OK, the name exclusivity constraint is abstract
await self.con.execute("""
INSERT AbstractConstraintParent {
name := 'exclusive_name_ap'
};
INSERT AbstractConstraintParent {
name := 'exclusive_name_ap'
};
""")
# This is OK too
await self.con.execute("""
INSERT AbstractConstraintParent {
name := 'exclusive_name_ap1'
};
INSERT AbstractConstraintPureChild {
name := 'exclusive_name_ap1'
};
""")
async def test_constraints_ddl_02(self):
# testing the generalized constraint with 'ON (...)' clause
qry = r"""
CREATE ABSTRACT CONSTRAINT mymax1(max: std::int64)
ON (len(__subject__))
{
SET errmessage :=
'{__subject__} must be no longer than {max} characters.';
USING (__subject__ <= max);
};
CREATE ABSTRACT CONSTRAINT mymax_ext1(max: std::int64)
ON (len(__subject__)) EXTENDING std::max_value
{
SET errmessage :=
'{__subject__} must be no longer than {max} characters.';
};
CREATE TYPE ConstraintOnTest1 {
CREATE PROPERTY foo -> std::str {
CREATE CONSTRAINT mymax1(3);
};
CREATE PROPERTY bar -> std::str {
CREATE CONSTRAINT mymax_ext1(3);
};
};
"""
await self.con.execute(qry)
await self.assert_query_result(
r'''
SELECT schema::Constraint {
name,
params: {
num,
name,
kind,
type: {
name
},
typemod,
@value
}
FILTER .num > 0
ORDER BY .num ASC
} FILTER
.name = 'default::mymax_ext1'
AND exists(.subject);
''',
[
{
"name": 'default::mymax_ext1',
"params": [
{
"num": 1,
"kind": 'PositionalParam',
"name": 'max',
"type": {"name": 'std::int64'},
"@value": '3',
"typemod": 'SingletonType'
}
],
},
]
)
await self.assert_query_result(
r'''
SELECT schema::Constraint {
name,
params: {
num,
name,
kind,
type: {
name
},
typemod
}
FILTER .num > 0
ORDER BY .num ASC
} FILTER
.name = 'default::mymax_ext1'
AND NOT exists(.subject);
''',
[
{
"name": 'default::mymax_ext1',
"params": [
{
"num": 1,
"kind": 'PositionalParam',
"name": 'max',
"type": {"name": 'std::int64'},
"typemod": 'SingletonType'
}
],
},
]
)
# making sure the constraint was applied successfully
async with self.assertRaisesRegexTx(
edgedb.ConstraintViolationError,
'foo must be no longer than 3 characters.',
):
await self.con.execute("""
INSERT ConstraintOnTest1 {
foo := 'Test'
};
""")
async with self.assertRaisesRegexTx(
edgedb.ConstraintViolationError,
'bar must be no longer than 3 characters.',
):
await self.con.execute("""
INSERT ConstraintOnTest1 {
bar := 'Test'
};
""")
# constraint should not fail
await self.con.execute("""
INSERT ConstraintOnTest1 {
foo := '',
bar := ''
};
INSERT ConstraintOnTest1 {
foo := 'a',
bar := 'q'
};
INSERT ConstraintOnTest1 {
foo := 'ab',
bar := 'qw'
};
INSERT ConstraintOnTest1 {
foo := 'abc',
bar := 'qwe'
};
# a duplicate 'foo' and 'bar' just for good measure
INSERT ConstraintOnTest1 {
foo := 'ab',
bar := 'qw'
};
""")
async def test_constraints_ddl_03(self):
# testing the specialized constraint with 'ON (...)' clause
qry = r"""
CREATE ABSTRACT CONSTRAINT mymax2(max: std::int64) {
SET errmessage :=
'{__subject__} must be no longer than {max} characters.';
USING (__subject__ <= max);
};
CREATE TYPE ConstraintOnTest2 {
CREATE PROPERTY foo -> std::str {
CREATE CONSTRAINT mymax2(3) ON (len(__subject__));
};
CREATE PROPERTY bar -> std::str {
CREATE CONSTRAINT std::max_value(3) ON (len(__subject__)) {
SET errmessage :=
# XXX: once simple string concat is possible here
# formatting can be saner
'{__subject__} must be no longer than {max} characters.';
};
};
};
"""
await self.con.execute(qry)
# making sure the constraint was applied successfully
async with self.assertRaisesRegexTx(
edgedb.ConstraintViolationError,
'foo must be no longer than 3 characters.',
):
await self.con.execute("""
INSERT ConstraintOnTest2 {
foo := 'Test'
};
""")
async with self.assertRaisesRegexTx(
edgedb.ConstraintViolationError,
'bar must be no longer than 3 characters.',
):
await self.con.execute("""
INSERT ConstraintOnTest2 {
bar := 'Test'
};
""")
# constraint should not fail
await self.con.execute("""
INSERT ConstraintOnTest2 {
foo := '',
bar := ''
};
INSERT ConstraintOnTest2 {
foo := 'a',
bar := 'q'
};
INSERT ConstraintOnTest2 {
foo := 'ab',
bar := 'qw'
};
INSERT ConstraintOnTest2 {
foo := 'abc',
bar := 'qwe'
};
# a duplicate 'foo' and 'bar' just for good measure
INSERT ConstraintOnTest2 {
foo := 'ab',
bar := 'qw'
};
""")
async def test_constraints_ddl_04(self):
# testing an issue with expressions used for 'errmessage'
qry = r"""
CREATE ABSTRACT CONSTRAINT mymax3(max: std::int64) {
SET errmessage :=
'{__subject__} must be no longer ' ++
'than {max} characters.';
USING (__subject__ <= max);
};
CREATE TYPE ConstraintOnTest3 {
CREATE PROPERTY foo -> std::str {
CREATE CONSTRAINT mymax3(3) ON (len(__subject__));
};
};
"""
await self.con.execute(qry)
# making sure the constraint was applied successfully
async with self.assertRaisesRegexTx(
edgedb.ConstraintViolationError,
'foo must be no longer than 3 characters.',
):
await self.con.execute("""
INSERT ConstraintOnTest3 {
foo := 'Test'
};
""")
async def test_constraints_ddl_05(self):
# Test that constraint expression returns a boolean.
await self.con.execute(r"""
CREATE FUNCTION con05(a: int64) -> str
USING EdgeQL $$
SELECT <str>a
$$;
""")
# create a type with a constraint
await self.con.execute(r"""
CREATE TYPE ConstraintOnTest5 {
CREATE REQUIRED PROPERTY foo -> int64 {
# Use the function in a constraint expression,
# s.t. it will effectively fail for any int
# outside 0-9 range.
CREATE CONSTRAINT
std::expression on (len(con05(__subject__)) < 2);
}
}
""")
async with self.assertRaisesRegexTx(
edgedb.errors.ConstraintViolationError,
r'invalid foo',
):
await self.con.execute("""
INSERT ConstraintOnTest5 {
foo := 42
};
""")
# constraint should not fail
await self.con.execute("""
INSERT ConstraintOnTest5 {
foo := 2
};
""")
async def test_constraints_ddl_06(self):
# Test that constraint expression returns a boolean.
await self.con.execute(r"""
CREATE FUNCTION con06(a: int64) -> array<int64>
USING EdgeQL $$
SELECT [a]
$$;
""")
# create a type with a constraint
await self.con.execute(r"""
CREATE TYPE ConstraintOnTest6 {
CREATE REQUIRED PROPERTY foo -> int64 {
# Use the function in a constraint expression,
# s.t. it will never fail.
CREATE CONSTRAINT
std::expression on (len(con06(__subject__)) < 2);