File: testparamdepends.py

package info (click to toggle)
python-param 2.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,048 kB
  • sloc: python: 17,980; makefile: 3
file content (1392 lines) | stat: -rw-r--r-- 40,700 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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
"""
Unit test for param.depends.
"""

import asyncio

import param
import pytest

from param.parameterized import _parse_dependency_spec


@pytest.fixture
def class_name(request):
    try:
        yield request.param
    finally:
        pass


class TestDependencyParser:

    def test_parameter_value(self):
        obj, attr, what = _parse_dependency_spec('parameter')
        assert obj is None
        assert attr == 'parameter'
        assert what == 'value'

    def test_parameter_attribute(self):
        obj, attr, what = _parse_dependency_spec('parameter:constant')
        assert obj is None
        assert attr == 'parameter'
        assert what == 'constant'

    def test_subobject_parameter(self):
        obj, attr, what = _parse_dependency_spec('subobject.parameter')
        assert obj == '.subobject'
        assert attr == 'parameter'
        assert what == 'value'

    def test_subobject_parameter_attribute(self):
        obj, attr, what = _parse_dependency_spec('subobject.parameter:constant')
        assert obj == '.subobject'
        assert attr == 'parameter'
        assert what == 'constant'

    def test_sub_subobject_parameter(self):
        obj, attr, what = _parse_dependency_spec('subobject.subsubobject.parameter')
        assert obj == '.subobject.subsubobject'
        assert attr == 'parameter'
        assert what == 'value'

    def test_sub_subobject_parameter_attribute(self):
        obj, attr, what = _parse_dependency_spec('subobject.subsubobject.parameter:constant')
        assert obj == '.subobject.subsubobject'
        assert attr == 'parameter'
        assert what == 'constant'


class TestParamDependsSubclassing:

    def test_param_depends_override_depends_subset(self):

        class A(param.Parameterized):
            a = param.Parameter()
            b = param.Parameter()

            @param.depends('a', 'b', watch=True)
            def test(self):
                pass

        a = A()

        assert len(a.param.method_dependencies('test')) == 2

        class B(A):

            @param.depends('b')
            def test(self):
                pass

        b = B()

        assert len(b.param.method_dependencies('test')) == 1
        assert len(B.param._depends['watch']) == 0

    def test_param_depends_override_depends_subset_watched(self):

        class A(param.Parameterized):
            a = param.Parameter()
            b = param.Parameter()

            @param.depends('a', 'b', watch=True)
            def test(self):
                pass

        a = A()

        assert len(a.param.method_dependencies('test')) == 2

        class B(A):

            @param.depends('b', watch=True)
            def test(self):
                pass

        b = B()

        assert len(b.param.method_dependencies('test')) == 1
        assert len(B.param._depends['watch']) == 1
        m, _, _, deps, _ = B.param._depends['watch'][0]
        assert m == 'test'
        assert len(deps) == 1
        assert deps[0].name == 'b'

    def test_param_depends_override_all_depends(self):

        class A(param.Parameterized):
            a = param.Parameter()
            b = param.Parameter()

            @param.depends('a', 'b', watch=True)
            def test(self):
                pass

        a = A()
        assert len(a.param.method_dependencies('test')) == 2

        class B(A):

            def test(self):
                pass

        b = B()
        assert len(b.param.method_dependencies('test')) == 3
        assert len(B.param._depends['watch']) == 0

    def test_param_depends_subclass_ordering(self):

        values = []

        class A(param.Parameterized):
            a = param.String()

            @param.depends('a', watch=True)
            def test(self):
                values.append(self.a)

        class B(A):

            @param.depends('a', watch=True)
            def more_test(self):
                values.append(self.a.upper())

        b = B()

        b.a = 'a'

        assert values == ['a', 'A']



