File: typed.py

package info (click to toggle)
python-cattrs 25.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,812 kB
  • sloc: python: 12,236; makefile: 155
file content (963 lines) | stat: -rw-r--r-- 28,229 bytes parent folder | download
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
"""Strategies for attributes with types and classes using them."""

from collections.abc import MutableSequence as AbcMutableSequence
from collections.abc import MutableSet as AbcMutableSet
from collections.abc import Sequence as AbcSequence
from collections.abc import Set as AbcSet
from dataclasses import field as dc_field
from dataclasses import make_dataclass
from functools import partial
from pathlib import Path
from string import ascii_lowercase
from typing import (
    Any,
    Dict,
    Final,
    FrozenSet,
    List,
    MutableSequence,
    MutableSet,
    NewType,
    Sequence,
    Set,
    Tuple,
    Type,
    TypeVar,
)

from attr._make import _CountingAttr
from attrs import NOTHING, AttrsInstance, Factory, field, frozen
from hypothesis import note
from hypothesis.strategies import (
    DrawFn,
    SearchStrategy,
    booleans,
    characters,
    composite,
    dictionaries,
    fixed_dictionaries,
    floats,
    frozensets,
    integers,
    just,
    lists,
    recursive,
    sampled_from,
    sets,
    text,
    tuples,
)

from . import FeatureFlag
from .untyped import gen_attr_names, make_class

PosArg = Any
PosArgs = tuple[PosArg]
KwArgs = dict[str, Any]
T = TypeVar("T")


def simple_typed_classes(
    defaults: FeatureFlag = "sometimes",
    min_attrs=0,
    frozen=False,
    kw_only: FeatureFlag = "sometimes",
    newtypes=True,
    text_codec: str = "utf8",
    allow_infinity=None,
    allow_nan=True,
) -> SearchStrategy[tuple[type, PosArgs, KwArgs]]:
    """Yield tuples of (class, values)."""
    return lists_of_typed_attrs(
        defaults,
        min_size=min_attrs,
        for_frozen=frozen,
        kw_only=kw_only,
        newtypes=newtypes,
        text_codec=text_codec,
        allow_infinity=allow_infinity,
        allow_nan=allow_nan,
    ).flatmap(partial(_create_hyp_class, frozen=frozen))


def simple_typed_dataclasses(
    defaults: FeatureFlag = "sometimes",
    min_attrs=0,
    frozen=False,
    newtypes=True,
    allow_nan=True,
):
    """Yield tuples of (class, values)."""
    return lists_of_typed_attrs(
        defaults,
        min_size=min_attrs,
        for_frozen=frozen,
        allow_mutable_defaults=False,
        newtypes=newtypes,
        allow_nan=allow_nan,
    ).flatmap(partial(_create_dataclass, frozen=frozen))


def simple_typed_classes_and_strats(
    defaults: FeatureFlag = "sometimes",
    min_attrs=0,
    kw_only: FeatureFlag = "sometimes",
    newtypes=True,
    allow_nan=True,
) -> SearchStrategy[tuple[type, SearchStrategy[PosArgs], SearchStrategy[KwArgs]]]:
    """Yield tuples of (class, (strategies))."""
    return lists_of_typed_attrs(
        defaults,
        min_size=min_attrs,
        kw_only=kw_only,
        newtypes=newtypes,
        allow_nan=allow_nan,
    ).flatmap(_create_hyp_class_and_strat)


def lists_of_typed_attrs(
    defaults: FeatureFlag = "sometimes",
    min_size=0,
    for_frozen=False,
    allow_mutable_defaults=True,
    kw_only: FeatureFlag = "sometimes",
    newtypes=True,
    text_codec="utf8",
    allow_infinity=None,
    allow_nan=True,
) -> SearchStrategy[list[tuple[_CountingAttr, SearchStrategy[PosArg]]]]:
    # Python functions support up to 255 arguments.
    return lists(
        simple_typed_attrs(
            defaults,
            for_frozen=for_frozen,
            allow_mutable_defaults=allow_mutable_defaults,
            kw_only=kw_only,
            newtypes=newtypes,
            text_codec=text_codec,
            allow_infinity=allow_infinity,
            allow_nan=allow_nan,
        ),
        min_size=min_size,
        max_size=50,
    ).map(
        lambda lst: sorted(
            lst, key=lambda t: (t[0]._default is not NOTHING, t[0].kw_only)
        )
    )


