openusd 0.6.0

Rust native USD library
Documentation
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
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
//! Integration tests for `usd::Stage` exercised purely through its public
//! API: opening composed stages, querying composition results, value
//! resolution, prim/attribute/relationship handles, instancing, value
//! clips, and stage-tier authoring.

use std::cell::{Cell, RefCell};
use std::collections::HashMap;
use std::fs;
use std::path::Path as FsPath;
use std::rc::Rc;

use anyhow::Result;
use openusd::ar::Resolver as _;
use openusd::usd::{
    CommittedChange, EditTarget, EditTargetArc, InitialLoadSet, LoadPolicy, PrimPredicate, PrimStatus, Stage,
    StageAuthoringError, StagePopulationMask, StageSink,
};
use openusd::usdz::ArchiveWriter;
use openusd::{ar, gf, pcp, sdf, tf, usd};

/// A [`StageSink`] for tests: holds optional closures for the composed-change and
/// lifecycle hooks a test cares about, recording into shared state it inspects
/// afterward.
#[derive(Default)]
#[allow(clippy::type_complexity)]
struct RecordingSink {
    after: Option<Box<dyn Fn(&Stage, &CommittedChange<'_>)>>,
    edit_target: Option<Box<dyn Fn(&Stage)>>,
    muting: Option<Box<dyn Fn(&Stage, &str, bool)>>,
    load_rules: Option<Box<dyn Fn(&Stage, &[sdf::Path])>>,
}

impl StageSink for RecordingSink {
    fn after_commit(&self, stage: &Stage, change: &CommittedChange<'_>) {
        if let Some(f) = &self.after {
            f(stage, change);
        }
    }
    fn edit_target_changed(&self, stage: &Stage) {
        if let Some(f) = &self.edit_target {
            f(stage);
        }
    }
    fn layer_muting_changed(&self, stage: &Stage, layer: &str, muted: bool) {
        if let Some(f) = &self.muting {
            f(stage, layer, muted);
        }
    }
    fn load_rules_changed(&self, stage: &Stage, resynced: &[sdf::Path]) {
        if let Some(f) = &self.load_rules {
            f(stage, resynced);
        }
    }
}

/// An [`sdf::LayerSink`] for tests: optional closures for the layer-tier
/// pre-commit (with veto) and post-commit hooks.
#[allow(clippy::type_complexity)]
#[derive(Default)]
struct RecordingLayerSink {
    before: Option<Box<dyn Fn(&sdf::PendingLayerChange<'_>) -> Result<(), sdf::sink::Error>>>,
    after: Option<Box<dyn Fn(&str, &sdf::ChangeList)>>,
}

impl sdf::LayerSink for RecordingLayerSink {
    fn before_commit(&self, change: &sdf::PendingLayerChange<'_>) -> Result<(), sdf::sink::Error> {
        match &self.before {
            Some(f) => f(change),
            None => Ok(()),
        }
    }
    fn after_commit(&self, layer: &str, changes: &sdf::ChangeList) {
        if let Some(f) = &self.after {
            f(layer, changes);
        }
    }
}

const VENDOR_COMPOSITION: &str = "vendor/usd-wg-assets/test_assets/foundation/stage_composition";

fn manifest_dir() -> String {
    std::env::var("CARGO_MANIFEST_DIR").unwrap()
}

fn composition_path(relative: &str) -> String {
    format!("{}/{VENDOR_COMPOSITION}/{relative}", manifest_dir())
}

fn fixture_path(relative: &str) -> String {
    format!("{}/fixtures/{relative}", manifest_dir())
}

// Composed-scene query shims used throughout these tests: each routes
// through the handle that now owns the query so the assertions stay terse.
fn child_names(stage: &Stage, path: impl Into<sdf::Path>) -> Result<Vec<String>> {
    Ok(stage.prim(path).child_names()?.into_iter().map(String::from).collect())
}

fn prop_names(stage: &Stage, path: impl Into<sdf::Path>) -> Result<Vec<String>> {
    Ok(stage
        .prim(path)
        .property_names()?
        .into_iter()
        .map(String::from)
        .collect())
}

fn connections(stage: &Stage, attr: &sdf::Path) -> Result<Vec<sdf::Path>> {
    stage.attribute(attr).connections()
}

fn rel_targets(stage: &Stage, rel: &sdf::Path) -> Result<Vec<sdf::Path>> {
    stage.relationship(rel).targets()
}

fn fwd_targets(stage: &Stage, rel: &sdf::Path) -> Result<Vec<sdf::Path>> {
    stage.relationship(rel).forwarded_targets()
}

/// Number of `UnresolvedSublayer` collection diagnostics the stage reports for
/// `asset_path` — the assertion the muted-diagnostic tests share.
fn unresolved_sublayer_count(stage: &Stage, asset_path: &str) -> usize {
    stage
        .composition_errors()
        .iter()
        .filter(|e| matches!(e, pcp::Error::UnresolvedSublayer { asset_path: a, .. } if a == asset_path))
        .count()
}

/// Whether the stage reports an `UnresolvedSublayer` for `asset_path`.
fn reports_unresolved_sublayer(stage: &Stage, asset_path: &str) -> bool {
    unresolved_sublayer_count(stage, asset_path) > 0
}

// --- Basic stage opening (vendor/usd-wg-assets) ---

#[test]
fn missing_sublayer_retained() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        "#usda 1.0\n(\n    subLayers = [@missing.usda@]\n)\ndef \"Root\" {}\n",
    )?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert!(stage.composition_errors().iter().any(|error| matches!(
        error,
        pcp::Error::UnresolvedSublayer {
            asset_path,
            introduced_by,
        } if asset_path == "missing.usda" && introduced_by.ends_with("root.usda")
    )));
    assert!(stage.prim("/Root").is_valid()?);
    Ok(())
}

/// A missing sublayer under a muted branch raises no diagnostic: the muted layer
/// and its whole subtree contribute nothing to composition, so its absent
/// descendants are not stage errors. The same missing sublayer that surfaces as
/// `UnresolvedSublayer` without the mute is filtered out with it.
#[test]
fn muted_branch_suppresses_missing() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let muted = dir.path().join("muted.usda");
    // `root` sublayers `muted`, which in turn sublayers a file that does not exist.
    fs::write(&root, "#usda 1.0\n(\n    subLayers = [@muted.usda@]\n)\n")?;
    fs::write(&muted, "#usda 1.0\n(\n    subLayers = [@missing.usda@]\n)\n")?;
    let root_path = root.to_str().unwrap();

    // Without muting, the missing sublayer under `muted` is reported.
    let plain = Stage::open(root_path)?;
    assert!(
        reports_unresolved_sublayer(&plain, "missing.usda"),
        "an unmuted missing sublayer must be reported, got {:?}",
        plain.composition_errors()
    );

    // Muting `muted.usda` prunes its subtree, so its missing sublayer is silent.
    let muted_stage = Stage::builder().mute(["muted.usda"]).open(root_path)?;
    assert!(
        !reports_unresolved_sublayer(&muted_stage, "missing.usda"),
        "a missing sublayer under a muted branch must raise no diagnostic, got {:?}",
        muted_stage.composition_errors()
    );
    Ok(())
}

/// Muting a layer that is itself a missing sublayer suppresses its
/// `UnresolvedSublayer` diagnostic — a muted layer contributes nothing whether it
/// resolves or not, so its absence is not reported.
#[test]
fn muted_missing_sublayer_suppressed() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(&root, "#usda 1.0\n(\n    subLayers = [@gone.usda@]\n)\n")?;
    let root_path = root.to_str().unwrap();

    let plain = Stage::open(root_path)?;
    assert!(
        reports_unresolved_sublayer(&plain, "gone.usda"),
        "an unmuted missing sublayer is reported"
    );

    let muted = Stage::builder().mute(["gone.usda"]).open(root_path)?;
    assert!(
        !reports_unresolved_sublayer(&muted, "gone.usda"),
        "muting the missing sublayer suppresses its diagnostic, got {:?}",
        muted.composition_errors()
    );
    Ok(())
}

/// A missing sublayer reached through both a muted and an unmuted branch of one
/// stack is still reported. The muted branch is declared (and loaded) first, but
/// the diagnostic decision is made from the graph's reachability, not the load
/// order, so the unmuted branch that genuinely needs it keeps its
/// `UnresolvedSublayer`.
#[test]
fn muted_diamond_keeps_active() -> Result<()> {
    let dir = tempfile::tempdir()?;
    // `root` sublayers `muted` (declared first, so walked first) then `active`;
    // both sublayer the same missing layer.
    fs::write(
        dir.path().join("root.usda"),
        "#usda 1.0\n(\n    subLayers = [@muted.usda@, @active.usda@]\n)\n",
    )?;
    fs::write(
        dir.path().join("muted.usda"),
        "#usda 1.0\n(\n    subLayers = [@shared_missing.usda@]\n)\n",
    )?;
    fs::write(
        dir.path().join("active.usda"),
        "#usda 1.0\n(\n    subLayers = [@shared_missing.usda@]\n)\n",
    )?;
    let root_path = dir.path().join("root.usda");
    let root_path = root_path.to_str().unwrap();

    // With `muted.usda` muted, its reference to the missing layer is suppressed,
    // but `active.usda` still contributes it, so the diagnostic must survive.
    let stage = Stage::builder().mute(["muted.usda"]).open(root_path)?;
    assert_eq!(
        unresolved_sublayer_count(&stage, "shared_missing.usda"),
        1,
        "the unmuted branch's missing sublayer must be reported exactly once, got {:?}",
        stage.composition_errors()
    );
    Ok(())
}

/// A *readable, shared* layer reached through both a muted and an unmuted branch
/// keeps the diagnostics for its own missing descendants. `shared` loads once
/// (deduplicated by identity), and its missing sublayer is reported because
/// `shared` is reachable through the unmuted `active` branch, regardless of which
/// branch reaches it first.
#[test]
fn muted_diamond_keeps_descendant() -> Result<()> {
    let dir = tempfile::tempdir()?;
    // Both `muted` (walked first) and `active` sublayer the same readable `shared`
    // layer, which in turn sublayers a missing one.
    fs::write(
        dir.path().join("root.usda"),
        "#usda 1.0\n(\n    subLayers = [@muted.usda@, @active.usda@]\n)\n",
    )?;
    fs::write(
        dir.path().join("muted.usda"),
        "#usda 1.0\n(\n    subLayers = [@shared.usda@]\n)\n",
    )?;
    fs::write(
        dir.path().join("active.usda"),
        "#usda 1.0\n(\n    subLayers = [@shared.usda@]\n)\n",
    )?;
    fs::write(
        dir.path().join("shared.usda"),
        "#usda 1.0\n(\n    subLayers = [@missing.usda@]\n)\n",
    )?;
    let root_path = dir.path().join("root.usda");
    let root_path = root_path.to_str().unwrap();

    let stage = Stage::builder().mute(["muted.usda"]).open(root_path)?;
    assert!(
        reports_unresolved_sublayer(&stage, "missing.usda"),
        "the shared layer is reachable through the unmuted branch, so its missing sublayer must be reported, got {:?}",
        stage.composition_errors()
    );
    Ok(())
}

/// Muting a branch suppresses its missing-sublayer diagnostic and unmuting
/// restores it. The loader records the raw diagnostic once; filtering happens at
/// report time against the current composed state, so the one-shot error is never
/// discarded and reappears when the branch rejoins composition.
#[test]
fn unmute_restores_diagnostic() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("root.usda"),
        "#usda 1.0\n(\n    subLayers = [@muted.usda@]\n)\n",
    )?;
    fs::write(
        dir.path().join("muted.usda"),
        "#usda 1.0\n(\n    subLayers = [@missing.usda@]\n)\n",
    )?;
    let root_path = dir.path().join("root.usda");
    let root_path = root_path.to_str().unwrap();

    let stage = Stage::builder().mute(["muted.usda"]).open(root_path)?;
    assert!(
        !reports_unresolved_sublayer(&stage, "missing.usda"),
        "while muted the missing sublayer must be silent, got {:?}",
        stage.composition_errors()
    );

    stage.unmute_layer("muted.usda");
    assert!(
        reports_unresolved_sublayer(&stage, "missing.usda"),
        "unmuting the branch must restore its missing-sublayer diagnostic, got {:?}",
        stage.composition_errors()
    );
    Ok(())
}

/// `composition_errors()` does not flicker with cache warmth: a reference
/// target's missing-sublayer diagnostic stays reported after an unrelated mute
/// evicts the prim index that first reached the target. The effective set is the
/// composed stacks, not the currently-cached indices, so an eviction cannot hide a
/// valid diagnostic. (Muting the arc's own authoring layer likewise keeps the
/// diagnostic — a deliberate conservative over-report; see the pcp "Muted sublayer
/// diagnostics" remaining-work note.)
#[test]
fn muted_diagnostic_survives_eviction() -> Result<()> {
    let dir = tempfile::tempdir()?;
    // `/A` references `target` (which has a missing sublayer); the unrelated
    // sublayer `s` also contributes an opinion to `/A`, so muting `s` evicts `/A`'s
    // index without touching the `/A -> target` arc authored in the root.
    fs::write(
        dir.path().join("root.usda"),
        "#usda 1.0\n(\n    subLayers = [@s.usda@]\n)\ndef \"A\" (\n    references = @target.usda@\n) {}\n",
    )?;
    fs::write(
        dir.path().join("s.usda"),
        "#usda 1.0\nover \"A\" {\n    custom int x = 1\n}\n",
    )?;
    fs::write(
        dir.path().join("target.usda"),
        "#usda 1.0\n(\n    subLayers = [@missing.usda@]\n    defaultPrim = \"T\"\n)\ndef \"T\" {}\n",
    )?;
    let root_path = dir.path().join("root.usda");
    let root_path = root_path.to_str().unwrap();

    let stage = Stage::open(root_path)?;
    let _ = child_names(&stage, "/A")?;
    assert!(
        reports_unresolved_sublayer(&stage, "missing.usda"),
        "the reached target's missing sublayer is reported"
    );

    // Muting the unrelated `s` evicts `/A`'s cached index; the diagnostic must not
    // vanish with the eviction.
    stage.mute_layer("s.usda");
    assert!(
        reports_unresolved_sublayer(&stage, "missing.usda"),
        "an unrelated mute evicting the cached index must not hide the diagnostic, got {:?}",
        stage.composition_errors()
    );
    Ok(())
}

/// Muting a reference target that has already loaded suppresses the target's own
/// missing-sublayer diagnostic: the muted target root resolves to an empty stack,
/// so it drops out of the composed-stack effective set and no longer counts as an
/// effective referrer.
#[test]
fn mute_loaded_target_suppresses() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("root.usda"),
        "#usda 1.0\ndef \"A\" (\n    references = @target.usda@\n) {}\n",
    )?;
    fs::write(
        dir.path().join("target.usda"),
        "#usda 1.0\n(\n    subLayers = [@missing.usda@]\n    defaultPrim = \"T\"\n)\ndef \"T\" {}\n",
    )?;
    let root_path = dir.path().join("root.usda");
    let root_path = root_path.to_str().unwrap();

    let stage = Stage::open(root_path)?;
    // Composing `/A` loads the target and records its missing sublayer.
    let _ = child_names(&stage, "/A")?;
    assert!(
        reports_unresolved_sublayer(&stage, "missing.usda"),
        "the loaded target's missing sublayer is reported"
    );

    stage.mute_layer("target.usda");
    // Recompose `/A` so it records the now-muted target as an external target.
    let _ = child_names(&stage, "/A")?;
    assert!(
        !reports_unresolved_sublayer(&stage, "missing.usda"),
        "muting the target suppresses its own sublayer diagnostic, got {:?}",
        stage.composition_errors()
    );
    Ok(())
}

/// A layer that authors the same missing sublayer twice reports it once. The
/// loader deduplicates failures per referrer, so a duplicate `subLayers` entry
/// does not double the diagnostic — while a genuinely separate referrer still
/// reports its own (see `muted_diamond_keeps_active`).
#[test]
fn duplicate_missing_reported_once() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("root.usda"),
        "#usda 1.0\n(\n    subLayers = [@missing.usda@, @missing.usda@]\n)\n",
    )?;
    let stage = Stage::open(dir.path().join("root.usda").to_str().unwrap())?;
    assert_eq!(
        unresolved_sublayer_count(&stage, "missing.usda"),
        1,
        "a duplicate missing sublayer is reported once, got {:?}",
        stage.composition_errors()
    );
    Ok(())
}

/// A missing sublayer of a reference target opened on demand surfaces the same
/// `UnresolvedSublayer` diagnostic as a missing root sublayer: composition reaches
/// the target lazily, so the load barrier records it. The target still loads, so
/// the reference composes (`/P.x` resolves).
#[test]
fn lazy_ref_missing_sublayer() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let target = dir.path().join("target.usda");
    fs::write(&root, "#usda 1.0\ndef \"P\" (\n    references = @target.usda@\n) {}\n")?;
    fs::write(
        &target,
        "#usda 1.0\n(\n    subLayers = [@missing.usda@]\n    defaultPrim = \"P\"\n)\ndef \"P\" {\n    custom double x = 1\n}\n",
    )?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(
        stage.attribute("/P.x").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(1.0)),
        "the reference target loads despite its missing sublayer"
    );
    assert!(
        stage.composition_errors().iter().any(|error| matches!(
            error,
            pcp::Error::UnresolvedSublayer { asset_path, introduced_by }
                if asset_path == "missing.usda" && introduced_by.ends_with("target.usda")
        )),
        "expected UnresolvedSublayer, got {:?}",
        stage.composition_errors()
    );
    Ok(())
}

/// A reference target that resolves but cannot be parsed is reported
/// `MalformedLayer` (carrying the parse error) rather than silently dropped, and
/// composition still completes — the demanding prim composes without the arc
/// instead of looping on the unreadable target.
#[test]
fn lazy_ref_unreadable_target() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let target = dir.path().join("broken.usda");
    fs::write(&root, "#usda 1.0\ndef \"P\" (\n    references = @broken.usda@\n) {}\n")?;
    // Resolves (the file exists) but the parser rejects the body.
    fs::write(&target, "#usda 1.0\ndef Broken {{{ not valid\n")?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert!(stage.prim("/P").is_valid()?, "/P still composes without the arc");
    assert!(
        stage.composition_errors().iter().any(|error| matches!(
            error,
            pcp::Error::MalformedLayer { asset_path, reason, .. }
                if asset_path.contains("broken.usda") && !reason.is_empty()
        )),
        "expected MalformedLayer carrying the parse error, got {:?}",
        stage.composition_errors()
    );
    Ok(())
}

/// A reference target that failed to read on first demand is retried after an
/// edit clears the recorded failure, so a repaired asset composes.
#[test]
fn failed_load_retried_after_edit() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let target = dir.path().join("target.usda");
    fs::write(&root, "#usda 1.0\ndef \"P\" (\n    references = @target.usda@\n) {}\n")?;
    fs::write(&target, "#usda 1.0\ndef Broken {{{ not valid\n")?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert!(stage.prim("/P").is_valid()?);
    assert!(
        stage.composition_errors().iter().any(|e| matches!(
            e,
            pcp::Error::MalformedLayer { asset_path, .. } if asset_path.contains("target.usda")
        )),
        "the unreadable target is reported malformed"
    );

    // Repair the file, then author an unrelated prim: the edit clears the recorded
    // failure so the next query re-demands the now-readable target.
    fs::write(
        &target,
        "#usda 1.0\n(\n    defaultPrim = \"P\"\n)\ndef \"P\" {\n    custom double x = 7\n}\n",
    )?;
    stage.define_prim("/Trigger")?;

    assert_eq!(
        stage.attribute("/P.x").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(7.0)),
        "the repaired reference composes once the failure is cleared"
    );
    Ok(())
}

/// A cold direct query into a descendant of an instanceable reference (no prior
/// traversal) composes through the prototype, not an empty namespace: the
/// instance-proxy redirect is not memoized while the reference layer is still
/// being demanded.
#[test]
fn instance_proxy_cold_query() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let proto = dir.path().join("proto.usda");
    fs::write(
        &root,
        "#usda 1.0\ndef \"World\" {\n    def \"Inst\" (\n        instanceable = true\n        references = @proto.usda@\n    ) {}\n}\n",
    )?;
    fs::write(
        &proto,
        "#usda 1.0\n(\n    defaultPrim = \"Proto\"\n)\ndef \"Proto\" {\n    def \"Child\" {\n        custom double x = 3\n    }\n}\n",
    )?;

    let stage = Stage::open(root.to_str().unwrap())?;
    // The first query is the descendant read; it must demand proto.usda, compose
    // the instance, and resolve through the prototype rather than memoizing an
    // identity redirect against the not-yet-loaded reference.
    assert_eq!(
        stage
            .attribute("/World/Inst/Child.x")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(3.0))
    );
    Ok(())
}

/// A reference target's `subLayers` expression resolves against the *referencing*
/// layer stack's variables: the root sets `${V}` but the target only authors the
/// expression, so the on-demand load must carry the referrer's composed
/// expression variables into the target's sublayer evaluation (the closer-to-root
/// referrer wins). Without them `${V}` is unresolved and the sublayer never loads.
#[test]
fn lazy_ref_inherited_expr_var() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::create_dir(dir.path().join("prod"))?;
    let root = dir.path().join("root.usda");
    let target = dir.path().join("target.usda");
    let over = dir.path().join("prod").join("over.usda");
    fs::write(
        &root,
        "#usda 1.0\n(\n    expressionVariables = { string V = \"prod\" }\n)\ndef \"P\" (\n    references = @target.usda@\n) {}\n",
    )?;
    fs::write(
        &target,
        "#usda 1.0\n(\n    defaultPrim = \"P\"\n    subLayers = [@`\"${V}/over.usda\"`@]\n)\ndef \"P\" {}\n",
    )?;
    fs::write(&over, "#usda 1.0\ndef \"P\" {\n    custom double x = 9\n}\n")?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(
        stage.attribute("/P.x").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(9.0)),
        "the target's `${{V}}` sublayer resolves against the referrer's variable"
    );
    Ok(())
}

/// A root-layer `subLayers` expression composes the layer it names: the
/// expression resolves against the root layer's own `expressionVariables`, so the
/// sublayer edge forms and its prims contribute (the demand path is exercised by
/// [`lazy_ref_inherited_expr_var`]; this covers the root-stack build).
#[test]
fn expr_sublayer_composes() -> Result<()> {
    let stage = Stage::open(&fixture_path("expr_sublayer.usda"))?;
    assert_eq!(stage.layer_count(), 2, "root + the expression-resolved sublayer");
    assert_eq!(
        stage.root_prims()?.iter().map(|t| t.as_str()).collect::<Vec<_>>(),
        ["World"],
        "the expression sublayer's prim composes onto the stage"
    );
    Ok(())
}

/// A layer stack's expression variables come from its root layer, not its
/// sublayers (C++ `PcpExpressionVariables`): a variable authored on a *sublayer*
/// is ignored. The root sublayers `a`; `a` defines `V` and sublayers `b`; `b`'s
/// `${V}` sublayer therefore does not resolve, so `leaf` never composes and `/P`
/// has no opinion.
#[test]
fn sublayer_expr_var_ignored() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let a = dir.path().join("a.usda");
    let b = dir.path().join("b.usda");
    let leaf = dir.path().join("leaf.usda");
    fs::write(&root, "#usda 1.0\n(\n    subLayers = [@a.usda@]\n)\n")?;
    fs::write(
        &a,
        "#usda 1.0\n(\n    expressionVariables = { string V = \"leaf\" }\n    subLayers = [@b.usda@]\n)\n",
    )?;
    fs::write(&b, "#usda 1.0\n(\n    subLayers = [@`\"${V}.usda\"`@]\n)\n")?;
    fs::write(&leaf, "#usda 1.0\ndef \"P\" {\n    custom double x = 7\n}\n")?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(
        stage.attribute("/P.x").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        None,
        "`a` is a sublayer, so its `V` is ignored and `b`'s expression sublayer does not resolve"
    );
    Ok(())
}

/// A reference target's `${VAR}` sublayer resolves against a variable authored on
/// a *non-root* referencing layer. The root references `mid`; `mid` defines `V`
/// and references `target`; `target`'s `${V}` sublayer must resolve against
/// `mid`'s value — the variable is on neither `target` nor the root, so the
/// referrer's composed variables carried across the arc are what resolve it.
#[test]
fn cross_ref_expr_sublayer() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let mid = dir.path().join("mid.usda");
    let target = dir.path().join("target.usda");
    let over = dir.path().join("over.usda");
    fs::write(&root, "#usda 1.0\ndef \"P\" (\n    references = @mid.usda@\n) {}\n")?;
    fs::write(
        &mid,
        "#usda 1.0\n(\n    defaultPrim = \"P\"\n    expressionVariables = { string V = \"over\" }\n)\ndef \"P\" (\n    references = @target.usda@\n) {}\n",
    )?;
    fs::write(
        &target,
        "#usda 1.0\n(\n    defaultPrim = \"P\"\n    subLayers = [@`\"${V}.usda\"`@]\n)\ndef \"P\" {}\n",
    )?;
    fs::write(&over, "#usda 1.0\ndef \"P\" {\n    custom double x = 9\n}\n")?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(
        stage.attribute("/P.x").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(9.0)),
        "the referrer's variable resolves the target's `${{V}}` sublayer"
    );
    Ok(())
}

/// One prim's two references reach the same not-yet-loaded target under
/// different expression-variable contexts, so both demands land in a single
/// load-barrier pass. The barrier opens the target for the first demand only;
/// the second context's instance must not intern against the half-wired graph —
/// its `${V}` sublayer would be silently dropped from the members forever — so
/// it waits a pass and reopens the target with its own variables.
#[test]
fn dual_context_same_pass() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        "#usda 1.0\ndef \"M\" (\n    references = [@s1.usda@, @s2.usda@]\n) {}\n",
    )?;
    for (name, sel) in [("s1.usda", "x"), ("s2.usda", "y")] {
        fs::write(
            dir.path().join(name),
            format!(
                "#usda 1.0\n(\n    defaultPrim = \"P\"\n    expressionVariables = {{ string V = \"{sel}\" }}\n)\ndef \"P\" (\n    references = @t.usda@\n) {{}}\n",
            ),
        )?;
    }
    fs::write(
        dir.path().join("t.usda"),
        "#usda 1.0\n(\n    defaultPrim = \"P\"\n    subLayers = [@`\"${V}.usda\"`@]\n)\ndef \"P\" {}\n",
    )?;
    fs::write(
        dir.path().join("x.usda"),
        "#usda 1.0\ndef \"P\" {\n    custom double vx = 1\n}\n",
    )?;
    fs::write(
        dir.path().join("y.usda"),
        "#usda 1.0\ndef \"P\" {\n    custom double vy = 2\n}\n",
    )?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(
        stage.attribute("/M.vx").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(1.0)),
        "s1's V=x resolves the target's sublayer under the first arc"
    );
    assert_eq!(
        stage.attribute("/M.vy").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(2.0)),
        "s2's V=y resolves the target's sublayer under the second arc"
    );
    Ok(())
}

/// A runtime `expressionVariables` edit on the session layer newly selects a
/// root `${VAR}` sublayer that was never opened: the recompose records a
/// sublayer demand and the load barrier opens `b.usda` from disk, so the edit
/// alone swaps the composed selection.
#[test]
fn session_var_edit_loads() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let session = dir.path().join("session.usda");
    fs::write(&root, "#usda 1.0\n(\n    subLayers = [@`\"${WHICH}.usda\"`@]\n)\n")?;
    fs::write(
        &session,
        "#usda 1.0\n(\n    expressionVariables = { string WHICH = \"a\" }\n)\n",
    )?;
    fs::write(
        dir.path().join("a.usda"),
        "#usda 1.0\ndef \"A\" {\n    custom double x = 1\n}\n",
    )?;
    fs::write(
        dir.path().join("b.usda"),
        "#usda 1.0\ndef \"B\" {\n    custom double y = 2\n}\n",
    )?;

    let stage = Stage::builder()
        .session_layer(session.to_str().unwrap())
        .open(root.to_str().unwrap())?;
    assert_eq!(stage.attribute("/A.x").get::<f64>()?, Some(1.0), "WHICH=a at open");
    assert_eq!(stage.attribute("/B.y").get::<f64>()?, None, "b.usda is not loaded");

    let session_id = stage.session_layer().expect("session layer").identifier().to_string();
    stage.layer_mut(&session_id).expect("session layer is live").edit(|e| {
        e.set_expression_variables(HashMap::from([(
            "WHICH".to_string(),
            sdf::Value::String("b".to_string()),
        )]))
    })?;
    assert_eq!(
        stage.attribute("/B.y").get::<f64>()?,
        Some(2.0),
        "the edit loads the newly selected b.usda"
    );
    assert_eq!(
        stage.attribute("/A.x").get::<f64>()?,
        None,
        "a.usda's selection dropped"
    );
    Ok(())
}

/// A runtime `expressionVariables` edit on a reference target's root layer
/// re-selects its `${V}` sublayer: the target stack's recompose demands the
/// newly named layer and the load barrier opens it from disk.
#[test]
fn target_var_edit_loads() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(&root, "#usda 1.0\ndef \"P\" (\n    references = @t.usda@\n) {}\n")?;
    fs::write(
        dir.path().join("t.usda"),
        "#usda 1.0\n(\n    defaultPrim = \"P\"\n    expressionVariables = { string V = \"a\" }\n    subLayers = [@`\"${V}.usda\"`@]\n)\ndef \"P\" {}\n",
    )?;
    fs::write(
        dir.path().join("a.usda"),
        "#usda 1.0\ndef \"P\" {\n    custom double x = 1\n}\n",
    )?;
    fs::write(
        dir.path().join("b.usda"),
        "#usda 1.0\ndef \"P\" {\n    custom double y = 2\n}\n",
    )?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(stage.attribute("/P.x").get::<f64>()?, Some(1.0), "V=a selects a.usda");

    let target_id = stage
        .layer_identifiers()
        .into_iter()
        .find(|id| FsPath::new(id).ends_with("t.usda"))
        .expect("t.usda is loaded");
    stage.layer_mut(&target_id).expect("target layer is live").edit(|e| {
        e.set_expression_variables(HashMap::from([("V".to_string(), sdf::Value::String("b".to_string()))]))
    })?;
    assert_eq!(
        stage.attribute("/P.y").get::<f64>()?,
        Some(2.0),
        "the edit loads the newly selected b.usda into the target stack"
    );
    Ok(())
}