class TestParamDepends:

    def setup_method(self):

        class P(param.Parameterized):
            a = param.Parameter()
            b = param.Parameter()

            single_count = param.Integer()
            attr_count = param.Integer()
            single_nested_count = param.Integer()
            double_nested_count = param.Integer()
            nested_attr_count = param.Integer()
            nested_count = param.Integer()

            @param.depends('a', watch=True)
            def single_parameter(self):
                self.single_count += 1

            @param.depends('a:constant', watch=True)
            def constant(self):
                self.attr_count += 1

            @param.depends('b.a', watch=True)
            def single_nested(self):
                self.single_nested_count += 1

            @param.depends('b.b.a', watch=True)
            def double_nested(self):
                self.double_nested_count += 1

            @param.depends('b.a:constant', watch=True)
            def nested_attribute(self):
                self.nested_attr_count += 1

            @param.depends('b.param', watch=True)
            def nested(self):
                self.nested_count += 1

        class AP(param.Parameterized):
            a = param.Parameter()
            b = param.Parameter()

            single_count = param.Integer()
            attr_count = param.Integer()
            single_nested_count = param.Integer()
            double_nested_count = param.Integer()
            nested_attr_count = param.Integer()
            nested_count = param.Integer()

            @param.depends('a', watch=True)
            async def single_parameter(self):
                self.single_count += 1

            @param.depends('a:constant', watch=True)
            async def constant(self):
                self.attr_count += 1

            @param.depends('b.a', watch=True)
            async def single_nested(self):
                self.single_nested_count += 1

            @param.depends('b.b.a', watch=True)
            async def double_nested(self):
                self.double_nested_count += 1

            @param.depends('b.a:constant', watch=True)
            async def nested_attribute(self):
                self.nested_attr_count += 1

            @param.depends('b.param', watch=True)
            async def nested(self):
                self.nested_count += 1


        class P2(param.Parameterized):

            @param.depends(P.param.a)
            def external_param(self, a):
                pass

        class AP2(param.Parameterized):

            @param.depends(AP.param.a)
            async def external_param(self, a):
                pass


        self.P = P
        self.AP = AP
        self.P2 = P2
        self.AP2 = AP2

    def test_param_depends_on_init(self):
        class A(param.Parameterized):

            a = param.Parameter()

            value = param.Integer()

            @param.depends('a', watch=True, on_init=True)
            def callback(self):
                self.value += 1

        a = A()
        assert a.value == 1

        a.a = True
        assert a.value == 2

    def test_param_nested_depends_value_unchanged(self):
        class A(param.Parameterized):

            c = param.Parameter()

            d = param.Parameter()

        class B(param.Parameterized):

            a = param.Parameter()

            test_count = param.Integer()

            @param.depends('a.c', 'a.d', watch=True)
            def test(self):
                self.test_count += 1

        b = B(a=A(c=1))
        b.a = A(c=1)
        assert b.test_count == 0

    async def test_param_nested_depends_value_unchanged_async(self):
        class A(param.Parameterized):

            c = param.Parameter()

            d = param.Parameter()

        class B(param.Parameterized):

            a = param.Parameter()

            test_count = param.Integer()

            @param.depends('a.c', 'a.d', watch=True)
            async def test(self):
                self.test_count += 1

        b = B(a=A(c=1))
        b.a = A(c=1)
        assert b.test_count == 0

    def test_param_nested_at_class_definition(self):

        class A(param.Parameterized):

            c = param.Parameter()

            d = param.Parameter()

        class B(param.Parameterized):

            a = param.Parameter(A())

            test_count = param.Integer()

            @param.depends('a.c', 'a.d', watch=True)
            def test(self):
                self.test_count += 1

        b = B()

        b.a.c = 1
        assert b.test_count == 1

        b.a.param.update(c=2, d=1)
        assert b.test_count == 2

        b.a = A()
        assert b.test_count == 3

        B.a.c = 5
        assert b.test_count == 3

    async def test_param_nested_at_class_definition_async(self):

        class A(param.Parameterized):

            c = param.Parameter()

            d = param.Parameter()

        class B(param.Parameterized):

            a = param.Parameter(A())

            test_count = param.Integer()

            @param.depends('a.c', 'a.d', watch=True)
            async def test(self):
                self.test_count += 1

        b = B()

        b.a.c = 1

        await asyncio.sleep(0.01)

        assert b.test_count == 1

        b.a.param.update(c=2, d=1)

        await asyncio.sleep(0.01)

        assert b.test_count == 2

        b.a = A()

        await asyncio.sleep(0.01)

        assert b.test_count == 3

        B.a.c = 5

        await asyncio.sleep(0.01)

        assert b.test_count == 3

    def test_param_nested_depends_expands(self):
        class A(param.Parameterized):

            c = param.Parameter()

            d = param.Parameter()

        class B(param.Parameterized):

            a = param.Parameter()

            test_count = param.Integer()

            @param.depends('a.param', watch=True)
            def test(self):
                self.test_count += 1

        b = B(a=A(c=1, name='A'))
        b.a = A(c=1, name='A')
        assert b.test_count == 0

    async def test_param_nested_depends_expands_async(self):
        class A(param.Parameterized):

            c = param.Parameter()

            d = param.Parameter()

        class B(param.Parameterized):

            a = param.Parameter()

            test_count = param.Integer()

            @param.depends('a.param', watch=True)
            async def test(self):
                self.test_count += 1

        b = B(a=A(c=1, name='A'))
        b.a = A(c=1, name='A')

        await asyncio.sleep(0.01)

        assert b.test_count == 0

    def test_param_depends_class_default_dynamic(self):

        class A(param.Parameterized):
            c = param.Parameter()

        class B(param.Parameterized):
            a = param.Parameter(A())

            nested_count = param.Integer()

            @param.depends('a.c', watch=True)
            def nested(self):
                self.nested_count += 1

        b = B()

        b.a.c = 1
        assert b.nested_count == 1

        b.a = A()
        assert b.nested_count == 2

    async def test_param_depends_class_default_dynamic_async(self):

        class A(param.Parameterized):
            c = param.Parameter()

        class B(param.Parameterized):
            a = param.Parameter(A())

            nested_count = param.Integer()

            @param.depends('a.c', watch=True)
            async def nested(self):
                self.nested_count += 1

        b = B()

        b.a.c = 1

        await asyncio.sleep(0.01)

        assert b.nested_count == 1

        b.a = A()

        await asyncio.sleep(0.01)

        assert b.nested_count == 2

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_instance_depends_dynamic_single_nested(self, class_name):
        inst = getattr(self, class_name)()
        pinfos = inst.param.method_dependencies('single_nested', intermediate=True)
        assert len(pinfos) == 0

        inst.b = getattr(self, class_name)()
        pinfos = inst.param.method_dependencies('single_nested', intermediate=True)
        assert len(pinfos) == 2
        pinfos = {(pi.inst, pi.name): pi for pi in pinfos}
        pinfo = pinfos[(inst, 'b')]
        assert pinfo.cls is getattr(self, class_name)
        assert pinfo.inst is inst
        assert pinfo.name == 'b'
        assert pinfo.what == 'value'
        pinfo2 = pinfos[(inst.b, 'a')]
        assert pinfo2.cls is getattr(self, class_name)
        assert pinfo2.inst is inst.b
        assert pinfo2.name == 'a'
        assert pinfo2.what == 'value'

        if class_name == 'AP':
            await asyncio.sleep(0.01)

        assert inst.single_nested_count == 1

        inst.b.a = 1

        if class_name == 'AP':
            await asyncio.sleep(0.01)

        assert inst.single_nested_count == 2

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_instance_depends_dynamic_single_nested_initialized_no_intermediates(self, class_name):
        init_b = getattr(self, class_name)()
        inst = getattr(self, class_name)(b=init_b)
        pinfos = inst.param.method_dependencies('single_nested', intermediate=False)
        assert len(pinfos) == 1

        assert pinfos[0].inst is init_b
        assert pinfos[0].name == 'a'

        new_b = getattr(self, class_name)()
        inst.b = new_b

        if class_name == 'AP':
            await asyncio.sleep(0.01)

        pinfos = inst.param.method_dependencies('single_nested', intermediate=False)
        assert len(pinfos) == 1
        assert pinfos[0].inst is new_b
        assert pinfos[0].name == 'a'

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_instance_depends_dynamic_single_nested_initialized_only_intermediates(self, class_name):
        init_b = getattr(self, class_name)()
        inst = getattr(self, class_name)(b=init_b)
        pinfos = inst.param.method_dependencies('single_nested', intermediate='only')
        assert len(pinfos) == 1

        assert pinfos[0].inst is inst
        assert pinfos[0].name == 'b'

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_instance_depends_dynamic_single_nested_initialized(self, class_name):
        init_b = getattr(self, class_name)()
        inst = getattr(self, class_name)(b=init_b)
        pinfos = inst.param.method_dependencies('single_nested', intermediate=True)
        assert len(pinfos) == 2

        inst.b = getattr(self, class_name)()
        pinfos = inst.param.method_dependencies('single_nested', intermediate=True)
        assert len(pinfos) == 2
        pinfos = {(pi.inst, pi.name): pi for pi in pinfos}
        pinfo = pinfos[(inst, 'b')]
        pinfo.cls is getattr(self, class_name)
        pinfo.inst is inst
        assert pinfo.name == 'b'
        assert pinfo.what == 'value'
        pinfo2 = pinfos[(inst.b, 'a')]
        pinfo2.cls is getattr(self, class_name)
        pinfo2.inst is inst.b
        assert pinfo2.name == 'a'
        assert pinfo2.what == 'value'


        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.single_nested_count == 0

        inst.b.a = 1
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.single_nested_count == 1

        # Ensure watcher on initial value does not trigger event
        init_b.a = 2
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.single_nested_count == 1

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_instance_depends_dynamic_double_nested(self, class_name):
        inst = getattr(self, class_name)()
        pinfos = inst.param.method_dependencies('double_nested', intermediate=True)
        assert len(pinfos) == 0

        inst.b = getattr(self, class_name)(b=getattr(self, class_name)())
        pinfos = inst.param.method_dependencies('double_nested', intermediate=True)
        assert len(pinfos) == 3
        pinfos = {(pi.inst, pi.name): pi for pi in pinfos}
        pinfo = pinfos[(inst, 'b')]
        assert pinfo.cls is getattr(self, class_name)
        assert pinfo.inst is inst
        assert pinfo.name == 'b'
        assert pinfo.what == 'value'
        pinfo2 = pinfos[(inst.b, 'b')]
        assert pinfo2.cls is getattr(self, class_name)
        assert pinfo2.inst is inst.b
        assert pinfo2.name == 'b'
        assert pinfo2.what == 'value'
        pinfo3 = pinfos[(inst.b.b, 'a')]
        assert pinfo3.cls is getattr(self, class_name)
        assert pinfo3.inst is inst.b.b
        assert pinfo3.name == 'a'
        assert pinfo3.what == 'value'


        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.double_nested_count == 1

        inst.b.b.a = 1
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.double_nested_count == 2

        old_subobj = inst.b.b
        inst.b.b = getattr(self, class_name)(a=3)
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.double_nested_count == 3

        old_subobj.a = 4
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.double_nested_count == 3

        inst.b.b = getattr(self, class_name)(a=3)
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.double_nested_count == 3

        inst.b.b.a = 4
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.double_nested_count == 4

        inst.b.b = getattr(self, class_name)(a=3)
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.double_nested_count == 5

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_instance_depends_dynamic_double_nested_partially_initialized(self, class_name):
        inst = getattr(self, class_name)(b=getattr(self, class_name)())
        pinfos = inst.param.method_dependencies('double_nested', intermediate=True)
        assert len(pinfos) == 2

        pinfos = {(pi.inst, pi.name): pi for pi in pinfos}
        pinfo = pinfos[(inst, 'b')]
        assert pinfo.cls == getattr(self, class_name)
        assert pinfo.inst == inst
        assert pinfo.name == 'b'
        assert pinfo.what == 'value'
        pinfo = pinfos[(inst.b, 'b')]
        assert pinfo.cls == getattr(self, class_name)
        assert pinfo.inst == inst.b
        assert pinfo.name == 'b'
        assert pinfo.what == 'value'

        inst.b.b = getattr(self, class_name)()
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.double_nested_count == 1

        inst.b.b.a = 1
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.double_nested_count == 2

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_instance_depends_dynamic_nested_attribute(self, class_name):
        inst = getattr(self, class_name)()
        pinfos = inst.param.method_dependencies('nested_attribute', intermediate=True)
        assert len(pinfos) == 0

        inst.b = getattr(self, class_name)()
        pinfos = inst.param.method_dependencies('nested_attribute', intermediate=True)
        assert len(pinfos) == 2
        pinfos = {(pi.inst, pi.name): pi for pi in pinfos}
        pinfo = pinfos[(inst, 'b')]
        assert pinfo.cls == getattr(self, class_name)
        assert pinfo.inst == inst
        assert pinfo.name == 'b'
        assert pinfo.what == 'value'
        pinfo2 = pinfos[(inst.b, 'a')]
        assert pinfo2.cls == getattr(self, class_name)
        assert pinfo2.inst == inst.b
        assert pinfo2.name == 'a'
        assert pinfo2.what == 'constant'

        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.nested_attr_count == 1

        inst.b.param.a.constant = True
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.nested_attr_count == 2

        new_b = getattr(self, class_name)()
        new_b.param.a.constant = True
        inst.b = new_b
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.nested_attr_count == 2

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_instance_depends_dynamic_nested_attribute_initialized(self, class_name):
        inst = getattr(self, class_name)(b=getattr(self, class_name)())
        pinfos = inst.param.method_dependencies('nested_attribute', intermediate=True)
        assert len(pinfos) == 2

        inst.b = getattr(self, class_name)()
        pinfos = inst.param.method_dependencies('nested_attribute', intermediate=True)
        assert len(pinfos) == 2
        pinfos = {(pi.inst, pi.name): pi for pi in pinfos}
        pinfo = pinfos[(inst, 'b')]
        assert pinfo.cls == getattr(self, class_name)
        assert pinfo.inst == inst
        assert pinfo.name == 'b'
        assert pinfo.what == 'value'
        pinfo2 = pinfos[(inst.b, 'a')]
        assert pinfo2.cls == getattr(self, class_name)
        assert pinfo2.inst == inst.b
        assert pinfo2.name == 'a'
        assert pinfo2.what == 'constant'

        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.nested_attr_count == 0

        inst.b.param.a.constant = True
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.nested_attr_count == 1

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_instance_depends_dynamic_nested(self, class_name):
        inst = getattr(self, class_name)()
        pinfos = inst.param.method_dependencies('nested')
        assert len(pinfos) == 0

        inst.b = getattr(self, class_name)()
        pinfos = inst.param.method_dependencies('nested')
        assert len(pinfos) == 10
        pinfos = {(pi.inst, pi.name): pi for pi in pinfos}
        pinfo = pinfos[(inst, 'b')]
        assert pinfo.cls is getattr(self, class_name)
        assert pinfo.inst is inst
        assert pinfo.name == 'b'
        assert pinfo.what == 'value'
        for p in ['a', 'b', 'name', 'nested_count', 'single_count', 'attr_count']:
            pinfo2 = pinfos[(inst.b, p)]
            assert pinfo2.cls is getattr(self, class_name)
            assert pinfo2.inst is inst.b
            assert pinfo2.name == p
            assert pinfo2.what == 'value'

        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.nested_count == 1

        inst.b.a = 1
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.nested_count == 3

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_instance_depends_dynamic_nested_initialized(self, class_name):
        init_b = getattr(self, class_name)()
        inst = getattr(self, class_name)(b=init_b)
        pinfos = inst.param.method_dependencies('nested')
        assert len(pinfos) == 10

        inst.b = getattr(self, class_name)()
        pinfos = inst.param.method_dependencies('nested')
        assert len(pinfos) == 10
        pinfos = {(pi.inst, pi.name): pi for pi in pinfos}
        pinfo = pinfos[(inst, 'b')]
        assert pinfo.cls is getattr(self, class_name)
        assert pinfo.inst is inst
        assert pinfo.name == 'b'
        assert pinfo.what == 'value'
        for p in ['a', 'b', 'name', 'nested_count', 'single_count', 'attr_count']:
            pinfo2 = pinfos[(inst.b, p)]
            assert pinfo2.cls is getattr(self, class_name)
            assert pinfo2.inst is inst.b
            assert pinfo2.name == p
            assert pinfo2.what == 'value'

        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.single_nested_count == 0

        inst.b.a = 1
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.single_nested_count == 1

        # Ensure watcher on initial value does not trigger event
        init_b.a = 2
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.single_nested_count == 1

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_instance_depends_dynamic_nested_changed_value(self, class_name):
        init_b = getattr(self, class_name)(a=1)
        inst = getattr(self, class_name)(b=init_b)
        pinfos = inst.param.method_dependencies('nested')
        assert len(pinfos) == 10

        inst.b = getattr(self, class_name)(a=2)
        pinfos = inst.param.method_dependencies('nested')
        assert len(pinfos) == 10
        pinfos = {(pi.inst, pi.name): pi for pi in pinfos}
        pinfo = pinfos[(inst, 'b')]
        assert pinfo.cls is getattr(self, class_name)
        assert pinfo.inst is inst
        assert pinfo.name == 'b'
        assert pinfo.what == 'value'
        for p in ['a', 'b', 'name', 'nested_count', 'single_count', 'attr_count']:
            pinfo2 = pinfos[(inst.b, p)]
            assert pinfo2.cls is getattr(self, class_name)
            assert pinfo2.inst is inst.b
            assert pinfo2.name == p
            assert pinfo2.what == 'value'

        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.single_nested_count == 1

        inst.b.a = 1
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.single_nested_count == 2

        # Ensure watcher on initial value does not trigger event
        init_b.a = 2
        if class_name == 'AP':
            await asyncio.sleep(0.01)
        assert inst.single_nested_count == 2

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_instance_depends(self, class_name):
        p = getattr(self, class_name)()
        pinfos = p.param.method_dependencies('single_parameter')
        assert len(pinfos) == 1
        pinfo = pinfos[0]
        assert pinfo.cls is getattr(self, class_name)
        assert pinfo.inst is p
        assert pinfo.name == 'a'
        assert pinfo.what == 'value'

        p.a = 1

        if class_name == 'AP':
            await asyncio.sleep(0.01)

        assert p.single_count == 1

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_class_depends(self, class_name):
        pinfos = getattr(self, class_name).param.method_dependencies('single_parameter')
        assert len(pinfos) == 1
        pinfo = pinfos[0]
        assert pinfo.cls is getattr(self, class_name)
        assert pinfo.inst is None
        assert pinfo.name == 'a'
        assert pinfo.what == 'value'

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_class_depends_constant(self, class_name):
        pinfos = getattr(self, class_name).param.method_dependencies('constant')
        assert len(pinfos) == 1
        pinfo = pinfos[0]
        assert pinfo.cls is getattr(self, class_name)
        assert pinfo.inst is None
        assert pinfo.name == 'a'
        assert pinfo.what == 'constant'

    @pytest.mark.parametrize('class_name', ['P', 'AP'], indirect=True)
    async def test_param_inst_depends_nested(self, class_name):
        inst = getattr(self, class_name)(b=getattr(self, class_name)())
        pinfos = inst.param.method_dependencies('nested')
        assert len(pinfos) == 10
        pinfos = {(pi.inst, pi.name): pi for pi in pinfos}
        pinfo = pinfos[(inst, 'b')]
        assert pinfo.cls is getattr(self, class_name)
        assert pinfo.inst is inst
        assert pinfo.name == 'b'
        assert pinfo.what == 'value'
        for p in ['name', 'a', 'b']:
            info = pinfos[(inst.b, p)]
            assert info.name == p
            assert info.inst is inst.b

    @pytest.mark.parametrize('class_name', ['P2', 'AP2'], indirect=True)
    async def test_param_external_param_instance(self, class_name):
        inst = getattr(self, class_name)()
        pinfos = inst.param.method_dependencies('external_param')
        pinfo = pinfos[0]
        assert pinfo.cls is getattr(self, class_name[:-1])
        assert pinfo.inst is None
        assert pinfo.name == 'a'
        assert pinfo.what == 'value'

    async def test_async(self):
        class P(param.Parameterized):
            a = param.Parameter()
            single_count = param.Integer()

            @param.depends('a', watch=True)
            async def single_parameter(self):
                self.single_count += 1

        inst = P()
        inst.a = 'test'

        await asyncio.sleep(0.01)

        assert inst.single_count == 1

    def test_param_depends_on_parameterized_attribute(self):
        # Issue https://github.com/holoviz/param/issues/635

        called = []

        class Sub(param.Parameterized):
            s = param.String()

        class P(param.Parameterized):
            test_param = param.Parameter()

            def __init__(self, **params):
                self._sub = Sub()
                super().__init__(**params)

            @param.depends('_sub.s', watch=True)
            def cb(self):
                called.append(1)

        p = P()
        p.test_param = 'modified'

        assert not called

    def test_param_depends_on_parameterized_attribute_async(self):
        # Issue https://github.com/holoviz/param/issues/635

        called = []

        class Sub(param.Parameterized):
            s = param.String()

        class P(param.Parameterized):
            test_param = param.Parameter()

            def __init__(self, **params):
                self._sub = Sub()
                super().__init__(**params)

            @param.depends('_sub.s', watch=True)
            async def cb(self):
                called.append(1)

        p = P()
        p.test_param = 'modified'

        assert not called

    def test_param_depends_on_method(self):

        method_count = 0

        class A(param.Parameterized):
            a = param.Integer()

            @param.depends('a', watch=True)
            def method1(self):
                pass

            @param.depends('method1', watch=True)
            def method2(self):
                nonlocal method_count
                method_count += 1

        inst = A()
        pinfos = inst.param.method_dependencies('method2')
        assert len(pinfos) == 1

        pinfo = pinfos[0]
        assert pinfo.cls is A
        assert pinfo.inst is inst
        assert pinfo.name == 'a'
        assert pinfo.what == 'value'

        inst.a = 2
        assert method_count == 1

    async def test_param_depends_on_method_async(self):

        method_count = 0

        class A(param.Parameterized):
            a = param.Integer()

            @param.depends('a', watch=True)
            async def method1(self):
                pass

            @param.depends('method1', watch=True)
            async def method2(self):
                nonlocal method_count
                method_count += 1

        inst = A()
        pinfos = inst.param.method_dependencies('method2')
        assert len(pinfos) == 1

        pinfo = pinfos[0]
        assert pinfo.cls is A
        assert pinfo.inst is inst
        assert pinfo.name == 'a'
        assert pinfo.what == 'value'

        inst.a = 2

        await asyncio.sleep(0.01)

        assert method_count == 1

    def test_param_depends_on_method_subparameter(self):

        method1_count = 0
        method2_count = 0

        class Sub(param.Parameterized):
            a = param.Integer()

            @param.depends('a')
            def method1(self):
                nonlocal method1_count
                method1_count += 1

        class Main(param.Parameterized):
            sub = param.Parameter()

            @param.depends('sub.method1', watch=True)
            def method2(self):
                nonlocal method2_count
                method2_count += 1

        sub = Sub()
        main = Main(sub=sub)
        pinfos = main.param.method_dependencies('method2')
        assert len(pinfos) == 1

        pinfo = pinfos[0]
        assert pinfo.cls is Sub
        assert pinfo.inst is sub
        assert pinfo.name == 'a'
        assert pinfo.what == 'value'

        sub.a = 2
        assert method1_count == 0
        assert method2_count == 1

    async def test_param_depends_on_method_subparameter_async(self):

        method1_count = 0
        method2_count = 0

        class Sub(param.Parameterized):
            a = param.Integer()

            @param.depends('a')
            async def method1(self):
                nonlocal method1_count
                method1_count += 1

        class Main(param.Parameterized):
            sub = param.Parameter()

            @param.depends('sub.method1', watch=True)
            async def method2(self):
                nonlocal method2_count
                method2_count += 1

        sub = Sub()
        main = Main(sub=sub)
        pinfos = main.param.method_dependencies('method2')
        assert len(pinfos) == 1

        pinfo = pinfos[0]
        assert pinfo.cls is Sub
        assert pinfo.inst is sub
        assert pinfo.name == 'a'
        assert pinfo.what == 'value'

        sub.a = 2

        await asyncio.sleep(0.01)

        assert method1_count == 0
        assert method2_count == 1

    def test_param_depends_on_method_subparameter_after_init(self):
        # Setup inspired from https://github.com/holoviz/param/issues/764

        method1_count = 0
        method2_count = 0

        class Controls(param.Parameterized):

            explorer = param.Parameter()

            @param.depends('explorer.method1', watch=True)
            def method2(self):
                nonlocal method2_count
                method2_count += 1


        class Explorer(param.Parameterized):

            controls = param.Parameter()

            x = param.Selector(objects=['a', 'b'])

            def __init__(self, **params):
                super().__init__(**params)
                self.controls = Controls(explorer=self)

            @param.depends('x')
            def method1(self):
                nonlocal method1_count
                method1_count += 1

        explorer = Explorer()

        pinfos = explorer.controls.param.method_dependencies('method2')
        assert len(pinfos) == 1

        pinfo = pinfos[0]
        assert pinfo.cls is Explorer
        assert pinfo.inst is explorer
        assert pinfo.name == 'x'
        assert pinfo.what == 'value'

        explorer.x = 'b'

        assert method1_count == 0
        assert method2_count == 1

    async def test_param_depends_on_method_subparameter_after_init_async(self):
        # Setup inspired from https://github.com/holoviz/param/issues/764

        method1_count = 0
        method2_count = 0

        class Controls(param.Parameterized):

            explorer = param.Parameter()

            @param.depends('explorer.method1', watch=True)
            async def method2(self):
                nonlocal method2_count
                method2_count += 1


        class Explorer(param.Parameterized):

            controls = param.Parameter()

            x = param.Selector(objects=['a', 'b'])

            def __init__(self, **params):
                super().__init__(**params)
                self.controls = Controls(explorer=self)

            @param.depends('x')
            async def method1(self):
                nonlocal method1_count
                method1_count += 1

        explorer = Explorer()

        pinfos = explorer.controls.param.method_dependencies('method2')
        assert len(pinfos) == 1

        pinfo = pinfos[0]
        assert pinfo.cls is Explorer
        assert pinfo.inst is explorer
        assert pinfo.name == 'x'
        assert pinfo.what == 'value'

        explorer.x = 'b'

        await asyncio.sleep(0.01)

        assert method1_count == 0
        assert method2_count == 1

    def test_param_depends_class_with_len(self):
        # https://github.com/holoviz/param/issues/747

        count = 0

        class P(param.Parameterized):
            x = param.Parameter()

            @param.depends('x', watch=True)
            def debug(self):
                nonlocal count
                count += 1

            # bool(P()) evaluates to False
            def __len__(self):
                return 0

        p = P()
        p.x = 1
        assert count == 1

    def test_param_depends_subobject_before_super_init(self):
        count = 0

        class X(param.Parameterized):
            p = param.Parameter()

        class Y(param.Parameterized):

            def __init__(self, **params):
                self.x = X()
                super().__init__(**params)

            # Check that creating this class doesn't error when resolving x.p
            @param.depends('x.p')
            def cb(self):
                nonlocal count
                count += 1

        y = Y()
        pinfos = y.param.method_dependencies('cb')
        assert len(pinfos) == 1
        pinfo = pinfos[0]
        assert pinfo.inst == y.x
        assert pinfo.cls == X
        assert pinfo.name == 'p'


