-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Expand file tree
/
Copy pathcheck-abstract.test
More file actions
1690 lines (1437 loc) · 42.8 KB
/
check-abstract.test
File metadata and controls
1690 lines (1437 loc) · 42.8 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
-- Type checker test cases for abstract classes.
-- Subtyping with abstract classes
-- -------------------------------
[case testAbstractClassSubclasses]
from abc import abstractmethod, ABCMeta
i: I
j: J
a: A
b: B
c: C
def f(): i, j, a, b, c # Prevent redefinition
j = c # E: Incompatible types in assignment (expression has type "C", variable has type "J")
a = i # E: Incompatible types in assignment (expression has type "I", variable has type "A")
a = j # E: Incompatible types in assignment (expression has type "J", variable has type "A")
b = i # E: Incompatible types in assignment (expression has type "I", variable has type "B")
i = a
i = b
i = c
j = a
j = b
a = b
class I(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
class J(metaclass=ABCMeta):
@abstractmethod
def g(self): pass
class A(I, J): pass
class B(A): pass
class C(I): pass
[builtins fixtures/tuple.pyi]
[case testAbstractClassSubtypingViaExtension]
from abc import abstractmethod, ABCMeta
i: I
j: J
a: A
o: object
def f(): i, j, a, o # Prevent redefinition
j = i # E: Incompatible types in assignment (expression has type "I", variable has type "J")
a = i # E: Incompatible types in assignment (expression has type "I", variable has type "A")
a = j # E: Incompatible types in assignment (expression has type "J", variable has type "A")
i = o # E: Incompatible types in assignment (expression has type "object", variable has type "I")
j = o # E: Incompatible types in assignment (expression has type "object", variable has type "J")
i = a
j = a
i = j
o = i
o = j
class I(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
class J(I): pass
class A(J): pass
[builtins fixtures/tuple.pyi]
[case testInheritingAbstractClassInSubclass]
from abc import abstractmethod, ABCMeta
i: I
a: A
b: B
if int():
i = a # E: Incompatible types in assignment (expression has type "A", variable has type "I")
if int():
b = a # E: Incompatible types in assignment (expression has type "A", variable has type "B")
if int():
a = b
if int():
i = b
class I(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
class A: pass
class B(A, I): pass
-- Abstract class objects
-- ----------------------
[case testAbstractClassAsTypeObject]
from abc import abstractmethod, ABCMeta
class I(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
o: object
t: type
o = I
t = I
[case testAbstractClassInCasts]
from typing import cast
from abc import abstractmethod, ABCMeta
class I(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
class A(I): pass
class B: pass
i: I
a: A
b: B
o: object
if int():
a = cast(I, o) # E: Incompatible types in assignment (expression has type "I", variable has type "A")
if int():
b = cast(B, i) # Ok; a subclass of B might inherit I
if int():
i = cast(I, b) # Ok; a subclass of B might inherit I
if int():
i = cast(I, o)
if int():
i = cast(I, a)
[builtins fixtures/tuple.pyi]
[case testInstantiatingClassThatImplementsAbstractMethod]
from abc import abstractmethod, ABCMeta
import typing
class A(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
class B(A):
def f(self): pass
B()
[out]
[case testInstantiatingAbstractClass]
from abc import abstractmethod, ABCMeta
import typing
class A(metaclass=ABCMeta): pass
class B(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
A() # OK
B() # E: Cannot instantiate abstract class "B" with abstract attribute "f"
[out]
[case testInstantiatingClassWithInheritedAbstractMethod]
from abc import abstractmethod, ABCMeta
import typing
class A(metaclass=ABCMeta):
@abstractmethod
def f(self): pass
@abstractmethod
def g(self): pass
class B(A): pass
B() # E: Cannot instantiate abstract class "B" with abstract attributes "f" and "g"
[out]
[case testInstantiationAbstractsInTypeForFunctions]
from typing import Type
from abc import abstractmethod
class A:
@abstractmethod
def m(self) -> None: pass
class B(A): pass
class C(B):
def m(self) -> None:
pass
def f(cls: Type[A]) -> A:
return cls() # OK
def g() -> A:
return A() # E: Cannot instantiate abstract class "A" with abstract attribute "m"
f(A) # E: Only concrete class can be given where "type[A]" is expected
f(B) # E: Only concrete class can be given where "type[A]" is expected
f(C) # OK
x: Type[B]
f(x) # OK
[out]
[case testAbstractTypeInADict]
from typing import Dict, Type
from abc import abstractmethod
class Class:
@abstractmethod
def method(self) -> None:
pass
my_dict_init: Dict[int, Type[Class]] = {0: Class} # E: Only concrete class can be given where "tuple[int, type[Class]]" is expected
class Child(Class):
def method(self) -> None: ...
other_dict_init: Dict[int, Type[Class]] = {0: Child} # ok
[builtins fixtures/dict.pyi]
[out]
[case testInstantiationAbstractsInTypeForAliases]
from typing import Type
from abc import abstractmethod
class A:
@abstractmethod
def m(self) -> None: pass
class B(A): pass
class C(B):
def m(self) -> None:
pass
def f(cls: Type[A]) -> A:
return cls() # OK
Alias = A
GoodAlias = C
Alias() # E: Cannot instantiate abstract class "A" with abstract attribute "m"
GoodAlias()
f(Alias) # E: Only concrete class can be given where "type[A]" is expected
f(GoodAlias)
[out]
[case testInstantiationAbstractsInTypeForVariables]
# flags: --no-strict-optional
from typing import Type, overload
from abc import abstractmethod
class A:
@abstractmethod
def m(self) -> None: pass
class B(A): pass
class C(B):
def m(self) -> None:
pass
var: Type[A]
var()
if int():
var = A # E: Can only assign concrete classes to a variable of type "type[A]"
if int():
var = B # E: Can only assign concrete classes to a variable of type "type[A]"
if int():
var = C # OK
var_old = None # type: Type[A] # Old syntax for variable annotations
var_old()
if int():
var_old = A # E: Can only assign concrete classes to a variable of type "type[A]"
if int():
var_old = B # E: Can only assign concrete classes to a variable of type "type[A]"
if int():
var_old = C # OK
class D(A):
@overload
def __new__(cls, a) -> "D": ...
@overload
def __new__(cls) -> "D": ...
def __new__(cls, a=None) -> "D": ...
if int():
var = D # E: Can only assign concrete classes to a variable of type "type[A]"
[out]
[case testInstantiationAbstractsInTypeForClassMethods]
from typing import Type
from abc import abstractmethod
class Logger:
@staticmethod
def log(a: Type[C]):
pass
class C:
@classmethod
def action(cls) -> None:
cls() #OK for classmethods
Logger.log(cls) #OK for classmethods
@abstractmethod
def m(self) -> None:
pass
[builtins fixtures/classmethod.pyi]
[out]
[case testInstantiatingClassWithInheritedAbstractMethodAndSuppression]
from abc import abstractmethod, ABCMeta
import typing
class A(metaclass=ABCMeta):
@abstractmethod
def a(self): pass
@abstractmethod
def b(self): pass
@abstractmethod
def c(self): pass
@abstractmethod
def d(self): pass
@abstractmethod
def e(self): pass
@abstractmethod
def f(self): pass
@abstractmethod
def g(self): pass
@abstractmethod
def h(self): pass
@abstractmethod
def i(self): pass
@abstractmethod
def j(self): pass
a = A() # E: Cannot instantiate abstract class "A" with abstract attributes "a", "b", ... and "j" (7 methods suppressed)
[out]
-- Implementing abstract methods
-- -----------------------------
[case testImplementingAbstractMethod]
from abc import abstractmethod, ABCMeta
import typing
class A(metaclass=ABCMeta):
@abstractmethod
def f(self, x: int) -> int: pass
@abstractmethod
def g(self, x: int) -> int: pass
class B(A):
def f(self, x: str) -> int: \
# E: Argument 1 of "f" is incompatible with supertype "A"; supertype defines the argument type as "int" \
# N: This violates the Liskov substitution principle \
# N: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides
return 0
def g(self, x: int) -> int: return 0
[out]
[case testImplementingAbstractMethodWithMultipleBaseClasses]
from abc import abstractmethod, ABCMeta
import typing
class I(metaclass=ABCMeta):
@abstractmethod
def f(self, x: int) -> int: pass
class J(metaclass=ABCMeta):
@abstractmethod
def g(self, x: str) -> str: pass
class A(I, J):
def f(self, x: str) -> int: return 0 \
# E: Argument 1 of "f" is incompatible with supertype "I"; supertype defines the argument type as "int" \
# N: This violates the Liskov substitution principle \
# N: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides
def g(self, x: str) -> int: return 0 \
# E: Return type "int" of "g" incompatible with return type "str" in supertype "J"
def h(self) -> int: return 0 # Not related to any base class
[out]
[case testImplementingAbstractMethodWithExtension]
from abc import abstractmethod, ABCMeta
import typing
class J(metaclass=ABCMeta):
@abstractmethod
def f(self, x: int) -> int: pass
class I(J): pass
class A(I):
def f(self, x: str) -> int: return 0 \
# E: Argument 1 of "f" is incompatible with supertype "J"; supertype defines the argument type as "int" \
# N: This violates the Liskov substitution principle \
# N: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides
[out]
[case testInvalidOverridingAbstractMethod]
from abc import abstractmethod, ABCMeta
import typing
class J(metaclass=ABCMeta):
@abstractmethod
def f(self, x: 'J') -> None: pass
class I(J):
@abstractmethod
def f(self, x: 'I') -> None: pass # E: Argument 1 of "f" is incompatible with supertype "J"; supertype defines the argument type as "J" \
# N: This violates the Liskov substitution principle \
# N: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides
[out]
[case testAbstractClassCoAndContraVariance]
from abc import abstractmethod, ABCMeta
import typing
class I(metaclass=ABCMeta):
@abstractmethod
def f(self, a: A) -> 'I': pass
@abstractmethod
def g(self, a: A) -> 'I': pass
@abstractmethod
def h(self, a: 'I') -> A: pass
class A(I):
def h(self, a: 'A') -> 'I': # Fail
return A()
def f(self, a: 'I') -> 'I':
return A()
def g(self, a: 'A') -> 'A':
return A()
[out]
main:11: error: Return type "I" of "h" incompatible with return type "A" in supertype "I"
main:11: error: Argument 1 of "h" is incompatible with supertype "I"; supertype defines the argument type as "I"
main:11: note: This violates the Liskov substitution principle
main:11: note: See https://mypy.readthedocs.io/en/stable/common_issues.html#incompatible-overrides
-- Accessing abstract members
-- --------------------------
[case testAccessingAbstractMethod]
from abc import abstractmethod, ABCMeta
class I(metaclass=ABCMeta):
@abstractmethod
def f(self, a: int) -> str: pass
i: I
a: int
b: str
if int():
a = i.f(a) # E: Incompatible types in assignment (expression has type "str", variable has type "int")
if int():
b = i.f(b) # E: Argument 1 to "f" of "I" has incompatible type "str"; expected "int"
i.g() # E: "I" has no attribute "g"
if int():
b = i.f(a)
[builtins fixtures/tuple.pyi]
[case testAccessingInheritedAbstractMethod]
from abc import abstractmethod, ABCMeta
class J(metaclass=ABCMeta):
@abstractmethod
def f(self, a: int) -> str: pass
class I(J): pass
i: I
a: int
b: str
if int():
a = i.f(1) # E: Incompatible types in assignment (expression has type "str", variable has type "int")
if int():
b = i.f(1)
-- Any (dynamic) types
-- -------------------
[builtins fixtures/tuple.pyi]
[case testAbstractClassWithAllDynamicTypes]
from abc import abstractmethod, ABCMeta
import typing
class I(metaclass=ABCMeta):
@abstractmethod
def f(self, x): pass
@abstractmethod
def g(self, x): pass
class A(I):
def f(self, x): pass
def g(self, x, y) -> None: pass # Fail
[out]
main:10: error: Signature of "g" incompatible with supertype "I"
main:10: note: Superclass:
main:10: note: def g(self, x: Any) -> Any
main:10: note: Subclass:
main:10: note: def g(self, x: Any, y: Any) -> None
[case testAbstractClassWithAllDynamicTypes2]
from abc import abstractmethod, ABCMeta
import typing
class I(metaclass=ABCMeta):
@abstractmethod
def f(self, x): pass
@abstractmethod
def g(self, x): pass
class A(I):
def f(self, x): pass
def g(self, x, y): pass
[out]
[case testAbstractClassWithImplementationUsingDynamicTypes]
from abc import abstractmethod, ABCMeta
import typing
class I(metaclass=ABCMeta):
@abstractmethod
def f(self, x: int) -> None: pass
@abstractmethod
def g(self, x: int) -> None: pass
class A(I):
def f(self, x): pass
def g(self, x, y): pass
[out]
-- Special cases
-- -------------
[case testMultipleAbstractBases]
from abc import abstractmethod, ABCMeta
import typing
class A(metaclass=ABCMeta):
@abstractmethod
def f(self) -> None: pass
class B(metaclass=ABCMeta):
@abstractmethod
def g(self) -> None: pass
class C(A, B):
@abstractmethod
def h(self) -> None: pass
[case testMemberAccessWithMultipleAbstractBaseClasses]
from abc import abstractmethod, ABCMeta
class A(metaclass=ABCMeta):
@abstractmethod
def f(self) -> None: pass
class B(metaclass=ABCMeta):
@abstractmethod
def g(self) -> None: pass
class C(A, B): pass
x: C
x.f()
x.g()
x.f(x) # E: Too many arguments for "f" of "A"
x.g(x) # E: Too many arguments for "g" of "B"
[case testInstantiatingAbstractClassWithMultipleBaseClasses]
from abc import abstractmethod, ABCMeta
class A(metaclass=ABCMeta):
@abstractmethod
def f(self) -> None: pass
class B(metaclass=ABCMeta):
@abstractmethod
def g(self) -> None: pass
class C(A, B):
def f(self) -> None: pass
class D(A, B):
def g(self) -> None: pass
class E(A, B):
def f(self) -> None: pass
def g(self) -> None: pass
C() # E: Cannot instantiate abstract class "C" with abstract attribute "g"
D() # E: Cannot instantiate abstract class "D" with abstract attribute "f"
E()
[case testInconsistentMro]
from abc import abstractmethod, ABCMeta
import typing
class A(metaclass=ABCMeta): pass
class B(object, A, metaclass=ABCMeta): # E: Cannot determine consistent method resolution order (MRO) for "B"
pass
class C(object, A): # E: Cannot determine consistent method resolution order (MRO) for "C" \
# E: Metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases
pass
[case testOverloadedAbstractMethod]
from foo import *
[file foo.pyi]
from abc import abstractmethod, ABCMeta
from typing import overload
class A(metaclass=ABCMeta):
@abstractmethod
@overload
def f(self, x: int) -> int: pass
@abstractmethod
@overload
def f(self, x: str) -> str: pass
class B(A):
@overload
def f(self, x: int) -> int: pass
@overload
def f(self, x: str) -> str: pass
A() # E: Cannot instantiate abstract class "A" with abstract attribute "f"
B()
B().f(1)
a = B() # type: A
a.f(1)
a.f('')
a.f(B()) # E: No overload variant of "f" of "A" matches argument type "B" \
# N: Possible overload variants: \
# N: def f(self, x: int) -> int \
# N: def f(self, x: str) -> str
[case testOverloadedAbstractMethodWithAlternativeDecoratorOrder]
from foo import *
[file foo.pyi]
from abc import abstractmethod, ABCMeta
from typing import overload
class A(metaclass=ABCMeta):
@overload
@abstractmethod
def f(self, x: int) -> int: pass
@overload
@abstractmethod
def f(self, x: str) -> str: pass
class B(A):
@overload
def f(self, x: int) -> int: pass
@overload
def f(self, x: str) -> str: pass
A() # E: Cannot instantiate abstract class "A" with abstract attribute "f"
B()
B().f(1)
a = B() # type: A
a.f(1)
a.f('')
a.f(B()) # E: No overload variant of "f" of "A" matches argument type "B" \
# N: Possible overload variants: \
# N: def f(self, x: int) -> int \
# N: def f(self, x: str) -> str
[case testOverloadedAbstractMethodVariantMissingDecorator0]
from foo import *
[file foo.pyi]
from abc import abstractmethod, ABCMeta
from typing import overload
class A(metaclass=ABCMeta):
@abstractmethod \
# E: Overloaded method has both abstract and non-abstract variants
@overload
def f(self, x: int) -> int: pass
@overload
def f(self, x: str) -> str: pass
[out]
[case testOverloadedAbstractMethodVariantMissingDecorator1]
from foo import *
[file foo.pyi]
from abc import abstractmethod, ABCMeta
from typing import overload
class A(metaclass=ABCMeta):
@overload \
# E: Overloaded method has both abstract and non-abstract variants
def f(self, x: int) -> int: pass
@abstractmethod
@overload
def f(self, x: str) -> str: pass
[out]
[case testMultipleInheritanceAndAbstractMethod]
import typing
from abc import abstractmethod, ABCMeta
class A:
def f(self, x: str) -> None: pass
class B(metaclass=ABCMeta):
@abstractmethod
def f(self, x: str) -> None: pass
class C(A, B): pass
[case testMultipleInheritanceAndAbstractMethod2]
import typing
from abc import abstractmethod, ABCMeta
class A:
def f(self, x: str) -> None: pass
class B(metaclass=ABCMeta):
@abstractmethod
def f(self, x: int) -> None: pass
class C(A, B): pass
[out]
main:8: error: Definition of "f" in base class "A" is incompatible with definition in base class "B"
[case testCallAbstractMethodBeforeDefinition]
import typing
from abc import abstractmethod, ABCMeta
class A(metaclass=ABCMeta):
def f(self) -> None:
self.g(1) # E: Argument 1 to "g" of "A" has incompatible type "int"; expected "str"
@abstractmethod
def g(self, x: str) -> None: pass
[out]
[case testAbstractOperatorMethods1]
import typing
from abc import abstractmethod, ABCMeta
class A(metaclass=ABCMeta):
@abstractmethod
def __lt__(self, other: 'A') -> int: pass
@abstractmethod
def __gt__(self, other: 'A') -> int: pass
[case testAbstractOperatorMethods2]
from typing import cast, Any
from abc import abstractmethod, ABCMeta
class A(metaclass=ABCMeta):
@abstractmethod
def __radd__(self, other: 'C') -> str: pass # Error
class B:
@abstractmethod
def __add__(self, other: 'A') -> int: pass
class C:
def __add__(self, other: int) -> B:
return cast(Any, None)
[out]
[case testAbstractClassWithAnyBase]
from typing import Any
from abc import abstractmethod, ABCMeta
A: Any
class D(metaclass=ABCMeta):
@abstractmethod
def f(self) -> None: pass
class C(A, D):
pass
C() # A might implement 'f'
-- Abstract properties
-- -------------------
[case testReadOnlyAbstractProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
def f(a: A) -> None:
a.x() # E: "int" not callable
a.x = 1 # E: Property "x" defined in "A" is read-only
[out]
[case testReadOnlyAbstractPropertyForwardRef]
from abc import abstractproperty, ABCMeta
def f(a: A) -> None:
a.x() # E: "int" not callable
a.x = 1 # E: Property "x" defined in "A" is read-only
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
[out]
[case testReadWriteAbstractProperty]
from abc import abstractproperty, ABCMeta
def f(a: A) -> None:
a.x.y # E: "int" has no attribute "y"
a.x = 1
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
@x.setter
def x(self, x: int) -> None: pass
[case testReadWriteDeleteAbstractProperty]
# flags: --no-strict-optional
from abc import ABC, abstractmethod
class Abstract(ABC):
@property
@abstractmethod
def prop(self) -> str: ...
@prop.setter
@abstractmethod
def prop(self, code: str) -> None: ...
@prop.deleter
@abstractmethod
def prop(self) -> None: ...
class Good(Abstract):
@property
def prop(self) -> str: ...
@prop.setter
def prop(self, code: str) -> None: ...
@prop.deleter
def prop(self) -> None: ...
class Bad1(Abstract):
@property # E: Read-only property cannot override read-write property
def prop(self) -> str: ...
class ThisShouldProbablyError(Abstract):
@property
def prop(self) -> str: ...
@prop.setter
def prop(self, code: str) -> None: ...
a = Good()
reveal_type(a.prop) # N: Revealed type is "builtins.str"
a.prop = 123 # E: Incompatible types in assignment (expression has type "int", variable has type "str")
[builtins fixtures/property.pyi]
[case testInstantiateClassWithReadOnlyAbstractProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
class B(A): pass
b = B() # E: Cannot instantiate abstract class "B" with abstract attribute "x"
[case testInstantiateClassWithReadWriteAbstractProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
@x.setter
def x(self, x: int) -> None: pass
class B(A): pass
b = B() # E: Cannot instantiate abstract class "B" with abstract attribute "x"
[case testImplementAbstractPropertyViaProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
class B(A):
@property
def x(self) -> int: return 0
b = B()
b.x() # E: "int" not callable
[builtins fixtures/property.pyi]
[case testImplementReadWriteAbstractPropertyViaProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
@x.setter
def x(self, v: int) -> None: pass
class B(A):
@property
def x(self) -> int: return 0
@x.setter
def x(self, v: int) -> None: pass
b = B()
b.x.y # E: "int" has no attribute "y"
[builtins fixtures/property.pyi]
[case testImplementAbstractPropertyViaPropertyInvalidType]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
class B(A):
@property
def x(self) -> str: return "no" # E: Signature of "x" incompatible with supertype "A" \
# N: Superclass: \
# N: int \
# N: Subclass: \
# N: str
b = B()
b.x() # E: "str" not callable
[builtins fixtures/property.pyi]
[case testCantImplementAbstractPropertyViaInstanceVariable]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
class B(A):
def __init__(self) -> None:
self.x = 1 # E
b = B() # E
b.x.y # E
[builtins fixtures/property.pyi]
[out]
main:7: error: Property "x" defined in "A" is read-only
main:8: error: Cannot instantiate abstract class "B" with abstract attribute "x"
main:9: error: "int" has no attribute "y"
[case testSuperWithAbstractProperty]
# flags: --no-strict-optional
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
class B(A):
@property
def x(self) -> int:
return super().x.y # E: Call to abstract method "x" of "A" with trivial body via super() is unsafe \
# E: "int" has no attribute "y"
[builtins fixtures/property.pyi]
[case testSuperWithReadWriteAbstractProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
@x.setter
def x(self, v: int) -> None: pass
class B(A):
@property
def x(self) -> int:
return super().x.y # E
@x.setter
def x(self, v: int) -> None:
super().x = '' # E
[builtins fixtures/property.pyi]
[out]
main:10: error: "int" has no attribute "y"
main:13: error: Invalid assignment target
[case testOnlyImplementGetterOfReadWriteAbstractProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self) -> int: pass
@x.setter
def x(self, v: int) -> None: pass
class B(A):
@property # E
def x(self) -> int: return 0
b = B()
b.x.y # E
[builtins fixtures/property.pyi]
[out]
main:8: error: Read-only property cannot override read-write property
main:11: error: "int" has no attribute "y"
[case testDynamicallyTypedReadOnlyAbstractProperty]
from abc import abstractproperty, ABCMeta
class A(metaclass=ABCMeta):
@abstractproperty
def x(self): pass
def f(a: A) -> None:
a.x.y
a.x = 1 # E: Property "x" defined in "A" is read-only
[out]
[case testDynamicallyTypedReadOnlyAbstractPropertyForwardRef]
from abc import abstractproperty, ABCMeta
def f(a: A) -> None:
a.x.y
a.x = 1 # E: Property "x" defined in "A" is read-only
class A(metaclass=ABCMeta):
@abstractproperty
def x(self): pass
[out]
[case testDynamicallyTypedReadWriteAbstractProperty]
from abc import abstractproperty, ABCMeta
def f(a: A) -> None:
a.x.y
a.x = 1
class A(metaclass=ABCMeta):
@abstractproperty
def x(self): pass
@x.setter
def x(self, x): pass
[out]
[case testMixinTypedAbstractProperty]
from abc import ABCMeta, abstractproperty
class A(metaclass=ABCMeta):
@abstractproperty
def foo(cls) -> str:
pass
class Mixin:
foo = "foo"
class C(Mixin, A):
pass
[out]
[case testMixinTypedProperty]
class A:
@property
def foo(cls) -> str:
return "yes"
class Mixin:
foo = "foo"
class C(Mixin, A):
pass
[builtins fixtures/property.pyi]
[case testMixinSubtypedProperty]
class X:
pass