/// An `expressionVariables` edit that changes a composed variable no prim
/// depends on drops no index, yet still publishes the stage-root resync
/// notice to observers — the broad notice covering untracked value-time
/// expression reads (the resync `pcp::Changes::apply` reports).
#[test]
fn vars_edit_notifies_resync() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        "#usda 1.0\n(\n    expressionVariables = { string FREE = \"x\" }\n)\ndef \"Other\" {\n    custom double o = 1\n}\n",
    )?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(stage.attribute("/Other.o").get::<f64>()?, Some(1.0));
    assert!(stage.is_indexed(&sdf::path("/Other")?));

    let resynced: Rc<RefCell<Vec<sdf::Path>>> = Rc::new(RefCell::new(Vec::new()));
    let _token = {
        let resynced = resynced.clone();
        stage.add_sink(move |_stage: &Stage, oc: &CommittedChange<'_>| {
            resynced.borrow_mut().extend(oc.resynced.iter().cloned());
        })
    };
    stage.set_expression_variables(HashMap::from([(
        "FREE".to_string(),
        sdf::Value::String("y".to_string()),
    )]))?;

    assert!(
        resynced.borrow().contains(&sdf::Path::abs_root()),
        "a vars-only edit publishes the stage-root resync notice, got {:?}",
        resynced.borrow()
    );
    assert!(
        stage.is_indexed(&sdf::path("/Other")?),
        "no prim recorded the variable, so its index survives the edit"
    );
    Ok(())
}

/// Authoring `expressionVariables` on a sublayer changes no stack's composed
/// set — only a stack root's variables contribute — so the edit publishes no
/// stage-root resync notice and drops no index (the C++ five-step diff's
/// step-1 no-op).
#[test]
fn sublayer_vars_no_resync() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(&root, "#usda 1.0\n(\n    subLayers = [@sub.usda@]\n)\n")?;
    fs::write(
        dir.path().join("sub.usda"),
        "#usda 1.0\ndef \"P\" {\n    custom double x = 1\n}\n",
    )?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(stage.attribute("/P.x").get::<f64>()?, Some(1.0));
    assert!(stage.is_indexed(&sdf::path("/P")?));

    let resynced: Rc<RefCell<Vec<sdf::Path>>> = Rc::new(RefCell::new(Vec::new()));
    let _token = {
        let resynced = resynced.clone();
        stage.add_sink(move |_stage: &Stage, oc: &CommittedChange<'_>| {
            resynced.borrow_mut().extend(oc.resynced.iter().cloned());
        })
    };
    let sub_id = stage
        .layer_identifiers()
        .into_iter()
        .find(|id| FsPath::new(id).ends_with("sub.usda"))
        .expect("sub.usda is loaded");
    stage.layer_mut(&sub_id).expect("sublayer is live").edit(|e| {
        e.set_expression_variables(HashMap::from([("V".to_string(), sdf::Value::String("x".to_string()))]))
    })?;

    // Reading drains the pending edit, delivering the composed change notice.
    assert!(
        stage.is_indexed(&sdf::path("/P")?),
        "no composed variable changed, so the index survives"
    );
    assert!(
        !resynced.borrow().contains(&sdf::Path::abs_root()),
        "a vars edit that changed no composed set publishes no resync, got {:?}",
        resynced.borrow()
    );
    Ok(())
}

/// A runtime session `expressionVariables` edit re-selects the session
/// region's own `${VAR}` sublayer: the session region re-resolves like any
/// stack region, so the newly selected layer loads on demand and the old
/// selection drops out of the membership.
#[test]
fn session_var_swap_loads() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let session = dir.path().join("session.usda");
    fs::write(&root, "#usda 1.0\n")?;
    fs::write(
        &session,
        "#usda 1.0\n(\n    expressionVariables = { string S = \"sa\" }\n    subLayers = [@`\"${S}.usda\"`@]\n)\n",
    )?;
    fs::write(
        dir.path().join("sa.usda"),
        "#usda 1.0\ndef \"SA\" {\n    custom double a = 1\n}\n",
    )?;
    fs::write(
        dir.path().join("sb.usda"),
        "#usda 1.0\ndef \"SB\" {\n    custom double b = 2\n}\n",
    )?;

    let stage = Stage::builder()
        .session_layer(session.to_str().unwrap())
        .open(root.to_str().unwrap())?;
    assert_eq!(stage.attribute("/SA.a").get::<f64>()?, Some(1.0), "S=sa at open");
    assert_eq!(stage.attribute("/SB.b").get::<f64>()?, None, "sb.usda is not loaded");

    let session_id = stage.session_layer().expect("session layer").identifier().to_string();
    stage.layer_mut(&session_id).expect("session layer is live").edit(|e| {
        e.set_expression_variables(HashMap::from([("S".to_string(), sdf::Value::String("sb".to_string()))]))
    })?;

    assert_eq!(
        stage.attribute("/SB.b").get::<f64>()?,
        Some(2.0),
        "the edit loads the newly selected session sublayer"
    );
    assert_eq!(
        stage.attribute("/SA.a").get::<f64>()?,
        None,
        "the old selection drops out of the session region"
    );
    Ok(())
}

/// `insert_layer` under the session root joins the session region at the next
/// rebuild — the region's membership is a sublayer walk, not the open-time
/// layer list — so the inserted layer's opinion composes.
#[test]
fn session_insert_layer() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let session = dir.path().join("session.usda");
    fs::write(&root, "#usda 1.0\n")?;
    fs::write(&session, "#usda 1.0\n")?;

    let stage = Stage::builder()
        .session_layer(session.to_str().unwrap())
        .open(root.to_str().unwrap())?;
    let session_id = stage.session_layer().expect("session layer").identifier().to_string();
    let extra = opinion_layer("extra.usda", 7.0)?;
    stage.insert_layer(&session_id, 0, extra, sdf::LayerOffset::IDENTITY)?;

    assert_eq!(
        stage.attribute("/A.x").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(7.0)),
        "the inserted session sublayer's opinion composes"
    );
    Ok(())
}

/// A session sublayer missing at open reports once and heals: the session
/// region re-derives the diagnostic per rebuild, so once the file appears and
/// an edit clears the failure memo, the layer loads and the report stops.
#[test]
fn session_missing_heals() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let session = dir.path().join("session.usda");
    fs::write(&root, "#usda 1.0\n")?;
    fs::write(&session, "#usda 1.0\n(\n    subLayers = [@late.usda@]\n)\n")?;

    let stage = Stage::builder()
        .session_layer(session.to_str().unwrap())
        .open(root.to_str().unwrap())?;
    let errors = stage.composition_errors();
    assert_eq!(
        errors.len(),
        1,
        "one missing session sublayer, one diagnostic: {errors:?}"
    );
    assert!(matches!(&errors[0], pcp::Error::UnresolvedSublayer { .. }));

    fs::write(
        dir.path().join("late.usda"),
        "#usda 1.0\ndef \"L\" {\n    custom double x = 4\n}\n",
    )?;
    // Any edit clears the failure memo, requeueing the entry for the barrier.
    stage.define_prim("/Poke")?;
    assert_eq!(
        stage.attribute("/L.x").get::<f64>()?,
        Some(4.0),
        "the repaired session sublayer loads and composes"
    );
    assert!(
        stage.composition_errors().is_empty(),
        "the healed entry stops reporting, got {:?}",
        stage.composition_errors()
    );
    Ok(())
}

/// Muting the session layer exposes the stage root's own `${VAR}` value, whose
/// selection was never opened: the mute's recompose demands it and the load
/// barrier brings it in.
#[test]
fn mute_exposes_selection_loads() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let session = dir.path().join("session.usda");
    fs::write(
        &root,
        "#usda 1.0\n(\n    expressionVariables = { string WHICH = \"b\" }\n    subLayers = [@`\"${WHICH}.usda\"`@]\n)\n",
    )?;
    fs::write(
        &session,
        "#usda 1.0\n(\n    expressionVariables = { string WHICH = \"a\" }\n)\n",
    )?;
    fs::write(
        dir.path().join("a.usda"),
        "#usda 1.0\ndef \"A\" {\n    custom double x = 1\n}\n",
    )?;
    fs::write(
        dir.path().join("b.usda"),
        "#usda 1.0\ndef \"B\" {\n    custom double y = 2\n}\n",
    )?;

    let stage = Stage::builder()
        .session_layer(session.to_str().unwrap())
        .open(root.to_str().unwrap())?;
    assert_eq!(
        stage.attribute("/A.x").get::<f64>()?,
        Some(1.0),
        "the session's WHICH=a wins"
    );
    assert_eq!(stage.attribute("/B.y").get::<f64>()?, None, "b.usda is not loaded");

    let session_id = stage.session_layer().expect("session layer").identifier().to_string();
    stage.mute_layer(session_id);
    assert_eq!(
        stage.attribute("/B.y").get::<f64>()?,
        Some(2.0),
        "muting the session exposes the root's WHICH=b and loads its selection"
    );
    Ok(())
}

/// A reference target that already joined the graph as a root-stack sublayer is
/// demanded under the empty root context: no contextual reopen runs, but the
/// mint's own recompose demands the `${V}` sublayer the target's own variables
/// select, and the load barrier opens it.
#[test]
fn self_selected_sublayer_loads() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        "#usda 1.0\n(\n    subLayers = [@t.usda@]\n)\ndef \"R\" (\n    references = @t.usda@</P>\n) {}\n",
    )?;
    fs::write(
        dir.path().join("t.usda"),
        "#usda 1.0\n(\n    expressionVariables = { string V = \"a\" }\n    subLayers = [@`\"${V}.usda\"`@]\n)\ndef \"P\" {}\n",
    )?;
    fs::write(
        dir.path().join("a.usda"),
        "#usda 1.0\nover \"P\" {\n    custom double x = 3\n}\n",
    )?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(
        stage.attribute("/R.x").get::<f64>()?,
        Some(3.0),
        "the target's own V selects a.usda for its reference stack"
    );
    Ok(())
}

/// A runtime `subLayers` edit naming a not-yet-loaded literal layer loads it —
/// and its own nested sublayer — through the same demand path as a `${VAR}`
/// selection: the recompose demands `extra.usda` and the load barrier opens its
/// whole subtree.
#[test]
fn literal_sublayer_edit_loads() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(&root, "#usda 1.0\ndef \"W\" {}\n")?;
    fs::write(
        dir.path().join("extra.usda"),
        "#usda 1.0\n(\n    subLayers = [@nested.usda@]\n)\ndef \"E\" {\n    custom double x = 1\n}\n",
    )?;
    fs::write(
        dir.path().join("nested.usda"),
        "#usda 1.0\ndef \"N\" {\n    custom double y = 2\n}\n",
    )?;

    let stage = Stage::open(root.to_str().unwrap())?;
    let root_id = stage.root_layer().identifier().to_string();
    stage.layer_mut(&root_id).expect("root layer is live").edit(|e| {
        e.pseudo_root_mut()
            .expect("pseudo-root")
            .insert_sublayer(0, "extra.usda", sdf::LayerOffset::IDENTITY);
        Ok(())
    })?;
    assert_eq!(
        stage.attribute("/E.x").get::<f64>()?,
        Some(1.0),
        "the authored literal sublayer loads"
    );
    assert_eq!(
        stage.attribute("/N.y").get::<f64>()?,
        Some(2.0),
        "its nested sublayer loads with it"
    );
    Ok(())
}

/// A `${VAR}` selection naming a file that does not exist fails gracefully: the
/// stage composes without it, the failure is reported once as an
/// `UnresolvedSublayer` diagnostic, repeated queries stay stable, and a later
/// edit retries the (now-present) selection, loads it, and drops the obsolete
/// diagnostic.
#[test]
fn failed_selection_terminates() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        "#usda 1.0\n(\n    subLayers = [@`\"${WHICH}.usda\"`@]\n)\ndef \"W\" {\n    custom double w = 0\n}\n",
    )?;
    let stage = Stage::open(root.to_str().unwrap())?;

    stage.set_expression_variables(HashMap::from([(
        "WHICH".to_string(),
        sdf::Value::String("missing".to_string()),
    )]))?;
    assert_eq!(
        stage.attribute("/W.w").get::<f64>()?,
        Some(0.0),
        "the stage composes without the missing selection"
    );
    let errors = stage.composition_errors();
    assert!(
        errors
            .iter()
            .any(|e| matches!(e, pcp::Error::UnresolvedSublayer { asset_path, .. } if asset_path == "missing.usda")),
        "the failed open is reported: {errors:?}"
    );
    assert_eq!(
        stage.attribute("/W.w").get::<f64>()?,
        Some(0.0),
        "the failure is terminal, not re-demanded per query"
    );

    fs::write(
        dir.path().join("late.usda"),
        "#usda 1.0\ndef \"L\" {\n    custom double z = 5\n}\n",
    )?;
    stage.set_expression_variables(HashMap::from([(
        "WHICH".to_string(),
        sdf::Value::String("late".to_string()),
    )]))?;
    assert_eq!(
        stage.attribute("/L.z").get::<f64>()?,
        Some(5.0),
        "the retried selection loads once the edit re-demands it"
    );
    // The failure diagnostic is regenerated per rebuild, so once the stack no
    // longer selects the missing layer it stops being reported.
    let errors = stage.composition_errors();
    assert!(
        !errors
            .iter()
            .any(|e| matches!(e, pcp::Error::UnresolvedSublayer { asset_path, .. } if asset_path == "missing.usda")),
        "the obsolete failure is dropped once the selection changes: {errors:?}"
    );
    Ok(())
}

/// Two loaded layers each author a `subLayers` entry naming the same missing
/// asset: the open is attempted once, but each referrer gets its own
/// diagnostic, and muting one referrer drops only its own.
#[test]
fn shared_missing_per_referrer() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(&root, "#usda 1.0\n(\n    subLayers = [@p1.usda@, @p2.usda@]\n)\n")?;
    fs::write(dir.path().join("p1.usda"), "#usda 1.0\ndef \"A\" {}\n")?;
    fs::write(dir.path().join("p2.usda"), "#usda 1.0\ndef \"B\" {}\n")?;
    let stage = Stage::open(root.to_str().unwrap())?;

    let layer_named = |name: &str| {
        stage
            .layer_identifiers()
            .into_iter()
            .find(|id| FsPath::new(id).ends_with(name))
            .expect("sublayer is loaded")
    };
    for name in ["p1.usda", "p2.usda"] {
        stage.layer_mut(&layer_named(name)).expect("layer is live").edit(|e| {
            e.pseudo_root_mut().expect("pseudo-root").insert_sublayer(
                0,
                "shared_missing.usda",
                sdf::LayerOffset::IDENTITY,
            );
            Ok(())
        })?;
    }
    let referrers = |stage: &Stage| -> Vec<String> {
        stage
            .composition_errors()
            .into_iter()
            .filter_map(|e| match e {
                pcp::Error::UnresolvedSublayer {
                    asset_path,
                    introduced_by,
                } if asset_path == "shared_missing.usda" => Some(introduced_by),
                _ => None,
            })
            .collect()
    };
    let both = referrers(&stage);
    assert_eq!(both.len(), 2, "one diagnostic per referrer: {both:?}");

    stage.mute_layer(layer_named("p1.usda"));
    let remaining = referrers(&stage);
    assert_eq!(
        remaining.len(),
        1,
        "the unmuted referrer keeps its diagnostic: {remaining:?}"
    );
    assert!(
        FsPath::new(&remaining[0]).ends_with("p2.usda"),
        "the surviving diagnostic names the unmuted referrer: {remaining:?}"
    );
    Ok(())
}

/// One edit re-seeds two reference target stacks to the same `${V}` selection,
/// so both demand `shared.usda` in a single load-barrier round: the first
/// demand opens it and the second finds it interned — and its stack must still
/// recompose to pick the member up.
#[test]
fn same_round_shared_selection() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        "#usda 1.0\n(\n    expressionVariables = { string V = \"a\" }\n)\ndef \"P1\" (\n    references = @t1.usda@</P>\n) {}\ndef \"P2\" (\n    references = @t2.usda@</P>\n) {}\n",
    )?;
    for name in ["t1.usda", "t2.usda"] {
        fs::write(
            dir.path().join(name),
            "#usda 1.0\n(\n    subLayers = [@`\"${V}.usda\"`@]\n)\ndef \"P\" {}\n",
        )?;
    }
    fs::write(
        dir.path().join("a.usda"),
        "#usda 1.0\nover \"P\" {\n    custom double x = 1\n}\n",
    )?;
    fs::write(
        dir.path().join("shared.usda"),
        "#usda 1.0\nover \"P\" {\n    custom double y = 7\n}\n",
    )?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(stage.attribute("/P1.x").get::<f64>()?, Some(1.0));
    assert_eq!(stage.attribute("/P2.x").get::<f64>()?, Some(1.0));

    stage.set_expression_variables(HashMap::from([(
        "V".to_string(),
        sdf::Value::String("shared".to_string()),
    )]))?;
    assert_eq!(
        stage.attribute("/P1.y").get::<f64>()?,
        Some(7.0),
        "the stack whose demand opened the layer recomposes"
    );
    assert_eq!(
        stage.attribute("/P2.y").get::<f64>()?,
        Some(7.0),
        "the stack whose demand found the layer interned recomposes too"
    );
    Ok(())
}

/// A recorded sublayer resolve-failure does not block the same asset's later
/// arc load: once the file appears, a reference to it composes on the next
/// query with no edit in between, and the healed sublayer diagnostic drops.
#[test]
fn sublayer_failure_keeps_arc_loadable() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        "#usda 1.0\n(\n    subLayers = [@late.usda@]\n)\ndef \"P\" (\n    references = @late.usda@</L>\n) {}\n",
    )?;
    let stage = Stage::open(root.to_str().unwrap())?;
    let errors = stage.composition_errors();
    assert!(
        errors
            .iter()
            .any(|e| matches!(e, pcp::Error::UnresolvedSublayer { asset_path, .. } if asset_path == "late.usda")),
        "the missing sublayer is reported at open: {errors:?}"
    );

    fs::write(
        dir.path().join("late.usda"),
        "#usda 1.0\ndef \"L\" {\n    custom double z = 5\n}\n",
    )?;
    assert_eq!(
        stage.attribute("/P.z").get::<f64>()?,
        Some(5.0),
        "the appeared file loads through the reference with no edit"
    );
    let errors = stage.composition_errors();
    assert!(
        !errors
            .iter()
            .any(|e| matches!(e, pcp::Error::UnresolvedSublayer { .. })),
        "the healed sublayer diagnostic drops: {errors:?}"
    );
    Ok(())
}

/// Repairing a missing sublayer on disk and then making an unrelated edit —
/// one that rebuilds no layer stack — still loads it: clearing the failure
/// memo requeues the failure diagnostics as demands, so the repaired layer
/// joins and its obsolete diagnostic drops.
#[test]
fn repaired_sublayer_reloads() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(&root, "#usda 1.0\n(\n    subLayers = [@late.usda@]\n)\ndef \"W\" {}\n")?;
    let stage = Stage::open(root.to_str().unwrap())?;
    let errors = stage.composition_errors();
    assert!(
        errors
            .iter()
            .any(|e| matches!(e, pcp::Error::UnresolvedSublayer { asset_path, .. } if asset_path == "late.usda")),
        "the missing sublayer is reported at open: {errors:?}"
    );

    fs::write(
        dir.path().join("late.usda"),
        "#usda 1.0\ndef \"L\" {\n    custom double z = 5\n}\n",
    )?;
    // A prim edit touches no layer stack, so only the requeue can retry.
    stage.define_prim("/X")?;
    assert_eq!(
        stage.attribute("/L.z").get::<f64>()?,
        Some(5.0),
        "the repaired sublayer loads on the next edit"
    );
    let errors = stage.composition_errors();
    assert!(
        !errors
            .iter()
            .any(|e| matches!(e, pcp::Error::UnresolvedSublayer { .. })),
        "the healed diagnostic drops: {errors:?}"
    );
    Ok(())
}

/// A stack rebuild that does not clear the failure memo — muting an unrelated
/// layer — still retries a resolve failure once the asset has appeared: the
/// rebuild probes resolvability instead of treating the failure as terminal.
#[test]
fn mute_retries_resolvable() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        "#usda 1.0\n(\n    subLayers = [@other.usda@, @late.usda@]\n)\ndef \"W\" {}\n",
    )?;
    fs::write(dir.path().join("other.usda"), "#usda 1.0\ndef \"O\" {}\n")?;
    let stage = Stage::open(root.to_str().unwrap())?;
    assert!(
        stage
            .composition_errors()
            .iter()
            .any(|e| matches!(e, pcp::Error::UnresolvedSublayer { asset_path, .. } if asset_path == "late.usda")),
        "the missing sublayer is reported at open"
    );

    fs::write(
        dir.path().join("late.usda"),
        "#usda 1.0\ndef \"L\" {\n    custom double z = 5\n}\n",
    )?;
    let other = stage
        .layer_identifiers()
        .into_iter()
        .find(|id| FsPath::new(id).ends_with("other.usda"))
        .expect("other.usda is loaded");
    stage.mute_layer(other);
    assert_eq!(
        stage.attribute("/L.z").get::<f64>()?,
        Some(5.0),
        "the mute's rebuild retries the now-resolvable sublayer"
    );
    Ok(())
}

/// Two authored spellings of one missing sublayer — `missing.usda` and
/// `./missing.usda` — resolve to the same canonical identifier and report one
/// diagnostic, at open and across a runtime retry, matching open-time
/// collection's per-canonical dedup.
#[test]
fn dual_spelling_reports_once() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        "#usda 1.0\n(\n    subLayers = [@missing.usda@, @./missing.usda@]\n)\ndef \"W\" {}\n",
    )?;
    let stage = Stage::open(root.to_str().unwrap())?;
    let count = |stage: &Stage| {
        stage
            .composition_errors()
            .into_iter()
            .filter(
                |e| matches!(e, pcp::Error::UnresolvedSublayer { asset_path, .. } if asset_path.contains("missing.usda")),
            )
            .count()
    };
    assert_eq!(count(&stage), 1, "one canonical failure, one diagnostic at open");

    // An edit clears and requeues the failure; the retry still fails and must
    // still report once.
    stage.define_prim("/X")?;
    assert_eq!(count(&stage), 1, "one diagnostic after the runtime retry");
    Ok(())
}

/// A failing bare `${VAR}` sublayer expression is one failure and reports one
/// diagnostic — the loader's open-time copy and the graph's regenerable copy
/// are the same error — and authoring the variable clears it.
#[test]
fn expr_failure_reported_once() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(&root, "#usda 1.0\n(\n    subLayers = [@`${WHICH}`@]\n)\ndef \"W\" {}\n")?;
    fs::write(
        dir.path().join("fix.usda"),
        "#usda 1.0\ndef \"F\" {\n    custom double q = 3\n}\n",
    )?;

    let stage = Stage::open(root.to_str().unwrap())?;
    let errors = stage.composition_errors();
    assert_eq!(errors.len(), 1, "one failing expression, one diagnostic: {errors:?}");
    assert!(matches!(&errors[0], pcp::Error::InvalidExpression { .. }));

    stage.set_expression_variables(HashMap::from([(
        "WHICH".to_string(),
        sdf::Value::String("fix.usda".to_string()),
    )]))?;
    assert_eq!(
        stage.attribute("/F.q").get::<f64>()?,
        Some(3.0),
        "the fixed expression selects and loads"
    );
    assert!(
        stage.composition_errors().is_empty(),
        "the healed expression stops reporting"
    );
    Ok(())
}

/// A reference authored inside a `.usdz` package targets a sibling layer in the
/// same archive: it resolves package-relative (not against the host
/// filesystem), so the sibling's opinion composes onto the prim and no
/// composition error is reported.
#[test]
fn lazy_ref_inside_usdz_resolves() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let package = dir.path().join("package.usdz");
    fs::write(&root, "#usda 1.0\ndef \"P\" (\n    references = @package.usdz@\n) {}\n")?;
    // The package's first (root) layer references a sibling layer inside the
    // same archive, which authors an opinion on the prim.
    {
        let mut writer = ArchiveWriter::create(&package)?;
        writer.add_layer(
            "scene.usda",
            b"#usda 1.0\n(\n    defaultPrim = \"P\"\n)\ndef \"P\" (\n    references = @other.usda@\n) {}\n",
        )?;
        writer.add_layer(
            "other.usda",
            b"#usda 1.0\n(\n    defaultPrim = \"P\"\n)\ndef \"P\" {\n    custom int probe = 7\n}\n",
        )?;
        writer.finish()?;
    }

    let stage = Stage::open(root.to_str().unwrap())?;
    assert!(stage.prim("/P").is_valid()?, "/P composes from the package");
    assert!(
        stage.composition_errors().is_empty(),
        "the in-package reference should resolve cleanly, got {:?}",
        stage.composition_errors()
    );
    assert_eq!(
        stage
            .attribute("/P.probe")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Int(7)),
        "the sibling layer's opinion composes through the in-package reference"
    );
    Ok(())
}

/// A reference authored inside a `.usdz` package targets a sibling layer that
/// is not present in the archive: the missing entry is unresolved (not merely
/// unreadable), so composition reports
/// [`UnresolvedLayer`](pcp::Error::UnresolvedLayer) and the rest of the prim
/// still composes.
#[test]
fn lazy_ref_inside_usdz_missing() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let package = dir.path().join("package.usdz");
    fs::write(&root, "#usda 1.0\ndef \"P\" (\n    references = @package.usdz@\n) {}\n")?;
    // The package's first layer references a sibling that is never added.
    {
        let mut writer = ArchiveWriter::create(&package)?;
        writer.add_layer(
            "scene.usda",
            b"#usda 1.0\n(\n    defaultPrim = \"P\"\n)\ndef \"P\" (\n    references = @other.usda@\n) {}\n",
        )?;
        writer.finish()?;
    }

    let stage = Stage::open(root.to_str().unwrap())?;
    assert!(stage.prim("/P").is_valid()?, "/P still composes from the package layer");
    assert!(
        stage.composition_errors().iter().any(|error| matches!(
            error,
            pcp::Error::UnresolvedLayer { asset_path, .. } if asset_path.ends_with("other.usda]")
        )),
        "expected UnresolvedLayer for the missing in-package target, got {:?}",
        stage.composition_errors()
    );
    Ok(())
}

/// A reference to a present-but-empty `.usdz` (no packaged USD layer) reports a
/// [`MalformedLayer`](pcp::Error::MalformedLayer) carrying the real reason —
/// the package resolved but could not be read — rather than being silently
/// dropped as a missing asset or surfacing a "failed to resolve" diagnostic.
#[test]
fn lazy_ref_empty_usdz_malformed() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let package = dir.path().join("empty.usdz");
    fs::write(&root, "#usda 1.0\ndef \"P\" (\n    references = @empty.usdz@\n) {}\n")?;
    // A valid ZIP archive with no packaged USD layer.
    ArchiveWriter::create(&package)?.finish()?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert!(stage.prim("/P").is_valid()?, "/P still composes from its own opinion");
    assert!(
        stage.composition_errors().iter().any(|error| matches!(
            error,
            pcp::Error::MalformedLayer { asset_path, reason, .. }
                if asset_path.ends_with("empty.usdz") && reason.contains("USDZ archive")
        )),
        "expected MalformedLayer with the package read reason, got {:?}",
        stage.composition_errors()
    );
    Ok(())
}

/// A `.usdz` whose default (first) layer sits in a sub-directory references a
/// sibling by a relative path. The reference must anchor against the package's
/// real path (the package-relative default layer,
/// `pkg.usdz[Scenes/root.usda]`),
/// not the bare package identifier, so the sibling resolves at
/// `pkg.usdz[Scenes/other.usda]` and its opinion composes.
#[test]
fn usdz_subdir_first_layer_anchors() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let package = dir.path().join("package.usdz");
    fs::write(&root, "#usda 1.0\ndef \"P\" (\n    references = @package.usdz@\n) {}\n")?;
    // Both packaged layers live under `Scenes/`; the first is the default layer.
    {
        let mut writer = ArchiveWriter::create(&package)?;
        writer.add_layer(
            "Scenes/root.usda",
            b"#usda 1.0\n(\n    defaultPrim = \"P\"\n)\ndef \"P\" (\n    references = @other.usda@\n) {}\n",
        )?;
        writer.add_layer(
            "Scenes/other.usda",
            b"#usda 1.0\n(\n    defaultPrim = \"P\"\n)\ndef \"P\" {\n    custom int probe = 9\n}\n",
        )?;
        writer.finish()?;
    }

    let stage = Stage::open(root.to_str().unwrap())?;
    assert!(
        stage.composition_errors().is_empty(),
        "the sub-directory in-package reference should resolve cleanly, got {:?}",
        stage.composition_errors()
    );
    assert_eq!(
        stage
            .attribute("/P.probe")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Int(9)),
        "the sibling under Scenes/ composes through the in-package reference"
    );
    Ok(())
}

/// An `asset`-valued attribute pointing at a `.usdz` package resolves to the
/// package path itself, not a path anchored into the package's first layer:
/// the asset is the package, and consumers key on the package path.
#[test]
fn asset_value_usdz_is_package_path() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let package = dir.path().join("model.usdz");
    fs::write(&root, "#usda 1.0\ndef \"P\" {\n    custom asset a = @model.usdz@\n}\n")?;
    {
        let mut writer = ArchiveWriter::create(&package)?;
        writer.add_layer("root.usda", b"#usda 1.0\ndef \"M\" {}\n")?;
        writer.finish()?;
    }

    let stage = Stage::open(root.to_str().unwrap())?;
    let value = stage
        .attribute("/P.a")
        .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?
        .expect("asset value resolves");
    let asset = value.try_as_asset_path().expect("attribute is asset-typed");
    let resolved = asset.resolved_path().expect("asset path is resolved");
    assert!(
        resolved.ends_with("model.usdz"),
        "asset value should resolve to the bare package path, got {resolved:?}",
    );
    assert!(
        !resolved.contains('['),
        "asset value must not be anchored into the package, got {resolved:?}",
    );
    Ok(())
}

/// A reference target's present-but-corrupt sublayer is dropped on its own —
/// reported [`MalformedSublayer`](pcp::Error::MalformedSublayer) — while the
/// target itself still composes (its own opinion resolves). The bad sublayer
/// must not fail the whole reference target.
#[test]
fn lazy_ref_corrupt_sublayer() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let target = dir.path().join("target.usda");
    let broken = dir.path().join("broken.usda");
    fs::write(&root, "#usda 1.0\ndef \"P\" (\n    references = @target.usda@\n) {}\n")?;
    fs::write(
        &target,
        "#usda 1.0\n(\n    subLayers = [@broken.usda@]\n    defaultPrim = \"P\"\n)\ndef \"P\" {\n    custom double x = 1\n}\n",
    )?;
    // Resolves (the file exists) but the parser rejects the body.
    fs::write(&broken, "#usda 1.0\ndef Broken {{{ not valid\n")?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(
        stage.attribute("/P.x").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(1.0)),
        "the target composes despite its corrupt sublayer"
    );
    assert!(
        stage.composition_errors().iter().any(|error| matches!(
            error,
            pcp::Error::MalformedSublayer { asset_path, introduced_by, reason }
                if asset_path == "broken.usda" && introduced_by.ends_with("target.usda") && !reason.is_empty()
        )),
        "expected MalformedSublayer carrying the parse error, got {:?}",
        stage.composition_errors()
    );
    Ok(())
}