class TestParamDependsFunction:

    def setup_method(self):
        class P(param.Parameterized):
            a = param.Parameter()
            b = param.Parameter()


        self.P = P

    def test_param_depends_function_instance_params(self):
        p = self.P()

        @param.depends(p.param.a, c=p.param.b)
        def function(value, c):
            pass

        dependencies = {
            'dependencies': (p.param.a,),
            'kw': {'c': p.param.b},
            'watch': False,
            'on_init': False
        }
        assert function._dinfo == dependencies

    def test_param_depends_function_class_params(self):
        p = self.P

        @param.depends(p.param.a, c=p.param.b)
        def function(value, c):
            pass

        dependencies = {
            'dependencies': (p.param.a,),
            'kw': {'c': p.param.b},
            'watch': False,
            'on_init': False
        }
        assert function._dinfo == dependencies

    def test_param_depends_function_instance_params_watch(self):
        p = self.P(a=1, b=2)

        d = []

        @param.depends(p.param.a, c=p.param.b, watch=True)
        def function(value, c):
            d.append(value+c)

        p.a = 2
        assert d == [4]
        p.b = 3
        assert d == [4, 5]

    def test_param_depends_function_class_params_watch(self):
        p = self.P
        p.a = 1
        p.b = 2

        d = []

        @param.depends(p.param.a, c=p.param.b, watch=True)
        def function(value, c):
            d.append(value+c)

        p.a = 2
        assert d == [4]
        p.b = 3
        assert d == [4, 5]

    async def test_async(self):
        p = self.P(a=1)

        d = []

        @param.depends(p.param.a, watch=True)
        async def function(value):
            d.append(value)

        p.a = 2

        await asyncio.sleep(0.01)

        assert d == [2]