def simple_typed_attrs(
    defaults: FeatureFlag = "sometimes",
    for_frozen=False,
    allow_mutable_defaults=True,
    kw_only: FeatureFlag = "sometimes",
    newtypes=True,
    text_codec="utf8",
    allow_infinity=None,
    allow_nan=True,
) -> SearchStrategy[tuple[_CountingAttr, SearchStrategy[PosArgs]]]:
    res = (
        any_typed_attrs(defaults, kw_only)
        | int_typed_attrs(defaults, kw_only)
        | str_typed_attrs(defaults, kw_only, text_codec)
        | float_typed_attrs(defaults, kw_only, allow_infinity, allow_nan)
        | frozenset_typed_attrs(defaults, kw_only=kw_only)
        | seq_typed_attrs(defaults, allow_mutable_defaults, kw_only=kw_only)
        | homo_tuple_typed_attrs(defaults, kw_only=kw_only)
        | path_typed_attrs(defaults, kw_only=kw_only)
    )
    if newtypes:
        res = (
            res
            | newtype_int_typed_attrs(defaults, kw_only)
            | newtype_attrs_typed_attrs(defaults, kw_only)
        )

    if not for_frozen:
        res = (
            res
            | dict_typed_attrs(defaults, allow_mutable_defaults, kw_only)
            | new_dict_typed_attrs(defaults, allow_mutable_defaults, kw_only)
            | set_typed_attrs(defaults, allow_mutable_defaults, kw_only=kw_only)
            | list_typed_attrs(defaults, allow_mutable_defaults, kw_only=kw_only)
            | mutable_seq_typed_attrs(defaults, allow_mutable_defaults, kw_only=kw_only)
        )

    return res


def _create_hyp_class(
    attrs_and_strategy: list[tuple[_CountingAttr, SearchStrategy[PosArgs]]],
    frozen=False,
) -> SearchStrategy[tuple[type, PosArgs, KwArgs]]:
    """
    A helper function for Hypothesis to generate attrs classes.

    The result is a tuple: an attrs class, tuple of values to
    instantiate it, and a kwargs dict for kw_only args.
    """

    def key(t):
        return (t[0]._default is not NOTHING, t[0].kw_only)

    attrs_and_strat = sorted(attrs_and_strategy, key=key)
    attrs = [a[0] for a in attrs_and_strat]
    for i, a in enumerate(attrs):
        a.counter = i
    vals = tuple((a[1]) for a in attrs_and_strat if not a[0].kw_only)
    note(f"Class fields: {attrs}")
    attrs_dict = {}

    names = gen_attr_names()
    kwarg_strats = {}

    for ix, (attribute, strat) in enumerate(attrs_and_strat):
        name = next(names)
        attrs_dict[name] = attribute
        if ix % 2 == 1:
            # Every third attribute gets an alias, the next attribute name.
            alias = next(names)
            attribute.alias = alias
            name = alias
        else:
            # No alias.
            if name[0] == "_":
                name = name[1:]

        if attribute.kw_only:
            kwarg_strats[name] = strat
    note(f"Attributes: {attrs_dict}")

    return tuples(
        just(make_class("HypAttrsClass", attrs_dict, frozen=frozen)),
        tuples(*vals),
        fixed_dictionaries(kwarg_strats),
    )


def _create_dataclass(
    attrs_and_strategy: list[tuple[_CountingAttr, SearchStrategy[PosArgs]]],
    frozen=False,
) -> SearchStrategy[tuple[Type, PosArgs, KwArgs]]:
    """
    A helper function for Hypothesis to generate dataclasses.

    The result is a tuple: a dataclass, a tuple of values to
    instantiate it, and an empty dict (usually used for kw-only attrs attributes).
    """

    def key(t):
        return t[0]._default is not NOTHING

    attrs_and_strat = sorted(attrs_and_strategy, key=key)
    attrs = [a[0] for a in attrs_and_strat]
    for i, a in enumerate(attrs):
        a.counter = i
    vals = tuple((a[1]) for a in attrs_and_strat)
    return tuples(
        just(
            make_dataclass(
                "HypDataclass",
                [
                    (
                        (n, a.type)
                        if a._default is NOTHING
                        else (
                            (n, a.type, dc_field(default=a._default))
                            if not isinstance(a._default, Factory)
                            else (
                                n,
                                a.type,
                                dc_field(default_factory=a._default.factory),
                            )
                        )
                    )
                    for n, a in zip(gen_attr_names(), attrs)
                ],
                frozen=frozen,
            )
        ),
        tuples(*vals),
        just({}),
    )