/// A not-yet-loaded reference target under a nested referrer is muted by the
/// path that resolves, from the stage root, to its canonical identifier (C++
/// `Pcp_MutedLayers`): the model under `sub/` is muted as `"sub/model.usda"` and
/// never opened.
#[test]
fn mute_nested_reference_target() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::create_dir(dir.path().join("sub"))?;
    let root = dir.path().join("root.usda");
    let mid = dir.path().join("sub").join("mid.usda");
    let model = dir.path().join("sub").join("model.usda");
    fs::write(&root, "#usda 1.0\ndef \"P\" (\n    references = @sub/mid.usda@\n) {}\n")?;
    fs::write(
        &mid,
        "#usda 1.0\n(\n    defaultPrim = \"P\"\n)\ndef \"P\" (\n    references = @model.usda@\n) {}\n",
    )?;
    fs::write(
        &model,
        "#usda 1.0\n(\n    defaultPrim = \"P\"\n)\ndef \"P\" {\n    custom double x = 1\n}\n",
    )?;

    let opened = Rc::new(RefCell::new(Vec::new()));
    let stage = Stage::builder()
        .resolver(RecordingResolver::new(opened.clone()))
        .mute(["sub/model.usda"])
        .open(root.to_str().unwrap())?;

    // Compose /P, following the nested reference to mid.usda and reaching the
    // muted model reference; its identifier matches the muted one, so it is
    // recognized at the demand point and never read.
    assert!(stage.prim("/P").is_valid()?);
    let opened_has = |needle: &str| opened.borrow().iter().any(|p| p.contains(needle));
    assert!(opened_has("mid.usda"), "the nested referrer must load");
    assert!(
        !opened_has("model.usda"),
        "the muted nested target must never be opened, got {:?}",
        opened.borrow()
    );
    Ok(())
}

/// The arc's authoring layer is consulted, not only the root: a reference
/// authored in `detail/extra.usda` (a sublayer of the referenced `target.usda`)
/// resolves `@model.usda@` under `detail/`, so muting `"detail/model.usda"` — the
/// path resolving from the root to that target's canonical identifier — mutes it.
#[test]
fn mute_target_under_nested_sublayer() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::create_dir(dir.path().join("detail"))?;
    let root = dir.path().join("root.usda");
    let target = dir.path().join("target.usda");
    let extra = dir.path().join("detail").join("extra.usda");
    let model = dir.path().join("detail").join("model.usda");
    fs::write(&root, "#usda 1.0\ndef \"P\" (\n    references = @target.usda@\n) {}\n")?;
    // target.usda sublayers a layer in detail/, which authors the relative model
    // reference — so the arc's authoring layer is not the stack's root layer.
    fs::write(
        &target,
        "#usda 1.0\n(\n    defaultPrim = \"P\"\n    subLayers = [@detail/extra.usda@]\n)\ndef \"P\" {}\n",
    )?;
    fs::write(&extra, "#usda 1.0\ndef \"P\" (\n    references = @model.usda@\n) {}\n")?;
    fs::write(
        &model,
        "#usda 1.0\n(\n    defaultPrim = \"P\"\n)\ndef \"P\" {\n    custom double x = 1\n}\n",
    )?;

    let opened = Rc::new(RefCell::new(Vec::new()));
    let stage = Stage::builder()
        .resolver(RecordingResolver::new(opened.clone()))
        .mute(["detail/model.usda"])
        .open(root.to_str().unwrap())?;

    assert!(stage.prim("/P").is_valid()?);
    let opened_has = |needle: &str| opened.borrow().iter().any(|p| p.contains(needle));
    assert!(opened_has("extra.usda"), "the authoring sublayer must load");
    assert!(
        !opened_has("model.usda"),
        "the muted target under the nested sublayer must not be opened, got {:?}",
        opened.borrow()
    );
    Ok(())
}

/// Muting keys on the canonical identifier: a layer muted by a relative spelling
/// is the same entry as its absolute spelling, so re-muting the absolute is a
/// no-op, both spellings read as muted, and unmuting through either fully restores
/// it — and every notice carries the canonical identifier, whatever spelling was
/// passed, so a listener mirroring the muted set by identifier stays in sync.
#[test]
fn mute_alternate_spelling() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let weak = dir.path().join("weak.usda");
    fs::write(&root, "#usda 1.0\n(\n    subLayers = [@weak.usda@]\n)\ndef \"P\" {}\n")?;
    fs::write(&weak, "#usda 1.0\ndef \"P\" {\n    custom double x = 1\n}\n")?;

    let stage = Stage::open(root.to_str().unwrap())?;
    let abs = weak.to_str().unwrap();
    // The identifier both spellings resolve to (what muting stores and notifies).
    let canonical = ar::DefaultResolver::new().create_identifier(abs, None);
    let read_x = || stage.attribute("/P.x").get_at::<sdf::Value>(usd::TimeCode::new(0.0));

    let muted = Rc::new(RefCell::new(Vec::<String>::new()));
    let unmuted = Rc::new(RefCell::new(Vec::<String>::new()));
    let _token = {
        let (muted, unmuted) = (muted.clone(), unmuted.clone());
        stage.add_sink(RecordingSink {
            muting: Some(Box::new(move |_stage, layer, is_muted| {
                if is_muted {
                    muted.borrow_mut().push(layer.to_string());
                } else {
                    unmuted.borrow_mut().push(layer.to_string());
                }
            })),
            ..Default::default()
        })
    };

    assert_eq!(
        read_x()?,
        Some(sdf::Value::Double(1.0)),
        "weak contributes x until muted"
    );

    // Mute by the relative spelling, then the absolute spelling names the same
    // canonical identifier, so re-muting it is a no-op.
    stage.mute_layer("weak.usda");
    assert!(
        stage.is_layer_muted(abs),
        "the absolute spelling reads the same muted layer"
    );
    stage.mute_layer(abs);
    assert_eq!(
        stage.muted_layers(),
        vec![canonical.clone()],
        "both spellings are one canonical entry"
    );
    assert_eq!(read_x()?, None, "the muted weak layer contributes nothing");

    // Unmute through the other spelling; the layer is fully restored.
    stage.unmute_layer(abs);
    assert!(
        !stage.is_layer_muted("weak.usda"),
        "unmuting any spelling unmutes the layer"
    );
    assert!(stage.muted_layers().is_empty());
    assert_eq!(
        read_x()?,
        Some(sdf::Value::Double(1.0)),
        "the unmuted weak layer contributes again"
    );

    // One notice each, both carrying the canonical identifier (not the spelling
    // passed): the redundant mute fired nothing.
    assert_eq!(*muted.borrow(), vec![canonical.clone()]);
    assert_eq!(*unmuted.borrow(), vec![canonical]);
    Ok(())
}

/// Open-time muting dedups co-resolving spellings the same way the runtime path
/// does: seeding one loaded layer under both a relative and an absolute spelling
/// lists it once and mutes it.
#[test]
fn mute_open_dedup() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let weak = dir.path().join("weak.usda");
    fs::write(&root, "#usda 1.0\n(\n    subLayers = [@weak.usda@]\n)\ndef \"P\" {}\n")?;
    fs::write(&weak, "#usda 1.0\ndef \"P\" {\n    custom double x = 1\n}\n")?;
    let abs = weak.to_str().unwrap();

    let stage = Stage::builder().mute(["weak.usda", abs]).open(root.to_str().unwrap())?;
    assert_eq!(
        stage.muted_layers().len(),
        1,
        "two spellings of one loaded layer seed a single mute, got {:?}",
        stage.muted_layers()
    );
    assert!(stage.is_layer_muted("weak.usda") && stage.is_layer_muted(abs));
    assert_eq!(
        stage.attribute("/P.x").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        None,
        "the muted weak layer contributes nothing"
    );
    Ok(())
}

/// A nested sublayer is muted by the path that resolves, from the stage root, to
/// its canonical identifier: `sub/weak.usda` drops from the stack and unmutes
/// through its absolute spelling (the same identifier).
#[test]
fn mute_nested_sublayer() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::create_dir(dir.path().join("sub"))?;
    let root = dir.path().join("root.usda");
    let mid = dir.path().join("sub").join("mid.usda");
    let weak = dir.path().join("sub").join("weak.usda");
    fs::write(
        &root,
        "#usda 1.0\n(\n    subLayers = [@sub/mid.usda@]\n)\ndef \"P\" {}\n",
    )?;
    fs::write(&mid, "#usda 1.0\n(\n    subLayers = [@weak.usda@]\n)\n")?;
    fs::write(&weak, "#usda 1.0\ndef \"P\" {\n    custom double x = 1\n}\n")?;

    let stage = Stage::open(root.to_str().unwrap())?;
    let abs = weak.to_str().unwrap();
    let read_x = || stage.attribute("/P.x").get_at::<sdf::Value>(usd::TimeCode::new(0.0));
    assert_eq!(
        read_x()?,
        Some(sdf::Value::Double(1.0)),
        "the nested sublayer contributes x"
    );

    // Mute by the root-relative path; `weak.usda` lives under `sub/`.
    stage.mute_layer("sub/weak.usda");
    assert!(
        stage.is_layer_muted(abs),
        "the muted nested layer reads as muted by absolute path"
    );
    assert_eq!(read_x()?, None, "the muted nested sublayer drops from the stack");

    stage.unmute_layer(abs);
    assert!(
        !stage.is_layer_muted("sub/weak.usda"),
        "unmuting by an alternate spelling unmutes it"
    );
    assert_eq!(
        read_x()?,
        Some(sdf::Value::Double(1.0)),
        "the unmuted nested sublayer contributes again"
    );
    Ok(())
}

/// An unevaluable expression `subLayers` entry drops only that sublayer: the
/// reference target still composes its own opinions and its valid sublayer,
/// rather than the bad expression failing the whole target load.
#[test]
fn bad_expr_sublayer_dropped() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let target = dir.path().join("target.usda");
    let over = dir.path().join("over.usda");
    fs::write(&root, "#usda 1.0\ndef \"P\" (\n    references = @target.usda@\n) {}\n")?;
    // The second sublayer uses an undefined expression variable; the first is valid.
    fs::write(
        &target,
        "#usda 1.0\n(\n    defaultPrim = \"P\"\n    subLayers = [@over.usda@, @`\"${UNDEFINED}.usda\"`@]\n)\ndef \"P\" {\n    custom double x = 1\n}\n",
    )?;
    fs::write(&over, "#usda 1.0\ndef \"P\" {\n    custom double y = 2\n}\n")?;

    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(
        stage.attribute("/P.x").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(1.0)),
        "the target's own opinion composes despite the bad expression sublayer"
    );
    assert_eq!(
        stage.attribute("/P.y").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(2.0)),
        "the valid sublayer still composes"
    );
    assert!(
        !stage.composition_errors().is_empty(),
        "the dropped expression sublayer is reported"
    );
    Ok(())
}

/// A single-layer .usda file should load with correct defaultPrim and
/// root prim list.
#[test]
fn open_single_layer() -> Result<()> {
    let path = composition_path("active.usda");
    let stage = Stage::open(&path)?;

    assert_eq!(stage.layer_count(), 1);
    assert_eq!(stage.default_prim().as_deref(), Some("World"));
    assert_eq!(
        stage.root_prims()?.iter().map(|t| t.as_str()).collect::<Vec<_>>(),
        ["World"]
    );

    Ok(())
}

/// Default traversal should visit active, loaded, defined, non-abstract prims.
#[test]
fn traverse_uses_default_predicate() -> Result<()> {
    let path = composition_path("active.usda");
    let stage = Stage::open(&path)?;

    let mut prims = Vec::new();
    stage.traverse(PrimPredicate::DEFAULT, |p| prims.push(p.as_str().to_string()))?;

    assert_eq!(prims, vec!["/World", "/World/CubeActive"]);

    Ok(())
}

/// Exhaustive traversal should preserve raw composed hierarchy traversal.
#[test]
fn traverse_all_visits_every_composed_prim() -> Result<()> {
    let path = composition_path("active.usda");
    let stage = Stage::open(&path)?;

    let mut prims = Vec::new();
    stage.traverse(PrimPredicate::ALL, |p| prims.push(p.as_str().to_string()))?;

    assert_eq!(prims, vec!["/World", "/World/CubeInactive", "/World/CubeActive"]);

    Ok(())
}

/// A prim defined only in the stronger sublayer should appear in composed
/// children alongside prims from the weaker layer.
#[test]
fn sublayer_children_union() -> Result<()> {
    let path = fixture_path("sublayer_override.usda");
    let stage = Stage::open(&path)?;

    let children = child_names(&stage, "/World")?;
    // Override layer adds Sphere; base layer defines Cube.
    assert!(children.contains(&"Cube".to_string()), "Cube from base layer");
    assert!(children.contains(&"Sphere".to_string()), "Sphere from override layer");

    Ok(())
}

/// The sublayer_same_folder vendor test asset should open correctly with
/// 2 layers and expose the sublayer's prims through composition.
#[test]
fn sublayer_prims_from_weaker_layer() -> Result<()> {
    let path = composition_path("subLayer/sublayer_same_folder.usda");
    let stage = Stage::open(&path)?;

    assert_eq!(stage.layer_count(), 2);
    assert_eq!(stage.default_prim().as_deref(), Some("World"));

    // The weaker sublayer (_stage.usda) defines /World/Cube.
    let mut prims = Vec::new();
    stage.traverse(PrimPredicate::DEFAULT, |p| prims.push(p.as_str().to_string()))?;
    assert!(prims.contains(&"/World/Cube".to_string()));

    Ok(())
}

/// Vendor test: reference_same_folder.usda references _stage.usda with
/// defaultPrim. The referenced layer's /World/Cube should appear under the
/// referencing prim.
#[test]
fn reference_default_prim_from_external_layer() -> Result<()> {
    let path = composition_path("references/reference_same_folder.usda");
    let stage = Stage::open(&path)?;

    // /World references _stage.usda's defaultPrim ("World"),
    // so /World/Cube should come from the referenced layer.
    let children = child_names(&stage, "/World")?;
    assert!(
        children.contains(&"Cube".to_string()),
        "Cube from referenced layer should appear under /World"
    );

    Ok(())
}

/// An external reference with an explicit prim path should remap the
/// target prim into the referencing prim's namespace.
/// ref_prim.usda: /World/RefPrim references @ref_target.usda@</Source>.
#[test]
fn reference_explicit_prim_path() -> Result<()> {
    let path = fixture_path("ref_prim.usda");
    let stage = Stage::open(&path)?;

    // /Source/Child in ref_target.usda should appear as /World/RefPrim/Child.
    let children = child_names(&stage, "/World/RefPrim")?;
    assert!(
        children.contains(&"Child".to_string()),
        "referenced children should be namespace-remapped"
    );

    Ok(())
}

// --- Inherit composition ---

/// class_inherit.usda: cubeWithoutSetColor inherits from /_myClass which
/// defines displayColor = green. The prim should pick up the class property.
#[test]
fn inherit_from_class() -> Result<()> {
    let path = composition_path("class_inherit.usda");
    let stage = Stage::open(&path)?;

    // The inherited property should be visible.
    let props = prop_names(&stage, "/World/cubeWithoutSetColor")?;
    assert!(
        props.contains(&"primvars:displayColor".to_string()),
        "inherited property should be visible"
    );

    Ok(())
}

// --- Payload composition ---

/// Vendor test: payload_same_folder.usda has a payload to _stage.usda.
/// The payload's prim hierarchy should be composed into the stage.
#[test]
fn payload_pulls_children() -> Result<()> {
    let path = composition_path("payload/payload_same_folder.usda");
    let stage = Stage::open(&path)?;

    // The payload target layer has /World/Cube. Since /World is the payload
    // target, /World/Cube should appear.
    let children = child_names(&stage, "/World")?;
    assert!(
        children.contains(&"Cube".to_string()),
        "Cube from payload layer should appear under /World"
    );

    Ok(())
}

// --- Session layer ---

/// Opens a stage with session_layer.usda over session_root.usda.
fn open_with_session() -> Result<Stage> {
    let root = fixture_path("session_root.usda");
    let session = fixture_path("session_layer.usda");
    Stage::builder().session_layer(&session).open(&root)
}

/// A `${VAR}` sublayer in the root layer resolves against an expression variable
/// authored only on the session layer, and the named layer is loaded from disk:
/// the session is part of the root layer stack, so its variables seed the root's
/// sublayer collection, not just an already-interned lookup.
#[test]
fn session_var_loads_sublayer() -> Result<()> {
    let root = fixture_path("session_expr_sublayer/root.usda");
    let session = fixture_path("session_expr_sublayer/session.usda");
    let stage = Stage::builder().session_layer(&session).open(&root)?;
    assert_eq!(
        stage.attribute("/A.x").get::<f64>()?,
        Some(1.0),
        "the session WHICH variable loads and resolves the root's expression sublayer"
    );
    Ok(())
}

/// A stage's expression variables come from the session layer's *root*, not its
/// sublayers: a `${VAR}` authored on a session *sublayer* is ignored, while the
/// same variable on the session root applies. C++ `PcpExpressionVariables`
/// composes only the stage root and session root layers' own metadata.
#[test]
fn session_sublayer_var_ignored() -> Result<()> {
    let resolves = |session_body: &str| -> Result<Option<f64>> {
        let dir = tempfile::tempdir()?;
        let root = dir.path().join("root.usda");
        let session = dir.path().join("session.usda");
        fs::write(&root, "#usda 1.0\n(\n    subLayers = [@`\"${WHICH}.usda\"`@]\n)\n")?;
        fs::write(&session, session_body)?;
        fs::write(
            dir.path().join("sub.usda"),
            "#usda 1.0\n(\n    expressionVariables = { string WHICH = \"a\" }\n)\n",
        )?;
        fs::write(
            dir.path().join("a.usda"),
            "#usda 1.0\ndef \"A\" {\n    custom double x = 1\n}\n",
        )?;
        let stage = Stage::builder()
            .session_layer(session.to_str().expect("utf-8 temp path"))
            .open(root.to_str().expect("utf-8 temp path"))?;
        stage.attribute("/A.x").get::<f64>()
    };
    // WHICH authored on a session sublayer is ignored, so the root's expression
    // sublayer does not resolve and `/A` never composes.
    assert_eq!(
        resolves("#usda 1.0\n(\n    subLayers = [@sub.usda@]\n)\n")?,
        None,
        "a session sublayer's WHICH must not resolve the root's expression sublayer",
    );
    // WHICH authored on the session root applies, selecting a.usda.
    assert_eq!(
        resolves("#usda 1.0\n(\n    expressionVariables = { string WHICH = \"a\" }\n)\n")?,
        Some(1.0),
        "the session root's WHICH resolves the root's expression sublayer",
    );
    Ok(())
}

/// A session layer's `${VAR}` sublayer resolves against a variable authored on the
/// *stage root* layer: the root and session form one layer stack sharing a single
/// expression-variable context (C++ `PcpExpressionVariables`), so `strong.usda` — named
/// only through the stage root's `CHILD` — is loaded and composed.
#[test]
fn session_sublayer_root_var() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let session = dir.path().join("session.usda");
    fs::write(
        &root,
        "#usda 1.0\n(\n    expressionVariables = { string CHILD = \"strong\" }\n)\n",
    )?;
    fs::write(&session, "#usda 1.0\n(\n    subLayers = [@`\"${CHILD}.usda\"`@]\n)\n")?;
    fs::write(
        dir.path().join("strong.usda"),
        "#usda 1.0\ndef \"A\" {\n    custom double x = 1\n}\n",
    )?;

    let stage = Stage::builder()
        .session_layer(session.to_str().expect("utf-8 temp path"))
        .open(root.to_str().expect("utf-8 temp path"))?;
    assert_eq!(
        stage.attribute("/A.x").get::<f64>()?,
        Some(1.0),
        "the session sublayer resolves the stage root's CHILD to strong.usda",
    );
    Ok(())
}

/// Muting then unmuting the session root prunes and restores a session descendant its
/// `${VAR}` sublayer selects through a variable authored on the stage root. The subtree
/// walk and mute fanout resolve session sublayers against the combined root+session
/// context, so `strong.usda`'s `/A/Child` disappears while muted and returns on unmute.
#[test]
fn unmute_session_root_subtree() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let session = dir.path().join("session.usda");
    fs::write(
        &root,
        "#usda 1.0\n(\n    expressionVariables = { string CHILD = \"strong\" }\n)\ndef \"A\" {\n    custom double z = 0\n}\n",
    )?;
    fs::write(&session, "#usda 1.0\n(\n    subLayers = [@`\"${CHILD}.usda\"`@]\n)\n")?;
    fs::write(
        dir.path().join("strong.usda"),
        "#usda 1.0\ndef \"A\" {\n    def \"Child\" {\n        custom double y = 5\n    }\n}\n",
    )?;

    let stage = Stage::builder()
        .session_layer(session.to_str().expect("utf-8 temp path"))
        .open(root.to_str().expect("utf-8 temp path"))?;
    assert!(
        stage.prim("/A/Child").is_valid()?,
        "the stage root's CHILD selects strong.usda in the session"
    );

    stage.mute_layer(session.to_str().expect("utf-8 temp path"));
    assert!(
        !stage.prim("/A/Child").is_valid()?,
        "muting the session root prunes the selected strong.usda"
    );

    stage.unmute_layer(session.to_str().expect("utf-8 temp path"));
    assert!(
        stage.prim("/A/Child").is_valid()?,
        "unmuting restores the pruned session subtree"
    );
    Ok(())
}

/// Open-time muted session paths are anchored against the resolved root layer,
/// not the bare package path. A packaged root whose default layer is
/// `dir/root.usda` therefore mutes `dir/strong.usda` for a relative
/// `mute("strong.usda")` request, dropping its stronger `/A.x` opinion so the
/// weaker session sublayer wins.
#[test]
fn packaged_root_mute_anchor() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let package = dir.path().join("package.usdz");
    {
        let mut writer = ArchiveWriter::create(&package)?;
        writer.add_layer("dir/root.usda", b"#usda 1.0\n")?;
        writer.add_layer(
            "dir/session.usda",
            b"#usda 1.0\n(\n    subLayers = [@strong.usda@, @weak.usda@]\n)\n",
        )?;
        writer.add_layer(
            "dir/strong.usda",
            b"#usda 1.0\ndef \"A\" {\n    custom double x = 2\n}\n",
        )?;
        writer.add_layer("dir/weak.usda", b"#usda 1.0\ndef \"A\" {\n    custom double x = 1\n}\n")?;
        writer.finish()?;
    }

    let package = package.to_string_lossy();
    let session = format!("{package}[dir/session.usda]");
    let stage = Stage::builder()
        .session_layer(session)
        .mute(["strong.usda"])
        .open(&package)?;
    assert_eq!(
        stage.attribute("/A.x").get::<f64>()?,
        Some(1.0),
        "mute(\"strong.usda\") is anchored relative to the packaged root layer, dropping strong's opinion"
    );
    Ok(())
}

/// A stage opened without a session layer should report no session layer.
#[test]
fn no_session_layer_by_default() -> Result<()> {
    let stage = Stage::open(&fixture_path("session_root.usda"))?;

    assert!(!stage.has_session_layer());
    assert!(stage.session_layer().is_none());
    assert_eq!(stage.layer_count(), 1);

    Ok(())
}

/// `defaultPrim` should come from the root layer, not the session layer.
#[test]
fn session_layer_does_not_affect_default_prim() -> Result<()> {
    let stage = open_with_session()?;
    assert_eq!(stage.default_prim().as_deref(), Some("World"));
    Ok(())
}

/// Children defined only in the root layer should still be visible
/// when a session layer is present.
#[test]
fn session_layer_preserves_children() -> Result<()> {
    let stage = open_with_session()?;

    let children = child_names(&stage, "/World")?;
    assert!(
        children.contains(&"Child".to_string()),
        "root layer's children should be visible: got {children:?}"
    );

    Ok(())
}

#[test]
fn api_schemas_returns_applied_schemas() -> Result<()> {
    let stage = Stage::open("fixtures/api_schemas.usda")?;
    let geo = sdf::Path::new("/World/Geo")?;
    let schemas = stage.prim(geo.clone()).api_schemas()?;
    assert!(schemas.contains(&tf::Token::from("MaterialBindingAPI")));
    assert!(schemas.contains(&tf::Token::from("SkelBindingAPI")));
    Ok(())
}

#[test]
fn api_schemas_compose_list_ops() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("weak.usda"),
        r#"#usda 1.0

def Xform "World"
{
    def Mesh "Geo" (
        append apiSchemas = ["WeakAPI", "RemovedAPI"]
    )
    {
    }
}
"#,
    )?;
    fs::write(
        dir.path().join("middle.usda"),
        r#"#usda 1.0
(
    subLayers = [
        @weak.usda@
    ]
)

over "World"
{
    over "Geo" (
        prepend apiSchemas = ["StrongAPI"]
    )
    {
    }
}
"#,
    )?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        r#"#usda 1.0
(
    subLayers = [
        @middle.usda@
    ]
)

over "World"
{
    over "Geo" (
        delete apiSchemas = ["RemovedAPI"]
    )
    {
    }
}
"#,
    )?;

    let stage = Stage::open(root.to_str().expect("utf-8 temp path"))?;
    let schemas = stage.prim(sdf::Path::new("/World/Geo")?).api_schemas()?;
    assert_eq!(schemas, vec![tf::Token::from("StrongAPI"), tf::Token::from("WeakAPI")]);
    Ok(())
}

#[test]
fn api_schemas_compose_reorder_list_op() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("weak.usda"),
        r#"#usda 1.0

def Xform "World"
{
    def Mesh "Geo" (
        apiSchemas = ["A", "B", "C"]
    )
    {
    }
}
"#,
    )?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        r#"#usda 1.0
(
    subLayers = [
        @weak.usda@
    ]
)

over "World"
{
    over "Geo" (
        reorder apiSchemas = ["C", "A"]
    )
    {
    }
}
"#,
    )?;

    let stage = Stage::open(root.to_str().expect("utf-8 temp path"))?;
    let schemas = stage.prim(sdf::Path::new("/World/Geo")?).api_schemas()?;
    assert_eq!(
        schemas,
        vec![tf::Token::from("C"), tf::Token::from("A"), tf::Token::from("B")]
    );
    Ok(())
}

/// Inherit arc: a class authoring `apiSchemas` contributes to the
/// inheriting prim's composed list, with the local prim's edits applied
/// on top. `has_api_schema` (the surface physics / skel readers depend
/// on) sees both opinions.
#[test]
fn api_schemas_via_inherit() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        r#"#usda 1.0

class "_Base" (
    prepend apiSchemas = ["BaseAPI"]
)
{
}

def Xform "World"
{
    def Mesh "Geo" (
        inherits = </_Base>
        prepend apiSchemas = ["LocalAPI"]
    )
    {
    }
}
"#,
    )?;
    let stage = Stage::open(root.to_str().expect("utf-8 temp path"))?;
    let geo = sdf::Path::new("/World/Geo")?;
    assert_eq!(
        stage.prim(geo.clone()).api_schemas()?,
        vec![tf::Token::from("LocalAPI"), tf::Token::from("BaseAPI")],
    );
    assert!(stage.prim(geo.clone()).has_api_schema("BaseAPI")?);
    assert!(stage.prim(geo.clone()).has_api_schema("LocalAPI")?);
    Ok(())
}

/// Reference arc: a referenced asset's `apiSchemas` compose into the
/// referencing prim's list, with the local layer's edits applied on top.
#[test]
fn api_schemas_via_reference() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("asset.usda"),
        r#"#usda 1.0
(
    defaultPrim = "Source"
)

def Mesh "Source" (
    prepend apiSchemas = ["AssetAPI"]
)
{
}
"#,
    )?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        r#"#usda 1.0

def Xform "World"
{
    def "Geo" (
        references = @asset.usda@
        prepend apiSchemas = ["LocalAPI"]
    )
    {
    }
}
"#,
    )?;
    let stage = Stage::open(root.to_str().expect("utf-8 temp path"))?;
    let geo = sdf::Path::new("/World/Geo")?;
    assert_eq!(
        stage.prim(geo.clone()).api_schemas()?,
        vec![tf::Token::from("LocalAPI"), tf::Token::from("AssetAPI")],
    );
    Ok(())
}

/// Variant arc: a selected variant authoring `apiSchemas` contributes to
/// the variant-set-owning prim's composed list.
#[test]
fn api_schemas_via_variant() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        r#"#usda 1.0

def Xform "World"
{
    def Mesh "Geo" (
        variants = {
            string mode = "full"
        }
        prepend variantSets = "mode"
        prepend apiSchemas = ["LocalAPI"]
    )
    {
        variantSet "mode" = {
            "full" (
                prepend apiSchemas = ["VariantAPI"]
            ) {
            }
            "empty" {
            }
        }
    }
}
"#,
    )?;
    let stage = Stage::open(root.to_str().expect("utf-8 temp path"))?;
    let geo = sdf::Path::new("/World/Geo")?;
    let schemas = stage.prim(geo.clone()).api_schemas()?;
    assert!(
        schemas.contains(&tf::Token::from("VariantAPI")),
        "variant contribution missing: {schemas:?}",
    );
    assert!(
        schemas.contains(&tf::Token::from("LocalAPI")),
        "local contribution missing: {schemas:?}",
    );
    Ok(())
}

/// Property paths resolve to the owning prim's schemas (matches the
/// `specifier` / `kind` convention).
#[test]
fn api_schemas_property_path() -> Result<()> {
    let stage = Stage::open("fixtures/api_schemas.usda")?;
    let prim = sdf::Path::new("/World/Geo")?;
    let prop = sdf::Path::new("/World/Geo.points")?;
    assert_eq!(stage.prim(prop).api_schemas()?, stage.prim(prim).api_schemas()?);
    Ok(())
}

#[test]
fn connection_paths_compose_list_ops() -> Result<()> {
    // Stack: weak sublayer authors `append`; root layer authors
    // `prepend`. `connection_paths` must fold edits across both
    // layers, not return only the strongest layer's list op.
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("weak.usda"),
        r#"#usda 1.0

def Shader "Mat"
{
    color3f outputs:out
    append color3f inputs:in.connect = [</Mat.outputs:out>]
}
"#,
    )?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        r#"#usda 1.0
(
    subLayers = [
        @weak.usda@
    ]
)

over "Mat"
{
    prepend color3f inputs:in.connect = [</Mat.outputs:strong>]
}
"#,
    )?;

    let stage = Stage::open(root.to_str().expect("utf-8 temp path"))?;
    let conns = connections(&stage, &sdf::Path::new("/Mat.inputs:in")?)?;
    assert_eq!(
        conns,
        vec![
            sdf::Path::new("/Mat.outputs:strong")?,
            sdf::Path::new("/Mat.outputs:out")?
        ]
    );
    Ok(())
}

#[test]
fn relationship_targets_compose_list_ops() -> Result<()> {
    // Weak sublayer appends a target; root prepends one. Raw targets must
    // fold list-op edits across both layers (spec 12.2.6, 12.4).
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("weak.usda"),
        r#"#usda 1.0

def "Set"
{
    def "A" {}
    def "B" {}
    append rel members = [</Set/B>]
}
"#,
    )?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        r#"#usda 1.0