def test_misspelled_parameter_in_depends():
    with pytest.raises(AttributeError, match="Attribute 'tlim' could not be resolved on"):
        class Example(param.Parameterized):
            xlim = param.Range((0, 10), bounds=(0, 100))

            @param.depends("tlim")  # <- Misspelled xlim
            def test(self):
                return True


def test_misspelled_parameter_in_depends_non_Parameter():
    with pytest.raises(AttributeError, match="Attribute 'foo' could not be resolved on"):
        class Example(param.Parameterized):
            foo = 1

            @param.depends("foo")  # <- Not a Parameter
            def test(self):
                return True


def test_misspelled_parameter_in_depends_watch():
    with pytest.raises(AttributeError, match="Attribute 'tlim' could not be resolved on"):
        class Example(param.Parameterized):
            xlim = param.Range((0, 10), bounds=(0, 100))

            @param.depends("tlim", watch=True)  # <- Misspelled xlim
            def test(self):
                return True

def test_param_depends_on_undefined_attribute():
    class P2(param.Parameterized):
        value = param.String()

    class P1(param.Parameterized):

        def __init__(self, **params):
            super().__init__(**params)
            self.p2 = P2()

        @param.depends('p2.value', watch=True)
        def cb(self):
            print('fired')

    with pytest.raises(AttributeError) as excinfo:
        P1()

    assert "Dependency 'p2' could not be resolved" in str(excinfo.value)