def _create_hyp_class_and_strat(
    attrs_and_strategy: list[tuple[_CountingAttr, SearchStrategy[PosArg]]],
) -> SearchStrategy[tuple[type, SearchStrategy[PosArgs], SearchStrategy[KwArgs]]]:
    def key(t):
        return (t[0].default is not NOTHING, t[0].kw_only or False)

    attrs_and_strat = sorted(attrs_and_strategy, key=key)
    attrs = [a[0] for a in attrs_and_strat]
    for i, a in enumerate(attrs):
        a.counter = i
    vals = tuple((a[1]) for a in attrs_and_strat if not a[0].kw_only)
    kwarg_strats = {}
    for attr_name, attr_and_strat in zip(gen_attr_names(), attrs_and_strat):
        if attr_and_strat[0].kw_only:
            if attr_name.startswith("_"):
                attr_name = attr_name[1:]
            kwarg_strats[attr_name] = attr_and_strat[1]
    return tuples(
        just(make_class("HypClass", dict(zip(gen_attr_names(), attrs)))),
        just(tuples(*vals)),
        just(fixed_dictionaries(kwarg_strats)),
    )


@composite
def any_typed_attrs(
    draw: DrawFn,
    defaults: FeatureFlag = "sometimes",
    kw_only: FeatureFlag = "sometimes",
) -> tuple[_CountingAttr, SearchStrategy[None]]:
    """Attributes typed as `Any`, having values of `None`."""
    default = NOTHING
    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default = None
    return (
        field(
            type=Any,
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        just(None),
    )


@composite
def int_typed_attrs(
    draw, defaults: FeatureFlag = "sometimes", kw_only: FeatureFlag = "sometimes"
):
    """
    Generate a tuple of an attribute and a strategy that yields ints for that
    attribute.
    """
    default = NOTHING
    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default = draw(integers())
    return (
        field(
            type=int,
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        integers(),
    )


@composite
def str_typed_attrs(
    draw,
    defaults: FeatureFlag = "sometimes",
    kw_only: FeatureFlag = "sometimes",
    codec: str = "utf8",
):
    """
    Generate a tuple of an attribute and a strategy that yields strs for that
    attribute.
    """
    default = NOTHING
    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default = draw(text())
    return (
        field(
            type=str,
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        text(characters(codec=codec)),
    )


@composite
def float_typed_attrs(
    draw,
    defaults: FeatureFlag = "sometimes",
    kw_only: FeatureFlag = "sometimes",
    allow_infinity=None,
    allow_nan=True,
):
    """
    Generate a tuple of an attribute and a strategy that yields floats for that
    attribute.
    """
    default = NOTHING
    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default = draw(floats(allow_infinity=allow_infinity, allow_nan=allow_nan))
    return (
        field(
            type=float,
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        floats(allow_infinity=allow_infinity, allow_nan=allow_nan),
    )


@composite
def path_typed_attrs(
    draw: DrawFn,
    defaults: FeatureFlag = "sometimes",
    kw_only: FeatureFlag = "sometimes",
) -> tuple[_CountingAttr, SearchStrategy[Path]]:
    """
    Generate a tuple of an attribute and a strategy that yields paths for that
    attribute.
    """

    default = NOTHING
    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default = Path(draw(text(ascii_lowercase, min_size=1)))
    return (
        field(
            type=Path,
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        text(ascii_lowercase, min_size=1).map(Path),
    )


@composite
def dict_typed_attrs(
    draw: DrawFn,
    defaults: FeatureFlag = "sometimes",
    allow_mutable_defaults=True,
    kw_only: FeatureFlag = "sometimes",
) -> tuple[_CountingAttr, SearchStrategy[dict[str, int]]]:
    """
    Generate a tuple of an attribute and a strategy that yields dictionaries
    for that attribute. The dictionaries map strings to integers.
    The generated dict types are what's expected to be used on pre-3.9 Pythons.
    """
    default = NOTHING
    val_strat = dictionaries(keys=text(), values=integers())
    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default_val = draw(val_strat)
        if not allow_mutable_defaults or draw(booleans()):
            default = Factory(lambda: default_val)
        else:
            default = default_val
    type = draw(sampled_from([Dict[str, int], Dict, dict]))
    return (
        field(
            type=type,
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        val_strat,
    )


@composite
def new_dict_typed_attrs(
    draw,
    defaults: FeatureFlag = "sometimes",
    allow_mutable_defaults=True,
    kw_only: FeatureFlag = "sometimes",
):
    """
    Generate a tuple of an attribute and a strategy that yields dictionaries
    for that attribute. The dictionaries map strings to integers.

    Uses the new 3.9 dict annotation.
    """
    default_val = NOTHING
    val_strat = dictionaries(keys=text(), values=integers())
    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default_val = draw(val_strat)
        if not allow_mutable_defaults or draw(booleans()):
            default = Factory(lambda: default_val)
        else:
            default = default_val
    else:
        default = default_val

    return (
        field(
            type=dict[str, int],
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        val_strat,
    )


@composite
def set_typed_attrs(
    draw: DrawFn,
    defaults: FeatureFlag = "sometimes",
    allow_mutable_defaults=True,
    legacy_types_only=False,
    kw_only: FeatureFlag = "sometimes",
):
    """
    Generate a tuple of an attribute and a strategy that yields sets
    for that attribute. The sets contain integers.
    """
    default_val = NOTHING
    val_strat = sets(integers())
    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default_val = draw(val_strat)
        if not allow_mutable_defaults or draw(booleans()):
            default = Factory(lambda: default_val)
        else:
            default = default_val
    else:
        default = default_val

    type = draw(
        sampled_from(
            [set, set[int], AbcSet[int], AbcMutableSet[int]]
            if not legacy_types_only
            else [set, Set[int], MutableSet[int]]
        )
    )
    return (
        field(
            type=type,
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        val_strat,
    )


@composite
def frozenset_typed_attrs(
    draw: DrawFn,
    defaults: FeatureFlag = "sometimes",
    legacy_types_only=False,
    kw_only: FeatureFlag = "sometimes",
):
    """
    Generate a tuple of an attribute and a strategy that yields frozensets
    for that attribute. The frozensets contain integers.
    """
    default = NOTHING
    val_strat = frozensets(integers())
    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default = draw(val_strat)
    type = draw(
        sampled_from(
            [frozenset[int], frozenset, FrozenSet[int], FrozenSet]
            if not legacy_types_only
            else [frozenset, FrozenSet[int], FrozenSet]
        )
    )
    return (
        field(
            type=type,
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        val_strat,
    )


@composite
def list_typed_attrs(
    draw: DrawFn,
    defaults: FeatureFlag = "sometimes",
    allow_mutable_defaults=True,
    legacy_types_only=False,
    kw_only: FeatureFlag = "sometimes",
) -> tuple[_CountingAttr, SearchStrategy[list[float]]]:
    """
    Generate a tuple of an attribute and a strategy that yields lists
    for that attribute. The lists contain floats.
    """
    default_val = NOTHING
    val_strat = lists(floats(allow_infinity=False, allow_nan=False))
    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default_val = draw(val_strat)
        if not allow_mutable_defaults or draw(booleans()):
            default = Factory(lambda: default_val)
        else:
            default = default_val
    else:
        default = default_val
    return (
        field(
            type=draw(
                sampled_from(
                    [list[float], list, List[float], List, Final[list[float]]]
                    if not legacy_types_only
                    else [List, List[float], list]
                )
            ),
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        val_strat,
    )


@composite
def seq_typed_attrs(
    draw,
    defaults: FeatureFlag = "sometimes",
    allow_mutable_defaults=True,
    legacy_types_only=False,
    kw_only: FeatureFlag = "sometimes",
):
    """
    Generate a tuple of an attribute and a strategy that yields tuples
    for that attribute. The tuples contain integers.

    Args:
        allow_mutable_defaults: When false, the default will always be a factory.
    """
    default_val = NOTHING
    val_strat = lists(integers()).map(tuple)
    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default_val = draw(val_strat)
        if not allow_mutable_defaults or draw(booleans()):
            default = Factory(lambda: default_val)
        else:
            default = default_val
    else:
        default = default_val

    return (
        field(
            type=AbcSequence[int] if not legacy_types_only else Sequence[int],
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        val_strat,
    )


@composite
def mutable_seq_typed_attrs(
    draw,
    defaults: FeatureFlag = "sometimes",
    allow_mutable_defaults=True,
    legacy_types_only=False,
    kw_only: FeatureFlag = "sometimes",
):
    """
    Generate a tuple of an attribute and a strategy that yields lists
    for that attribute. The lists contain floats.
    """
    default_val = NOTHING
    val_strat = lists(floats(allow_infinity=False, allow_nan=False))
    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default_val = draw(val_strat)
        if not allow_mutable_defaults or draw(booleans()):
            default = Factory(lambda: default_val)
        else:
            default = default_val
    else:
        default = default_val

    return (
        field(
            type=(
                AbcMutableSequence[float]
                if not legacy_types_only
                else MutableSequence[float]
            ),
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        val_strat,
    )


@composite
def homo_tuple_typed_attrs(
    draw,
    defaults: FeatureFlag = "sometimes",
    legacy_types_only=False,
    kw_only: FeatureFlag = "sometimes",
):
    """
    Generate a tuple of an attribute and a strategy that yields homogenous
    tuples for that attribute. The tuples contain strings.
    """
    default = NOTHING
    val_strat = tuples(text(), text(), text())
    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default = draw(val_strat)
    return (
        field(
            type=draw(
                sampled_from(
                    [tuple[str, ...], tuple, Tuple, Tuple[str, ...]]
                    if not legacy_types_only
                    else [tuple, Tuple, Tuple[str, ...]]
                )
            ),
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        val_strat,
    )


@composite
def newtype_int_typed_attrs(
    draw: DrawFn,
    defaults: FeatureFlag = "sometimes",
    kw_only: FeatureFlag = "sometimes",
):
    """
    Generate a tuple of an attribute and a strategy that yields ints for that
    attribute.
    """
    default = NOTHING
    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default = draw(integers())
    NewInt = NewType("NewInt", int)
    return (
        field(
            type=NewInt,
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        integers(),
    )


@composite
def newtype_attrs_typed_attrs(
    draw: DrawFn,
    defaults: FeatureFlag = "sometimes",
    kw_only: FeatureFlag = "sometimes",
):
    """
    Generate a tuple of an attribute and a strategy that yields values for that
    attribute.
    """
    default = NOTHING

    @frozen
    class NewTypeAttrs:
        a: int

    if defaults == "always" or (defaults == "sometimes" and draw(booleans())):
        default = NewTypeAttrs(draw(integers()))

    NewAttrs = NewType("NewAttrs", NewTypeAttrs)
    return (
        field(
            type=NewAttrs,
            default=default,
            kw_only=(
                draw(booleans()) if kw_only == "sometimes" else (kw_only == "always")
            ),
        ),
        integers().map(NewTypeAttrs),
    )


def just_class(
    tup: tuple[
        list[tuple[_CountingAttr, SearchStrategy]], tuple[Type, PosArgs, KwArgs]
    ],
    defaults: tuple[PosArgs, KwArgs],
):
    nested_cl = tup[1][0]
    nested_cl_args = tup[1][1]
    nested_cl_kwargs = tup[1][2]
    default = Factory(lambda: nested_cl(*defaults[0], **defaults[1]))
    combined_attrs = list(tup[0])
    combined_attrs.append(
        (
            field(type=nested_cl, default=default),
            just(nested_cl(*nested_cl_args, **nested_cl_kwargs)),
        )
    )
    return _create_hyp_class_and_strat(combined_attrs)


def list_of_class(
    tup: tuple[
        list[tuple[_CountingAttr, SearchStrategy]], tuple[type, PosArgs, KwArgs]
    ],
    defaults: tuple[PosArgs, KwArgs],
) -> SearchStrategy[tuple[type, SearchStrategy[PosArgs], SearchStrategy[KwArgs]]]:
    nested_cl = tup[1][0]
    nested_cl_args = tup[1][1]
    nested_cl_kwargs = tup[1][2]
    default = Factory(lambda: [nested_cl(*defaults[0], **defaults[1])])
    combined_attrs = list(tup[0])
    combined_attrs.append(
        (
            field(type=List[nested_cl], default=default),
            just([nested_cl(*nested_cl_args, **nested_cl_kwargs)]),
        )
    )
    return _create_hyp_class_and_strat(combined_attrs)


def new_list_of_class(
    tup: tuple[
        list[tuple[_CountingAttr, SearchStrategy]], tuple[Type, PosArgs, KwArgs]
    ],
    defaults: tuple[PosArgs, KwArgs],
):
    """Uses the new 3.9 list type annotation."""
    nested_cl = tup[1][0]
    nested_cl_args = tup[1][1]
    nested_cl_kwargs = tup[1][2]
    default = Factory(lambda: [nested_cl(*defaults[0], **defaults[1])])
    combined_attrs = list(tup[0])
    combined_attrs.append(
        (
            field(type=list[nested_cl], default=default),
            just([nested_cl(*nested_cl_args, **nested_cl_kwargs)]),
        )
    )
    return _create_hyp_class_and_strat(combined_attrs)


def dict_of_class(
    tup: tuple[
        list[tuple[_CountingAttr, SearchStrategy]], tuple[Type, PosArgs, KwArgs]
    ],
    defaults: tuple[PosArgs, KwArgs],
):
    nested_cl = tup[1][0]
    nested_cl_args = tup[1][1]
    nested_cl_kwargs = tup[1][2]
    default = Factory(lambda: {"cls": nested_cl(*defaults[0], **defaults[1])})
    combined_attrs = list(tup[0])
    combined_attrs.append(
        (
            field(type=Dict[str, nested_cl], default=default),
            just({"cls": nested_cl(*nested_cl_args, **nested_cl_kwargs)}),
        )
    )
    return _create_hyp_class_and_strat(combined_attrs)


def _create_hyp_nested_strategy(
    simple_class_strategy: SearchStrategy,
    kw_only: FeatureFlag = "sometimes",
    newtypes=True,
    allow_nan=True,
) -> SearchStrategy[tuple[type, SearchStrategy[PosArgs], SearchStrategy[KwArgs]]]:
    """
    Create a recursive attrs class.
    Given a strategy for building (simpler) classes, create and return
    a strategy for building classes that have as an attribute:
        * just the simpler class
        * a list of simpler classes
        * a dict mapping the string "cls" to a simpler class.
    """
    # A strategy producing tuples of the form ([list of attributes], <given
    # class strategy>).
    attrs_and_classes: SearchStrategy[
        tuple[list[tuple[_CountingAttr, PosArgs]], tuple[type, SearchStrategy[PosArgs]]]
    ] = tuples(
        lists_of_typed_attrs(kw_only=kw_only, newtypes=newtypes, allow_nan=allow_nan),
        simple_class_strategy,
    )

    return nested_classes(attrs_and_classes)


@composite
def nested_classes(
    draw: DrawFn,
    attrs_and_classes: SearchStrategy[
        tuple[
            list[tuple[_CountingAttr, SearchStrategy]],
            tuple[type, SearchStrategy[PosArgs], SearchStrategy[KwArgs]],
        ]
    ],
) -> tuple[type[AttrsInstance], SearchStrategy[PosArgs], SearchStrategy[KwArgs]]:
    attrs, class_and_strat = draw(attrs_and_classes)
    cls, strat, kw_strat = class_and_strat
    pos_defs = tuple(draw(strat))
    kwarg_defs = draw(kw_strat)
    init_vals = tuple(draw(strat))
    init_kwargs = draw(kw_strat)
    return draw(
        list_of_class((attrs, (cls, init_vals, init_kwargs)), (pos_defs, kwarg_defs))
        | new_list_of_class(
            (attrs, (cls, init_vals, init_kwargs)), (pos_defs, kwarg_defs)
        )
        | dict_of_class((attrs, (cls, init_vals, init_kwargs)), (pos_defs, kwarg_defs))
        | just_class((attrs, (cls, init_vals, init_kwargs)), (pos_defs, kwarg_defs))
    )


def nested_typed_classes_and_strat(
    defaults: FeatureFlag = "sometimes",
    min_attrs=0,
    kw_only: FeatureFlag = "sometimes",
    newtypes=True,
    allow_nan=True,
) -> SearchStrategy[tuple[type, SearchStrategy[PosArgs]]]:
    return recursive(
        simple_typed_classes_and_strats(
            defaults=defaults,
            min_attrs=min_attrs,
            kw_only=kw_only,
            newtypes=newtypes,
            allow_nan=allow_nan,
        ),
        partial(
            _create_hyp_nested_strategy,
            kw_only=kw_only,
            newtypes=newtypes,
            allow_nan=allow_nan,
        ),
        max_leaves=20,
    )


@composite
def nested_typed_classes(
    draw: DrawFn,
    defaults: FeatureFlag = "sometimes",
    min_attrs=0,
    kw_only: FeatureFlag = "sometimes",
    newtypes=True,
    allow_nan=True,
):
    cl, strat, kwarg_strat = draw(
        nested_typed_classes_and_strat(
            defaults=defaults,
            min_attrs=min_attrs,
            kw_only=kw_only,
            newtypes=newtypes,
            allow_nan=allow_nan,
        )
    )
    return cl, draw(strat), draw(kwarg_strat)