(
    subLayers = [
        @weak.usda@
    ]
)

over "Set"
{
    prepend rel members = [</Set/A>]
}
"#,
    )?;

    let stage = Stage::open(root.to_str().expect("utf-8 temp path"))?;
    let targets = rel_targets(&stage, &sdf::Path::new("/Set.members")?)?;
    assert_eq!(targets, vec![sdf::Path::new("/Set/A")?, sdf::Path::new("/Set/B")?]);
    Ok(())
}

#[test]
fn relationship_targets_remap_reference() -> Result<()> {
    // Targets authored in a referenced asset's namespace resolve into the
    // referencing prim's namespace (spec 12.4 raw targets across arcs).
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("asset.usda"),
        r#"#usda 1.0
(
    defaultPrim = "Source"
)

def "Source"
{
    def "Child" {}
    rel members = [</Source/Child>]
}
"#,
    )?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        r#"#usda 1.0

def "Inst" (
    references = @asset.usda@
)
{
}
"#,
    )?;

    let stage = Stage::open(root.to_str().expect("utf-8 temp path"))?;
    let targets = rel_targets(&stage, &sdf::Path::new("/Inst.members")?)?;
    assert_eq!(targets, vec![sdf::Path::new("/Inst/Child")?]);
    Ok(())
}

#[test]
fn forwarded_targets_honor_mask() -> Result<()> {
    // Forwarding must not read a relationship on a masked-out prim, so the
    // chain through /Hidden.rel contributes nothing; a direct prim target
    // to the masked prim is still returned (raw target value, not a query).
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        r#"#usda 1.0

def "Vis"
{
    rel chain = [</Hidden.rel>]
    rel direct = [</Hidden>]
}

def "Hidden"
{
    rel rel = [</Hidden/Geom>]
    def "Geom" {}
}
"#,
    )?;

    let stage = Stage::builder()
        .mask(StagePopulationMask::new(["/Vis"]))
        .open(root.to_str().expect("utf-8 temp path"))?;

    // /Hidden is masked out: its relationship is not followed.
    assert!(fwd_targets(&stage, &sdf::Path::new("/Vis.chain")?)?.is_empty());
    // A direct prim target is still returned, matching raw targets.
    assert_eq!(
        fwd_targets(&stage, &sdf::Path::new("/Vis.direct")?)?,
        vec![sdf::Path::new("/Hidden")?]
    );
    Ok(())
}

#[test]
fn connection_paths_remap_reference() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("asset.usda"),
        r#"#usda 1.0
(
    defaultPrim = "Source"
)

def Shader "Source"
{
    color3f outputs:out
    color3f inputs:in.connect = [</Source.outputs:out>]
}
"#,
    )?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        r#"#usda 1.0

def Shader "Mat" (
    references = @asset.usda@
)
{
}
"#,
    )?;

    let stage = Stage::open(root.to_str().expect("utf-8 temp path"))?;
    let input = sdf::Path::new("/Mat.inputs:in")?;
    let output = sdf::Path::new("/Mat.outputs:out")?;
    assert_eq!(connections(&stage, &input)?, vec![output.clone()]);

    let graph = usd::ConnectionGraph::from_stage(&stage)?;
    assert_eq!(graph.sources(&input), std::slice::from_ref(&output));
    assert_eq!(graph.sinks(&output), &[input]);
    Ok(())
}

#[test]
fn api_schemas_empty_for_prim_without_schemas() -> Result<()> {
    let stage = Stage::open("fixtures/api_schemas.usda")?;
    let props = sdf::Path::new("/World/Props")?;
    assert!(stage.prim(props).api_schemas()?.is_empty());
    Ok(())
}

#[test]
fn has_api_schema_matches_applied() -> Result<()> {
    let stage = Stage::open("fixtures/api_schemas.usda")?;
    let geo = sdf::Path::new("/World/Geo")?;
    assert!(stage.prim(geo.clone()).has_api_schema("MaterialBindingAPI")?);
    assert!(!stage.prim(geo.clone()).has_api_schema("SkelRootAPI")?);
    Ok(())
}

#[test]
fn type_name_returns_prim_type() -> Result<()> {
    let stage = Stage::open("fixtures/api_schemas.usda")?;
    assert_eq!(
        stage.prim(sdf::Path::new("/World/Geo")?).type_name()?.as_deref(),
        Some("Mesh")
    );
    assert_eq!(
        stage.prim(sdf::Path::new("/World")?).type_name()?.as_deref(),
        Some("Xform")
    );
    Ok(())
}

fn open_stage_queries_fixture() -> Result<Stage> {
    Stage::open("fixtures/stage_queries.usda")
}

#[test]
fn active_loaded() -> Result<()> {
    let stage = open_stage_queries_fixture()?;

    assert!(stage.prim("/World/ActiveParent/Child").is_active()?);
    assert!(stage.prim("/World/ActiveParent/Child").is_loaded()?);

    assert!(!stage.prim("/World/InactiveParent").is_active()?);
    assert!(!stage.prim("/World/InactiveParent/Child").is_active()?);
    assert!(!stage.prim("/World/InactiveParent/Child").is_loaded()?);

    assert!(!stage.prim("/World/Missing").is_active()?);
    Ok(())
}

/// Records every layer the wrapped resolver opens, to verify lazy loading: a
/// reference/payload target is read from disk only when composition reaches its
/// arc, never at stage-open time.
struct RecordingResolver {
    inner: ar::DefaultResolver,
    opened: Rc<RefCell<Vec<String>>>,
}

impl RecordingResolver {
    fn new(opened: Rc<RefCell<Vec<String>>>) -> Self {
        Self {
            inner: ar::DefaultResolver::new(),
            opened,
        }
    }
}

impl ar::Resolver for RecordingResolver {
    fn create_identifier(&self, asset_path: &str, anchor: Option<&ar::ResolvedPath>) -> String {
        self.inner.create_identifier(asset_path, anchor)
    }
    fn resolve(&self, asset_path: &str) -> Option<ar::ResolvedPath> {
        self.inner.resolve(asset_path)
    }
    fn resolve_for_new_asset(&self, asset_path: &str) -> Option<ar::ResolvedPath> {
        self.inner.resolve_for_new_asset(asset_path)
    }
    fn open_asset(&self, resolved_path: &ar::ResolvedPath) -> std::io::Result<Box<dyn ar::Asset>> {
        self.opened.borrow_mut().push(resolved_path.to_string());
        self.inner.open_asset(resolved_path)
    }
    fn identity(&self) -> String {
        self.inner.identity()
    }
}

/// A reference target is opened only when composition reaches its arc, not at
/// stage-open time, and then exactly once.
#[test]
fn lazy_reference_loads_on_demand() -> Result<()> {
    let path = composition_path("references/reference_same_folder.usda");
    let opened = Rc::new(RefCell::new(Vec::new()));
    let stage = Stage::builder()
        .resolver(RecordingResolver::new(opened.clone()))
        .open(&path)?;

    let opened_has = |needle: &str| opened.borrow().iter().any(|p| p.contains(needle));

    // Opening the stage reads only the root layer; the reference target stays
    // closed until composition reaches the arc on `/World`.
    assert!(opened_has("reference_same_folder"));
    assert!(!opened_has("_stage.usda"), "reference target must not load at open");
    assert_eq!(stage.layer_count(), 1);

    // Composing `/World` follows its reference, opening the target exactly once.
    let _ = child_names(&stage, "/World")?;
    assert!(opened_has("_stage.usda"), "composing the prim must load its reference");
    assert_eq!(stage.layer_count(), 2);
    let target_opens = opened.borrow().iter().filter(|p| p.contains("_stage.usda")).count();
    assert_eq!(target_opens, 1, "the reference target loads exactly once");
    Ok(())
}

/// A muted reference target contributes nothing and is never read from disk,
/// even once composition reaches its arc, and surfaces a `MutedAssetPath`
/// diagnostic.
#[test]
fn muted_reference_target_not_opened() -> Result<()> {
    let path = composition_path("references/reference_same_folder.usda");
    let target = composition_path("references/_stage.usda");
    let opened = Rc::new(RefCell::new(Vec::new()));
    // Mute the reference target by its canonical identifier.
    let muted_id = ar::DefaultResolver::new().create_identifier(&target, None);
    let stage = Stage::builder()
        .resolver(RecordingResolver::new(opened.clone()))
        .mute([muted_id])
        .open(&path)?;

    // Composing `/World` reaches the muted reference; it is recognized as muted
    // before the loader would open it.
    let _ = child_names(&stage, "/World")?;
    assert!(
        !opened.borrow().iter().any(|p| p.contains("_stage.usda")),
        "a muted reference target must never be opened"
    );
    let errors = stage.composition_errors();
    let muted = errors
        .iter()
        .filter(|e| {
            matches!(
                e,
                pcp::Error::MutedAssetPath { arc: pcp::ArcType::Reference, asset_path, .. }
                    if asset_path.contains("_stage.usda")
            )
        })
        .count();
    assert_eq!(
        muted, 1,
        "a muted reference target must surface exactly one MutedAssetPath diagnostic, got {errors:?}"
    );
    Ok(())
}

/// Unmuting a reference target that was muted *before it ever loaded* recomposes
/// the referrer: the arc was skipped at the demand point (the target never
/// interned, so the layer-keyed mute fanout cannot find the referrer), and the
/// unmute fans out by the target's canonical identifier instead — dropping the
/// stale index so the load barrier finally opens the target on the next query.
#[test]
fn unmute_unloaded_reference_recomposes() -> Result<()> {
    let path = composition_path("references/reference_same_folder.usda");
    let target = composition_path("references/_stage.usda");
    let opened = Rc::new(RefCell::new(Vec::new()));
    let muted_id = ar::DefaultResolver::new().create_identifier(&target, None);
    let stage = Stage::builder()
        .resolver(RecordingResolver::new(opened.clone()))
        .mute([muted_id.clone()])
        .open(&path)?;

    // While muted, the reference is skipped and its target is never opened, so
    // `/World` composes with no referenced children.
    assert_eq!(child_names(&stage, "/World")?, Vec::<String>::new());
    assert!(
        !opened.borrow().iter().any(|p| p.contains("_stage.usda")),
        "a muted reference target must never be opened"
    );

    // Unmuting the never-loaded target must recompose `/World`: the load barrier
    // opens the target on demand and the reference brings in its children.
    stage.unmute_layer(&muted_id);
    assert_eq!(
        child_names(&stage, "/World")?,
        vec!["Cube"],
        "unmuting a never-loaded reference target recomposes the referrer"
    );
    assert!(
        opened.borrow().iter().any(|p| p.contains("_stage.usda")),
        "unmuting must let the load barrier open the now-unmuted target"
    );
    Ok(())
}

#[test]
fn load_none() -> Result<()> {
    let path = composition_path("payload/payload_same_folder.usda");

    let loaded = Stage::open(&path)?;
    // Lazy loading: only the root layer is loaded until composition reaches the
    // payload arc on `/World`.
    assert_eq!(loaded.layer_count(), 1);
    assert!(loaded.prim("/World").is_loaded()?);
    assert_eq!(child_names(&loaded, "/World")?, vec!["Cube"]);
    // Composing `/World` pulled its payload target in, so it is now loaded.
    assert_eq!(loaded.layer_count(), 2);

    let unloaded = Stage::builder().load(InitialLoadSet::LoadNone).open(&path)?;
    assert_eq!(unloaded.initial_load_set(), InitialLoadSet::LoadNone);
    assert_eq!(unloaded.layer_count(), 1);
    assert!(!unloaded.prim("/World").is_loaded()?);
    assert_eq!(child_names(&unloaded, "/World")?, Vec::<String>::new());

    let mut prims = Vec::new();
    unloaded.traverse(PrimPredicate::DEFAULT, |p| prims.push(p.as_str().to_string()))?;
    assert!(prims.is_empty());
    Ok(())
}

/// Runtime `load`/`unload` mutate the effective load state incrementally,
/// independent of the stage's open-time `InitialLoadSet`.
#[test]
fn runtime_load_unload() -> Result<()> {
    let path = composition_path("payload/payload_same_folder.usda");
    let stage = Stage::builder().load(InitialLoadSet::LoadNone).open(&path)?;
    assert!(!stage.prim("/World").is_loaded()?);

    stage.load("/World", LoadPolicy::WithDescendants);
    assert!(stage.prim("/World").is_loaded()?);
    assert_eq!(child_names(&stage, "/World")?, vec!["Cube"]);

    stage.unload("/World");
    assert!(!stage.prim("/World").is_loaded()?);
    assert_eq!(child_names(&stage, "/World")?, Vec::<String>::new());
    Ok(())
}

/// `set_load_rules` installs a caller-built table wholesale, and `load_rules`
/// reads back exactly what was installed.
#[test]
fn set_load_rules_round_trips() -> Result<()> {
    let path = composition_path("payload/payload_same_folder.usda");
    let stage = Stage::open(&path)?;

    let mut rules = pcp::LoadRules::all();
    rules.unload(sdf::path("/World")?);
    stage.set_load_rules(rules.clone());

    assert_eq!(stage.load_rules(), rules);
    assert!(!stage.prim("/World").is_loaded()?);
    Ok(())
}

/// A redundant `load`/`unload` call — one that resolves to the same load
/// rules already in effect — fires no [`StageSink::load_rules_changed`]
/// notification, since nothing was actually invalidated.
#[test]
fn load_noop_fires_no_notification() -> Result<()> {
    let path = composition_path("payload/payload_same_folder.usda");
    let stage = Stage::open(&path)?;
    let calls = Rc::new(RefCell::new(0));
    let _token = {
        let calls = calls.clone();
        stage.add_sink(RecordingSink {
            load_rules: Some(Box::new(move |_stage, _resynced| {
                *calls.borrow_mut() += 1;
            })),
            ..Default::default()
        })
    };

    // Already loaded with the default (empty) rules -- a true no-op.
    stage.load("/World", LoadPolicy::WithDescendants);
    assert_eq!(
        *calls.borrow(),
        0,
        "already-loaded path with default rules fires nothing"
    );

    stage.unload("/World");
    assert_eq!(*calls.borrow(), 1);

    stage.unload("/World");
    assert_eq!(*calls.borrow(), 1, "repeated unload is a no-op");
    Ok(())
}

/// Writes a three-layer payload chain (`root` -> `/World/A` payloads `a.usda`
/// -> `/World/A/Deep` payloads `deep.usda`) into a fresh temp directory, for
/// tests exercising nested load-rule interactions.
fn write_nested_payload_scene(dir: &std::path::Path) -> Result<std::path::PathBuf> {
    let root = dir.join("root.usda");
    let a = dir.join("a.usda");
    let deep = dir.join("deep.usda");
    fs::write(
        &root,
        "#usda 1.0\ndef \"World\" {\n    def \"A\" (\n        payload = @a.usda@\n    ) {}\n}\n",
    )?;
    fs::write(
        &a,
        "#usda 1.0\n(\n    defaultPrim = \"A\"\n)\ndef \"A\" {\n    def \"Deep\" (\n        payload = @deep.usda@\n    ) {}\n}\n",
    )?;
    fs::write(
        &deep,
        "#usda 1.0\n(\n    defaultPrim = \"Deep\"\n)\ndef \"Deep\" {\n    custom double x = 42\n}\n",
    )?;
    Ok(root)
}

/// `find_loadable` discovers every payload-carrying prim under `root`, even
/// one nested behind another payload it must transiently load to see past,
/// and restores the stage's original (unloaded) state afterward. `load_set`
/// then reports only what the live rules actually include.
#[test]
fn nested_payload_find_loadable_and_load_set() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = write_nested_payload_scene(dir.path())?;
    let stage = Stage::builder()
        .load(InitialLoadSet::LoadNone)
        .open(root.to_str().unwrap())?;

    assert_eq!(
        stage.find_loadable("/World")?,
        vec![sdf::path("/World/A")?, sdf::path("/World/A/Deep")?]
    );
    assert!(stage.load_set()?.is_empty(), "load rules still say LoadNone");
    // The transient discovery swap must not leave the rules changed.
    assert!(!stage.prim("/World/A").is_loaded()?);

    stage.load("/World/A", LoadPolicy::WithDescendants);
    assert_eq!(
        stage.load_set()?,
        vec![sdf::path("/World/A")?, sdf::path("/World/A/Deep")?]
    );
    Ok(())
}

/// `load_and_unload` applies every unload before any load, so a path in both
/// sets ends up loaded.
#[test]
fn load_and_unload_same_path_prefers_load() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = write_nested_payload_scene(dir.path())?;
    let stage = Stage::open(root.to_str().unwrap())?;

    stage.load_and_unload(
        [(sdf::path("/World/A")?, LoadPolicy::WithDescendants)],
        [sdf::path("/World/A")?],
    );
    assert!(stage.prim("/World/A").is_loaded()?);
    Ok(())
}

/// Unloading an ancestor while loading one of its descendants in the same
/// `load_and_unload` call still leaves the descendant reachable: the
/// ancestor's own payload reopens just enough to expose it (`Rule::Only` via
/// `LoadRules::effective_rule`'s lookahead).
#[test]
fn load_and_unload_nested_ancestor_descendant() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = write_nested_payload_scene(dir.path())?;
    let stage = Stage::open(root.to_str().unwrap())?;

    stage.load_and_unload(
        [(sdf::path("/World/A/Deep")?, LoadPolicy::WithDescendants)],
        [sdf::path("/World/A")?],
    );
    assert!(stage.prim("/World/A").is_loaded()?);
    assert!(stage.prim("/World/A/Deep").is_loaded()?);
    assert_eq!(
        stage
            .attribute("/World/A/Deep.x")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(42.0))
    );
    Ok(())
}

/// Two instances sharing identical arcs mint one prototype by default; giving
/// one instance's descendant a different runtime load rule than the other's
/// splits them into separate prototypes (`InstanceKey` folds in each
/// instance's own load rules, re-rooted onto its path).
#[test]
fn instance_descendant_load_rule_splits_prototype() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let proto = dir.path().join("proto.usda");
    let heavy = dir.path().join("heavy.usda");
    fs::write(
        &root,
        "#usda 1.0\ndef \"World\" {\n    def \"InstA\" (\n        instanceable = true\n        references = @proto.usda@\n    ) {}\n    def \"InstB\" (\n        instanceable = true\n        references = @proto.usda@\n    ) {}\n}\n",
    )?;
    fs::write(
        &proto,
        "#usda 1.0\n(\n    defaultPrim = \"Proto\"\n)\ndef \"Proto\" {\n    def \"Heavy\" (\n        payload = @heavy.usda@\n    ) {}\n}\n",
    )?;
    fs::write(
        &heavy,
        "#usda 1.0\n(\n    defaultPrim = \"Heavy\"\n)\ndef \"Heavy\" {\n    custom double x = 1\n}\n",
    )?;

    let stage = Stage::open(root.to_str().unwrap())?;
    let proto_a = stage.prim("/World/InstA").prototype()?.expect("InstA is an instance");
    let proto_b = stage.prim("/World/InstB").prototype()?.expect("InstB is an instance");
    assert_eq!(
        proto_a, proto_b,
        "identical composition and load state share a prototype"
    );

    stage.unload("/World/InstA/Heavy");

    let proto_a = stage.prim("/World/InstA").prototype()?.expect("still an instance");
    let proto_b = stage.prim("/World/InstB").prototype()?.expect("still an instance");
    assert_ne!(
        proto_a, proto_b,
        "differing load rules on a descendant split the prototype"
    );
    Ok(())
}

/// A caller-supplied `set_load_rules` table naming a synthetic
/// `/__Prototype_N` path directly is stripped before it is stored: load rules
/// are only ever meaningful in real-instance-namespace terms (see
/// `instance_descendant_load_rule_splits_prototype`), and unlike `load`/
/// `unload`, a raw `set_load_rules` call has no other gate against it.
#[test]
fn set_load_rules_strips_prototype_path() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let proto = dir.path().join("proto.usda");
    fs::write(
        &root,
        "#usda 1.0\ndef \"World\" {\n    def \"Inst\" (\n        instanceable = true\n        references = @proto.usda@\n    ) {}\n}\n",
    )?;
    fs::write(
        &proto,
        "#usda 1.0\n(\n    defaultPrim = \"Proto\"\n)\ndef \"Proto\" {}\n",
    )?;

    let stage = Stage::open(root.to_str().unwrap())?;
    let prototype = stage.prim("/World/Inst").prototype()?.expect("Inst is an instance");

    let mut rules = pcp::LoadRules::all();
    rules.unload(prototype);
    stage.set_load_rules(rules);

    assert!(
        stage.load_rules().is_empty(),
        "the prototype-rooted rule must never be stored"
    );
    Ok(())
}

/// `Prim::is_loaded` gives the same answer whether reached through an
/// instance's own path or through the shared prototype's synthetic path —
/// both route through the prototype's stored relative load rules, not the
/// global table (which never carries prototype-rooted entries).
#[test]
fn is_loaded_through_prototype_path() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let proto = dir.path().join("proto.usda");
    let heavy = dir.path().join("heavy.usda");
    fs::write(
        &root,
        "#usda 1.0\ndef \"World\" {\n    def \"Inst\" (\n        instanceable = true\n        references = @proto.usda@\n    ) {}\n}\n",
    )?;
    fs::write(
        &proto,
        "#usda 1.0\n(\n    defaultPrim = \"Proto\"\n)\ndef \"Proto\" {\n    def \"Heavy\" (\n        payload = @heavy.usda@\n    ) {}\n}\n",
    )?;
    fs::write(
        &heavy,
        "#usda 1.0\n(\n    defaultPrim = \"Heavy\"\n)\ndef \"Heavy\" {\n    custom double x = 1\n}\n",
    )?;

    let stage = Stage::open(root.to_str().unwrap())?;
    let prototype = stage.prim("/World/Inst").prototype()?.expect("Inst is an instance");
    let proto_heavy = prototype.append_path("Heavy")?;

    assert!(
        stage.prim(&proto_heavy).is_loaded()?,
        "loaded by default before any unload"
    );

    stage.unload("/World/Inst/Heavy");

    assert!(
        !stage.prim("/World/Inst/Heavy").is_loaded()?,
        "unloaded through the instance's own path"
    );
    assert!(
        !stage.prim(&proto_heavy).is_loaded()?,
        "the prototype's own path must report the same, not the previous unconditional loaded"
    );
    Ok(())
}

#[test]
fn defined_abstract() -> Result<()> {
    let stage = open_stage_queries_fixture()?;

    assert_eq!(stage.prim("/World/OverOnly").specifier()?, Some(sdf::Specifier::Over));
    assert!(stage.prim("/World/ActiveParent/Child").is_defined()?);
    assert!(!stage.prim("/World/OverOnly").is_defined()?);
    assert!(!stage.prim("/World/OverParent/Child").is_defined()?);

    assert!(stage.prim("/World/ClassParent/Child").is_defined()?);
    assert!(stage.prim("/World/ClassParent").is_abstract()?);
    assert!(stage.prim("/World/ClassParent/Child").is_abstract()?);
    assert!(!stage.prim("/World/ActiveParent/Child").is_abstract()?);
    Ok(())
}

#[test]
fn instance_flag() -> Result<()> {
    let stage = open_stage_queries_fixture()?;

    assert!(stage.prim("/World/Instance").has_composition_arc()?);
    assert!(stage.prim("/World/Instance").is_instance()?);

    assert!(!stage.prim("/World/InstanceableNoArc").has_composition_arc()?);
    assert!(!stage.prim("/World/InstanceableNoArc").is_instance()?);
    Ok(())
}

/// An instance prim's children come only from its composition arcs; a
/// local-only child is discarded (spec 11.3.3).
#[test]
fn instance_children_from_arcs_only() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing.usda"))?;

    let mut children = child_names(&stage, "/Instance")?;
    children.sort();
    assert_eq!(children, vec!["Child".to_string()]);

    // A plain (non-instance) reference still merges local and referenced
    // children.
    let mut non_instance = child_names(&stage, "/NonInstance")?;
    non_instance.sort();
    assert_eq!(non_instance, vec!["Child".to_string(), "LocalOnly".to_string()]);
    Ok(())
}

/// Instances sharing a prototype resolve descendant values identically and
/// expose the prototype's children (spec 11.3.3).
#[test]
fn shared_instances_resolve_identically() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_shared.usda"))?;

    assert_eq!(
        stage
            .attribute("/A/Child.size")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(5.0))
    );
    assert_eq!(
        stage
            .attribute("/B/Child.size")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(5.0))
    );
    assert_eq!(
        stage
            .attribute("/C/Child.size")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(9.0))
    );

    assert_eq!(child_names(&stage, "/A")?, vec!["Child".to_string()]);
    assert_eq!(child_names(&stage, "/B")?, vec!["Child".to_string()]);
    Ok(())
}

/// `get_prototype` / `get_instances` group instances by shared composition,
/// and the prototype namespace is addressable (spec 11.3.3).
#[test]
fn prototype_queries() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_shared.usda"))?;

    let proto = stage.prim("/A").prototype()?;
    assert!(proto.is_some());
    assert_eq!(stage.prim("/B").prototype()?, proto); // same composition → shared
    assert_ne!(stage.prim("/C").prototype()?, proto); // different prototype
    assert_eq!(stage.prim("/Proto").prototype()?, None); // not an instance

    let proto = proto.unwrap();
    // Returned sorted by path, so callers need not sort themselves.
    let instances: Vec<String> = stage
        .prim(proto.clone())
        .instances()
        .iter()
        .map(|p| p.to_string())
        .collect();
    assert_eq!(instances, vec!["/A".to_string(), "/B".to_string()]);

    // The prototype namespace is addressable and resolves to the shared
    // (arc-only) subtree.
    assert!(stage.prim(proto.clone()).is_prototype());
    let child = sdf::path(format!("{proto}/Child"))?;
    assert!(stage.prim(child.clone()).is_in_prototype());
    assert_eq!(
        stage
            .attribute(child.append_property("size")?)
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(5.0))
    );
    Ok(())
}

/// Prototype queries respect the population mask: a masked-out instance is
/// not instanced and never appears among a prototype's instances.
#[test]
fn prototype_queries_masked() -> Result<()> {
    let stage = Stage::builder()
        .mask(StagePopulationMask::new(["/A"]))
        .open(&fixture_path("instancing_shared.usda"))?;

    // /A is in the mask; /B (which shares /A's prototype) is not.
    assert!(stage.prim("/A").is_instance()?);
    assert!(!stage.prim("/B").is_instance()?);

    let proto = stage.prim("/A").prototype()?;
    assert!(proto.is_some());
    assert_eq!(stage.prim("/B").prototype()?, None);

    // The masked-out /B is excluded from the prototype's instance list.
    let proto = proto.unwrap();
    assert_eq!(stage.prim(proto.clone()).instances(), vec![sdf::path("/A")?]);
    assert_eq!(stage.prototypes(), vec![proto]);
    Ok(())
}

/// A nested instance (an instance inside a prototype's subtree) is
/// recognized, resolves values within the queried instance, and shares its
/// own prototype across the outer instances (spec 11.3.3).
#[test]
fn nested_instances() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_nested.usda"))?;

    assert_eq!(
        stage
            .attribute("/A/Sub/L.v")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(7.0))
    );
    assert_eq!(
        stage
            .attribute("/B/Sub/L.v")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(7.0))
    );

    // The nested prims are instances and share one prototype.
    assert!(stage.prim("/A/Sub").is_instance()?);
    assert!(stage.prim("/B/Sub").is_instance()?);
    let nested = stage.prim("/A/Sub").prototype()?;
    assert!(nested.is_some());
    assert_eq!(stage.prim("/B/Sub").prototype()?, nested);

    // The outer instances share a distinct prototype.
    let outer = stage.prim("/A").prototype()?;
    assert_eq!(stage.prim("/B").prototype()?, outer);
    assert_ne!(outer, nested);

    // The nested subtree is also reachable through the outer prototype.
    let outer = outer.unwrap();
    assert_eq!(
        stage
            .attribute(sdf::path(format!("{outer}/Sub/L.v"))?)
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(7.0))
    );
    Ok(())
}

/// A connection inside an instance subtree resolves within the queried
/// instance, not the shared canonical instance (spec 11.3.3 + 11.3.4).
#[test]
fn instance_connection_remaps_to_instance() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_connections.usda"))?;

    // Query /I1 first so it becomes canonical.
    assert_eq!(
        connections(&stage, &sdf::path("/I1/Dst.inputs:in")?)?,
        vec![sdf::path("/I1/Src.outputs:out")?]
    );
    // /I2 shares the prototype; its connection must point into /I2.
    assert_eq!(
        connections(&stage, &sdf::path("/I2/Dst.inputs:in")?)?,
        vec![sdf::path("/I2/Src.outputs:out")?]
    );
    Ok(())
}

/// A connection on a prototype *descendant* resolves in the prototype
/// namespace when queried directly on the prototype, and remaps to the
/// queried instance when reached through a proxy (spec 11.3.3 + 12.4).
#[test]
fn prototype_descendant_target_remap() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_connections.usda"))?;

    // Query an instance proxy first to register the prototype; the target
    // remaps into that instance's namespace.
    assert_eq!(
        connections(&stage, &sdf::path("/I1/Dst.inputs:in")?)?,
        vec![sdf::path("/I1/Src.outputs:out")?]
    );

    // The same connection queried directly on the prototype descendant stays
    // in the prototype namespace (no instance to remap to).
    let proto = stage.prim("/I1").prototype()?.expect("I1 is an instance");
    let dst_in = proto.append_path("Dst")?.append_property("inputs:in")?;
    assert_eq!(
        connections(&stage, &dst_in)?,
        vec![proto.append_path("Src")?.append_property("outputs:out")?]
    );
    Ok(())
}

/// Forwarding through a relationship that lives inside an instance
/// prototype resolves within the queried instance: the prototype rel is
/// classified correctly (not mistaken for a terminal) and its targets
/// remap into the instance namespace (spec 11.3.3 + 12.4).
#[test]
fn forwarded_targets_through_instance() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("asset.usda"),
        r#"#usda 1.0
(
    defaultPrim = "Proto"
)

def "Proto"
{
    def "Target" {}
    rel direct = [</Proto/Target>]
    rel chain = [</Proto.direct>]
}
"#,
    )?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        r#"#usda 1.0

def "I1" (
    instanceable = true
    references = @asset.usda@
)
{
}

def "I2" (
    instanceable = true
    references = @asset.usda@
)
{
}
"#,
    )?;

    let stage = Stage::open(root.to_str().expect("utf-8 temp path"))?;
    // chain -> direct (a prototype relationship) -> Target. Each hop stays
    // in the queried instance's namespace.
    assert_eq!(
        fwd_targets(&stage, &sdf::path("/I1.chain")?)?,
        vec![sdf::path("/I1/Target")?]
    );
    assert_eq!(
        fwd_targets(&stage, &sdf::path("/I2.chain")?)?,
        vec![sdf::path("/I2/Target")?]
    );
    Ok(())
}

/// Connection and schema readers descend into instance subtrees, so
/// content inside an instance is not silently skipped. Public traversal
/// stops at instances, but these readers need the full composed namespace.
#[test]
fn readers_index_instanced_content() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_connections.usda"))?;

    let graph = usd::ConnectionGraph::from_stage(&stage)?;
    // The connection lives inside the instance /I1; the reader must descend
    // into the instance proxy to index it.
    assert_eq!(
        graph.sources(&sdf::path("/I1/Dst.inputs:in")?),
        &[sdf::path("/I1/Src.outputs:out")?]
    );
    Ok(())
}

/// Default traversal stops at instance prims; `with_instance_proxies`
/// descends into their subtrees (spec 11.3.3).
#[test]
fn traversal_instance_proxies() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_shared.usda"))?;

    let mut default = Vec::new();
    stage.traverse(PrimPredicate::DEFAULT, |p| default.push(p.to_string()))?;
    assert!(default.contains(&"/A".to_string()));
    assert!(!default.contains(&"/A/Child".to_string()));

    let mut proxies = Vec::new();
    stage.traverse(PrimPredicate::DEFAULT.with_instance_proxies(true), |p| {
        proxies.push(p.to_string())
    })?;
    assert!(proxies.contains(&"/A/Child".to_string()));
    Ok(())
}

/// A property authored at an instance root is local to the instance and
/// does not leak onto the shared prototype root (spec 11.3.3): the prototype
/// composes only the referenced opinions.
#[test]
fn prototype_root_drops_instance_overrides() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_root_override.usda"))?;

    // The instance root keeps its local overrides.
    assert_eq!(
        stage
            .attribute("/A.shared")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(7.0))
    );
    assert_eq!(
        stage
            .attribute("/A.rootOnly")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(42.0))
    );

    // The shared prototype root drops them: the overridden property falls
    // back to the referenced value and the instance-only property is gone.
    let proto = stage.prim("/A").prototype()?.expect("A is an instance");
    assert_eq!(
        stage
            .attribute(proto.append_property("shared")?)
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(1.0))
    );
    assert_eq!(
        stage
            .attribute(proto.append_property("rootOnly")?)
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        None
    );
    Ok(())
}

/// A query on the deterministic synthetic prototype path before any instance
/// composes must not leave the prototype root empty: materialization keys off
/// the registry's mint signal, so it overwrites any stale empty index cached
/// at `/__Prototype_N` (spec 11.3.3).
#[test]
fn prototype_root_survives_early_query() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_root_override.usda"))?;

    // Touch the deterministic synthetic path before any instance registers;
    // this caches an empty index at /__Prototype_0.
    assert_eq!(
        stage
            .attribute("/__Prototype_0.shared")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        None
    );

    // Composing the instance mints and materializes /__Prototype_0.
    let proto = stage.prim("/A").prototype()?.expect("A is an instance");
    assert_eq!(proto.as_str(), "/__Prototype_0");

    // The prototype root now holds the real composition, not the stale empty
    // index that the guard would otherwise have mistaken for it.
    assert_eq!(
        stage
            .attribute(proto.append_property("shared")?)
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(1.0))
    );
    Ok(())
}

/// A query on a synthetic prototype *descendant* before any instance
/// registers caches a stale empty index and an identity redirection; minting
/// the prototype must evict both so the descendant resolves the shared
/// content rather than the stale synthetic composition (spec 11.3.3).
#[test]
fn prototype_descendant_survives_early_query() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_shared.usda"))?;

    // Touch the synthetic descendant before any instance registers; this
    // caches an empty index at /__Prototype_0/Child and memoizes its path as
    // an identity (non-redirected) mapping.
    assert_eq!(
        stage
            .attribute("/__Prototype_0/Child.size")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        None
    );

    // Composing the instance mints and materializes /__Prototype_0.
    let proto = stage.prim("/A").prototype()?.expect("A is an instance");
    assert_eq!(proto.as_str(), "/__Prototype_0");

    // The descendant now resolves the shared content: minting evicted the
    // stale empty index and identity redirection under /__Prototype_0, so the
    // query recomposes it in place from the materialized prototype root.
    assert_eq!(
        stage
            .attribute(proto.append_path("Child")?.append_property("size")?)
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(5.0))
    );
    Ok(())
}

/// An `AttributeQuery` built on a synthetic prototype descendant before any
/// instance registers must self-heal once the prototype materializes: the
/// empty source is not memoized, so a later read picks up the shared content
/// even though materialization is lazy and does not advance the cache revision
/// (spec 11.3.3).
#[test]
fn query_self_heals_prototype_materialization() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_shared.usda"))?;

    // Use the query before any instance registers: the synthetic path resolves
    // to nothing yet, and the empty source must not be cached.
    let q = stage.attribute_query("/__Prototype_0/Child.size");
    assert_eq!(q.get_at::<sdf::Value>(usd::TimeCode::new(0.0))?, None);

    // Composing an instance mints and materializes /__Prototype_0 — a lazy step
    // that does not bump the cache revision.
    let proto = stage.prim("/A").prototype()?.expect("A is an instance");
    assert_eq!(proto.as_str(), "/__Prototype_0");

    // The same query now resolves the shared content rather than the stale None.
    assert_eq!(q.get_at::<f64>(usd::TimeCode::new(0.0))?, Some(5.0));
    Ok(())
}

/// A property authored inside a variant selected on an instance is shared
/// content (the selection defines the prototype) and must resolve on the
/// materialized prototype root (spec 11.3.3).
#[test]
fn prototype_root_keeps_variant_opinions() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_variant_root.usda"))?;

    // The instance resolves the variant-authored property.
    assert_eq!(
        stage
            .attribute("/A.picked")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(5.0))
    );

    // So must the prototype root: the variant opinion lives at the instance's
    // own namespace (/A{v=x}), and rebasing must not move the spec lookup off
    // it.
    let proto = stage.prim("/A").prototype()?.expect("A is an instance");
    assert_eq!(
        stage
            .attribute(proto.append_property("picked")?)
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(5.0))
    );
    Ok(())
}

/// A relationship/connection target authored at a prototype's root resolves
/// into the prototype namespace on the materialized prototype root, and into
/// each instance's namespace on the instances (spec 11.3.3 + 12.4). Exercises
/// the root rebase (`rebase_root`) of the prototype-root map.
#[test]
fn prototype_root_target_remap() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_root_target.usda"))?;

    // On the instances the targets stay in each instance's own namespace.
    assert_eq!(
        rel_targets(&stage, &sdf::path("/A.myrel")?)?,
        vec![sdf::path("/A/Target")?]
    );
    assert_eq!(
        connections(&stage, &sdf::path("/A.inputs:in")?)?,
        vec![sdf::path("/A.outputs:out")?]
    );
    assert_eq!(
        rel_targets(&stage, &sdf::path("/B.myrel")?)?,
        vec![sdf::path("/B/Target")?]
    );

    // On the materialized prototype root they resolve into the prototype
    // namespace, not the canonical instance's.
    let proto = stage.prim("/A").prototype()?.expect("A is an instance");
    assert_eq!(
        rel_targets(&stage, &proto.append_property("myrel")?)?,
        vec![proto.append_path("Target")?]
    );
    assert_eq!(
        connections(&stage, &proto.append_property("inputs:in")?)?,
        vec![proto.append_property("outputs:out")?]
    );
    Ok(())
}

/// The resolved variant selection is part of the instancing key: instances
/// of one reference share a prototype iff their selections match (spec
/// 11.3.3). /A and /C select `x` and share; /B selects `y` and is distinct.
#[test]
fn variant_selection_keys_prototype() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_variant_distinct.usda"))?;

    let proto = |p: &str| -> Result<sdf::Path> {
        stage
            .prim(p)
            .prototype()?
            .ok_or_else(|| anyhow::anyhow!("{p} is not an instance"))
    };

    // Same selection (`x`) shares one prototype; the other selection (`y`)
    // gets a distinct one.
    assert_eq!(proto("/A")?, proto("/C")?);
    assert_ne!(proto("/A")?, proto("/B")?);

    // Each prototype resolves its own variant content.
    assert_eq!(
        stage
            .attribute("/A.picked")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(1.0))
    );
    assert_eq!(
        stage
            .attribute("/B.picked")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(2.0))
    );
    assert_eq!(
        stage
            .attribute("/C.picked")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(1.0))
    );
    Ok(())
}

/// A relationship authored inside an instance's variant translates into the
/// shared prototype namespace (spec 11.3.3): the relative target anchors at
/// the variant-qualified site (`/A{v=x}Geom`), and translation strips the
/// selection and re-anchors onto `/__Prototype_N`.
#[test]
fn variant_rel_in_prototype() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_variant_rel.usda"))?;
    let proto = stage.prim("/A").prototype()?.expect("A is an instance");

    let rig = proto.append_path("Rig")?;
    assert_eq!(
        stage.relationship(rig.append_property("wires")?).targets()?,
        vec![proto.append_path("Geom")?],
        "the variant-authored target lands in the prototype namespace"
    );
    assert!(
        stage.composition_errors().is_empty(),
        "no target drops: {:?}",
        stage.composition_errors()
    );
    Ok(())
}

/// The #129 matrix: a `prototypes` relationship inside content reached
/// through a payload keeps its target when a variant selection wraps that
/// payload — with and without instancing.
#[test]
fn rel_through_variant_payload() -> Result<()> {
    for variant in [false, true] {
        for instanceable in [false, true] {
            let dir = tempfile::tempdir()?;
            fs::write(
                dir.path().join("bundle.usda"),
                r#"#usda 1.0
( defaultPrim = "bundle" )
def Xform "bundle"
{
    def PointInstancer "instancer"
    {
        rel prototypes = [ </bundle/instancer/Proto1> ]

        def Xform "Proto1"
        {
        }
    }
}
"#,
            )?;
            let geometry = r#"def Xform "geometry" (
                prepend payload = @./bundle.usda@</bundle>
            )
            {
            }"#;
            let content = if variant {
                format!(
                    r#"#usda 1.0
( defaultPrim = "C" )
def Xform "C" (
    variants = {{
        string element = "v1"
    }}
    prepend variantSets = "element"
)
{{
    variantSet "element" = {{
        "v1" {{
            {geometry}
        }}
    }}
}}
"#
                )
            } else {
                format!(
                    r#"#usda 1.0
( defaultPrim = "C" )
def Xform "C"
{{
    {geometry}
}}
"#
                )
            };
            fs::write(dir.path().join("content.usda"), content)?;
            let inst = if instanceable {
                "instanceable = true\n        "
            } else {
                ""
            };
            fs::write(
                dir.path().join("outer.usda"),
                format!(
                    r#"#usda 1.0
( defaultPrim = "Root" )
def Xform "Root"
{{
    def Xform "Inst" (
        {inst}payload = @./content.usda@</C>
    )
    {{
    }}
}}
"#
                ),
            )?;

            let stage = Stage::builder()
                .load(InitialLoadSet::LoadAll)
                .open(dir.path().join("outer.usda").to_str().unwrap())?;
            let base = if instanceable {
                stage
                    .prim("/Root/Inst")
                    .prototype()?
                    .expect("instance resolves a prototype")
            } else {
                sdf::path("/Root/Inst")?
            };
            let instancer = base.append_path("geometry")?.append_path("instancer")?;
            assert_eq!(
                stage.relationship(instancer.append_property("prototypes")?).targets()?,
                vec![instancer.append_path("Proto1")?],
                "variant={variant} instanceable={instanceable}"
            );
            assert!(
                stage.composition_errors().is_empty(),
                "variant={variant} instanceable={instanceable}: {:?}",
                stage.composition_errors()
            );
        }
    }
    Ok(())
}

/// A prototype is populated when at least one of its instances is in the
/// population mask (spec 11.3.3): the synthetic `/__Prototype_N` namespace is
/// never named in a user mask, yet its shared content stays readable through
/// the masked instance.
#[test]
fn prototype_visible_under_mask() -> Result<()> {
    let stage = Stage::builder()
        .mask(StagePopulationMask::new(["/A"]))
        .open(&fixture_path("instancing_shared.usda"))?;

    // /A is in the mask and is an instance; its prototype is reachable.
    assert!(stage.prim("/A").is_instance()?);
    let proto = stage.prim("/A").prototype()?.expect("A is an instance");

    // The prototype's shared content is readable even though /__Prototype_N
    // is never named in the mask, because instance /A is.
    let child = proto.append_path("Child")?;
    assert!(stage.prim(child.clone()).is_valid()?);
    assert_eq!(
        stage
            .attribute(child.append_property("size")?)
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(5.0))
    );

    // A prototype with no masked instance stays hidden: /B (and so the
    // prototype it would otherwise expose) is outside the mask.
    assert!(!stage.mask().includes(&sdf::path("/B")?));
    Ok(())
}

/// A prototype's namespace can contain a nested instance: that nested prim
/// is itself an instance and mints its own prototype, and a prim beneath it
/// is an instance proxy of the nested prototype rather than plain prototype
/// content (spec 11.3.3).
#[test]
fn nested_instance_in_prototype() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_nested_in_prototype.usda"))?;

    let proto = stage.prim("/A").prototype()?.expect("A is an instance");

    // The proxy chain through the instance namespace resolves the nested
    // value (/A/Nested is itself an instance).
    assert!(stage.prim("/A/Nested").is_instance()?);
    assert_eq!(
        stage
            .attribute("/A/Nested/Leaf.v")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(3.0))
    );

    // Inside the prototype namespace, the nested prim is an instance and
    // mints its own, distinct prototype.
    let nested = stage.prim(proto.append_path("Nested")?);
    assert!(nested.is_instance()?);
    let nested_proto = nested.prototype()?.expect("nested prim is an instance");
    assert_ne!(nested_proto, proto);

    // A prim beneath the nested instance (inside the prototype namespace) is
    // an instance proxy of the nested prototype — previously this was
    // reported as plain prototype content.
    let leaf = stage.prim(proto.append_path("Nested")?.append_path("Leaf")?);
    assert!(leaf.is_instance_proxy()?);
    let in_proto = leaf.prim_in_prototype()?.expect("Leaf is an instance proxy");
    assert_eq!(in_proto.path(), &nested_proto.append_path("Leaf")?);
    Ok(())
}

/// An instance's descendant is an instance proxy that maps to a prim in the
/// shared prototype; the instance root and non-instanced prims are not
/// proxies (spec 11.3.3).
#[test]
fn instance_proxy_api() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_shared.usda"))?;

    assert!(!stage.prim("/A").is_instance_proxy()?);
    assert!(stage.prim("/A/Child").is_instance_proxy()?);

    let proto = stage.prim("/A").prototype()?.expect("A is an instance");
    let in_proto = stage
        .prim("/A/Child")
        .prim_in_prototype()?
        .expect("Child is an instance proxy");
    assert_eq!(in_proto.path(), &proto.append_path("Child")?);
    assert!(in_proto.is_in_prototype());

    // A prim in the prototype namespace is in a prototype, not a proxy.
    assert!(!in_proto.is_instance_proxy()?);

    // A nonexistent path under an instance is not a proxy, and has no prim in
    // the prototype.
    assert!(!stage.prim("/A/Missing").is_instance_proxy()?);
    assert!(stage.prim("/A/Missing").prim_in_prototype()?.is_none());
    Ok(())
}

/// Local opinions on an instance's descendants are discarded; values come
/// from the arc (spec 11.3.3).
#[test]
fn instance_descendant_ignores_local_override() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing.usda"))?;

    // Instance: the local `over Child { size = 999 }` is ignored.
    assert_eq!(
        stage
            .attribute("/Instance/Child.size")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(1.0))
    );

    // Non-instance: the local override wins as usual.
    assert_eq!(
        stage
            .attribute("/NonInstance/Child.size")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(999.0))
    );
    Ok(())
}

#[test]
fn instance_descendant_ignores_local_arc() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_local_arc.usda"))?;

    // The local `over Child (references = </Other/Child>)` carries its own
    // arc; both the local opinion and the node that arc spawns are
    // discarded, so the value comes from the prototype, not /Other/Child.
    assert_eq!(
        stage
            .attribute("/A/Child.v")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(1.0))
    );
    Ok(())
}

#[test]
fn model_hierarchy() -> Result<()> {
    let stage = open_stage_queries_fixture()?;

    assert_eq!(stage.prim("/World").kind()?.as_deref(), Some("assembly"));
    assert!(stage.prim("/World").is_model()?);
    assert!(stage.prim("/World").is_group()?);

    assert!(stage.prim("/World/Group").is_model()?);
    assert!(stage.prim("/World/Group").is_group()?);
    assert!(stage.prim("/World/Group/Component").is_model()?);
    assert!(stage.prim("/World/Group/Component").is_component()?);

    assert!(!stage.prim("/World/Group/Subcomponent").is_model()?);
    assert!(stage.prim("/World/Group/Subcomponent").is_subcomponent()?);

    assert_eq!(
        stage.prim("/World/InvalidComponentParent/Component").kind()?.as_deref(),
        Some("component")
    );
    assert!(!stage.prim("/World/InvalidComponentParent/Component").is_model()?);
    assert!(!stage.prim("/World/InvalidComponentParent/Component").is_component()?);
    Ok(())
}

#[test]
fn prim_status_bits() -> Result<()> {
    let stage = open_stage_queries_fixture()?;

    assert_eq!(
        stage.prim_status("/World/ClassParent/Child")?,
        PrimStatus::ACTIVE | PrimStatus::LOADED | PrimStatus::DEFINED | PrimStatus::ABSTRACT
    );

    assert_eq!(
        stage.prim_status("/World/Instance")?,
        PrimStatus::ACTIVE | PrimStatus::LOADED | PrimStatus::DEFINED | PrimStatus::INSTANCE
    );
    Ok(())
}

#[test]
fn traverse_default() -> Result<()> {
    let stage = open_stage_queries_fixture()?;

    let mut prims = Vec::new();
    stage.traverse(PrimPredicate::DEFAULT, |p| prims.push(p.as_str().to_string()))?;

    assert!(prims.contains(&"/World".to_string()));
    assert!(prims.contains(&"/World/ActiveParent".to_string()));
    assert!(prims.contains(&"/World/ActiveParent/Child".to_string()));
    assert!(prims.contains(&"/World/Instance".to_string()));

    assert!(!prims.contains(&"/World/InactiveParent".to_string()));
    assert!(!prims.contains(&"/World/InactiveParent/Child".to_string()));
    assert!(!prims.contains(&"/World/OverOnly".to_string()));
    assert!(!prims.contains(&"/World/OverParent".to_string()));
    assert!(!prims.contains(&"/World/OverParent/Child".to_string()));
    assert!(!prims.contains(&"/World/ClassParent".to_string()));
    assert!(!prims.contains(&"/World/ClassParent/Child".to_string()));
    Ok(())
}

#[test]
fn traverse_all_predicate() -> Result<()> {
    let stage = open_stage_queries_fixture()?;

    let mut prims = Vec::new();
    stage.traverse(PrimPredicate::ALL, |p| prims.push(p.as_str().to_string()))?;

    assert!(prims.contains(&"/World/InactiveParent".to_string()));
    assert!(prims.contains(&"/World/InactiveParent/Child".to_string()));
    assert!(prims.contains(&"/World/OverOnly".to_string()));
    assert!(prims.contains(&"/World/OverParent/Child".to_string()));
    assert!(prims.contains(&"/World/ClassParent".to_string()));
    assert!(prims.contains(&"/World/ClassParent/Child".to_string()));
    Ok(())
}

#[test]
fn custom_predicate() -> Result<()> {
    let stage = open_stage_queries_fixture()?;
    let predicate = PrimPredicate::new(PrimStatus::ACTIVE | PrimStatus::DEFINED, PrimStatus::empty());

    let mut prims = Vec::new();
    stage.traverse(predicate, |p| prims.push(p.as_str().to_string()))?;

    assert!(prims.contains(&"/World/ClassParent".to_string()));
    assert!(prims.contains(&"/World/ClassParent/Child".to_string()));
    assert!(!prims.contains(&"/World/InactiveParent".to_string()));
    assert!(!prims.contains(&"/World/OverOnly".to_string()));
    Ok(())
}

// --- Stage-tier authoring ---

fn in_memory_stage() -> Result<Stage> {
    Stage::builder().in_memory("anon.usda")
}

#[test]
fn author_default_prim() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.set_default_prim("World")?;
    stage.define_prim("/World")?.set_type_name("Xform")?;
    assert_eq!(stage.default_prim().as_deref(), Some("World"));
    Ok(())
}

#[test]
fn default_prim_rejects_path() -> Result<()> {
    let stage = in_memory_stage()?;
    let err = stage.set_default_prim("/World").unwrap_err();
    assert!(matches!(
        err,
        StageAuthoringError::Layer(sdf::AuthoringError::InvalidPath { .. })
    ));
    Ok(())
}

/// Modern OpenUSD allows nested `defaultPrim` values like `"World/Char"`.
/// The write contract must match what the read path will accept.
#[test]
fn default_prim_accepts_nested() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.set_default_prim("World/Mesh")?;
    assert_eq!(stage.default_prim().as_deref(), Some("World/Mesh"));
    Ok(())
}

/// A stage opened from a file is editable — every backend implements the
/// field-level write API — so authoring into its root layer succeeds.
#[test]
fn file_loaded_stage_is_editable() -> Result<()> {
    let stage = Stage::open(&composition_path("subLayer/sublayer_same_folder.usda"))?;
    stage.define_prim("/X")?;
    stage.set_default_prim("World")?;
    assert_eq!(stage.default_prim().as_deref(), Some("World"));
    Ok(())
}

#[test]
fn edit_target_out_of_range() -> Result<()> {
    let stage = in_memory_stage()?;
    let err = stage
        .set_edit_target(EditTarget::for_layer("missing-layer"))
        .unwrap_err();
    assert!(matches!(err, StageAuthoringError::LayerNotFound { .. }));
    Ok(())
}

/// A local edit target maps scene paths to themselves, so authoring is
/// unchanged from the bare-`layer_index` behavior.
#[test]
fn edit_target_local_is_identity() -> Result<()> {
    let target = EditTarget::for_layer("test");
    let path = sdf::path("/A/B")?;
    assert_eq!(target.map_to_spec_path(&path), Some(path));
    Ok(())
}

/// A variant edit target rewrites scene paths into the `{set=sel}`
/// namespace; paths outside the variant prim map to themselves.
#[test]
fn variant_target_maps_selection() -> Result<()> {
    let target = EditTarget::for_local_direct_variant("test", sdf::path("/Prim{set=sel}")?);
    assert_eq!(
        target.map_to_spec_path(&sdf::path("/Prim/child")?),
        Some(sdf::path("/Prim{set=sel}child")?)
    );
    assert_eq!(
        target.map_to_spec_path(&sdf::path("/Prim.attr")?),
        Some(sdf::path("/Prim{set=sel}.attr")?)
    );
    assert_eq!(
        target.map_to_spec_path(&sdf::path("/Other")?),
        Some(sdf::path("/Other")?)
    );
    Ok(())
}

/// A bad target is rejected at `edit_context`, leaving the current target
/// unchanged.
#[test]
fn edit_context_rejects_bad_target() -> Result<()> {
    let stage = in_memory_stage()?;
    let before = stage.edit_target().layer_identifier().to_string();
    let result = stage.edit_context(EditTarget::for_layer("missing-layer"));
    assert!(matches!(result, Err(StageAuthoringError::LayerNotFound { .. })));
    assert_eq!(stage.edit_target().layer_identifier(), before);
    Ok(())
}

/// Authoring the variant-owning prim itself through a variant target maps
/// to the bare variant selection, which is not a prim — it must error, not
/// panic.
#[test]
fn define_prim_at_variant_leaf_errors() -> Result<()> {
    let stage = in_memory_stage()?;
    let root = stage.edit_target().layer_identifier().to_string();
    stage.define_prim("/Prim")?;
    stage.set_edit_target(EditTarget::for_local_direct_variant(root, sdf::path("/Prim{set=sel}")?))?;
    // `/Prim` maps to the variant selection `/Prim{set=sel}`.
    assert!(matches!(
        stage.define_prim("/Prim"),
        Err(StageAuthoringError::Layer(sdf::AuthoringError::InvalidPath { .. }))
    ));
    Ok(())
}

/// In-memory stage with `/Prim` inheriting a local class `/_Class`, so the
/// inherit arc's source layer is the writable root.
fn inherit_stage() -> Result<Stage> {
    let stage = in_memory_stage()?;
    stage.define_prim("/_Class")?;
    stage.define_prim("/Prim")?.set_metadata(
        sdf::FieldKey::InheritPaths.as_str(),
        sdf::Value::PathListOp(sdf::PathListOp::prepended([sdf::path("/_Class")?])),
    )?;
    Ok(stage)
}

/// An arc target on a reference captures the referenced layer and maps composed
/// paths down into its namespace.
#[test]
fn edit_target_for_reference_node() -> Result<()> {
    let stage = Stage::open(&fixture_path("ref_external.usda"))?;
    let target = stage.edit_target_for_node(&sdf::path("/World/MyPrim")?, EditTargetArc::Reference)?;
    assert!(target.layer_identifier().ends_with("ref_target.usda"));
    assert_eq!(
        target.map_to_spec_path(&sdf::path("/World/MyPrim/Child")?),
        Some(sdf::path("/Source/Child")?)
    );
    Ok(())
}

/// An inherit arc target captures the class-owning layer and maps the composed
/// path to the class path.
#[test]
fn edit_target_for_inherit_node() -> Result<()> {
    let stage = inherit_stage()?;
    let target = stage.edit_target_for_node(&sdf::path("/Prim")?, EditTargetArc::Inherit)?;
    assert_eq!(target.layer_identifier(), stage.root_layer().identifier());
    assert_eq!(
        target.map_to_spec_path(&sdf::path("/Prim/Child")?),
        Some(sdf::path("/_Class/Child")?)
    );
    Ok(())
}

/// A prim with no arc of the requested kind has no arc target.
#[test]
fn edit_target_no_matching_arc() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/Prim")?;
    assert!(matches!(
        stage.edit_target_for_node(&sdf::path("/Prim")?, EditTargetArc::Reference),
        Err(StageAuthoringError::NoArcNode { .. })
    ));
    Ok(())
}

/// An arc target for a node whose site sits inside a variant maps composed
/// paths to the variant-qualified spec path (C++ `_ComposeMappingForNode`
/// composes the node-path qualifier onto the arc mapping), so authoring lands
/// where it composes.
#[test]
fn arc_target_in_variant() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        r#"#usda 1.0
def Scope "P" (
    variants = {
        string v = "x"
    }
    prepend variantSets = "v"
)
{
    variantSet "v" = {
        "x" {
            def Scope "_C"
            {
                double val = 1
            }
            def Scope "Child" (
                inherits = </P/_C>
            )
            {
            }
        }
    }
}
"#,
    )?;
    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(
        stage.attribute("/P/Child.val").get::<f64>()?,
        Some(1.0),
        "the in-variant class composes onto the inheritor"
    );

    let target = stage.edit_target_for_node(&sdf::path("/P/Child")?, EditTargetArc::Inherit)?;
    assert_eq!(
        target.map_to_spec_path(&sdf::path("/P/Child")?),
        Some(sdf::path("/P{v=x}_C")?),
        "the class spec lives inside the variant, so the target maps there"
    );
    assert_eq!(
        target.map_to_spec_path(&sdf::path("/Unrelated")?),
        Some(sdf::path("/Unrelated")?),
        "the class map's root identity survives the qualifier composition"
    );
    {
        let _ctx = stage.edit_context(target)?;
        stage
            .create_attribute("/P/Child.extra", "double")?
            .set(sdf::Value::Double(4.0))?;
    }
    assert_eq!(
        stage.attribute("/P/Child.extra").get::<f64>()?,
        Some(4.0),
        "the opinion authored at the variant-qualified class path composes back"
    );
    Ok(())
}

/// A class defined inside a variant and inherited through a RELATIVE path
/// behaves exactly like the absolute form: the class-arc map is selection-free
/// (both endpoints stripped), so a within-class relationship target translates
/// to the inheritor's image and the arc edit target maps to the qualified
/// class spec.
#[test]
fn variant_class_rel() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        r#"#usda 1.0
def Scope "P" (
    variants = {
        string v = "x"
    }
    prepend variantSets = "v"
)
{
    variantSet "v" = {
        "x" {
            def Scope "_C"
            {
                double val = 1
                rel self_rel = </P/_C>
            }
            def Scope "Child" (
                inherits = <../_C>
            )
            {
            }
        }
    }
}
"#,
    )?;
    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(
        stage.attribute("/P/Child.val").get::<f64>()?,
        Some(1.0),
        "the relatively-inherited in-variant class composes"
    );
    assert_eq!(
        stage.relationship("/P/Child.self_rel").targets()?,
        vec![sdf::path("/P/Child")?],
        "the within-class target translates to the inheritor's image"
    );
    assert!(
        stage.composition_errors().is_empty(),
        "no spurious target diagnostics: {:?}",
        stage.composition_errors()
    );

    let target = stage.edit_target_for_node(&sdf::path("/P/Child")?, EditTargetArc::Inherit)?;
    assert_eq!(
        target.map_to_spec_path(&sdf::path("/P/Child")?),
        Some(sdf::path("/P{v=x}_C")?),
        "the relative form maps like the absolute one"
    );
    Ok(())
}

/// A reference prim path carrying a variant selection is invalid (C++
/// `PcpErrorInvalidPrimPath`): the text parser rejects it at read time, but
/// binary input reaches composition unchecked, so composition drops the arc
/// and reports it.
#[test]
fn variant_ref_path_error() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/Target")?;
    stage.define_prim("/P")?.set_metadata(
        sdf::FieldKey::References.as_str(),
        sdf::Value::ReferenceListOp(sdf::ReferenceListOp::prepended([sdf::Reference {
            asset_path: String::new(),
            prim_path: sdf::path("/Target{v=a}")?,
            ..Default::default()
        }])),
    )?;
    assert!(stage.prim("/P").is_valid()?);
    assert!(
        stage
            .composition_errors()
            .iter()
            .any(|e| matches!(e, pcp::Error::InvalidPrimPath { .. })),
        "the selection-bearing prim path is rejected, got {:?}",
        stage.composition_errors()
    );
    Ok(())
}

/// Authoring through an inherit arc target lands the opinion at the class path
/// in the source layer, not at the composed path, and it composes back.
#[test]
fn edit_target_authors_into_class() -> Result<()> {
    let stage = inherit_stage()?;
    let target = stage.edit_target_for_node(&sdf::path("/Prim")?, EditTargetArc::Inherit)?;
    {
        let _ctx = stage.edit_context(target)?;
        stage.define_prim("/Prim/Child")?;
    }
    assert!(stage.prim("/Prim/Child").is_valid()?);
    assert!(stage.root_layer().data().has_spec(&sdf::path("/_Class/Child")?));
    assert!(!stage.root_layer().data().has_spec(&sdf::path("/Prim/Child")?));
    Ok(())
}

/// `map_to_spec_path` re-maps an embedded relationship target through the same
/// arc mapping (C++ `MapToSpecPath` step 2).
#[test]
fn map_spec_path_remaps_embedded_target() -> Result<()> {
    let stage = Stage::open(&fixture_path("ref_external.usda"))?;
    let target = stage.edit_target_for_node(&sdf::path("/World/MyPrim")?, EditTargetArc::Reference)?;
    assert_eq!(
        target.map_to_spec_path(&sdf::path("/World/MyPrim.rel[/World/MyPrim/Child]")?),
        Some(sdf::path("/Source.rel[/Source/Child]")?)
    );
    Ok(())
}

/// An embedded target outside the arc's co-domain rejects the whole path.
#[test]
fn map_spec_path_rejects_outside_target() -> Result<()> {
    let stage = Stage::open(&fixture_path("ref_external.usda"))?;
    let target = stage.edit_target_for_node(&sdf::path("/World/MyPrim")?, EditTargetArc::Reference)?;
    assert_eq!(
        target.map_to_spec_path(&sdf::path("/World/MyPrim.rel[/Elsewhere]")?),
        None
    );
    Ok(())
}

/// A local target's identity mapping leaves an embedded target untouched.
#[test]
fn map_spec_path_local_keeps_target() -> Result<()> {
    let target = EditTarget::for_layer("test");
    let path = sdf::path("/A.rel[/B].attr")?;
    assert_eq!(target.map_to_spec_path(&path), Some(path));
    Ok(())
}

/// A variant target maps an embedded target without leaving a variant
/// selection on the target path (target paths never carry selections).
#[test]
fn map_spec_path_variant_strips_target() -> Result<()> {
    let target = EditTarget::for_local_direct_variant("test", sdf::path("/Prim{set=sel}")?);
    assert_eq!(
        target.map_to_spec_path(&sdf::path("/Prim.rel[/Prim/T]")?),
        Some(sdf::path("/Prim{set=sel}.rel[/Prim/T]")?)
    );
    Ok(())
}

/// `edit_target_root` names the root layer with an identity mapping and equals
/// the default target installed at open.
#[test]
fn edit_target_root_matches_default() -> Result<()> {
    let stage = in_memory_stage()?;
    let target = stage.edit_target_root();
    assert_eq!(target.layer_identifier(), stage.root_layer().identifier());
    assert_eq!(target.map_to_spec_path(&sdf::path("/A/B")?), Some(sdf::path("/A/B")?));
    assert_eq!(stage.edit_target(), target);
    Ok(())
}

/// `edit_target_session` names the strongest session layer, or is `None` when
/// the stage has no session layer.
#[test]
fn edit_target_session() -> Result<()> {
    let stage = open_with_session()?;
    let target = stage.edit_target_session().expect("session layer");
    assert_eq!(
        target.layer_identifier(),
        stage.session_layer().expect("session layer").identifier()
    );

    assert!(in_memory_stage()?.edit_target_session().is_none());
    Ok(())
}

/// A stage-bound target is rejected by a stage with a different root layer
/// stack identity; a stage-agnostic `for_layer` target is still accepted, and a
/// cloned handle to the same stage accepts its sibling's bound target.
#[test]
fn layer_stack_id_distinguishes_stages() -> Result<()> {
    let stage_a = Stage::builder().in_memory("anon_a.usda")?;
    let stage_b = Stage::builder().in_memory("anon_b.usda")?;
    let bound = stage_a.edit_target_root();
    assert!(matches!(
        stage_b.set_edit_target(bound.clone()),
        Err(StageAuthoringError::EditTargetWrongStage)
    ));
    let root_b = stage_b.root_layer().identifier().to_string();
    assert!(stage_b.set_edit_target(EditTarget::for_layer(root_b)).is_ok());

    // A cloned handle shares the same `StageInner`, so it has the same root
    // layer stack identity and accepts the target built against its sibling.
    let stage_a_clone = stage_a.clone();
    assert!(stage_a_clone.set_edit_target(bound).is_ok());
    Ok(())
}

/// Anonymous root layers are unique per stage even when opened with the same
/// tag, so two such stages have distinct layer stack identities and reject each
/// other's edit targets.
#[test]
fn anonymous_stages_are_distinct() -> Result<()> {
    let stage_a = Stage::builder().in_memory("same.usda")?;
    let stage_b = Stage::builder().in_memory("same.usda")?;
    assert_ne!(stage_a.root_layer().identifier(), stage_b.root_layer().identifier());
    assert!(matches!(
        stage_b.set_edit_target(stage_a.edit_target_root()),
        Err(StageAuthoringError::EditTargetWrongStage)
    ));
    Ok(())
}

/// A target naming a layer is valid; one naming no layer is null and invalid.
#[test]
fn edit_target_null_and_valid() -> Result<()> {
    let valid = EditTarget::for_layer("layer");
    assert!(!valid.is_null());
    assert!(valid.is_valid());

    let null = EditTarget::for_layer("");
    assert!(null.is_null());
    assert!(!null.is_valid());
    Ok(())
}

/// `compose_over` layers a variant refinement onto a reference target, so a
/// stage write resolves through both into the nested spec path; a null target
/// composes to the other.
#[test]
fn edit_target_compose_over() -> Result<()> {
    let stage = Stage::open(&fixture_path("ref_external.usda"))?;
    let weaker = stage.edit_target_for_node(&sdf::path("/World/MyPrim")?, EditTargetArc::Reference)?;
    let stronger = EditTarget::for_local_direct_variant(weaker.layer_identifier(), sdf::path("/Source{set=sel}")?);

    let composed = stronger.compose_over(&weaker);
    assert_eq!(composed.layer_identifier(), weaker.layer_identifier());
    assert_eq!(
        composed.map_to_spec_path(&sdf::path("/World/MyPrim/Child")?),
        Some(sdf::path("/Source{set=sel}Child")?)
    );

    assert_eq!(EditTarget::for_layer("").compose_over(&weaker), weaker);
    Ok(())
}

/// Composing targets bound to stages with different layer stack identities
/// yields a null target, keeping the cross-stage guard intact.
#[test]
fn compose_over_cross_stack_null() -> Result<()> {
    let stage_a = Stage::builder().in_memory("anon_a.usda")?;
    let stage_b = Stage::builder().in_memory("anon_b.usda")?;
    let composed = stage_a.edit_target_root().compose_over(&stage_b.edit_target_root());
    assert!(composed.is_null());
    Ok(())
}

/// A stage-bound target is accepted by a freshly opened stage with the same
/// root layer, session, and resolver context: layer-stack identity is by
/// composition input, not by stage instance.
#[test]
fn layer_stack_id_same_inputs() -> Result<()> {
    let path = fixture_path("ref_external.usda");
    let stage_a = Stage::open(&path)?;
    let stage_b = Stage::open(&path)?;
    assert!(stage_b.set_edit_target(stage_a.edit_target_root()).is_ok());
    Ok(())
}

/// Authoring a time sample through an arc target with a non-identity layer
/// offset keys the sample at the inverse-mapped source time, so it reads back
/// at the original stage time once composition re-applies the offset.
#[test]
fn arc_target_retimes_time_sample() -> Result<()> {
    let stage = in_memory_stage()?;
    // `/Prim` references `/Source` with a (offset = 10) layer offset, so a
    // source-layer time `t` composes to stage time `t + 10`.
    stage.define_prim("/Source")?.create_attribute("x", "double")?;
    stage.define_prim("/Prim")?.set_metadata(
        sdf::FieldKey::References.as_str(),
        sdf::Value::ReferenceListOp(sdf::ReferenceListOp::prepended([sdf::Reference {
            prim_path: sdf::path("/Source")?,
            layer_offset: sdf::LayerOffset::new(10.0, 1.0),
            ..Default::default()
        }])),
    )?;

    let target = stage.edit_target_for_node(&sdf::path("/Prim")?, EditTargetArc::Reference)?;
    // Stage time 15 inverse-maps to source time 5.
    assert_eq!(target.map_to_spec_time(15.0), 5.0);
    {
        let _ctx = stage.edit_context(target)?;
        stage
            .attribute("/Prim.x")
            .set_at(sdf::Value::Double(42.0), usd::TimeCode::new(15.0))?;
    }

    // The sample landed at source time 5 in the root layer...
    let samples = stage.attribute("/Source.x").time_samples()?.expect("samples");
    assert_eq!(samples, vec![(5.0, sdf::Value::Double(42.0))]);
    // ...and reads back at stage time 15 through the offset reference.
    assert_eq!(
        stage.attribute("/Prim.x").get_at::<f64>(usd::TimeCode::new(15.0))?,
        Some(42.0)
    );
    Ok(())
}

/// `time_sample_times` retimes samples brought in through a non-identity arc
/// offset identically to the full `time_samples()` map and to `value_at`.
#[test]
fn time_sample_times_retimed() -> Result<()> {
    let stage = in_memory_stage()?;
    // `/Prim` references `/Source` with offset 10, scale 1: a source time `t`
    // composes to stage time `t + 10`.
    stage
        .define_prim("/Source")?
        .create_attribute("x", "double")?
        .set_at(sdf::Value::Double(1.0), usd::TimeCode::new(0.0))?
        .set_at(sdf::Value::Double(3.0), usd::TimeCode::new(10.0))?;
    stage.define_prim("/Prim")?.set_metadata(
        sdf::FieldKey::References.as_str(),
        sdf::Value::ReferenceListOp(sdf::ReferenceListOp::prepended([sdf::Reference {
            prim_path: sdf::path("/Source")?,
            layer_offset: sdf::LayerOffset::new(10.0, 1.0),
            ..Default::default()
        }])),
    )?;

    let attr = stage.attribute("/Prim.x");
    let map = attr.time_samples()?.expect("samples");
    let retimed_keys: Vec<f64> = map.iter().map(|(t, _)| *t).collect();
    assert_eq!(retimed_keys, vec![10.0, 20.0]);
    assert_eq!(attr.time_sample_times()?, retimed_keys);
    assert_eq!(attr.num_time_samples()?, 2);
    // The retimed times read back as live samples through the offset arc.
    assert_eq!(attr.get_at::<f64>(usd::TimeCode::new(10.0))?, Some(1.0));
    assert_eq!(attr.get_at::<f64>(usd::TimeCode::new(20.0))?, Some(3.0));
    Ok(())
}

/// A prim outside the population mask reports no sample times and a zero count,
/// matching the masked behavior of value resolution.
#[test]
fn time_sample_times_masked() -> Result<()> {
    let stage = Stage::builder()
        .mask(StagePopulationMask::new(["/B"]))
        .in_memory("anon.usda")?;
    stage
        .define_prim("/A")?
        .create_attribute("x", "double")?
        .set_at(sdf::Value::Double(1.0), usd::TimeCode::new(0.0))?
        .set_at(sdf::Value::Double(3.0), usd::TimeCode::new(10.0))?;
    stage.define_prim("/B")?.create_attribute("y", "double")?;

    let masked = stage.attribute("/A.x");
    assert!(masked.time_sample_times()?.is_empty());
    assert_eq!(masked.num_time_samples()?, 0);
    Ok(())
}

/// An arc target on an instance-proxy path redirects to the shared prototype:
/// it finds the arc authored inside the prototype and maps in the prototype's
/// namespace, so a prototype path remaps to the arc source while the proxy
/// path does not reach it.
#[test]
fn edit_target_for_instance_proxy() -> Result<()> {
    let stage = Stage::open(&fixture_path("instancing_nested_reference.usda"))?;
    let proxy = sdf::path("/World/Inst/OtherChild")?;
    let target = stage.edit_target_for_node(&proxy, EditTargetArc::Reference)?;
    assert!(target.layer_identifier().ends_with("instancing_nested_reference.usda"));

    // The prototype-namespace path remaps to the shared arc source; the proxy
    // path falls outside the mapping's domain, so it does not reach that source.
    let proto = stage
        .prim("/World/Inst")
        .prototype()?
        .expect("instance has a prototype");
    let proto_child = proto.append_path(sdf::path("OtherChild")?)?;
    let source = target.map_to_spec_path(&proto_child).expect("prototype path maps");
    assert_ne!(source, proto_child, "prototype path remaps to the arc source");
    assert_ne!(target.map_to_spec_path(&proxy), Some(source));
    Ok(())
}

// --- Value clips (spec 12.3.4) ---

fn clip_asset(name: &str) -> String {
    format!(
        "{}/vendor/core-spec-supplemental-release_dec2025/value_resolution/tests/assets/{name}/entry.usd",
        manifest_dir()
    )
}

fn value_f64(stage: &Stage, attr: &str, time: f64) -> Option<f64> {
    match stage
        .attribute(attr)
        .get_at::<sdf::Value>(usd::TimeCode::new(time))
        .expect("value_at")
    {
        Some(sdf::Value::Float(v)) => Some(v as f64),
        Some(sdf::Value::Double(v)) => Some(v),
        Some(sdf::Value::Int64(v)) => Some(v as f64),
        _ => None,
    }
}

fn write_clip_scene(dir: &std::path::Path, root_body: &str, manifest_body: &str, clip_body: &str) -> Result<String> {
    fs::write(dir.join("root.usda"), root_body)?;
    fs::write(dir.join("manifest.usda"), manifest_body)?;
    fs::write(dir.join("clip.usda"), clip_body)?;
    Ok(dir.join("root.usda").to_string_lossy().into_owned())
}

/// Value-clip sample times surface through the introspection accessors (spec
/// 12.3.4): the template set schedules clip.1 at stage 1 and clip.2 at stage 2,
/// so `/Model.size` — which authors no local `timeSamples` — reports those.
#[test]
fn clip_time_samples_gathered() -> Result<()> {
    let stage = Stage::open(&fixture_path("clip_template/root.usda"))?;
    let size = stage.attribute("/Model.size");
    assert_eq!(size.time_sample_times()?, vec![1.0, 2.0]);
    assert_eq!(size.num_time_samples()?, 2);
    assert!(size.value_might_be_time_varying()?);
    assert_eq!(size.time_samples_in_interval(1.5..=3.0)?, vec![2.0]);
    Ok(())
}

/// With `interpolateMissingClipValues`, the activation boundary of a declared
/// but empty middle clip is a genuine value-change point — the active clip
/// switches and the held value gives way to the cross-clip interpolation — so
/// `time_sample_times` reports it, agreeing with `value_at` (spec 12.3.4.7).
#[test]
fn clip_interpolate_missing_boundary_is_a_sample() -> Result<()> {
    let stage = Stage::open(&fixture_path("clip_missing_interp/root.usda"))?;
    let size = stage.attribute("/Model.size");
    // clipA@0, the empty-clip boundary at 10, and clipC@20.
    assert_eq!(size.time_sample_times()?, vec![0.0, 10.0, 20.0]);
    // The reported boundary at 10 is real: the value jumps there (clipA holds
    // 0 up to the switch, then the interpolated gap begins at 50).
    assert_eq!(value_f64(&stage, "/Model.size", 9.999), Some(0.0));
    assert_eq!(value_f64(&stage, "/Model.size", 10.0), Some(50.0));
    Ok(())
}

/// A clip overrides a referenced attribute that has no local opinion: the
/// clip's samples win over the reference's (spec 12.3.4.5).
#[test]
fn clip_basic_overrides_reference() -> Result<()> {
    let stage = Stage::open(&clip_asset("clip_basic"))?;
    // clip.usd authors size = stage time; the reference authors negatives.
    assert_eq!(value_f64(&stage, "/Model.size", 10.0), Some(10.0));
    assert_eq!(value_f64(&stage, "/Model.size", 7.0), Some(7.0)); // interpolated
    Ok(())
}

/// An attribute resolved through value clips routes the query through the full
/// resolution path (clips are time-dependent), so the query reproduces `get_at`
/// at every time code.
#[test]
fn query_clip_fallback() -> Result<()> {
    let stage = Stage::open(&clip_asset("clip_basic"))?;
    let attr = stage.attribute("/Model.size");
    let q = attr.query();
    for t in [0.0, 7.0, 10.0, 15.0] {
        assert_eq!(
            q.get_at::<sdf::Value>(usd::TimeCode::new(t))?,
            attr.get_at(usd::TimeCode::new(t))?
        );
    }
    assert_eq!(q.get_at::<f32>(usd::TimeCode::new(7.0))?, Some(7.0));
    Ok(())
}

/// Local time samples beat clips; a clip beats a referenced attribute that
/// has no local opinion (spec 12.3.4.5).
#[test]
fn clip_strength_local_vs_reference() -> Result<()> {
    let stage = Stage::open(&clip_asset("clip_advanced"))?;
    // `local` has a local opinion → local wins (10, not the clip's -10).
    assert_eq!(value_f64(&stage, "/Model.local", 10.0), Some(10.0));
    // `ref` has no local opinion → the clip wins (-10, not the reference's 10).
    assert_eq!(value_f64(&stage, "/Model.ref", 10.0), Some(-10.0));
    Ok(())
}

#[test]
fn clip_local_default_wins() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = write_clip_scene(
        dir.path(),
        r#"#usda 1.0
def "Model" (
    clips = {
        dictionary default = {
            asset[] assetPaths = [@./clip.usda@]
            asset manifestAssetPath = @./manifest.usda@
            string primPath = "/Model"
            double2[] active = [(0, 0)]
        }
    }
)
{
    float localDefault = 3
}
"#,
        r#"#usda 1.0
def "Model"
{
    float localDefault
}
"#,
        r#"#usda 1.0
def "Model"
{
    float localDefault.timeSamples = {
        0: 7
    }
}
"#,
    )?;

    let stage = Stage::open(&root)?;
    assert_eq!(value_f64(&stage, "/Model.localDefault", 0.0), Some(3.0));
    Ok(())
}

/// A local `default` shadows a value clip in introspection just as it does in
/// value resolution (spec 12.3.4.5): the value is the constant default, so the
/// attribute reports no sample times and is not time-varying — the clip's
/// schedule must not leak through.
#[test]
fn clip_local_default_no_time_samples() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = write_clip_scene(
        dir.path(),
        r#"#usda 1.0
def "Model" (
    clips = {
        dictionary default = {
            asset[] assetPaths = [@./clip.usda@]
            asset manifestAssetPath = @./manifest.usda@
            string primPath = "/Model"
            double2[] active = [(0, 0)]
        }
    }
)
{
    float localDefault = 3
}
"#,
        r#"#usda 1.0
def "Model"
{
    float localDefault
}
"#,
        r#"#usda 1.0
def "Model"
{
    float localDefault.timeSamples = {
        0: 7,
        5: 9,
    }
}
"#,
    )?;

    let stage = Stage::open(&root)?;
    let attr = stage.attribute("/Model.localDefault");
    assert_eq!(value_f64(&stage, "/Model.localDefault", 0.0), Some(3.0));
    assert!(attr.time_sample_times()?.is_empty());
    assert_eq!(attr.num_time_samples()?, 0);
    assert!(!attr.value_might_be_time_varying()?);
    Ok(())
}

/// A constant local `default` shadows a multi-clip set: `value_at` is the
/// constant default at every time, so `value_might_be_time_varying` must be
/// false even though the shadowed clip set switches active clips. The clip
/// schedule is only consulted once clips are the winning source.
#[test]
fn clip_shadowed_default_not_varying() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = write_clip_scene(
        dir.path(),
        r#"#usda 1.0
def "Model" (
    clips = {
        dictionary default = {
            asset[] assetPaths = [@./clip.usda@, @./clip.usda@]
            string primPath = "/Model"
            double2[] active = [(0, 0), (10, 1)]
        }
    }
)
{
    float size = 3
}
"#,
        "#usda 1.0\ndef \"Model\"\n{\n    float size\n}\n",
        "#usda 1.0\ndef \"Model\"\n{\n    float size.timeSamples = { 0: 7, 5: 9 }\n}\n",
    )?;

    let stage = Stage::open(&root)?;
    let attr = stage.attribute("/Model.size");
    assert_eq!(value_f64(&stage, "/Model.size", 0.0), Some(3.0));
    assert_eq!(value_f64(&stage, "/Model.size", 12.0), Some(3.0));
    assert!(attr.time_sample_times()?.is_empty());
    assert!(!attr.value_might_be_time_varying()?);
    Ok(())
}

/// A manifest-less clip set sources only attributes its clips actually author.
/// `size` (authored by the clip) reports the clip sample times, while `other`
/// (not authored) reports none rather than the clip's activation schedule —
/// matching the fall-through in value resolution.
#[test]
fn clip_manifestless_unauthored_no_times() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("clip.usda"),
        "#usda 1.0\ndef \"Model\"\n{\n    float size.timeSamples = { 0: 10, 4: 20 }\n}\n",
    )?;
    fs::write(
        dir.path().join("root.usda"),
        r#"#usda 1.0
def "Model" (
    clips = {
        dictionary default = {
            asset[] assetPaths = [@./clip.usda@]
            string primPath = "/Model"
            double2[] active = [(0, 0)]
        }
    }
)
{
    float size
    float other
}
"#,
    )?;

    let stage = Stage::open(&dir.path().join("root.usda").to_string_lossy())?;
    // The clip authors `size`, so its sample times surface.
    assert_eq!(stage.attribute("/Model.size").time_sample_times()?, vec![0.0, 4.0]);
    // The clip never authors `other`: no spurious clip-boundary sample times.
    let other = stage.attribute("/Model.other");
    assert!(other.time_sample_times()?.is_empty());
    assert_eq!(other.num_time_samples()?, 0);
    Ok(())
}

/// A manifest-less set participates only via the clips its `active` schedule
/// names. Here `active` selects only the empty clip while an unscheduled clip
/// authors samples, so `value_at` falls through to the referenced `timeSamples`
/// — and introspection must surface those arc times, not the empty clip's none.
#[test]
fn clip_manifestless_unscheduled_clip() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("sampled.usda"),
        "#usda 1.0\ndef \"Model\"\n{\n    float size.timeSamples = { 0: 1, 4: 2 }\n}\n",
    )?;
    fs::write(dir.path().join("empty.usda"), "#usda 1.0\ndef \"Model\"\n{\n}\n")?;
    fs::write(
        dir.path().join("ref.usda"),
        "#usda 1.0\n(\n    defaultPrim = \"Model\"\n)\ndef \"Model\"\n{\n    float size.timeSamples = { 5: 50, 8: 80 }\n}\n",
    )?;
    fs::write(
        dir.path().join("root.usda"),
        r#"#usda 1.0
(
    defaultPrim = "Model"
)
def "Model" (
    references = @./ref.usda@
    clips = {
        dictionary default = {
            asset[] assetPaths = [@./sampled.usda@, @./empty.usda@]
            string primPath = "/Model"
            double2[] active = [(0, 1)]
        }
    }
)
{
    float size
}
"#,
    )?;

    let stage = Stage::open(&dir.path().join("root.usda").to_string_lossy())?;
    let size = stage.attribute("/Model.size");
    // The scheduled clip (index 1) is empty, so the set does not source `size`;
    // introspection reports the reference arc's times, agreeing with value_at.
    assert_eq!(size.time_sample_times()?, vec![5.0, 8.0]);
    assert_eq!(value_f64(&stage, "/Model.size", 5.0), Some(50.0));
    assert_eq!(value_f64(&stage, "/Model.size", 8.0), Some(80.0));
    Ok(())
}

/// A manifest-less clip set whose later clip authors nothing still reports that
/// clip's activation boundary as a sample time, because the value changes there:
/// clip0 holds its lone sample back over stage `[0, 10)`, then clip1 (empty)
/// falls through to the reference at `t >= 10`. The reported boundary at 10 is
/// the sole `value_at` change point, so introspection agrees with resolution —
/// no under-reporting (the missed switch) and no arc bleed-through (the
/// reference's `5.0`, a time where the held value never changes).
#[test]
fn clip_manifestless_held_boundary() -> Result<()> {
    let stage = Stage::open(&fixture_path("clip_manifestless_held/root.usda"))?;
    let size = stage.attribute("/Model.size");
    assert_eq!(size.time_sample_times()?, vec![10.0]);
    assert_eq!(size.num_time_samples()?, 1);
    // Two active clips can each serve a different value, so the attribute is
    // time-varying even though the discrete sample count is one.
    assert!(size.value_might_be_time_varying()?);
    // value_at agrees: clip0 holds 50 backward, clip1 falls through to the
    // reference's 999 from the switch at 10.
    assert_eq!(value_f64(&stage, "/Model.size", 5.0), Some(50.0));
    assert_eq!(value_f64(&stage, "/Model.size", 9.999), Some(50.0));
    assert_eq!(value_f64(&stage, "/Model.size", 10.0), Some(999.0));
    Ok(())
}

/// A manifest-less clip set with an empty interior window reports that window's
/// boundary too: clip0 and clip2 author samples, the middle clip authors
/// nothing, and `value_at` changes at each boundary, so all are reported.
#[test]
fn clip_manifestless_interior_empty() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("clip0.usda"),
        "#usda 1.0\ndef \"Model\"\n{\n    float size.timeSamples = { 0: 0, 2: 2 }\n}\n",
    )?;
    fs::write(dir.path().join("clip1.usda"), "#usda 1.0\ndef \"Model\"\n{\n}\n")?;
    fs::write(
        dir.path().join("clip2.usda"),
        "#usda 1.0\ndef \"Model\"\n{\n    float size.timeSamples = { 20: 20, 22: 22 }\n}\n",
    )?;
    fs::write(
        dir.path().join("root.usda"),
        r#"#usda 1.0
(
    defaultPrim = "Model"
)
def "Model" (
    clips = {
        dictionary default = {
            asset[] assetPaths = [@./clip0.usda@, @./clip1.usda@, @./clip2.usda@]
            string primPath = "/Model"
            double2[] active = [(0, 0), (10, 1), (20, 2)]
        }
    }
)
{
    float size
}
"#,
    )?;
    let stage = Stage::open(&dir.path().join("root.usda").to_string_lossy())?;
    let size = stage.attribute("/Model.size");
    // clip0's samples, the empty middle window's boundary at 10, clip2's samples.
    assert_eq!(size.time_sample_times()?, vec![0.0, 2.0, 10.0, 20.0, 22.0]);
    // value_at changes at every reported time: held 2 up to the empty window,
    // None across it, clip2's samples from 20.
    assert_eq!(value_f64(&stage, "/Model.size", 5.0), Some(2.0));
    assert_eq!(value_f64(&stage, "/Model.size", 9.999), Some(2.0));
    assert_eq!(value_f64(&stage, "/Model.size", 10.0), None);
    assert_eq!(value_f64(&stage, "/Model.size", 20.0), Some(20.0));
    Ok(())
}

/// Local `timeSamples` shadow a value clip in introspection just as in value
/// resolution (spec 12.3.4.5): `time_sample_times` reports the local sample
/// times, not the clip's, and `value_at` reads the local samples — the two
/// agree on which source wins.
#[test]
fn clip_local_timesamples_shadow_clips() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = write_clip_scene(
        dir.path(),
        r#"#usda 1.0
def "Model" (
    clips = {
        dictionary default = {
            asset[] assetPaths = [@./clip.usda@]
            asset manifestAssetPath = @./manifest.usda@
            string primPath = "/Model"
            double2[] active = [(0, 0)]
        }
    }
)
{
    float size.timeSamples = {
        0: 1,
        10: 3,
    }
}
"#,
        "#usda 1.0\ndef \"Model\"\n{\n    float size\n}\n",
        "#usda 1.0\ndef \"Model\"\n{\n    float size.timeSamples = { 1: 100, 5: 500 }\n}\n",
    )?;

    let stage = Stage::open(&root)?;
    let size = stage.attribute("/Model.size");
    // Local timeSamples win: their times are reported, not the clip's {1, 5}.
    assert_eq!(size.time_sample_times()?, vec![0.0, 10.0]);
    assert_eq!(size.num_time_samples()?, 2);
    // value_at agrees: the local samples drive the value (1 and 3 at their
    // times), not the clip's 100 / 500 — so introspection and resolution pick
    // the same source.
    assert_eq!(value_f64(&stage, "/Model.size", 0.0), Some(1.0));
    assert_eq!(value_f64(&stage, "/Model.size", 10.0), Some(3.0));
    Ok(())
}

#[test]
fn clip_anchor_sublayer() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::create_dir(dir.path().join("sub"))?;
    fs::write(
        dir.path().join("root.usda"),
        r#"#usda 1.0
(
    subLayers = [@./sub/weak.usda@]
)

over "Model" (
    clips = {
        dictionary default = {
            double2[] times = [(0, 0)]
        }
    }
)
{
}
"#,
    )?;
    fs::write(
        dir.path().join("sub").join("weak.usda"),
        r#"#usda 1.0
def "Model" (
    clips = {
        dictionary default = {
            asset[] assetPaths = [@./clip.usda@]
            asset manifestAssetPath = @./manifest.usda@
            string primPath = "/Model"
            double2[] active = [(0, 0)]
        }
    }
)
{
    float size
}
"#,
    )?;
    fs::write(
        dir.path().join("sub").join("manifest.usda"),
        r#"#usda 1.0
def "Model"
{
    float size
}
"#,
    )?;
    fs::write(
        dir.path().join("sub").join("clip.usda"),
        r#"#usda 1.0
def "Model"
{
    float size.timeSamples = {
        0: 7
    }
}
"#,
    )?;

    let stage = Stage::open(dir.path().join("root.usda").to_string_lossy().as_ref())?;
    assert_eq!(value_f64(&stage, "/Model.size", 0.0), Some(7.0));
    Ok(())
}

#[test]
fn clip_anchor_reference() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::create_dir(dir.path().join("asset"))?;
    fs::write(
        dir.path().join("root.usda"),
        r#"#usda 1.0
def "ShotModel" (
    references = @./asset/model.usda@</Model>
)
{
}
"#,
    )?;
    fs::write(
        dir.path().join("asset").join("model.usda"),
        r#"#usda 1.0
def "Model" (
    clips = {
        dictionary default = {
            asset[] assetPaths = [@./clip.usda@]
            asset manifestAssetPath = @./manifest.usda@
            string primPath = "/Model"
            double2[] active = [(0, 0)]
        }
    }
)
{
    float size
}
"#,
    )?;
    fs::write(
        dir.path().join("asset").join("manifest.usda"),
        r#"#usda 1.0
def "Model"
{
    float size
}
"#,
    )?;
    fs::write(
        dir.path().join("asset").join("clip.usda"),
        r#"#usda 1.0
def "Model"
{
    float size.timeSamples = {
        0: 7
    }
}
"#,
    )?;

    let stage = Stage::open(dir.path().join("root.usda").to_string_lossy().as_ref())?;
    assert_eq!(value_f64(&stage, "/ShotModel.size", 0.0), Some(7.0));
    Ok(())
}

#[test]
fn clip_metadata_retimed() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::write(
        dir.path().join("root.usda"),
        r#"#usda 1.0
(
    subLayers = [@./weak.usda@ (offset = 10)]
)
"#,
    )?;
    fs::write(
        dir.path().join("weak.usda"),
        r#"#usda 1.0
def "Model" (
    clips = {
        dictionary default = {
            asset[] assetPaths = [@./clip.usda@]
            asset manifestAssetPath = @./manifest.usda@
            string primPath = "/Model"
            double2[] active = [(0, 0)]
            double2[] times = [(0, 0), (5, 5)]
        }
    }
)
{
    float size
}
"#,
    )?;
    fs::write(
        dir.path().join("manifest.usda"),
        r#"#usda 1.0
def "Model"
{
    float size
}
"#,
    )?;
    fs::write(
        dir.path().join("clip.usda"),
        r#"#usda 1.0
def "Model"
{
    float size.timeSamples = {
        0: 0,
        5: 5
    }
}
"#,
    )?;

    let stage = Stage::open(dir.path().join("root.usda").to_string_lossy().as_ref())?;
    assert_eq!(value_f64(&stage, "/Model.size", 10.0), Some(0.0));
    assert_eq!(value_f64(&stage, "/Model.size", 15.0), Some(5.0));
    Ok(())
}

#[test]
fn clip_initial_jump() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = write_clip_scene(
        dir.path(),
        r#"#usda 1.0
def "Model" (
    clips = {
        dictionary default = {
            asset[] assetPaths = [@./clip.usda@]
            asset manifestAssetPath = @./manifest.usda@
            string primPath = "/Model"
            double2[] active = [(0, 0)]
            double2[] times = [(0, 0), (0, 25), (10, 35)]
        }
    }
)
{
    float size
}
"#,
        r#"#usda 1.0
def "Model"
{
    float size
}
"#,
        r#"#usda 1.0
def "Model"
{
    float size.timeSamples = {
        0: 0.0,
        25: 25.0,
        35: 35.0
    }
}
"#,
    )?;

    let stage = Stage::open(&root)?;
    assert_eq!(value_f64(&stage, "/Model.size", 0.0), Some(25.0));
    assert_eq!(value_f64(&stage, "/Model.size", 5.0), Some(30.0));
    Ok(())
}

/// Active-clip selection switches clips by stage time and maps stage time
/// to clip time through the timing curve (spec 12.3.4.3, 12.3.4.4).
#[test]
fn clip_multi_active_switch() -> Result<()> {
    let stage = Stage::open(&clip_asset("clip_multi"))?;
    // Stage 10 → clip1 at clip time 10 → -10.
    assert_eq!(value_f64(&stage, "/Model_1.size", 10.0), Some(-10.0));
    // Stage 22 → clip2 active, clip time 6 → -26.
    assert_eq!(value_f64(&stage, "/Model_1.size", 22.0), Some(-26.0));
    Ok(())
}

/// Clip set strength falls back to name order when `clipSets` is unauthored
/// (spec 12.3.4.1): `clip_a` outranks `clip_b` regardless of text order.
#[test]
fn clip_sets_default_order() -> Result<()> {
    let stage = Stage::open(&clip_asset("clip_sets"))?;
    // clip_a (primPath /ClipA) wins: attr at stage 0 → 10, not 100.
    assert_eq!(value_f64(&stage, "/DefaultOrderTest.attr", 0.0), Some(10.0));
    assert_eq!(value_f64(&stage, "/DefaultOrderTest.attr", 1.0), Some(20.0));
    Ok(())
}

/// The timing curve maps stage time to clip time, including a jump
/// discontinuity at stage 20 (spec 12.3.4.4, 12.3.4.8).
#[test]
fn clip_timings_curve() -> Result<()> {
    let stage = Stage::open(&clip_asset("clip_timings"))?;
    assert_eq!(value_f64(&stage, "/Model.size", 0.0), Some(10.0));
    assert_eq!(value_f64(&stage, "/Model.size", 10.0), Some(15.0));
    assert_eq!(value_f64(&stage, "/Model.size", 20.0), Some(10.0)); // jump → "at and after"
    assert_eq!(value_f64(&stage, "/Model.size", 30.0), Some(15.0));
    Ok(())
}

// --- Sublayer mutation / layer-graph construction ---

/// A weak sublayer carrying one opinion, for the sublayer-mutation tests.
fn opinion_layer(identifier: &str, value: f64) -> Result<sdf::Layer> {
    let mut layer = sdf::Layer::new_anonymous(identifier);
    layer.edit(|e| {
        sdf::AttributeSpec::new(e.data_mut(), "/A.x", "double", sdf::Variability::Varying, true)?
            .set_default(sdf::Value::Double(value));
        Ok(())
    })?;
    Ok(layer)
}

/// The parent layer's authored `subLayers` asset paths.
fn authored_sublayers(stage: &Stage) -> Vec<String> {
    let root = stage.root_layer();
    root.pseudo_root().and_then(|pr| pr.sublayers()).unwrap_or_default()
}

/// `insert_layer` both composes the new layer's opinion and authors the
/// parent's `subLayers` metadata, so the edit persists on save.
#[test]
fn insert_layer_authors_metadata() -> Result<()> {
    let stage = Stage::builder().in_memory("root.usda")?;
    let root_id = stage.root_layer().identifier().to_string();

    let weak = opinion_layer("weak.usda", 5.0)?;
    let weak_id = weak.identifier().to_string();
    stage.insert_layer(&root_id, 0, weak, sdf::LayerOffset::IDENTITY)?;

    assert_eq!(
        stage.attribute("/A.x").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(5.0))
    );
    assert_eq!(authored_sublayers(&stage), vec![weak_id]);
    Ok(())
}

/// `remove_layer` drops both the composed opinion and the parent's
/// authored `subLayers` entry.
#[test]
fn remove_layer_clears_metadata() -> Result<()> {
    let stage = Stage::builder().in_memory("root.usda")?;
    let root_id = stage.root_layer().identifier().to_string();
    let weak = opinion_layer("weak.usda", 5.0)?;
    let weak_id = weak.identifier().to_string();
    stage.insert_layer(&root_id, 0, weak, sdf::LayerOffset::IDENTITY)?;
    assert_eq!(
        stage.attribute("/A.x").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        Some(sdf::Value::Double(5.0))
    );

    assert!(stage.remove_layer(&root_id, &weak_id)?, "a sublayer was removed");

    assert_eq!(
        stage.attribute("/A.x").get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        None,
        "the removed sublayer's opinion is gone"
    );
    assert!(
        authored_sublayers(&stage).is_empty(),
        "the removed sublayer's subLayers entry is gone"
    );
    Ok(())
}

/// Inserting a sublayer under a file-loaded (and thus editable) parent
/// succeeds and adds exactly one node to the graph.
#[test]
fn insert_layer_into_file_loaded_parent() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(&root, "#usda 1.0\n")?;
    let stage = Stage::open(root.to_str().expect("utf-8 temp path"))?;
    let root_id = stage.root_layer().identifier().to_string();
    let before = stage.layer_count();

    stage.insert_layer(
        &root_id,
        0,
        opinion_layer("weak.usda", 5.0)?,
        sdf::LayerOffset::IDENTITY,
    )?;

    assert_eq!(
        stage.layer_count(),
        before + 1,
        "the inserted sublayer adds exactly one node"
    );
    Ok(())
}

/// Inserting under a parent that is not in the stage fails with
/// `LayerNotFound` and adds no node.
#[test]
fn insert_layer_missing_parent() -> Result<()> {
    let stage = Stage::builder().in_memory("root.usda")?;

    let err = stage
        .insert_layer(
            "nope.usda",
            0,
            opinion_layer("weak.usda", 5.0)?,
            sdf::LayerOffset::IDENTITY,
        )
        .unwrap_err();

    assert!(matches!(err, StageAuthoringError::LayerNotFound { .. }));
    assert_eq!(stage.layer_count(), 1, "no node added for a missing parent");
    Ok(())
}

/// A layer reached through both the session and the root collections is
/// collapsed to one node, keeping the layer count, id set, and root/session
/// split consistent. The session sublayers `shared.usda` and the root
/// sublayers it too, so the four collected layers fold to three nodes.
#[test]
fn from_layers_dedups_order() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::write(dir.path().join("shared.usda"), "#usda 1.0\n")?;
    fs::write(
        dir.path().join("session.usda"),
        "#usda 1.0\n(\n    subLayers = [@shared.usda@]\n)\n",
    )?;
    let root = dir.path().join("root.usda");
    fs::write(&root, "#usda 1.0\n(\n    subLayers = [@shared.usda@]\n)\n")?;

    let stage = Stage::builder()
        .session_layer(dir.path().join("session.usda").to_string_lossy().into_owned())
        .open(root.to_str().expect("utf-8 temp path"))?;

    assert_eq!(
        stage.layer_count(),
        3,
        "the duplicate shared layer collapses to one node"
    );
    let ids = stage.layer_identifiers();
    let unique: std::collections::HashSet<_> = ids.iter().collect();
    assert_eq!(ids.len(), unique.len(), "no duplicate id survives");
    assert!(
        stage.root_layer().identifier().ends_with("root.usda"),
        "the root stays the first non-session layer after dedup"
    );
    Ok(())
}

/// When the stage root is itself reached as a session sublayer, the root slot
/// collapses onto that shared node — but the root must still resolve to the
/// shared layer, not slip to its own dependency or vanish.
#[test]
fn from_layers_root_shared_with_session() -> Result<()> {
    let dir = tempfile::tempdir()?;
    fs::write(dir.path().join("dep.usda"), "#usda 1.0\n")?;
    fs::write(
        dir.path().join("shared.usda"),
        "#usda 1.0\n(\n    subLayers = [@dep.usda@]\n)\n",
    )?;
    fs::write(
        dir.path().join("session.usda"),
        "#usda 1.0\n(\n    subLayers = [@shared.usda@]\n)\n",
    )?;
    // Open the shared layer itself as the stage root: it is also reached as a
    // session sublayer, so the root slot collapses onto that node.
    let shared = dir.path().join("shared.usda");
    let stage = Stage::builder()
        .session_layer(dir.path().join("session.usda").to_string_lossy().into_owned())
        .open(shared.to_str().expect("utf-8 temp path"))?;

    assert_eq!(stage.layer_count(), 3, "the shared root/session layer is one node");
    assert!(
        stage.root_layer().identifier().ends_with("shared.usda"),
        "the root resolves to the shared layer, not the next dependency"
    );
    Ok(())
}

// --- Stage-tier authoring verified through composed handles ---

#[test]
fn define_prim() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/World")?.set_type_name("Xform")?;
    stage.define_prim("/World/Mesh")?.set_type_name("Mesh")?;
    assert!(stage.prim("/World").is_defined()?);
    assert!(stage.prim("/World/Mesh").is_defined()?);
    assert_eq!(stage.prim("/World").type_name()?.as_deref(), Some("Xform"));
    assert_eq!(stage.prim("/World/Mesh").type_name()?.as_deref(), Some("Mesh"));
    Ok(())
}

/// A query that misses (the prim is not yet authored) caches the miss; authoring
/// the prim must invalidate that cache so the next query sees it.
#[test]
fn authoring_invalidates_cached_miss() -> Result<()> {
    let stage = in_memory_stage()?;
    assert!(!stage.prim("/World").is_valid()?);

    stage.define_prim("/World")?.set_type_name("Xform")?;

    assert!(stage.prim("/World").is_valid()?);
    assert_eq!(stage.prim("/World").type_name()?.as_deref(), Some("Xform"));
    Ok(())
}

#[test]
fn override_prim() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.override_prim("/A/B")?;
    assert_eq!(stage.prim("/A").specifier()?, Some(sdf::Specifier::Over));
    assert_eq!(stage.prim("/A/B").specifier()?, Some(sdf::Specifier::Over));
    Ok(())
}

// --- Incremental invalidation: per-field change classification ---

/// Authoring `permission = private` on an inherited class is inert metadata:
/// composition never enforces it (C++'s counterpart is compiled out for
/// `Usd`-mode caches), so the inherited opinion keeps resolving unchanged and no
/// recompose is needed.
#[test]
fn permission_edit_does_not_inert_opinion() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        "#usda 1.0\n\ndef \"Class\"\n{\n    custom double attr = 5\n}\n\ndef \"Inst\" (\n    inherits = </Class>\n)\n{\n}\n",
    )?;
    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(
        stage.attribute("/Inst.attr").get::<sdf::Value>()?,
        Some(sdf::Value::Double(5.0)),
        "the inherited opinion contributes before the permission edit",
    );

    stage.prim("/Class").set_metadata(
        sdf::FieldKey::Permission.as_str(),
        sdf::Value::Permission(sdf::Permission::Private),
    )?;

    assert_eq!(
        stage.attribute("/Inst.attr").get::<sdf::Value>()?,
        Some(sdf::Value::Double(5.0)),
        "permission is inert metadata; the inherited opinion still resolves",
    );
    Ok(())
}

/// Authoring `clips` on a prim that had none is read live through the cached
/// index's spec sites — clips need no classifier entry, since every value view
/// rebuilds against the revision bump. The authored clip set overrides the
/// reference's time samples once present (spec 12.3.4.5).
#[test]
fn clips_edit_resolves_live() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    let clip = dir.path().join("clip.usda");
    let manifest = dir.path().join("manifest.usda");
    let referenced = dir.path().join("ref.usda");
    fs::write(
        &clip,
        "#usda 1.0\n\ndef \"Model\"\n{\n    double size.timeSamples = {\n        0: 0,\n        10: 10,\n    }\n}\n",
    )?;
    fs::write(&manifest, "#usda 1.0\n\ndef \"Model\"\n{\n    double size\n}\n")?;
    fs::write(
        &referenced,
        "#usda 1.0\n\ndef \"Model\"\n{\n    double size.timeSamples = {\n        0: -1,\n        10: -10,\n    }\n}\n",
    )?;
    fs::write(
        &root,
        format!(
            "#usda 1.0\n\ndef \"Model\" (\n    references = @{}@</Model>\n)\n{{\n}}\n",
            referenced.display()
        ),
    )?;
    let stage = Stage::open(root.to_str().unwrap())?;
    assert_eq!(
        value_f64(&stage, "/Model.size", 10.0),
        Some(-10.0),
        "the reference time sample resolves before any clips are authored",
    );

    let prim = stage.prim("/Model");
    let api = usd::ClipsAPI::new(&prim);
    api.set_clip_asset_paths("default", vec![clip.display().to_string()])?;
    api.set_clip_prim_path("default", "/Model")?;
    api.set_clip_manifest_asset_path("default", manifest.display().to_string())?;
    api.set_clip_active("default", vec![gf::vec2d(0.0, 0.0)])?;

    assert_eq!(
        value_f64(&stage, "/Model.size", 10.0),
        Some(10.0),
        "the authored clip set overrides the reference time sample",
    );
    Ok(())
}

/// The cache memoizes a relationship's resolved targets on first query; editing
/// its `targetPaths` must drop that memo so the next query recomposes them.
/// Regression guard for the property-tier (`did_change_targets`) consumer.
#[test]
fn target_edit_drops_memo() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/A")?;
    stage.define_prim("/B")?;
    stage.define_prim("/C")?;
    stage
        .prim("/A")
        .create_relationship("r")?
        .set_targets([sdf::path("/B")?])?;

    // First query populates the memo.
    assert_eq!(stage.relationship("/A.r").targets()?, vec![sdf::path("/B")?]);

    stage.relationship("/A.r").set_targets([sdf::path("/C")?])?;
    assert_eq!(
        stage.relationship("/A.r").targets()?,
        vec![sdf::path("/C")?],
        "the re-authored targets must be visible, not the memoized list",
    );
    Ok(())
}

/// A relationship inherited from a class translates the class's targets into the
/// inheriting prim's namespace. Editing the class relationship must fan out to
/// the inheriting prim's memo (a referenced site's edit restales the translated
/// targets), not just the class's own.
#[test]
fn target_edit_fans_out_to_dependent() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/Class")?;
    stage.define_prim("/Class/Local")?;
    stage.define_prim("/Class/Other")?;
    stage
        .prim("/Class")
        .create_relationship("r")?
        .set_targets([sdf::path("/Class/Local")?])?;
    stage.define_prim("/Inst")?.set_metadata(
        sdf::FieldKey::InheritPaths.as_str(),
        sdf::Value::PathListOp(sdf::PathListOp::prepended([sdf::path("/Class")?])),
    )?;
    stage.define_prim("/Inst/Local")?;
    stage.define_prim("/Inst/Other")?;

    // First query memoizes the inherited relationship's translated targets.
    assert_eq!(
        stage.relationship("/Inst.r").targets()?,
        vec![sdf::path("/Inst/Local")?],
        "the inherited target translates into the instance namespace",
    );

    stage
        .relationship("/Class.r")
        .set_targets([sdf::path("/Class/Other")?])?;
    assert_eq!(
        stage.relationship("/Inst.r").targets()?,
        vec![sdf::path("/Inst/Other")?],
        "editing the class relationship restales the inheriting prim's memo",
    );
    Ok(())
}

/// Removing the relationship spec that authored the memoized targets must drop
/// the memo so the next query recomposes. The removal carries only
/// `REMOVE_PROPERTY`, so the producer surfaces the removed `targetPaths` to route
/// it through `did_change_targets`; without that the stale `[/B]` would persist.
#[test]
fn target_spec_removal_drops_memo() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/A")?;
    stage.define_prim("/B")?;
    stage
        .prim("/A")
        .create_relationship("r")?
        .set_targets([sdf::path("/B")?])?;

    // Populate the memo.
    assert_eq!(stage.relationship("/A.r").targets()?, vec![sdf::path("/B")?]);

    assert!(stage.remove_property("/A.r")?);
    assert_eq!(
        stage.relationship("/A.r").targets()?,
        Vec::<sdf::Path>::new(),
        "the removed relationship's memoized targets must not persist",
    );
    Ok(())
}

/// A relationship-target value edit is a changed-info edit on the property, not a
/// whole-prim resync: the change notice's `resynced` must not name the owning
/// prim, while `changed_info_only` names the edited relationship.
#[test]
fn target_edit_is_info_only_not_resync() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/A")?;
    stage.define_prim("/B")?;
    stage.define_prim("/C")?;
    stage
        .prim("/A")
        .create_relationship("r")?
        .set_targets([sdf::path("/B")?])?;

    let resynced: Rc<RefCell<Vec<sdf::Path>>> = Rc::new(RefCell::new(Vec::new()));
    let info: Rc<RefCell<Vec<sdf::Path>>> = Rc::new(RefCell::new(Vec::new()));
    let _token = {
        let (resynced, info) = (resynced.clone(), info.clone());
        stage.add_sink(move |_stage: &Stage, oc: &CommittedChange<'_>| {
            resynced.borrow_mut().extend(oc.resynced.iter().cloned());
            info.borrow_mut().extend(oc.changed_info_only.iter().cloned());
        })
    };
    stage.relationship("/A.r").set_targets([sdf::path("/C")?])?;

    assert!(
        !resynced.borrow().contains(&sdf::path("/A")?),
        "a target value edit must not resync the owning prim"
    );
    assert!(
        info.borrow().contains(&sdf::path("/A.r")?),
        "the edited relationship is reported as changed-info"
    );
    Ok(())
}

/// Removing an attribute is a structural removal, not a changed-info edit: the
/// removed property must not appear in `changed_info_only`, where a consumer
/// reading its value would find it gone.
#[test]
fn attr_removal_not_info_only() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.create_attribute("/P.size", "double")?;

    let info: Rc<RefCell<Vec<sdf::Path>>> = Rc::new(RefCell::new(Vec::new()));
    let _token = {
        let info = info.clone();
        stage.add_sink(move |_stage: &Stage, oc: &CommittedChange<'_>| {
            info.borrow_mut().extend(oc.changed_info_only.iter().cloned());
        })
    };
    assert!(stage.remove_property("/P.size")?);

    assert!(
        !info.borrow().contains(&sdf::path("/P.size")?),
        "a removed attribute must not be reported as a changed-info edit"
    );
    Ok(())
}

/// Removing a relationship that had authored targets surfaces its `targetPaths`
/// for memo invalidation, but that internal signal must not surface the gone
/// property as a changed-info edit — the removal is structural, not info-only.
#[test]
fn rel_removal_not_info_only() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/A")?;
    stage.define_prim("/B")?;
    stage
        .prim("/A")
        .create_relationship("r")?
        .set_targets([sdf::path("/B")?])?;

    let info: Rc<RefCell<Vec<sdf::Path>>> = Rc::new(RefCell::new(Vec::new()));
    let _token = {
        let info = info.clone();
        stage.add_sink(move |_stage: &Stage, oc: &CommittedChange<'_>| {
            info.borrow_mut().extend(oc.changed_info_only.iter().cloned());
        })
    };
    assert!(stage.remove_property("/A.r")?);

    assert!(
        !info.borrow().contains(&sdf::path("/A.r")?),
        "a removed relationship with targets must not be reported as a changed-info edit"
    );
    Ok(())
}

/// A connection authored in a class that targets an instance of that class is
/// dropped per `_TargetInClassAndTargetsInstance` — a decision that composes the
/// target prim to read its instance status. The resolved list must not be served
/// from a stale memo after the target prim's instance status changes. `Owner` and
/// `Target` are top-level siblings, so editing `Target` does not fan out to drop
/// `Owner`'s index (their only common ancestor is the pseudo-root); the memo
/// itself must recognize it read cross-prim instance state and resolve live.
#[test]
fn instance_target_memo_not_stale() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = dir.path().join("root.usda");
    fs::write(
        &root,
        "#usda 1.0\n\nclass \"Class\"\n{\n    double x\n    add double x.connect = [</Target.y>]\n    double y\n}\n\n\
         def \"Owner\" (\n    inherits = </Class>\n)\n{\n}\n\ndef \"Target\" (\n    inherits = </Class>\n)\n{\n}\n",
    )?;
    let attr = "/Owner.x";
    let target = sdf::path("/Target")?;
    let drop_inherit = || sdf::Value::PathListOp(sdf::PathListOp::explicit(Vec::<sdf::Path>::new()));

    // Stage A: query first (populating any memo). `Target` is an instance of
    // `Class`, so the class connection to it is dropped. Then drop `Target`'s
    // inherit so it is no longer an instance, and re-query.
    let a = Stage::open(root.to_str().unwrap())?;
    let before = a.attribute(attr).connections()?;
    a.prim(target.clone())
        .set_metadata(sdf::FieldKey::InheritPaths.as_str(), drop_inherit())?;
    let after_cached = a.attribute(attr).connections()?;

    // Stage B: apply the same edit before any query, so its result is composed
    // from scratch with no memo in play.
    let b = Stage::open(root.to_str().unwrap())?;
    b.prim(target)
        .set_metadata(sdf::FieldKey::InheritPaths.as_str(), drop_inherit())?;
    let fresh = b.attribute(attr).connections()?;

    assert_eq!(after_cached, fresh, "the cached path must agree with a fresh compose");
    assert_ne!(
        before, after_cached,
        "the edit must change the result (guards against a vacuous test)"
    );
    Ok(())
}

// --- Adapted from in-module tests: value resolution, existence, authoring ---

/// A direct arc to a `permission = private` site composes normally:
/// `permission` is inert metadata for composition (spec 10.3.3), matching C++'s
/// own arc/target permission enforcement, which is compiled out for `Usd`-mode
/// caches and therefore never runs for a `UsdStage`.
#[test]
fn permission_private_inherit_composes_normally() -> Result<()> {
    let path = format!(
        "{}/vendor/core-spec-supplemental-release_dec2025/composition/tests/assets/\
             ErrorPermissionDenied_root/usda/root.usd",
        manifest_dir()
    );
    let stage = Stage::builder().open(&path)?;

    // /Model inherits the private /_PrivateClass; the inherited opinion stays
    // visible and composing it raises no error.
    assert!(
        stage
            .prim("/Model")
            .property_names()?
            .iter()
            .any(|n| n.as_str() == "attr"),
        "private inherit must stay visible"
    );
    assert!(
        stage.composition_errors().is_empty(),
        "permission = private must not raise a composition error"
    );

    Ok(())
}

/// Reading a field from a single-layer stage should return the authored value.
#[test]
fn field_single_layer() -> Result<()> {
    let path = composition_path("active.usda");
    let stage = Stage::open(&path)?;

    // CubeInactive composes as inactive; CubeActive as active.
    assert!(!stage.prim("/World/CubeInactive").is_active()?);
    assert!(stage.prim("/World/CubeActive").is_active()?);

    Ok(())
}

// --- Sublayer composition ---

/// sublayer_override.usda sublayers sublayer_base.usda. Both layers define
/// /World/Cube but with different displayColor values. The stronger (override)
/// layer's opinion should win (first-opinion-wins rule).
#[test]
fn sublayer_stronger_opinion_wins() -> Result<()> {
    let path = fixture_path("sublayer_override.usda");
    let stage = Stage::open(&path)?;

    assert_eq!(stage.layer_count(), 2);

    // /World/Cube.primvars:displayColor is overridden to blue [(0,0,1)] in
    // the stronger layer, base has red [(1,0,0)].
    let prop_path = sdf::Path::new("/World/Cube")?.append_property("primvars:displayColor")?;
    let value = stage.attribute(&prop_path).get::<sdf::Value>()?;
    assert!(value.is_some(), "displayColor should have a composed value");

    // The composed value must come from the stronger layer (blue),
    // not the weaker layer (red). Verify by checking it's not the base red.
    let value = value.unwrap();
    let base_red = sdf::Value::Vec3fVec(vec![gf::vec3f(1.0, 0.0, 0.0)]);
    assert_ne!(value, base_red, "stronger layer opinion should win over weaker");

    Ok(())
}

/// The active.usda vendor test has prims with active=true/false metadata.
/// Verify field resolution returns the correct authored values.
#[test]
fn field_active_metadata() -> Result<()> {
    let path = composition_path("active.usda");
    let stage = Stage::open(&path)?;

    assert!(!stage.prim("/World/CubeInactive").is_active()?);
    assert!(stage.prim("/World/CubeActive").is_active()?);

    Ok(())
}

// --- Reference composition ---

/// An external reference with defaultPrim should pull the referenced prim's
/// children into the referencing prim's namespace.
/// ref_external.usda: /World/MyPrim references ref_target.usda (defaultPrim="Source").
/// ref_target.usda defines /Source/Child with displayColor.
#[test]
fn reference_external_default_prim() -> Result<()> {
    let path = fixture_path("ref_external.usda");
    let stage = Stage::open(&path)?;

    // /World/MyPrim should exist via the reference.
    assert!(stage.prim("/World/MyPrim").is_valid()?);

    // /World/MyPrim/Child should be reachable via namespace remapping.
    let children = child_names(&stage, "/World/MyPrim")?;
    assert!(
        children.contains(&"Child".to_string()),
        "referenced children should be visible"
    );

    Ok(())
}

/// class_inherit.usda: cubeWithSetColor inherits from /_myClass but
/// overrides displayColor locally. Local opinion (red) should win
/// over the inherited opinion (green).
#[test]
fn inherit_local_opinion_wins() -> Result<()> {
    let path = composition_path("class_inherit.usda");
    let stage = Stage::open(&path)?;

    // The local displayColor (red) should win over inherited (green).
    let prop = sdf::Path::new("/World/cubeWithSetColor")?.append_property("primvars:displayColor")?;
    let value = stage.attribute(&prop).get::<sdf::Value>()?;
    assert!(value.is_some());

    // Verify it's the local red, not the inherited green.
    let green = sdf::Value::Vec3fVec(vec![gf::vec3f(0.0, 0.8, 0.0)]);
    assert_ne!(value.unwrap(), green, "local opinion should win over inherited");

    Ok(())
}

// --- Variant selection ---

/// The local opinion on radius (1) should be stronger than the variant's (2).
#[test]
fn variant_local_opinion_wins() -> Result<()> {
    let path = format!(
        "{}/vendor/usd-wg-assets/docs/CompositionPuzzles/VariantSetAndLocal1/puzzle_1.usda",
        manifest_dir()
    );
    let stage = Stage::open(&path)?;

    // The local radius=1 should win over variant radius=2.
    let prop = sdf::Path::new("/World/Sphere")?.append_property("radius")?;
    let value = stage.attribute(&prop).get::<f64>()?;
    assert_eq!(value, Some(1.0), "local opinion (1) should win over variant (2)");

    Ok(())
}

// --- Specialize composition ---

/// The local opinion on displayColor (yellow) should win over the
/// specialized source's displayColor (red).
#[test]
fn specialize_local_opinion_wins() -> Result<()> {
    let path = composition_path("inherit_and_specialize.usda");
    let stage = Stage::open(&path)?;

    let prop = sdf::Path::new("/World/cubeScene/specializes")?.append_property("primvars:displayColor")?;
    let value = stage.attribute(&prop).get::<sdf::Value>()?;
    assert!(value.is_some());

    // Local is yellow (0.8, 0.8, 0), source is red (0.8, 0, 0).
    let red = sdf::Value::Vec3fVec(vec![gf::vec3f(0.8, 0.0, 0.0)]);
    assert_ne!(value.unwrap(), red, "local opinion should win over specialized");

    Ok(())
}

/// A prim with `instanceable = true` composes as instanceable.
#[test]
fn instanceable_true_parses_and_is_readable() -> Result<()> {
    let path = fixture_path("instanceable_metadata.usda");
    let stage = Stage::open(&path)?;

    assert!(stage.prim("/Root/InstancePrototype").is_instanceable()?);

    Ok(())
}

/// A prim with `instanceable = false` composes as not instanceable.
#[test]
fn instanceable_false_parses_and_is_readable() -> Result<()> {
    let path = fixture_path("instanceable_metadata.usda");
    let stage = Stage::open(&path)?;

    assert!(!stage.prim("/Root/NotInstanceable").is_instanceable()?);

    Ok(())
}

/// A prim without `instanceable` metadata defaults to not instanceable.
#[test]
fn instanceable_absent_defaults_false() -> Result<()> {
    let path = fixture_path("instanceable_metadata.usda");
    let stage = Stage::open(&path)?;

    assert!(!stage.prim("/Root").is_instanceable()?);

    Ok(())
}

// --- Variant fallback selection ---

/// A variant fallback should select the specified variant when no authored
/// selection exists. The prim should expose opinions from the fallback variant.
#[test]
fn variant_fallback_selects_preferred() -> Result<()> {
    let path = fixture_path("variant_fallback.usda");
    let fallbacks = pcp::VariantFallbackMap::new().add("shadingComplexity", ["simple"]);
    let stage = Stage::builder().variant_fallbacks(fallbacks).open(&path)?;

    // /NoSelection has no authored selection. With fallback "simple",
    // the complexity field should be 0.5 (not 1.0 from "full").
    let prop = sdf::Path::new("/NoSelection")?.append_property("complexity")?;
    let value = stage.attribute(&prop).get::<f64>()?;
    assert_eq!(value, Some(0.5), "fallback 'simple' should give complexity=0.5");

    Ok(())
}

/// An authored selection should take priority over a variant fallback at the
/// stage level.
#[test]
fn variant_fallback_does_not_override_authored() -> Result<()> {
    let path = fixture_path("variant_fallback.usda");
    let fallbacks = pcp::VariantFallbackMap::new().add("shadingComplexity", ["none"]);
    let stage = Stage::builder().variant_fallbacks(fallbacks).open(&path)?;

    // /Root has authored selection "full". Even with fallback "none",
    // the authored selection should win.
    let prop = sdf::Path::new("/Root")?.append_property("complexity")?;
    let value = stage.attribute(&prop).get::<f64>()?;
    assert_eq!(value, Some(1.0), "authored 'full' should win over fallback 'none'");

    Ok(())
}

// --- Inherit child propagation ---

/// A prim that inherits a class should expose the class's children even
/// when the inheriting prim has no local override for them.
#[test]
fn inherit_child_exists_without_local_override() -> Result<()> {
    let path = fixture_path("inherit_child_propagation.usda");
    let stage = Stage::open(&path)?;

    // /Instance inherits /BaseClass which has child /BaseClass/Child.
    // /Instance/Child should exist even though Instance has no local "Child".
    let children = child_names(&stage, "/Instance")?;
    assert!(
        children.contains(&"Child".to_string()),
        "inherited child should appear: got {children:?}"
    );

    // The inherited property should be accessible.
    assert!(
        stage
            .prim("/Instance/Child")
            .property_names()?
            .iter()
            .any(|n| n.as_str() == "name"),
        "property from inherited child should be visible"
    );

    Ok(())
}

/// Nested children from an inherited class should propagate through
/// multiple levels even without local overrides at any level.
#[test]
fn inherit_nested_child_propagation() -> Result<()> {
    let path = fixture_path("inherit_nested_child.usda");
    let stage = Stage::open(&path)?;

    // /Prim inherits /Base. /Base/A/B exists with val=1.0.
    // /Prim/A should exist, /Prim/A/B should exist.
    let a_children = child_names(&stage, "/Prim")?;
    assert!(
        a_children.contains(&"A".to_string()),
        "first-level child: got {a_children:?}"
    );

    let b_children = child_names(&stage, "/Prim/A")?;
    assert!(
        b_children.contains(&"B".to_string()),
        "second-level child: got {b_children:?}"
    );

    assert!(
        stage
            .prim("/Prim/A/B")
            .property_names()?
            .iter()
            .any(|n| n.as_str() == "val"),
        "deeply nested inherited property should be visible"
    );

    Ok(())
}

/// Children should propagate through an inherit chain (Leaf → Middle → GrandBase).
#[test]
fn inherit_chain_child_propagation() -> Result<()> {
    let path = fixture_path("inherit_chain_child.usda");
    let stage = Stage::open(&path)?;

    // /Leaf inherits /Middle which inherits /GrandBase.
    // /GrandBase/Deep exists with x=42. /Leaf/Deep should exist.
    let children = child_names(&stage, "/Leaf")?;
    assert!(
        children.contains(&"Deep".to_string()),
        "chain-inherited child: got {children:?}"
    );

    assert!(
        stage
            .prim("/Leaf/Deep")
            .property_names()?
            .iter()
            .any(|n| n.as_str() == "x"),
        "property from chain-inherited child should be visible"
    );

    Ok(())
}

/// A session layer's opinions should be stronger than the root layer's.
#[test]
fn session_layer_opinion_wins() -> Result<()> {
    let stage = open_with_session()?;

    assert!(stage.has_session_layer());
    assert_eq!(stage.layer_count(), 2);
    assert!(stage
        .session_layer()
        .expect("configured session layer")
        .identifier()
        .ends_with("session_layer.usda"));

    let prop = sdf::Path::new("/World")?.append_property("radius")?;
    let value = stage.attribute(&prop).get::<f64>()?;
    assert_eq!(value, Some(99.0), "session layer opinion should win");

    Ok(())
}

/// The session layer can add properties not present in the root layer.
#[test]
fn session_layer_adds_properties() -> Result<()> {
    let stage = open_with_session()?;

    let prop = sdf::Path::new("/World")?.append_property("visibility")?;
    let value = stage.attribute(&prop).get::<String>()?;
    assert_eq!(value, Some("hidden".to_string()));

    Ok(())
}

/// The root layer's properties not overridden by the session layer
/// should still be accessible.
#[test]
fn session_layer_preserves_root_opinions() -> Result<()> {
    let stage = open_with_session()?;

    let prop = sdf::Path::new("/World")?.append_property("name")?;
    let value = stage.attribute(&prop).get::<String>()?;
    assert_eq!(value, Some("root".to_string()));

    Ok(())
}

#[test]
fn mask_traverse() -> Result<()> {
    let stage = Stage::builder()
        .mask(StagePopulationMask::new(["/World/ActiveParent/Child"]))
        .open("fixtures/stage_queries.usda")?;

    assert_eq!(
        stage.root_prims()?.iter().map(|t| t.as_str()).collect::<Vec<_>>(),
        ["World"]
    );
    assert_eq!(child_names(&stage, "/World")?, vec!["ActiveParent"]);
    assert_eq!(child_names(&stage, "/World/ActiveParent")?, vec!["Child"]);

    assert!(stage.prim("/World").is_valid()?);
    assert!(stage.prim("/World/ActiveParent/Child").is_valid()?);
    assert!(!stage.prim("/World/Group").is_valid()?);
    assert_eq!(stage.prim("/World/Group").kind()?, None);

    let mut prims = Vec::new();
    stage.traverse(PrimPredicate::ALL, |p| prims.push(p.as_str().to_string()))?;
    assert_eq!(
        prims,
        vec!["/World", "/World/ActiveParent", "/World/ActiveParent/Child"]
    );
    Ok(())
}

#[test]
fn mask_skips_dependency() -> Result<()> {
    let path = composition_path("references/reference_invalid.usda");
    let stage = Stage::builder()
        .mask(StagePopulationMask::new(["/World/cube"]))
        .open(&path)?;

    assert_eq!(
        stage.root_prims()?.iter().map(|t| t.as_str()).collect::<Vec<_>>(),
        ["World"]
    );
    assert_eq!(child_names(&stage, "/World")?, vec!["cube"]);
    assert!(!stage.prim("/World/invalid_reference").is_valid()?);
    Ok(())
}

/// `Stage::custom_layer_data` reads the root layer's `customLayerData`
/// dictionary (C++ `UsdStage::GetRootLayer()->GetCustomLayerData`).
#[test]
fn custom_layer_data() -> Result<()> {
    let stage = in_memory_stage()?;
    assert!(stage.custom_layer_data()?.is_none());

    let dict = sdf::Value::Dictionary([("tool".to_string(), sdf::Value::String("rs".into()))].into());
    stage.set_custom_layer_data(dict)?;

    let Some(sdf::Value::Dictionary(read)) = stage.custom_layer_data()? else {
        panic!("customLayerData should resolve to a dictionary");
    };
    assert_eq!(read.get("tool"), Some(&sdf::Value::String("rs".into())));
    Ok(())
}

#[test]
fn create_attribute() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/Sphere")?.set_type_name("Sphere")?;
    stage.create_attribute("/Sphere.radius", "double")?;

    let attr = stage.attribute("/Sphere.radius");
    assert_eq!(attr.type_name()?.as_deref(), Some("double"));
    assert!(attr.is_custom()?, "generic attributes are authored custom");
    // The property composes as an attribute (not a relationship).
    let radius = sdf::Path::new("/Sphere.radius")?;
    let attrs = stage.prim("/Sphere").attributes()?;
    assert!(attrs.iter().any(|a| a.path() == &radius));
    Ok(())
}

#[test]
fn create_relationship() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/Mesh")?.set_type_name("Mesh")?;
    let rel = stage
        .create_relationship("/Mesh.material:binding")?
        .set_variability(sdf::Variability::Uniform)?;

    assert!(rel.is_custom()?, "generic relationships are authored custom");
    // The property composes as a relationship (not an attribute).
    let binding = sdf::Path::new("/Mesh.material:binding")?;
    let rels = stage.prim("/Mesh").relationships()?;
    assert!(rels.iter().any(|r| r.path() == &binding));
    Ok(())
}

/// `defaultPrim` writes target the root layer regardless of `EditTarget`
/// (mirrors C++ `UsdStage::SetDefaultPrim` going through `GetRootLayer`).
/// In-memory root with a file-loaded session layer; setting the edit
/// target to the read-only session layer must not block the write.
#[test]
fn default_prim_targets_root() -> Result<()> {
    let session = fixture_path("session_layer.usda");
    let stage = Stage::builder().session_layer(&session).in_memory("anon.usda")?;
    let session_id = stage.session_layer().expect("session layer").identifier().to_string();
    stage.set_edit_target(EditTarget::for_layer(session_id))?;
    stage.set_default_prim("World")?;
    assert_eq!(stage.default_prim().as_deref(), Some("World"));
    Ok(())
}

/// Exercises `StageBuilder::in_memory`'s session-layer branch: the
/// anonymous root must end up at `session_layer_count`, the edit target
/// must point there, and authoring on the in-memory root must work
/// (with the session layer remaining read-only).
#[test]
fn in_memory_session_layer() -> Result<()> {
    let session = fixture_path("session_layer.usda");
    let stage = Stage::builder().session_layer(&session).in_memory("anon.usda")?;
    assert!(stage.has_session_layer());
    assert_eq!(stage.layer_count(), 2);
    assert_eq!(stage.edit_target().layer_identifier(), stage.root_layer().identifier());
    stage.define_prim("/World")?.set_type_name("Xform")?;
    assert!(stage.prim("/World").is_defined()?);
    Ok(())
}

/// `edit_context` restores the previous edit target when the guard drops.
#[test]
fn edit_context_restores_on_drop() -> Result<()> {
    let session = fixture_path("session_layer.usda");
    let stage = Stage::builder().session_layer(&session).in_memory("anon.usda")?;
    let root_id = stage.root_layer().identifier().to_string();
    let session_id = stage.session_layer().expect("session layer").identifier().to_string();
    assert_eq!(stage.edit_target().layer_identifier(), root_id);
    {
        let _ctx = stage.edit_context(EditTarget::for_layer(session_id.clone()))?;
        assert_eq!(stage.edit_target().layer_identifier(), session_id);
    }
    assert_eq!(stage.edit_target().layer_identifier(), root_id);
    Ok(())
}

/// The guard restores the target even when the scope exits early via `?`.
#[test]
fn edit_context_restores_on_error() -> Result<()> {
    let session = fixture_path("session_layer.usda");
    let stage = Stage::builder().session_layer(&session).in_memory("anon.usda")?;
    let root_id = stage.root_layer().identifier().to_string();
    let session_id = stage.session_layer().expect("session layer").identifier().to_string();
    assert_eq!(stage.edit_target().layer_identifier(), root_id);
    let authored: std::result::Result<(), StageAuthoringError> = (|| {
        let _ctx = stage.edit_context(EditTarget::for_layer(session_id))?;
        // Authoring a prim at a property path is invalid; the write fails and
        // `?` returns from this closure with the guard still in scope.
        stage.define_prim("/A.x")?;
        Ok(())
    })();
    assert!(authored.is_err());
    assert_eq!(stage.edit_target().layer_identifier(), root_id);
    Ok(())
}

/// A significant edit inside a variant must invalidate the composed
/// (variant-stripped) prim, whose cache key is not on the variant path's
/// ancestor chain.
#[test]
fn variant_edit_invalidates_stripped_path() -> Result<()> {
    let stage = in_memory_stage()?;
    let root = stage.edit_target().layer_identifier().to_string();
    stage.define_prim("/Prim")?;

    // Cache a composed miss at the scene path.
    assert!(!stage.prim("/Prim/child").is_valid()?);
    assert!(stage.is_indexed(&sdf::path("/Prim/child")?));

    // Author the child inside the variant: `/Prim/child` -> `/Prim{set=sel}child`.
    stage.set_edit_target(EditTarget::for_local_direct_variant(root, sdf::path("/Prim{set=sel}")?))?;
    stage.define_prim("/Prim/child")?;

    // The stripped composed key must be dropped so the next query rebuilds.
    assert!(!stage.is_indexed(&sdf::path("/Prim/child")?));
    Ok(())
}

#[test]
fn clip_skips_missing_attr() -> Result<()> {
    let dir = tempfile::tempdir()?;
    let root = write_clip_scene(
        dir.path(),
        r#"#usda 1.0
def "Model" (
    clips = {
        dictionary default = {
            asset[] assetPaths = [@./clip.usda@]
            asset manifestAssetPath = @./manifest.usda@
            string primPath = "/Model"
            double2[] active = [(0, 0)]
        }
    }
)
{
}
"#,
        r#"#usda 1.0
def "Model"
{
    float ghost
}
"#,
        r#"#usda 1.0
def "Model"
{
    float ghost.timeSamples = {
        0: 7
    }
}
"#,
    )?;

    let stage = Stage::open(&root)?;
    assert!(
        !stage
            .prim("/Model")
            .property_names()?
            .iter()
            .any(|n| n.as_str() == "ghost"),
        "the clip must not fabricate an attribute"
    );
    assert_eq!(
        stage
            .attribute("/Model.ghost")
            .get_at::<sdf::Value>(usd::TimeCode::new(0.0))?,
        None
    );
    Ok(())
}

// Stage change listeners (C++ `UsdNotice`), exercised through the public API.

/// A listener installed with `set_listener` fires once per edit, and the
/// notice's `resynced` paths name the prim whose composition changed.
#[test]
fn listener_fires_on_define() -> Result<()> {
    let stage = in_memory_stage()?;
    let resynced: Rc<RefCell<Vec<sdf::Path>>> = Rc::new(RefCell::new(Vec::new()));
    let count = Rc::new(Cell::new(0u32));
    let _token = {
        let (resynced, count) = (resynced.clone(), count.clone());
        stage.add_sink(move |_stage: &Stage, oc: &CommittedChange<'_>| {
            count.set(count.get() + 1);
            resynced.borrow_mut().extend(oc.resynced.iter().cloned());
        })
    };
    stage.define_prim("/World")?;
    assert_eq!(count.get(), 1);
    assert!(resynced.borrow().contains(&sdf::Path::new("/World")?));
    Ok(())
}

/// A pure value edit reports its path under `changed_info_only` (not
/// `resynced`), and `changed_fields` names the authored field.
#[test]
fn listener_info_only() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/World")?;
    let attr = stage.create_attribute("/World.size", "double")?;
    let info: Rc<RefCell<Vec<sdf::Path>>> = Rc::new(RefCell::new(Vec::new()));
    let resynced: Rc<RefCell<Vec<sdf::Path>>> = Rc::new(RefCell::new(Vec::new()));
    let has_default = Rc::new(Cell::new(false));
    let _token = {
        let (info, resynced, has_default) = (info.clone(), resynced.clone(), has_default.clone());
        let size = sdf::Path::new("/World.size")?;
        stage.add_sink(move |_stage: &Stage, oc: &CommittedChange<'_>| {
            info.borrow_mut().extend(oc.changed_info_only.iter().cloned());
            resynced.borrow_mut().extend(oc.resynced.iter().cloned());
            if oc.changed_fields(&size).iter().any(|t| t.as_str() == "default") {
                has_default.set(true);
            }
        })
    };
    attr.set(2.0_f64)?;
    assert!(info.borrow().contains(&sdf::Path::new("/World.size")?));
    assert!(resynced.borrow().is_empty());
    assert!(has_default.get());
    Ok(())
}

/// An info-only edit authored through a variant edit target reports its path
/// in stage namespace (`/Prim.size`), translated from the `{set=sel}` layer
/// namespace through the target's mapping, not the raw spec path. The
/// stage-namespace path round-trips through `changed_fields`, which translates
/// it back to the `{set=sel}` change-list key.
#[test]
fn listener_info_under_variant_target() -> Result<()> {
    let stage = in_memory_stage()?;
    let root = stage.edit_target().layer_identifier().to_string();
    stage.define_prim("/Prim")?;
    stage.set_edit_target(EditTarget::for_local_direct_variant(root, sdf::path("/Prim{set=sel}")?))?;
    // Create the attribute inside the variant before installing the listener, so
    // the listener only observes the info-only `set` below.
    let attr = stage.create_attribute("/Prim.size", "double")?;

    let info: Rc<RefCell<Vec<sdf::Path>>> = Rc::new(RefCell::new(Vec::new()));
    let has_default = Rc::new(Cell::new(false));
    let _token = {
        let (info, has_default) = (info.clone(), has_default.clone());
        let size = sdf::path("/Prim.size")?;
        stage.add_sink(move |_stage: &Stage, oc: &CommittedChange<'_>| {
            info.borrow_mut().extend(oc.changed_info_only.iter().cloned());
            // `changed_fields` takes the stage-namespace path from
            // `changed_info_only` and finds the field under the layer key.
            if oc.changed_fields(&size).iter().any(|t| t.as_str() == "default") {
                has_default.set(true);
            }
        })
    };
    attr.set(2.0_f64)?;

    assert!(info.borrow().contains(&sdf::path("/Prim.size")?));
    assert!(!info.borrow().contains(&sdf::path("/Prim{set=sel}.size")?));
    assert!(has_default.get());
    Ok(())
}

/// A structural edit through a variant edit target reports its resynced path in
/// stage namespace (`/Prim/child`). The literal authored path the change
/// pipeline fans out (`/Prim{set=sel}child`) must not leak into `resynced`.
#[test]
fn listener_resync_under_variant_target() -> Result<()> {
    let stage = in_memory_stage()?;
    let root = stage.edit_target().layer_identifier().to_string();
    stage.define_prim("/Prim")?;
    stage.set_edit_target(EditTarget::for_local_direct_variant(root, sdf::path("/Prim{set=sel}")?))?;

    let resynced: Rc<RefCell<Vec<sdf::Path>>> = Rc::new(RefCell::new(Vec::new()));
    let _token = {
        let resynced = resynced.clone();
        stage.add_sink(move |_stage: &Stage, oc: &CommittedChange<'_>| {
            resynced.borrow_mut().extend(oc.resynced.iter().cloned());
        })
    };
    stage.define_prim("/Prim/child")?;

    assert!(resynced.borrow().contains(&sdf::path("/Prim/child")?));
    assert!(!resynced.borrow().contains(&sdf::path("/Prim{set=sel}child")?));
    Ok(())
}

/// Switching the edit target delivers `EditTargetChanged`; re-setting the same
/// target is a no-op and fires nothing.
#[test]
fn listener_edit_target_changed() -> Result<()> {
    let stage = in_memory_stage()?;
    let root = stage.root_layer().identifier().to_string();
    let sub = sdf::Layer::new_anonymous("sub.usda");
    let sub_id = sub.identifier().to_string();
    stage.insert_layer(&root, 0, sub, sdf::LayerOffset::IDENTITY)?;
    let count = Rc::new(Cell::new(0u32));
    let _token = {
        let count = count.clone();
        stage.add_sink(RecordingSink {
            edit_target: Some(Box::new(move |_stage| count.set(count.get() + 1))),
            ..Default::default()
        })
    };
    stage.set_edit_target(EditTarget::for_layer(sub_id.clone()))?;
    assert_eq!(count.get(), 1);
    stage.set_edit_target(EditTarget::for_layer(sub_id))?;
    assert_eq!(count.get(), 1);
    Ok(())
}

/// An `EditContext` fires `EditTargetChanged` on both entry and restore, so a
/// listener tracking the edit target stays consistent across the scope.
#[test]
fn listener_edit_context_restore() -> Result<()> {
    let stage = in_memory_stage()?;
    let root = stage.root_layer().identifier().to_string();
    let sub = sdf::Layer::new_anonymous("sub.usda");
    let sub_id = sub.identifier().to_string();
    stage.insert_layer(&root, 0, sub, sdf::LayerOffset::IDENTITY)?;
    let count = Rc::new(Cell::new(0u32));
    let _token = {
        let count = count.clone();
        stage.add_sink(RecordingSink {
            edit_target: Some(Box::new(move |_stage| count.set(count.get() + 1))),
            ..Default::default()
        })
    };
    {
        let _ctx = stage.edit_context(EditTarget::for_layer(sub_id))?;
        assert_eq!(count.get(), 1); // entry fired
    } // drop restores the previous target → fires again
    assert_eq!(count.get(), 2);
    Ok(())
}

/// Muting and unmuting a layer deliver `LayerMutingChanged` with the changed
/// identifiers; a redundant mute/unmute fires nothing.
#[test]
fn listener_layer_muting() -> Result<()> {
    let stage = in_memory_stage()?;
    let muted = Rc::new(RefCell::new(Vec::<String>::new()));
    let unmuted = Rc::new(RefCell::new(Vec::<String>::new()));
    let _token = {
        let (muted, unmuted) = (muted.clone(), unmuted.clone());
        stage.add_sink(RecordingSink {
            muting: Some(Box::new(move |_stage, layer, is_muted| {
                if is_muted {
                    muted.borrow_mut().push(layer.to_string());
                } else {
                    unmuted.borrow_mut().push(layer.to_string());
                }
            })),
            ..Default::default()
        })
    };
    stage.mute_layer("weak.usda");
    stage.mute_layer("weak.usda"); // already muted — no notice
    stage.unmute_layer("weak.usda");
    stage.unmute_layer("weak.usda"); // already unmuted — no notice
    assert_eq!(*muted.borrow(), vec!["weak.usda".to_string()]);
    assert_eq!(*unmuted.borrow(), vec!["weak.usda".to_string()]);
    Ok(())
}

/// After `remove_sink`, no further changes are delivered.
#[test]
fn unset_stops_delivery() -> Result<()> {
    let stage = in_memory_stage()?;
    let count = Rc::new(Cell::new(0u32));
    let id = {
        let count = count.clone();
        stage.add_sink(move |_: &Stage, _: &CommittedChange<'_>| count.set(count.get() + 1))
    };
    stage.define_prim("/A")?;
    assert_eq!(count.get(), 1);
    stage.remove_sink(id);
    stage.define_prim("/B")?;
    assert_eq!(count.get(), 1);
    Ok(())
}

/// A layer sink's `before_commit` sees the staged edit — the edited layer, its
/// non-empty overlay, and the derived change record — before the overlay
/// commits, fired by an edit routed through the stage.
#[test]
fn layer_sink_sees_staged() -> Result<()> {
    let stage = in_memory_stage()?;
    let root = stage.root_layer().identifier().to_string();
    let seen = Rc::new(RefCell::new(String::new()));
    let staged = Rc::new(Cell::new(false));
    {
        let (seen, staged) = (seen.clone(), staged.clone());
        stage
            .layer_mut(&root)
            .expect("root layer")
            .add_sink(RecordingLayerSink {
                before: Some(Box::new(move |change| {
                    seen.replace(change.layer_identifier.to_string());
                    if !change.overlay.is_empty() && !change.change_list.is_empty() {
                        staged.set(true);
                    }
                    Ok(())
                })),
                ..Default::default()
            });
    }
    stage.define_prim("/World")?;
    assert_eq!(*seen.borrow(), root, "before_commit saw the edited layer");
    assert!(
        staged.get(),
        "the staged overlay and change list are populated pre-commit"
    );
    Ok(())
}

/// A layer sink's `before_commit` rejection aborts the edit: the error surfaces
/// as [`StageAuthoringError::Rejected`] and the staged change rolls back,
/// leaving the prim uncreated.
#[test]
fn layer_sink_veto_rolls_back() -> Result<()> {
    let stage = in_memory_stage()?;
    let root = stage.root_layer().identifier().to_string();
    stage
        .layer_mut(&root)
        .expect("root layer")
        .add_sink(RecordingLayerSink {
            before: Some(Box::new(|_change| {
                Err(sdf::sink::Error::new("policy forbids this edit"))
            })),
            ..Default::default()
        });
    let result = stage.define_prim("/World");
    assert!(matches!(result, Err(StageAuthoringError::Rejected(_))));
    assert!(!stage.prim("/World").is_valid()?, "the rejected edit rolled back");
    Ok(())
}

/// A batched namespace edit delivers one composed `after_commit` for the whole
/// batch, and a dry run fires nothing.
#[test]
fn namespace_edit_fires_sink() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/A/B")?;
    let after = Rc::new(Cell::new(0u32));
    {
        let after = after.clone();
        stage.add_sink(move |_: &Stage, _: &CommittedChange<'_>| after.set(after.get() + 1));
    }
    let mut editor = usd::NamespaceEditor::new(&stage);
    editor.delete_prim("/A/B");
    // A dry run proves the batch applies but commits nothing — no sink fires.
    editor.can_apply().unwrap();
    assert_eq!(after.get(), 0, "a dry run does not reach after_commit");
    editor.apply()?;
    assert_eq!(after.get(), 1, "the namespace edit delivered after_commit once");
    assert!(!stage.prim("/A/B").is_valid()?);
    Ok(())
}

/// A layer sink's veto on any layer aborts a multi-layer namespace edit
/// wholesale: every layer rolls back, leaving the composed scene untouched.
#[test]
fn namespace_edit_veto_atomic() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/A/B")?;
    let root = stage.root_layer().identifier().to_string();
    stage
        .layer_mut(&root)
        .expect("root layer")
        .add_sink(RecordingLayerSink {
            before: Some(Box::new(|_| Err(sdf::sink::Error::new("locked")))),
            ..Default::default()
        });
    let mut editor = usd::NamespaceEditor::new(&stage);
    editor.delete_prim("/A/B");
    assert!(matches!(
        editor.apply(),
        Err(usd::NamespaceEditError::Stage(StageAuthoringError::Rejected(_)))
    ));
    assert!(stage.prim("/A/B").is_valid()?, "the vetoed batch left the prim intact");
    Ok(())
}

/// An edit authored through a `Prim` handle (not a `Stage` method) still fires
/// the sink — capture is stage-level, not method-level.
#[test]
fn sink_handle_edit_fires() -> Result<()> {
    let stage = in_memory_stage()?;
    let prim = stage.define_prim("/World")?;
    let count = Rc::new(Cell::new(0u32));
    {
        let count = count.clone();
        stage.add_sink(move |_: &Stage, _: &CommittedChange<'_>| count.set(count.get() + 1));
    }
    prim.set_type_name("Xform")?;
    assert_eq!(count.get(), 1, "a handle edit reaches the stage's sink");
    Ok(())
}

/// A sink observes only edits committed after it was installed; a prior edit is
/// not replayed to it.
#[test]
fn sink_only_sees_edits_after_install() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/Before")?;
    let count = Rc::new(Cell::new(0u32));
    {
        let count = count.clone();
        stage.add_sink(move |_: &Stage, _: &CommittedChange<'_>| count.set(count.get() + 1));
    }
    stage.define_prim("/After")?;
    assert_eq!(count.get(), 1, "only the post-install edit is observed");
    Ok(())
}

/// A layer-stack-significant edit (here `timeCodesPerSecond`) drops every
/// cached index, so the notice reports a stage-wide resync at the pseudo-root
/// rather than an empty `resynced`.
#[test]
fn listener_layer_stack_resync() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/World")?;
    let resynced: Rc<RefCell<Vec<sdf::Path>>> = Rc::new(RefCell::new(Vec::new()));
    let _token = {
        let resynced = resynced.clone();
        stage.add_sink(move |_stage: &Stage, oc: &CommittedChange<'_>| {
            resynced.borrow_mut().extend(oc.resynced.iter().cloned());
        })
    };
    stage.set_time_codes_per_second(48.0)?;
    assert!(resynced.borrow().contains(&sdf::Path::abs_root()));
    Ok(())
}

/// A sink may author another edit from within `after_commit`: the re-entrant
/// authoring tail takes only a snapshot of the sink list (and the other cells
/// are released before the fire), so it does not panic.
#[test]
fn listener_reentrant_author() -> Result<()> {
    let stage = in_memory_stage()?;
    let done = Rc::new(Cell::new(false));
    let _token = {
        let done = done.clone();
        stage.add_sink(move |stage: &Stage, _change: &CommittedChange<'_>| {
            if !done.replace(true) {
                stage.define_prim("/Nested").unwrap();
            }
        })
    };
    stage.define_prim("/World")?;
    assert!(stage.prim("/Nested").is_valid()?);
    Ok(())
}

/// An idempotent author records no change, so the sink does not fire.
#[test]
fn empty_edit_no_fire() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/A")?;
    let count = Rc::new(Cell::new(0u32));
    let _token = {
        let count = count.clone();
        stage.add_sink(move |_: &Stage, _: &CommittedChange<'_>| count.set(count.get() + 1))
    };
    stage.define_prim("/A")?;
    assert_eq!(count.get(), 0);
    Ok(())
}

/// `remove_prim` erases the prim spec, drops it from the parent's children, and
/// resyncs its path; a second removal is a no-op.
#[test]
fn remove_prim_drops_spec() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/A/B")?;
    assert!(stage.prim("/A/B").is_valid()?);
    let resynced: Rc<RefCell<Vec<sdf::Path>>> = Rc::new(RefCell::new(Vec::new()));
    let _token = {
        let resynced = resynced.clone();
        stage.add_sink(move |_stage: &Stage, oc: &CommittedChange<'_>| {
            resynced.borrow_mut().extend(oc.resynced.iter().cloned());
        })
    };
    assert!(stage.remove_prim("/A/B")?);
    assert!(!stage.prim("/A/B").is_valid()?);
    assert!(!child_names(&stage, "/A")?.contains(&"B".to_string()));
    assert!(resynced.borrow().contains(&sdf::path("/A/B")?));
    // Nothing left to remove.
    assert!(!stage.remove_prim("/A/B")?);
    Ok(())
}

/// `remove_property` erases the attribute spec and drops it from the owning
/// prim's properties; a second removal is a no-op.
#[test]
fn remove_property_drops_spec() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/A")?;
    stage.create_attribute("/A.size", "double")?;
    assert!(stage.prim("/A").property_names()?.iter().any(|t| t == "size"));

    assert!(stage.remove_property("/A.size")?);
    assert!(!stage.prim("/A").property_names()?.iter().any(|t| t == "size"));
    assert!(stage.prim("/A").is_valid()?);
    assert!(!stage.remove_property("/A.size")?);
    Ok(())
}

/// Each removal API rejects the wrong path kind rather than crossing into the
/// other: a property path on `remove_prim`, a prim path on `remove_property`.
#[test]
fn remove_rejects_wrong_path_kind() -> Result<()> {
    let stage = in_memory_stage()?;
    stage.define_prim("/A")?;
    stage.create_attribute("/A.size", "double")?;

    assert!(matches!(
        stage.remove_prim("/A.size"),
        Err(StageAuthoringError::Layer(sdf::AuthoringError::InvalidPath { .. }))
    ));
    assert!(matches!(
        stage.remove_property("/A"),
        Err(StageAuthoringError::Layer(sdf::AuthoringError::InvalidPath { .. }))
    ));

    // The rejected calls left both specs intact.
    assert!(stage.prim("/A").is_valid()?);
    assert!(stage.prim("/A").property_names()?.iter().any(|t| t == "size"));
    Ok(())
}