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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stdint.h>
#include <tuple>
#include <utility>
#include "base/check.h"
#include "base/command_line.h"
#include "base/containers/contains.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/ptr_util.h"
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/bind.h"
#include "base/test/gtest_util.h"
#include "base/test/test_future.h"
#include "base/time/time.h"
#include "base/unguessable_token.h"
#include "build/build_config.h"
#include "components/download/public/common/download_url_parameters.h"
#include "components/input/native_web_keyboard_event.h"
#include "content/browser/child_process_security_policy_impl.h"
#include "content/browser/media/audio_stream_monitor.h"
#include "content/browser/media/media_web_contents_observer.h"
#include "content/browser/renderer_host/navigation_entry_impl.h"
#include "content/browser/renderer_host/navigator.h"
#include "content/browser/renderer_host/render_frame_host_impl.h"
#include "content/browser/renderer_host/render_frame_proxy_host.h"
#include "content/browser/renderer_host/render_view_host_impl.h"
#include "content/browser/site_instance_impl.h"
#include "content/browser/storage_partition_impl.h"
#include "content/common/content_navigation_policy.h"
#include "content/common/frame.mojom.h"
#include "content/public/browser/child_process_security_policy.h"
#include "content/public/browser/content_browser_client.h"
#include "content/public/browser/context_menu_params.h"
#include "content/public/browser/global_request_id.h"
#include "content/public/browser/javascript_dialog_manager.h"
#include "content/public/browser/navigation_details.h"
#include "content/public/browser/render_widget_host_view.h"
#include "content/public/browser/ssl_host_state_delegate.h"
#include "content/public/browser/storage_partition.h"
#include "content/public/browser/web_contents_delegate.h"
#include "content/public/browser/web_contents_observer.h"
#include "content/public/browser/web_ui_controller.h"
#include "content/public/common/bindings_policy.h"
#include "content/public/common/content_constants.h"
#include "content/public/common/content_features.h"
#include "content/public/common/url_constants.h"
#include "content/public/common/url_utils.h"
#include "content/public/test/back_forward_cache_util.h"
#include "content/public/test/fake_local_frame.h"
#include "content/public/test/mock_render_process_host.h"
#include "content/public/test/navigation_simulator.h"
#include "content/public/test/scoped_web_ui_controller_factory_registration.h"
#include "content/public/test/test_browser_context.h"
#include "content/public/test/test_utils.h"
#include "content/test/navigation_simulator_impl.h"
#include "content/test/test_content_browser_client.h"
#include "content/test/test_content_client.h"
#include "content/test/test_page_broadcast.h"
#include "content/test/test_render_frame_host.h"
#include "content/test/test_render_view_host.h"
#include "content/test/test_web_contents.h"
#include "mojo/public/cpp/bindings/pending_receiver.h"
#include "mojo/public/cpp/bindings/receiver.h"
#include "net/base/network_handle.h"
#include "net/test/cert_test_util.h"
#include "net/test/test_data_directory.h"
#include "services/network/public/cpp/resource_request.h"
#include "services/network/public/cpp/web_sandbox_flags.h"
#include "services/network/public/mojom/attribution.mojom.h"
#include "services/network/test/test_network_context.h"
#include "skia/ext/skia_utils_base.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/public/common/chrome_debug_urls.h"
#include "third_party/blink/public/common/input/synthetic_web_input_event_builders.h"
#include "third_party/blink/public/common/input/web_input_event.h"
#include "third_party/blink/public/common/security/protocol_handler_security_level.h"
#include "third_party/blink/public/mojom/frame/fullscreen.mojom.h"
#include "third_party/blink/public/mojom/image_downloader/image_downloader.mojom.h"
#include "third_party/blink/public/mojom/mediastream/media_stream.mojom.h"
#include "third_party/blink/public/mojom/page/page_visibility_state.mojom.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/geometry/skia_conversions.h"
#include "url/gurl.h"
#include "url/url_constants.h"
namespace content {
namespace {
class WebContentsImplTest : public RenderViewHostImplTestHarness {
public:
void SetUp() override {
RenderViewHostImplTestHarness::SetUp();
if (IsIsolatedOriginRequiredToGuaranteeDedicatedProcess()) {
// Isolate |isolated_cross_site_url()| so it cannot share a process
// with another site.
ChildProcessSecurityPolicyImpl::GetInstance()->AddFutureIsolatedOrigins(
{url::Origin::Create(isolated_cross_site_url())},
ChildProcessSecurityPolicy::IsolatedOriginSource::TEST,
browser_context());
// Reset the WebContents so the isolated origin will be honored by
// all BrowsingInstances used in the test.
SetContents(CreateTestWebContents());
}
}
bool has_audio_wake_lock() {
return contents()
->media_web_contents_observer()
->has_audio_wake_lock_for_testing();
}
GURL isolated_cross_site_url() const {
return GURL("http://isolated-cross-site.com");
}
};
class TestWebContentsObserver : public WebContentsObserver {
public:
explicit TestWebContentsObserver(WebContents* contents)
: WebContentsObserver(contents) {}
TestWebContentsObserver(const TestWebContentsObserver&) = delete;
TestWebContentsObserver& operator=(const TestWebContentsObserver&) = delete;
~TestWebContentsObserver() override {
EXPECT_FALSE(expected_capture_handle_config_) << "Unfulfilled expectation.";
}
void DidFinishLoad(RenderFrameHost* render_frame_host,
const GURL& validated_url) override {
last_url_ = validated_url;
}
void DidFailLoad(RenderFrameHost* render_frame_host,
const GURL& validated_url,
int error_code) override {
last_url_ = validated_url;
}
void DidFirstVisuallyNonEmptyPaint() override {
observed_did_first_visually_non_empty_paint_ = true;
EXPECT_TRUE(web_contents()->CompletedFirstVisuallyNonEmptyPaint());
}
void DidChangeThemeColor() override { ++theme_color_change_calls_; }
void DidChangeVerticalScrollDirection(
viz::VerticalScrollDirection scroll_direction) override {
last_vertical_scroll_direction_ = scroll_direction;
}
MOCK_METHOD(void,
OnCapabilityTypesChanged,
(WebContentsCapabilityType capability_type, bool used),
(override));
void OnCaptureHandleConfigUpdate(
const blink::mojom::CaptureHandleConfig& config) override {
ASSERT_TRUE(expected_capture_handle_config_) << "Unexpected call.";
EXPECT_EQ(config, *expected_capture_handle_config_);
expected_capture_handle_config_ = nullptr;
}
void OnTextCopiedToClipboard(RenderFrameHost* render_frame_host,
const std::u16string& copied_text) override {
text_copied_to_clipboard_ = copied_text;
}
void OnKeepAliveRequestCreated(
const network::ResourceRequest& resource_request,
RenderFrameHost* initiator_rfh) override {
fetch_keepalive_request_ = resource_request;
}
void ExpectOnCaptureHandleConfigUpdate(
blink::mojom::CaptureHandleConfigPtr config) {
CHECK(config) << "Malformed test.";
ASSERT_FALSE(expected_capture_handle_config_) << "Unfulfilled expectation.";
expected_capture_handle_config_ = std::move(config);
}
const GURL& last_url() const { return last_url_; }
int theme_color_change_calls() const { return theme_color_change_calls_; }
std::optional<viz::VerticalScrollDirection> last_vertical_scroll_direction()
const {
return last_vertical_scroll_direction_;
}
bool observed_did_first_visually_non_empty_paint() const {
return observed_did_first_visually_non_empty_paint_;
}
const std::u16string text_copied_to_clipboard() const {
return text_copied_to_clipboard_;
}
const network::ResourceRequest& fetch_keepalive_request() const {
return fetch_keepalive_request_;
}
private:
GURL last_url_;
int theme_color_change_calls_ = 0;
std::optional<viz::VerticalScrollDirection> last_vertical_scroll_direction_;
bool observed_did_first_visually_non_empty_paint_ = false;
blink::mojom::CaptureHandleConfigPtr expected_capture_handle_config_;
std::u16string text_copied_to_clipboard_;
network::ResourceRequest fetch_keepalive_request_;
};
class MockWebContentsDelegate : public WebContentsDelegate {
public:
explicit MockWebContentsDelegate(
blink::ProtocolHandlerSecurityLevel security_level =
blink::ProtocolHandlerSecurityLevel::kStrict)
: security_level_(security_level) {}
MOCK_METHOD2(HandleContextMenu,
bool(RenderFrameHost&, const ContextMenuParams&));
MOCK_METHOD4(RegisterProtocolHandler,
void(RenderFrameHost*, const std::string&, const GURL&, bool));
MOCK_METHOD(void, NavigationStateChanged, (WebContents*, InvalidateTypes));
blink::ProtocolHandlerSecurityLevel GetProtocolHandlerSecurityLevel(
RenderFrameHost*) override {
return security_level_;
}
private:
blink::ProtocolHandlerSecurityLevel security_level_;
};
// Pretends to be a normal browser that receives toggles and transitions to/from
// a fullscreened state.
class FakeFullscreenDelegate : public WebContentsDelegate {
public:
FakeFullscreenDelegate() : fullscreened_contents_(nullptr) {}
FakeFullscreenDelegate(const FakeFullscreenDelegate&) = delete;
FakeFullscreenDelegate& operator=(const FakeFullscreenDelegate&) = delete;
~FakeFullscreenDelegate() override = default;
void EnterFullscreenModeForTab(
RenderFrameHost* requesting_frame,
const blink::mojom::FullscreenOptions& options) override {
fullscreened_contents_ = WebContents::FromRenderFrameHost(requesting_frame);
}
void ExitFullscreenModeForTab(WebContents* web_contents) override {
fullscreened_contents_ = nullptr;
}
bool IsFullscreenForTabOrPending(const WebContents* web_contents) override {
return fullscreened_contents_ && web_contents == fullscreened_contents_;
}
private:
raw_ptr<WebContents> fullscreened_contents_;
};
class FakeWebContentsDelegate : public WebContentsDelegate {
public:
FakeWebContentsDelegate() = default;
FakeWebContentsDelegate(const FakeWebContentsDelegate&) = delete;
FakeWebContentsDelegate& operator=(const FakeWebContentsDelegate&) = delete;
~FakeWebContentsDelegate() override = default;
void LoadingStateChanged(WebContents* source,
bool should_show_loading_ui) override {
loading_state_changed_was_called_ = true;
}
bool loading_state_changed_was_called() const {
return loading_state_changed_was_called_;
}
private:
bool loading_state_changed_was_called_ = false;
};
class FakeImageDownloader : public blink::mojom::ImageDownloader {
public:
FakeImageDownloader() = default;
~FakeImageDownloader() override = default;
void Init(service_manager::InterfaceProvider* interface_provider) {
service_manager::InterfaceProvider::TestApi test_api(interface_provider);
test_api.SetBinderForName(blink::mojom::ImageDownloader::Name_,
base::BindRepeating(&FakeImageDownloader::Bind,
base::Unretained(this)));
}
void DownloadImage(const GURL& url,
bool is_favicon,
const gfx::Size& preferred_size,
uint32_t max_bitmap_size,
bool bypass_cache,
DownloadImageCallback callback) override {
if (!base::Contains(fake_response_data_per_url_, url)) {
// This could return a 404, but there is no test that currently relies on
// it.
return;
}
const FakeResponseData& response_data = fake_response_data_per_url_[url];
std::move(callback).Run(/*http_status_code=*/200, response_data.bitmaps,
response_data.original_bitmap_sizes);
}
void DownloadImageFromAxNode(
int32_t ax_node_id,
const ::gfx::Size& preferred_size,
uint32_t max_bitmap_size,
bool bypass_cache,
DownloadImageFromAxNodeCallback callback) override {
if (!base::Contains(fake_response_data_per_ax_node_id_, ax_node_id)) {
// This could return a 404, but there is no test that currently relies on
// it.
return;
}
const FakeResponseData& response_data =
fake_response_data_per_ax_node_id_[ax_node_id];
std::move(callback).Run(/*http_status_code=*/0, response_data.bitmaps,
response_data.original_bitmap_sizes);
}
void SetFakeResponseData(
const GURL& url,
const std::vector<SkBitmap>& bitmaps,
const std::vector<gfx::Size>& original_bitmap_sizes) {
fake_response_data_per_url_[url] =
FakeResponseData{bitmaps, original_bitmap_sizes};
}
void SetFakeResponseData(
const int ax_node_id,
const std::vector<SkBitmap>& bitmaps,
const std::vector<gfx::Size>& original_bitmap_sizes) {
fake_response_data_per_ax_node_id_[ax_node_id] =
FakeResponseData{bitmaps, original_bitmap_sizes};
}
private:
struct FakeResponseData {
std::vector<SkBitmap> bitmaps;
std::vector<gfx::Size> original_bitmap_sizes;
};
void Bind(mojo::ScopedMessagePipeHandle handle) {
receiver_.Bind(mojo::PendingReceiver<blink::mojom::ImageDownloader>(
std::move(handle)));
}
mojo::Receiver<blink::mojom::ImageDownloader> receiver_{this};
std::map<GURL, FakeResponseData> fake_response_data_per_url_;
std::map<int, FakeResponseData> fake_response_data_per_ax_node_id_;
};
class MockPageBroadcast : public TestPageBroadcast {
public:
using TestPageBroadcast::TestPageBroadcast;
MOCK_METHOD(void,
UpdateColorProviders,
(const blink::ColorProviderColorMaps& color_provider_colors),
(override));
};
class TestColorProviderSource : public ui::ColorProviderSource {
public:
TestColorProviderSource() = default;
const ui::ColorProvider* GetColorProvider() const override {
return &provider_;
}
ui::RendererColorMap GetRendererColorMap(
ui::ColorProviderKey::ColorMode color_mode,
ui::ColorProviderKey::ForcedColors forced_colors) const override {
if (forced_colors == ui::ColorProviderKey::ForcedColors::kActive) {
return forced_colors_map;
}
return color_mode == ui::ColorProviderKey::ColorMode::kLight ? light_colors
: dark_colors;
}
ui::ColorProviderKey GetColorProviderKey() const override { return key_; }
private:
ui::ColorProvider provider_;
ui::ColorProviderKey key_;
const ui::RendererColorMap light_colors{
{color::mojom::RendererColorId::kColorMenuBackground, SK_ColorWHITE}};
const ui::RendererColorMap dark_colors{
{color::mojom::RendererColorId::kColorMenuBackground, SK_ColorBLACK}};
const ui::RendererColorMap forced_colors_map{
{color::mojom::RendererColorId::kColorMenuBackground, SK_ColorCYAN}};
};
class MockNetworkContext : public network::TestNetworkContext {
public:
explicit MockNetworkContext(
mojo::PendingReceiver<network::mojom::NetworkContext> receiver)
: receiver_(this, std::move(receiver)) {}
MOCK_METHOD(
void,
NotifyExternalCacheHit,
(const GURL&, const std::string&, const net::NetworkIsolationKey&, bool),
(override));
private:
mojo::Receiver<network::mojom::NetworkContext> receiver_;
};
} // namespace
TEST_F(WebContentsImplTest, SetMainFrameMimeType) {
ASSERT_TRUE(controller().IsInitialNavigation());
std::string mime = "text/html";
main_test_rfh()->GetPage().SetContentsMimeType(mime);
EXPECT_EQ(mime, contents()->GetContentsMimeType());
}
TEST_F(WebContentsImplTest, UpdateTitle) {
FakeWebContentsDelegate fake_delegate;
contents()->SetDelegate(&fake_delegate);
NavigationControllerImpl& cont =
static_cast<NavigationControllerImpl&>(controller());
cont.LoadURL(GURL(url::kAboutBlankURL), Referrer(), ui::PAGE_TRANSITION_TYPED,
std::string());
auto params = mojom::DidCommitProvisionalLoadParams::New();
params->url = GURL(url::kAboutBlankURL);
params->origin = url::Origin::Create(params->url);
params->referrer = blink::mojom::Referrer::New();
params->transition = ui::PAGE_TRANSITION_TYPED;
params->should_update_history = false;
params->did_create_new_entry = true;
params->method = "GET";
params->page_state = blink::PageState::CreateFromURL(params->url);
main_test_rfh()->SendNavigateWithParams(std::move(params),
false /* was_within_same_document */);
contents()->UpdateTitle(main_test_rfh(), u" Lots O' Whitespace\n",
base::i18n::LEFT_TO_RIGHT);
// Make sure that title updates get stripped of whitespace.
EXPECT_EQ(u"Lots O' Whitespace", contents()->GetTitle());
EXPECT_FALSE(contents()->IsWaitingForResponse());
EXPECT_TRUE(fake_delegate.loading_state_changed_was_called());
contents()->SetDelegate(nullptr);
}
TEST_F(WebContentsImplTest, UpdateTitleBeforeFirstNavigation) {
ASSERT_TRUE(controller().IsInitialNavigation());
const std::u16string title = u"Initial Entry Title";
contents()->UpdateTitle(main_test_rfh(), title, base::i18n::LEFT_TO_RIGHT);
EXPECT_EQ(title, contents()->GetTitle());
}
TEST_F(WebContentsImplTest, UpdateTitleWhileFirstNavigationIsPending) {
const GURL kGURL(GetWebUIURL("blah"));
controller().LoadURL(kGURL, Referrer(), ui::PAGE_TRANSITION_TYPED,
std::string());
ASSERT_TRUE(!!controller().GetPendingEntry());
const std::u16string title = u"Initial Entry Title";
contents()->UpdateTitle(main_test_rfh(), title, base::i18n::LEFT_TO_RIGHT);
EXPECT_EQ(title, contents()->GetTitle());
}
TEST_F(WebContentsImplTest, DontUsePendingEntryUrlAsTitle) {
const GURL kGURL(GetWebUIURL("blah"));
controller().LoadURL(kGURL, Referrer(), ui::PAGE_TRANSITION_TYPED,
std::string());
EXPECT_EQ(std::u16string(), contents()->GetTitle());
}
TEST_F(WebContentsImplTest, UpdateAndUseTitleFromFirstNavigationPendingEntry) {
const GURL kGURL(GetWebUIURL("blah"));
controller().LoadURL(kGURL, Referrer(), ui::PAGE_TRANSITION_TYPED,
std::string());
MockWebContentsDelegate delegate;
contents()->SetDelegate(&delegate);
EXPECT_CALL(delegate,
NavigationStateChanged(contents(), INVALIDATE_TYPE_TITLE));
const std::u16string title = u"Initial Entry Title";
contents()->UpdateTitleForEntry(controller().GetPendingEntry(), title);
EXPECT_EQ(title, contents()->GetTitle());
}
TEST_F(WebContentsImplTest,
UpdateAndDontUseTitleFromPendingEntryForSecondNavigation) {
const GURL first_gurl("http://www.foo.com");
const GURL second_gurl("http://www.bar.com");
// Complete first navigation.
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), first_gurl);
std::u16string first_title = contents()->GetTitle();
// Start second navigation.
controller().LoadURL(second_gurl, Referrer(), ui::PAGE_TRANSITION_TYPED,
std::string());
// We shouldn't use the title of the second navigation's pending entry, even
// after explicitly setting it - we only use the pending entry's title if it's
// for the first navigation.
contents()->UpdateTitleForEntry(controller().GetPendingEntry(), u"bar");
EXPECT_EQ(contents()->GetTitle(), first_title);
}
// Stub out local frame mojo binding. Intercepts calls to EnableViewSourceMode
// and marks the message as received. This class attaches to the first
// RenderFrameHostImpl created.
class EnableViewSourceLocalFrame : public content::FakeLocalFrame,
public WebContentsObserver {
public:
explicit EnableViewSourceLocalFrame(WebContents* web_contents)
: WebContentsObserver(web_contents) {}
void ReadyToCommitNavigation(NavigationHandle* navigation_handle) override {
if (!initialized_) {
initialized_ = true;
Init(navigation_handle->GetRenderFrameHost()
->GetRemoteAssociatedInterfaces());
}
}
void EnableViewSourceMode() final { enabled_view_source_ = true; }
bool IsViewSourceModeEnabled() const { return enabled_view_source_; }
private:
bool enabled_view_source_ = false;
bool initialized_ = false;
};
// Browser initiated navigations to view-source URLs of WebUI pages should work.
TEST_F(WebContentsImplTest, DirectNavigationToViewSourceWebUI) {
const GURL kGURL("view-source:" + GetWebUIURLString("blah/"));
// NavigationControllerImpl rewrites view-source URLs, simulating that here.
const GURL kRewrittenURL(GetWebUIURL("blah"));
EnableViewSourceLocalFrame local_frame(contents());
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), kGURL);
// Did we get the expected message?
base::RunLoop().RunUntilIdle();
EXPECT_TRUE(local_frame.IsViewSourceModeEnabled());
// This is the virtual URL.
EXPECT_EQ(
kGURL,
contents()->GetController().GetLastCommittedEntry()->GetVirtualURL());
// The actual URL navigated to.
EXPECT_EQ(kRewrittenURL,
contents()->GetController().GetLastCommittedEntry()->GetURL());
}
// Test simple same-SiteInstance navigation.
TEST_F(WebContentsImplTest, SimpleNavigation) {
TestRenderFrameHost* orig_rfh = main_test_rfh();
SiteInstance* instance1 = contents()->GetSiteInstance();
EXPECT_EQ(nullptr, contents()->GetSpeculativePrimaryMainFrame());
// Navigate until ready to commit.
const GURL url("http://www.google.com");
auto navigation =
NavigationSimulator::CreateBrowserInitiated(url, contents());
navigation->ReadyToCommit();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(instance1, orig_rfh->GetSiteInstance());
// Controller's pending entry will have a null site instance until we assign
// it in Commit.
EXPECT_EQ(nullptr, NavigationEntryImpl::FromNavigationEntry(
controller().GetVisibleEntry())
->site_instance());
navigation->Commit();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(orig_rfh, main_test_rfh());
EXPECT_EQ(instance1, orig_rfh->GetSiteInstance());
// Controller's entry should now have the SiteInstance, or else we won't be
// able to find it later.
EXPECT_EQ(instance1, NavigationEntryImpl::FromNavigationEntry(
controller().GetVisibleEntry())
->site_instance());
}
// Test that we reject NavigateToEntry if the url is over kMaxURLChars.
TEST_F(WebContentsImplTest, NavigateToExcessivelyLongURL) {
// Construct a URL that's kMaxURLChars + 1 long of all 'a's.
const GURL url(
std::string("http://example.org/").append(url::kMaxURLChars + 1, 'a'));
controller().LoadURL(url, Referrer(), ui::PAGE_TRANSITION_GENERATED,
std::string());
EXPECT_EQ(nullptr, controller().GetPendingEntry());
}
// Test that we reject NavigateToEntry if the url is invalid.
TEST_F(WebContentsImplTest, NavigateToInvalidURL) {
// Invalid URLs should not trigger a navigation.
const GURL invalid_url("view-source:http://example%00.com/");
controller().LoadURL(invalid_url, Referrer(), ui::PAGE_TRANSITION_GENERATED,
std::string());
EXPECT_EQ(nullptr, controller().GetPendingEntry());
// Empty URLs are supported and should start a navigation.
controller().LoadURL(GURL(), Referrer(), ui::PAGE_TRANSITION_GENERATED,
std::string());
EXPECT_NE(nullptr, controller().GetPendingEntry());
}
// Test that we reject NavigateToEntry if the url is a renderer debug URL
// inside a view-source: URL. This verifies that the navigation is not allowed
// to proceed after the view-source: URL rewriting logic has run.
TEST_F(WebContentsImplTest, NavigateToViewSourceRendererDebugURL) {
const GURL renderer_debug_url(blink::kChromeUIKillURL);
const GURL view_source_debug_url("view-source:" + renderer_debug_url.spec());
EXPECT_TRUE(blink::IsRendererDebugURL(renderer_debug_url));
EXPECT_FALSE(blink::IsRendererDebugURL(view_source_debug_url));
controller().LoadURL(view_source_debug_url, Referrer(),
ui::PAGE_TRANSITION_GENERATED, std::string());
EXPECT_EQ(nullptr, controller().GetPendingEntry());
}
// Test that navigating across a site boundary creates a new RenderViewHost
// with a new SiteInstance. Going back should do the same.
TEST_F(WebContentsImplTest, CrossSiteBoundaries) {
// This test assumes no interaction with the back forward cache.
// Similar coverage when BFCache is on can be found in
// BackForwardCacheBrowserTest.NavigateBackForwardRepeatedly.
contents()->GetController().GetBackForwardCache().DisableForTesting(
BackForwardCache::TEST_REQUIRES_NO_CACHING);
TestRenderFrameHost* orig_rfh = main_test_rfh();
int orig_rvh_delete_count = 0;
orig_rfh->GetRenderViewHost()->set_delete_counter(&orig_rvh_delete_count);
SiteInstanceImpl* instance1 = contents()->GetSiteInstance();
// Navigate to URL. First URL should use first RenderViewHost.
const GURL url("http://www.google.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
// Keep the number of active frames in orig_rfh's SiteInstanceGroup non-zero
// so that orig_rfh doesn't get deleted when it gets swapped out.
orig_rfh->GetSiteInstance()->group()->IncrementActiveFrameCount();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(orig_rfh->GetRenderViewHost(), contents()->GetRenderViewHost());
EXPECT_EQ(url, contents()->GetLastCommittedURL());
EXPECT_EQ(url, contents()->GetVisibleURL());
// Navigate to new site
const GURL url2("http://www.yahoo.com");
auto new_site_navigation =
NavigationSimulator::CreateBrowserInitiated(url2, contents());
new_site_navigation->ReadyToCommit();
EXPECT_TRUE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(url, contents()->GetLastCommittedURL());
EXPECT_EQ(url2, contents()->GetVisibleURL());
TestRenderFrameHost* pending_rfh =
contents()->GetSpeculativePrimaryMainFrame();
EXPECT_TRUE(pending_rfh->GetLastCommittedURL().is_empty());
int pending_rvh_delete_count = 0;
pending_rfh->GetRenderViewHost()->set_delete_counter(
&pending_rvh_delete_count);
// DidNavigate from the pending page.
new_site_navigation->Commit();
SiteInstanceImpl* instance2 = contents()->GetSiteInstance();
// Keep the number of active frames in pending_rfh's SiteInstanceGroup
// non-zero so that orig_rfh doesn't get deleted when it gets
// swapped out.
pending_rfh->GetSiteInstance()->group()->IncrementActiveFrameCount();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(pending_rfh, main_test_rfh());
EXPECT_EQ(url2, contents()->GetLastCommittedURL());
EXPECT_EQ(url2, contents()->GetVisibleURL());
EXPECT_NE(instance1, instance2);
EXPECT_EQ(nullptr, contents()->GetSpeculativePrimaryMainFrame());
// We keep a proxy for the original RFH's SiteInstanceGroup.
EXPECT_TRUE(contents()
->GetPrimaryMainFrame()
->browsing_context_state()
->GetRenderFrameProxyHost(instance1->group()));
EXPECT_EQ(orig_rvh_delete_count, 0);
// Going back should switch SiteInstances again. The first SiteInstance is
// stored in the NavigationEntry, so it should be the same as at the start.
// We should use the same RFH as before, swapping it back in.
auto back_navigation = NavigationSimulator::CreateHistoryNavigation(
-1, contents(), false /* is_renderer_initiated */);
back_navigation->ReadyToCommit();
TestRenderFrameHost* goback_rfh =
contents()->GetSpeculativePrimaryMainFrame();
EXPECT_TRUE(contents()->CrossProcessNavigationPending());
// DidNavigate from the back action.
back_navigation->Commit();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(goback_rfh, main_test_rfh());
EXPECT_EQ(url, contents()->GetLastCommittedURL());
EXPECT_EQ(url, contents()->GetVisibleURL());
EXPECT_EQ(instance1, contents()->GetSiteInstance());
// There should be a proxy for the pending RFH SiteInstance.
EXPECT_TRUE(contents()
->GetPrimaryMainFrame()
->browsing_context_state()
->GetRenderFrameProxyHost(instance2->group()));
EXPECT_EQ(pending_rvh_delete_count, 0);
// Close contents and ensure RVHs are deleted.
DeleteContents();
EXPECT_EQ(orig_rvh_delete_count, 1);
EXPECT_EQ(pending_rvh_delete_count, 1);
}
// Test that navigating across a site boundary after a crash creates a new
// RFH without requiring a cross-site transition (i.e., PENDING state).
// TODO(crbug.com/375057184): Determine why this test crashes on Android and
// re-enable it.
#if BUILDFLAG(IS_ANDROID)
#define MAYBE_CrossSiteBoundariesAfterCrash \
DISABLED_CrossSiteBoundariesAfterCrash
#else
#define MAYBE_CrossSiteBoundariesAfterCrash CrossSiteBoundariesAfterCrash
#endif
TEST_F(WebContentsImplTest, MAYBE_CrossSiteBoundariesAfterCrash) {
// Ensure that the cross-site transition will also be cross-process on
// Android.
IsolateAllSitesForTesting(base::CommandLine::ForCurrentProcess());
TestRenderFrameHost* orig_rfh = main_test_rfh();
int orig_rvh_delete_count = 0;
orig_rfh->GetRenderViewHost()->set_delete_counter(&orig_rvh_delete_count);
SiteInstance* instance1 = contents()->GetSiteInstance();
// Navigate to URL. First URL should use first RenderViewHost.
const GURL url("http://www.google.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(orig_rfh->GetRenderViewHost(), contents()->GetRenderViewHost());
// Simulate a renderer crash.
EXPECT_TRUE(orig_rfh->IsRenderFrameLive());
orig_rfh->GetProcess()->SimulateCrash();
EXPECT_FALSE(orig_rfh->IsRenderFrameLive());
// Start navigating to a new site. We should not go into PENDING.
const GURL url2("http://www.yahoo.com");
auto navigation_to_url2 =
NavigationSimulator::CreateBrowserInitiated(url2, contents());
navigation_to_url2->ReadyToCommit();
TestRenderFrameHost* new_rfh = main_test_rfh();
if (ShouldSkipEarlyCommitPendingForCrashedFrame()) {
EXPECT_TRUE(contents()->CrossProcessNavigationPending());
EXPECT_NE(nullptr, contents()->GetSpeculativePrimaryMainFrame());
EXPECT_EQ(orig_rfh, new_rfh);
EXPECT_EQ(orig_rvh_delete_count, 0);
} else {
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(nullptr, contents()->GetSpeculativePrimaryMainFrame());
EXPECT_NE(orig_rfh, new_rfh);
EXPECT_EQ(orig_rvh_delete_count, 1);
}
navigation_to_url2->Commit();
SiteInstance* instance2 = contents()->GetSiteInstance();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
if (ShouldSkipEarlyCommitPendingForCrashedFrame()) {
EXPECT_NE(new_rfh, main_rfh());
} else {
EXPECT_EQ(new_rfh, main_rfh());
}
EXPECT_NE(instance1, instance2);
EXPECT_EQ(nullptr, contents()->GetSpeculativePrimaryMainFrame());
// Close contents and ensure RVHs are deleted.
DeleteContents();
EXPECT_EQ(orig_rvh_delete_count, 1);
}
// Test that opening a new contents in the same SiteInstance and then navigating
// both contentses to a new site will place both contentses in a single
// SiteInstance.
TEST_F(WebContentsImplTest, NavigateTwoTabsCrossSite) {
SiteInstance* instance1 = contents()->GetSiteInstance();
// Navigate to URL. First URL should use first RenderViewHost.
const GURL url("http://www.google.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
// Open a new contents with the same SiteInstance, navigated to the same site.
std::unique_ptr<TestWebContents> contents2(
TestWebContents::Create(browser_context(), instance1));
NavigationSimulator::NavigateAndCommitFromBrowser(contents2.get(), url);
EXPECT_EQ(instance1, contents2->GetSiteInstance());
// Navigate first contents to a new site.
const GURL url2a = isolated_cross_site_url();
auto navigation1 =
NavigationSimulator::CreateBrowserInitiated(url2a, contents());
navigation1->SetTransition(ui::PAGE_TRANSITION_LINK);
navigation1->ReadyToCommit();
EXPECT_TRUE(contents()->CrossProcessNavigationPending());
navigation1->Commit();
SiteInstance* instance2a = contents()->GetSiteInstance();
EXPECT_NE(instance1, instance2a);
// Navigate second contents to the same site as the first tab.
const GURL url2b = isolated_cross_site_url().Resolve("/foo");
auto navigation2 =
NavigationSimulator::CreateBrowserInitiated(url2b, contents2.get());
navigation2->SetTransition(ui::PAGE_TRANSITION_LINK);
navigation2->ReadyToCommit();
EXPECT_TRUE(contents2->CrossProcessNavigationPending());
// NOTE(creis): We used to be in danger of showing a crash page here if the
// second contents hadn't navigated somewhere first (bug 1145430). That case
// is now covered by the CrossSiteBoundariesAfterCrash test.
navigation2->Commit();
SiteInstance* instance2b = contents2->GetSiteInstance();
EXPECT_NE(instance1, instance2b);
// Both contentses should now be in the same SiteInstance.
EXPECT_EQ(instance2a, instance2b);
}
// The embedder can request sites for certain urls not be be assigned to the
// SiteInstance by adding their schemes as empty document schemes,
// allowing to reuse the renderer backing certain chrome urls for subsequent
// navigation. The test verifies that the override is honored.
TEST_F(WebContentsImplTest, NavigateFromSitelessUrl) {
TestRenderFrameHost* orig_rfh = main_test_rfh();
SiteInstanceImpl* orig_instance = contents()->GetSiteInstance();
// Navigate to an URL that will not assign a new SiteInstance.
// The url also needs to be defined with an empty scheme.
url::ScopedSchemeRegistryForTests scheme_registry;
url::AddEmptyDocumentScheme("non-site-url");
const GURL native_url("non-site-url://stuffandthings");
EXPECT_FALSE(SiteInstance::ShouldAssignSiteForURL(native_url));
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), native_url);
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(orig_rfh, main_test_rfh());
EXPECT_EQ(native_url, contents()->GetLastCommittedURL());
EXPECT_EQ(native_url, contents()->GetVisibleURL());
EXPECT_EQ(orig_instance, contents()->GetSiteInstance());
EXPECT_EQ(GURL(), contents()->GetSiteInstance()->GetSiteURL());
EXPECT_FALSE(orig_instance->HasSite());
// Navigate to new site (should keep same site instance, but might change
// RenderFrameHosts).
const GURL url("http://www.google.com");
auto navigation1 =
NavigationSimulator::CreateBrowserInitiated(url, contents());
navigation1->ReadyToCommit();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(native_url, contents()->GetLastCommittedURL());
EXPECT_EQ(url, contents()->GetVisibleURL());
EXPECT_EQ(ShouldCreateNewHostForAllFrames(),
!!contents()->GetSpeculativePrimaryMainFrame());
navigation1->Commit();
// The first entry's SiteInstance should be reset to a new, related one. This
// prevents wrongly detecting a SiteInstance mismatch when returning to it
// later.
SiteInstanceImpl* prev_entry_instance = contents()
->GetController()
.GetEntryAtIndex(0)
->root_node()
->frame_entry->site_instance();
EXPECT_NE(prev_entry_instance, orig_instance);
EXPECT_TRUE(orig_instance->IsRelatedSiteInstance(prev_entry_instance));
EXPECT_FALSE(prev_entry_instance->HasSite());
SiteInstanceImpl* curr_entry_instance = contents()
->GetController()
.GetEntryAtIndex(1)
->root_node()
->frame_entry->site_instance();
EXPECT_EQ(curr_entry_instance, orig_instance);
// Keep the number of active frames in the current RFH's SiteInstanceGroup
// non-zero so that the RFH doesn't get deleted when it gets
// swapped out.
main_test_rfh()->GetSiteInstance()->group()->IncrementActiveFrameCount();
EXPECT_EQ(orig_instance, contents()->GetSiteInstance());
if (AreStrictSiteInstancesEnabled()) {
EXPECT_TRUE(
contents()->GetSiteInstance()->GetSiteURL().DomainIs("google.com"));
} else {
// Verify that the empty SiteInstance gets converted into a default
// SiteInstance because |url| does not require a dedicated process.
EXPECT_TRUE(contents()->GetSiteInstance()->IsDefaultSiteInstance());
}
EXPECT_EQ(url, contents()->GetLastCommittedURL());
// Navigate to another new site (should create a new site instance).
const GURL url2 = isolated_cross_site_url();
auto navigation2 =
NavigationSimulator::CreateBrowserInitiated(url2, contents());
navigation2->ReadyToCommit();
EXPECT_TRUE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(url, contents()->GetLastCommittedURL());
EXPECT_EQ(url2, contents()->GetVisibleURL());
TestRenderFrameHost* pending_rfh =
contents()->GetSpeculativePrimaryMainFrame();
// DidNavigate from the pending page.
navigation2->Commit();
SiteInstance* new_instance = contents()->GetSiteInstance();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(pending_rfh, main_test_rfh());
EXPECT_EQ(url2, contents()->GetLastCommittedURL());
EXPECT_EQ(url2, contents()->GetVisibleURL());
EXPECT_NE(new_instance, orig_instance);
EXPECT_FALSE(contents()->GetSpeculativePrimaryMainFrame());
}
// Regression test for http://crbug.com/386542 - variation of
// NavigateFromSitelessUrl in which the original navigation is a session
// restore.
TEST_F(WebContentsImplTest, NavigateFromRestoredSitelessUrl) {
SiteInstanceImpl* orig_instance = contents()->GetSiteInstance();
// Restore a navigation entry for URL that should not assign site to the
// SiteInstance. The url also needs to be defined with an empty scheme.
url::ScopedSchemeRegistryForTests scheme_registry;
url::AddEmptyDocumentScheme("non-site-url");
const GURL native_url("non-site-url://stuffandthings");
EXPECT_FALSE(SiteInstance::ShouldAssignSiteForURL(native_url));
std::vector<std::unique_ptr<NavigationEntry>> entries;
std::unique_ptr<NavigationEntry> new_entry =
NavigationController::CreateNavigationEntry(
native_url, Referrer(), /* initiator_origin= */ std::nullopt,
/* initiator_base_url= */ std::nullopt, ui::PAGE_TRANSITION_LINK,
false, std::string(), browser_context(),
nullptr /* blob_url_loader_factory */);
entries.push_back(std::move(new_entry));
controller().Restore(0, RestoreType::kRestored, &entries);
ASSERT_EQ(0u, entries.size());
ASSERT_EQ(1, controller().GetEntryCount());
EXPECT_TRUE(controller().NeedsReload());
controller().LoadIfNecessary();
auto navigation = NavigationSimulator::CreateFromPending(controller());
navigation->Commit();
EXPECT_EQ(orig_instance, contents()->GetSiteInstance());
EXPECT_EQ(GURL(), contents()->GetSiteInstance()->GetSiteURL());
EXPECT_FALSE(orig_instance->HasSite());
// Navigate to a regular site and verify that the SiteInstance was kept.
const GURL url("http://www.google.com");
EXPECT_TRUE(SiteInstance::ShouldAssignSiteForURL(url));
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
EXPECT_EQ(orig_instance, contents()->GetSiteInstance());
// Cleanup.
DeleteContents();
}
// Complement for NavigateFromRestoredSitelessUrl, verifying that when a regular
// tab is restored, the SiteInstance will change upon navigation.
TEST_F(WebContentsImplTest, NavigateFromRestoredRegularUrl) {
SiteInstanceImpl* orig_instance = contents()->GetSiteInstance();
// Restore a navigation entry for a regular URL with non-empty scheme, where
// ShouldAssignSiteForUrl returns true.
const GURL regular_url("http://www.yahoo.com");
EXPECT_TRUE(SiteInstance::ShouldAssignSiteForURL(regular_url));
std::vector<std::unique_ptr<NavigationEntry>> entries;
std::unique_ptr<NavigationEntry> new_entry =
NavigationController::CreateNavigationEntry(
regular_url, Referrer(), /* initiator_origin= */ std::nullopt,
/* initiator_base_url= */ std::nullopt, ui::PAGE_TRANSITION_LINK,
false, std::string(), browser_context(),
nullptr /* blob_url_loader_factory */);
entries.push_back(std::move(new_entry));
controller().Restore(0, RestoreType::kRestored, &entries);
ASSERT_EQ(0u, entries.size());
ASSERT_EQ(1, controller().GetEntryCount());
EXPECT_TRUE(controller().NeedsReload());
controller().LoadIfNecessary();
auto navigation = NavigationSimulator::CreateFromPending(controller());
navigation->Commit();
EXPECT_EQ(orig_instance, contents()->GetSiteInstance());
EXPECT_TRUE(orig_instance->HasSite());
EXPECT_EQ(!AreStrictSiteInstancesEnabled(),
orig_instance->IsDefaultSiteInstance());
// Navigate to another site and verify that a new SiteInstance was created.
const GURL url("http://www.google.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
if (AreStrictSiteInstancesEnabled()) {
EXPECT_NE(orig_instance, contents()->GetSiteInstance());
} else {
// Verify this remains the default SiteInstance since |url| does
// not require a dedicated process.
EXPECT_TRUE(contents()->GetSiteInstance()->IsDefaultSiteInstance());
// Navigate to a URL that does require a dedicated process and verify that
// the SiteInstance changes.
NavigationSimulator::NavigateAndCommitFromBrowser(
contents(), isolated_cross_site_url());
EXPECT_NE(orig_instance, contents()->GetSiteInstance());
}
// Cleanup.
DeleteContents();
}
// Test that we can find an opener RVH even if it's pending.
// http://crbug.com/176252.
TEST_F(WebContentsImplTest, FindOpenerRVHWhenPending) {
// Navigate to a URL.
const GURL url("http://www.google.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
// Start to navigate first tab to a new site, so that it has a pending RVH.
const GURL url2("http://www.yahoo.com");
auto navigation =
NavigationSimulator::CreateBrowserInitiated(url2, contents());
navigation->ReadyToCommit();
TestRenderFrameHost* pending_rfh =
contents()->GetSpeculativePrimaryMainFrame();
SiteInstanceImpl* instance = pending_rfh->GetSiteInstance();
// While it is still pending, simulate opening a new tab with the first tab
// as its opener. This will call CreateOpenerProxies on the opener to ensure
// that an RVH exists.
std::unique_ptr<TestWebContents> popup(
TestWebContents::Create(browser_context(), instance));
popup->SetOpener(contents());
contents()->GetRenderManager()->CreateOpenerProxies(
instance->group(), /*skip_this_node=*/nullptr,
pending_rfh->browsing_context_state(),
/*navigation_metrics_token=*/std::nullopt);
// If swapped out is forbidden, a new proxy should be created for the opener
// in the group |instance| belongs to, and we should ensure that its routing
// ID is returned here. Otherwise, we should find the pending RFH and not
// create a new proxy.
auto opener_frame_token =
popup->GetRenderManager()->GetOpenerFrameToken(instance->group());
RenderFrameProxyHost* proxy =
contents()
->GetRenderManager()
->current_frame_host()
->browsing_context_state()
->GetRenderFrameProxyHost(instance->group());
EXPECT_TRUE(proxy);
EXPECT_EQ(*opener_frame_token, proxy->GetFrameToken());
// Ensure that committing the navigation removes the proxy.
navigation->Commit();
EXPECT_FALSE(contents()
->GetPrimaryMainFrame()
->browsing_context_state()
->GetRenderFrameProxyHost(instance->group()));
}
// Tests that WebContentsImpl uses the current URL, not the SiteInstance's site,
// to determine whether a navigation is cross-site.
TEST_F(WebContentsImplTest, CrossSiteComparesAgainstCurrentPage) {
// The assumptions this test makes aren't valid with --site-per-process. For
// example, a cross-site URL won't ever commit in the old RFH. The test also
// assumes that aggressive BrowsingInstance swapping (even on
// renderer-initiated navigations) is disabled.
if (AreAllSitesIsolatedForTesting() ||
CanCrossSiteNavigationsProactivelySwapBrowsingInstances()) {
return;
}
TestRenderFrameHost* orig_rfh = main_test_rfh();
SiteInstanceImpl* instance1 = contents()->GetSiteInstance();
const GURL url("http://www.google.com");
// Navigate to URL.
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
// Open a related contents to a second site.
std::unique_ptr<TestWebContents> contents2(
TestWebContents::Create(browser_context(), instance1));
const GURL url2("http://www.yahoo.com");
auto navigation =
NavigationSimulator::CreateBrowserInitiated(url2, contents2.get());
navigation->ReadyToCommit();
// The first RVH in contents2 isn't live yet, so we shortcut the cross site
// pending.
EXPECT_FALSE(contents2->CrossProcessNavigationPending());
navigation->Commit();
SiteInstance* instance2 = contents2->GetSiteInstance();
// With default SiteInstances, navigations in both tabs should
// share the same default SiteInstance, since neither requires a dedicated
// process.
EXPECT_EQ(instance1, instance2);
EXPECT_TRUE(instance1->IsDefaultSiteInstance());
EXPECT_FALSE(contents2->CrossProcessNavigationPending());
// Simulate a link click in first contents to second site. This doesn't
// switch SiteInstances and stays in the default SiteInstance.
NavigationSimulator::NavigateAndCommitFromDocument(url2, orig_rfh);
SiteInstance* instance3 = contents()->GetSiteInstance();
EXPECT_EQ(instance1, instance3);
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
// Navigate same-site. This also stays in the default SiteInstance.
const GURL url3("http://mail.yahoo.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url3);
SiteInstance* instance4 = contents()->GetSiteInstance();
EXPECT_EQ(instance1, instance4);
}
// Test that the onbeforeunload and onunload handlers run when navigating
// across site boundaries.
TEST_F(WebContentsImplTest, CrossSiteUnloadHandlers) {
TestRenderFrameHost* orig_rfh = main_test_rfh();
SiteInstance* instance1 = contents()->GetSiteInstance();
// Navigate to URL. First URL should use first RenderViewHost.
const GURL url("http://www.google.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(orig_rfh, main_test_rfh());
// Navigate to new site, but simulate an onbeforeunload denial.
const GURL url2("http://www.yahoo.com");
orig_rfh->SuddenTerminationDisablerChanged(
true, blink::mojom::SuddenTerminationDisablerType::kBeforeUnloadHandler);
controller().LoadURL(url2, Referrer(), ui::PAGE_TRANSITION_TYPED,
std::string());
EXPECT_TRUE(orig_rfh->is_waiting_for_beforeunload_completion());
orig_rfh->SimulateBeforeUnloadCompleted(false);
EXPECT_FALSE(orig_rfh->is_waiting_for_beforeunload_completion());
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(orig_rfh, main_test_rfh());
// Navigate again, but simulate an onbeforeunload approval.
controller().LoadURL(url2, Referrer(), ui::PAGE_TRANSITION_TYPED,
std::string());
EXPECT_TRUE(orig_rfh->is_waiting_for_beforeunload_completion());
auto navigation =
NavigationSimulator::CreateFromPending(contents()->GetController());
navigation->ReadyToCommit();
EXPECT_FALSE(orig_rfh->is_waiting_for_beforeunload_completion());
EXPECT_TRUE(contents()->CrossProcessNavigationPending());
TestRenderFrameHost* pending_rfh =
contents()->GetSpeculativePrimaryMainFrame();
// DidNavigate from the pending page.
navigation->Commit();
SiteInstance* instance2 = contents()->GetSiteInstance();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(pending_rfh, main_test_rfh());
EXPECT_NE(instance1, instance2);
EXPECT_EQ(nullptr, contents()->GetSpeculativePrimaryMainFrame());
}
// Test that during a slow cross-site navigation, the original renderer can
// navigate to a different URL and have it displayed, canceling the slow
// navigation.
TEST_F(WebContentsImplTest, CrossSiteNavigationPreempted) {
TestRenderFrameHost* orig_rfh = main_test_rfh();
SiteInstance* instance1 = contents()->GetSiteInstance();
// Navigate to URL. First URL should use first RenderFrameHost.
const GURL url("http://www.google.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(orig_rfh, main_test_rfh());
// Navigate to new site.
const GURL url2("http://www.yahoo.com");
orig_rfh->SuddenTerminationDisablerChanged(
true, blink::mojom::SuddenTerminationDisablerType::kBeforeUnloadHandler);
controller().LoadURL(url2, Referrer(), ui::PAGE_TRANSITION_TYPED,
std::string());
EXPECT_TRUE(orig_rfh->is_waiting_for_beforeunload_completion());
EXPECT_TRUE(contents()->CrossProcessNavigationPending());
// Suppose the original renderer navigates before the new one is ready.
const GURL url3("http://www.google.com/foo");
NavigationSimulator::NavigateAndCommitFromDocument(url3, orig_rfh);
// Verify that the pending navigation is cancelled.
SiteInstance* instance2 = contents()->GetSiteInstance();
if (CanSameSiteMainFrameNavigationsChangeRenderFrameHosts()) {
// If same-site ProactivelySwapBrowsingInstance or main-frame RenderDocument
// is enabled, the RFH should change.
EXPECT_NE(orig_rfh, main_test_rfh());
} else {
EXPECT_EQ(orig_rfh, main_test_rfh());
}
if (CanSameSiteMainFrameNavigationsChangeSiteInstances()) {
// When ProactivelySwapBrowsingInstance is enabled on same-site navigations,
// the SiteInstance will change.
EXPECT_NE(instance1, instance2);
} else {
EXPECT_EQ(instance1, instance2);
}
EXPECT_FALSE(main_test_rfh()->is_waiting_for_beforeunload_completion());
EXPECT_EQ(main_test_rfh()->GetLastCommittedURL(), url3);
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(nullptr, contents()->GetSpeculativePrimaryMainFrame());
}
// Tests that if we go back twice (same-site then cross-site), and the cross-
// site RFH commits first, we ignore the now-swapped-out RFH's commit.
TEST_F(WebContentsImplTest, CrossSiteNavigationBackOldNavigationIgnored) {
// The test assumes the previous page gets deleted after navigation. Disable
// back/forward cache to ensure that it doesn't get preserved in the cache.
DisableBackForwardCacheForTesting(contents(),
BackForwardCache::TEST_REQUIRES_NO_CACHING);
// This test assumes no interaction with the back/forward cache. Indeed, it
// isn't possible to perform the second back navigation in between the
// ReadyToCommit and Commit of the first back/forward cache one. Both steps
// are combined with it, nothing can happen in between.
contents()->GetController().GetBackForwardCache().DisableForTesting(
BackForwardCache::TEST_REQUIRES_NO_CACHING);
// Start with a web ui page, which gets a new RFH with WebUI bindings.
GURL url1(std::string(kChromeUIScheme) + "://" +
std::string(kChromeUIGpuHost));
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url1);
TestRenderFrameHost* webui_rfh = main_test_rfh();
NavigationEntry* entry1 = controller().GetLastCommittedEntry();
SiteInstance* instance1 = contents()->GetSiteInstance();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(url1, entry1->GetURL());
EXPECT_EQ(instance1,
NavigationEntryImpl::FromNavigationEntry(entry1)->site_instance());
EXPECT_TRUE(webui_rfh->GetEnabledBindings().Has(BindingsPolicyValue::kWebUi));
// Navigate to new site.
const GURL url2("http://www.google.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url2);
TestRenderFrameHost* google_rfh = main_test_rfh();
NavigationEntry* entry2 = controller().GetLastCommittedEntry();
SiteInstance* instance2 = contents()->GetSiteInstance();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_NE(instance1, instance2);
EXPECT_FALSE(contents()->GetSpeculativePrimaryMainFrame());
EXPECT_EQ(url2, entry2->GetURL());
EXPECT_EQ(instance2,
NavigationEntryImpl::FromNavigationEntry(entry2)->site_instance());
EXPECT_FALSE(
google_rfh->GetEnabledBindings().Has(BindingsPolicyValue::kWebUi));
// Navigate to third page on same site.
const GURL url3("http://google.com/foo");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url3);
NavigationEntry* entry3 = controller().GetLastCommittedEntry();
SiteInstance* instance3 = contents()->GetSiteInstance();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
if (ShouldCreateNewHostForAllFrames()) {
// If main-frame RenderDocument is enabled, the RFH should change.
EXPECT_NE(google_rfh, main_test_rfh());
google_rfh = main_test_rfh();
} else {
EXPECT_EQ(google_rfh, main_test_rfh());
}
EXPECT_FALSE(contents()->GetSpeculativePrimaryMainFrame());
EXPECT_EQ(url3, entry3->GetURL());
EXPECT_EQ(instance3,
NavigationEntryImpl::FromNavigationEntry(entry3)->site_instance());
// Go back within the site.
auto back_navigation1 = NavigationSimulator::CreateHistoryNavigation(
-1, contents(), false /* is_renderer_initiated */);
back_navigation1->Start();
EXPECT_EQ(entry2, controller().GetPendingEntry());
// Before that commits, go back again.
auto back_navigation2 = NavigationSimulatorImpl::CreateHistoryNavigation(
-1, contents(), false /* is_renderer_initiated */);
back_navigation2->set_drop_unload_ack(true);
back_navigation2->ReadyToCommit();
EXPECT_TRUE(contents()->CrossProcessNavigationPending());
EXPECT_TRUE(contents()->GetSpeculativePrimaryMainFrame());
EXPECT_EQ(entry1, controller().GetPendingEntry());
webui_rfh = contents()->GetSpeculativePrimaryMainFrame();
// DidNavigate from the second back.
// Note that the process in instance1 is gone at this point, but we will
// still use instance1 and entry1 because IsSuitableForUrlInfo will return
// true when there is no process and the site URL matches.
back_navigation2->Commit();
// That should have landed us on the first entry.
EXPECT_EQ(entry1, controller().GetLastCommittedEntry());
// When the second back commits, it should be ignored.
google_rfh->SendNavigateWithTransition(0, false, url2,
ui::PAGE_TRANSITION_TYPED);
EXPECT_EQ(entry1, controller().GetLastCommittedEntry());
// The newly created process for url1 should be locked to chrome://gpu.
RenderProcessHost* new_process =
contents()->GetPrimaryMainFrame()->GetProcess();
auto* policy = content::ChildProcessSecurityPolicy::GetInstance();
EXPECT_TRUE(policy->CanAccessDataForOrigin(new_process->GetDeprecatedID(),
url::Origin::Create(url1)));
EXPECT_FALSE(policy->CanAccessDataForOrigin(new_process->GetDeprecatedID(),
url::Origin::Create(url2)));
}
// Test that during a slow cross-site navigation, a sub-frame navigation in the
// original renderer will not cancel the slow navigation (bug 42029).
TEST_F(WebContentsImplTest, CrossSiteNavigationNotPreemptedByFrame) {
TestRenderFrameHost* orig_rfh = main_test_rfh();
// Navigate to URL. First URL should use the original RenderFrameHost.
const GURL url("http://www.google.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(orig_rfh, main_test_rfh());
// Start navigating to new site.
const GURL url2("http://www.yahoo.com");
orig_rfh->SuddenTerminationDisablerChanged(
true, blink::mojom::SuddenTerminationDisablerType::kBeforeUnloadHandler);
controller().LoadURL(url2, Referrer(), ui::PAGE_TRANSITION_TYPED,
std::string());
// Simulate a sub-frame navigation arriving and ensure the RVH is still
// waiting for a before unload response.
TestRenderFrameHost* child_rfh = orig_rfh->AppendChild("subframe");
child_rfh->SendNavigateWithTransition(0, false,
GURL("http://google.com/frame"),
ui::PAGE_TRANSITION_AUTO_SUBFRAME);
EXPECT_TRUE(orig_rfh->is_waiting_for_beforeunload_completion());
// Now simulate the onbeforeunload approval and verify the navigation is
// not canceled.
orig_rfh->PrepareForCommit();
EXPECT_FALSE(orig_rfh->is_waiting_for_beforeunload_completion());
EXPECT_TRUE(contents()->CrossProcessNavigationPending());
}
// Test that a cross-site navigation is not preempted if the previous
// renderer sends a FrameNavigate message just before being told to stop.
// We should only preempt the cross-site navigation if the previous renderer
// has started a new navigation. See http://crbug.com/79176.
TEST_F(WebContentsImplTest, CrossSiteNotPreemptedDuringBeforeUnload) {
const GURL kUrl("http://foo");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), kUrl);
// First, make a non-user initiated same-site navigation.
const GURL kSameSiteUrl("http://foo/1");
TestRenderFrameHost* orig_rfh = main_test_rfh();
// When ProactivelySwapBrowsingInstance or RenderDocument is enabled on
// same-site main frame navigations, the same-site navigation below will
// create a speculative RFH that will be overwritten when the cross-site
// navigation starts, finishing the same-site navigation, so the scenario in
// this test cannot be tested. We should disable same-site proactive
// BrowsingInstance for |orig_rfh| before continuing, and skip this test if
// RenderDocument is enabled.
if (ShouldCreateNewHostForAllFrames()) {
GTEST_SKIP();
}
DisableProactiveBrowsingInstanceSwapFor(orig_rfh);
// This test assumes a beforeunload handler is present.
orig_rfh->SuddenTerminationDisablerChanged(
true, blink::mojom::SuddenTerminationDisablerType::kBeforeUnloadHandler);
auto same_site_navigation = NavigationSimulator::CreateRendererInitiated(
kSameSiteUrl, main_test_rfh());
same_site_navigation->SetHasUserGesture(false);
same_site_navigation->ReadyToCommit();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
// Navigate to a new site, with the beforeunload request in flight.
const GURL kCrossSiteUrl("http://www.yahoo.com");
auto cross_site_navigation = NavigationSimulatorImpl::CreateBrowserInitiated(
kCrossSiteUrl, contents());
cross_site_navigation->set_block_invoking_before_unload_completed_callback(
true);
cross_site_navigation->Start();
TestRenderFrameHost* pending_rfh =
contents()->GetSpeculativePrimaryMainFrame();
EXPECT_TRUE(contents()->CrossProcessNavigationPending());
EXPECT_TRUE(orig_rfh->is_waiting_for_beforeunload_completion());
EXPECT_NE(orig_rfh, pending_rfh);
// Suppose the first navigation tries to commit now, with a
// blink::mojom::LocalFrame::StopLoading() in flight. This should not cancel
// the pending navigation, but it should act as if the beforeunload completion
// callback had been invoked.
same_site_navigation->Commit();
EXPECT_TRUE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(orig_rfh, main_test_rfh());
EXPECT_FALSE(orig_rfh->is_waiting_for_beforeunload_completion());
// It should commit.
ASSERT_EQ(2, controller().GetEntryCount());
EXPECT_EQ(kSameSiteUrl, controller().GetLastCommittedEntry()->GetURL());
// The pending navigation should be able to commit successfully.
cross_site_navigation->Commit();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(pending_rfh, main_test_rfh());
EXPECT_EQ(3, controller().GetEntryCount());
}
// Test that NavigationEntries have the correct page state after going
// forward and back. Prevents regression for bug 1116137.
TEST_F(WebContentsImplTest, NavigationEntryContentState) {
// Navigate to URL. Before the navigation finishes, there should be only the
// initial NavigationEntry.
const GURL url("http://www.google.com");
auto navigation =
NavigationSimulator::CreateBrowserInitiated(url, contents());
navigation->ReadyToCommit();
NavigationEntry* entry = controller().GetLastCommittedEntry();
EXPECT_TRUE(!entry || entry->IsInitialEntry());
// Committed entry should have page state.
navigation->Commit();
entry = controller().GetLastCommittedEntry();
EXPECT_TRUE(entry->GetPageState().IsValid());
// Navigate to same site.
const GURL url2("http://images.google.com");
auto navigation2 =
NavigationSimulator::CreateBrowserInitiated(url2, contents());
navigation2->ReadyToCommit();
entry = controller().GetLastCommittedEntry();
EXPECT_TRUE(entry->GetPageState().IsValid());
// Committed entry should have page state.
navigation2->Commit();
entry = controller().GetLastCommittedEntry();
EXPECT_TRUE(entry->GetPageState().IsValid());
// Now go back. Committed entry should still have page state.
NavigationSimulator::GoBack(contents());
entry = controller().GetLastCommittedEntry();
EXPECT_TRUE(entry->GetPageState().IsValid());
}
// Test that NavigationEntries have the correct page state and SiteInstance
// state after opening a new window to about:blank. Prevents regression for
// bugs b/1116137 and http://crbug.com/111975.
TEST_F(WebContentsImplTest, NavigationEntryContentStateNewWindow) {
// Navigate to about:blank.
const GURL url(url::kAboutBlankURL);
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
// Should have a page state here.
NavigationEntry* entry = controller().GetLastCommittedEntry();
EXPECT_TRUE(entry->GetPageState().IsValid());
// The SiteInstance should be available for other navigations to use.
NavigationEntryImpl* entry_impl =
NavigationEntryImpl::FromNavigationEntry(entry);
EXPECT_FALSE(entry_impl->site_instance()->HasSite());
auto site_instance_id = entry_impl->site_instance()->GetId();
// Navigating to a normal page should not cause a process swap.
const GURL new_url("http://www.google.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), new_url);
NavigationEntryImpl* entry_impl2 = NavigationEntryImpl::FromNavigationEntry(
controller().GetLastCommittedEntry());
EXPECT_EQ(site_instance_id, entry_impl2->site_instance()->GetId());
EXPECT_TRUE(entry_impl2->site_instance()->HasSite());
}
namespace {
void ExpectTrue(bool value) {
DCHECK(value);
}
void ExpectFalse(bool value) {
DCHECK(!value);
}
} // namespace
// Tests that fullscreen is exited throughout the object hierarchy when
// navigating to a new page.
TEST_F(WebContentsImplTest, NavigationExitsFullscreen) {
FakeFullscreenDelegate fake_delegate;
contents()->SetDelegate(&fake_delegate);
TestRenderFrameHost* orig_rfh = main_test_rfh();
// Navigate to a site.
const GURL url("http://www.google.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
EXPECT_EQ(orig_rfh, main_test_rfh());
// Toggle fullscreen mode on (as if initiated via IPC from renderer).
EXPECT_FALSE(contents()->IsFullscreen());
EXPECT_FALSE(fake_delegate.IsFullscreenForTabOrPending(contents()));
main_test_rfh()->frame_tree_node()->UpdateUserActivationState(
blink::mojom::UserActivationUpdateType::kNotifyActivation,
blink::mojom::UserActivationNotificationType::kTest);
orig_rfh->EnterFullscreen(blink::mojom::FullscreenOptions::New(),
base::BindOnce(&ExpectTrue));
EXPECT_TRUE(contents()->IsFullscreen());
EXPECT_TRUE(fake_delegate.IsFullscreenForTabOrPending(contents()));
// Navigate to a new site.
const GURL url2("http://www.yahoo.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url2);
// Confirm fullscreen has exited.
EXPECT_FALSE(contents()->IsFullscreen());
EXPECT_FALSE(fake_delegate.IsFullscreenForTabOrPending(contents()));
contents()->SetDelegate(nullptr);
}
// Tests that fullscreen is exited throughout the object hierarchy when
// instructing NavigationController to GoBack() or GoForward().
TEST_F(WebContentsImplTest, HistoryNavigationExitsFullscreen) {
FakeFullscreenDelegate fake_delegate;
contents()->SetDelegate(&fake_delegate);
TestRenderFrameHost* orig_rfh = main_test_rfh();
// Navigate to a site.
const GURL url("http://www.google.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
EXPECT_EQ(orig_rfh, main_test_rfh());
// Now, navigate to another page on the same site.
const GURL url2("http://www.google.com/search?q=kittens");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url2);
if (CanSameSiteMainFrameNavigationsChangeRenderFrameHosts()) {
// If ProactivelySwapBrowsingInstance is enabled on same-site navigations,
// the same-site navigation above will use a new RFH.
EXPECT_NE(orig_rfh, main_test_rfh());
} else {
EXPECT_EQ(orig_rfh, main_test_rfh());
}
// Sanity-check: Confirm we're not starting out in fullscreen mode.
EXPECT_FALSE(contents()->IsFullscreen());
EXPECT_FALSE(fake_delegate.IsFullscreenForTabOrPending(contents()));
for (int i = 0; i < 2; ++i) {
// Toggle fullscreen mode on (as if initiated via IPC from renderer).
main_test_rfh()->frame_tree_node()->UpdateUserActivationState(
blink::mojom::UserActivationUpdateType::kNotifyActivation,
blink::mojom::UserActivationNotificationType::kTest);
main_test_rfh()->EnterFullscreen(blink::mojom::FullscreenOptions::New(),
base::BindOnce(&ExpectTrue));
EXPECT_TRUE(contents()->IsFullscreen());
EXPECT_TRUE(fake_delegate.IsFullscreenForTabOrPending(contents()));
// Navigate backward (or forward).
if (i == 0) {
NavigationSimulator::GoBack(contents());
} else {
NavigationSimulator::GoForward(contents());
}
// Confirm fullscreen has exited.
EXPECT_FALSE(contents()->IsFullscreen());
EXPECT_FALSE(fake_delegate.IsFullscreenForTabOrPending(contents()));
}
contents()->SetDelegate(nullptr);
}
// Tests that fullscreen is exited throughout the object hierarchy on a renderer
// crash.
TEST_F(WebContentsImplTest, CrashExitsFullscreen) {
FakeFullscreenDelegate fake_delegate;
contents()->SetDelegate(&fake_delegate);
// Navigate to a site.
const GURL url("http://www.google.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
// Toggle fullscreen mode on (as if initiated via IPC from renderer).
EXPECT_FALSE(contents()->IsFullscreen());
EXPECT_FALSE(fake_delegate.IsFullscreenForTabOrPending(contents()));
main_test_rfh()->frame_tree_node()->UpdateUserActivationState(
blink::mojom::UserActivationUpdateType::kNotifyActivation,
blink::mojom::UserActivationNotificationType::kTest);
main_test_rfh()->EnterFullscreen(blink::mojom::FullscreenOptions::New(),
base::BindOnce(&ExpectTrue));
EXPECT_TRUE(contents()->IsFullscreen());
EXPECT_TRUE(fake_delegate.IsFullscreenForTabOrPending(contents()));
// Crash the renderer.
main_test_rfh()->GetProcess()->SimulateCrash();
// Confirm fullscreen has exited.
EXPECT_FALSE(contents()->IsFullscreen());
EXPECT_FALSE(fake_delegate.IsFullscreenForTabOrPending(contents()));
contents()->SetDelegate(nullptr);
}
TEST_F(WebContentsImplTest,
FailEnterFullscreenWhenNoUserActivationNoOrientationChange) {
FakeFullscreenDelegate fake_delegate;
contents()->SetDelegate(&fake_delegate);
// Navigate to a site.
const GURL url("http://www.google.com");
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), url);
// Toggle fullscreen mode on (as if initiated via IPC from renderer).
EXPECT_FALSE(contents()->IsFullscreen());
EXPECT_FALSE(fake_delegate.IsFullscreenForTabOrPending(contents()));
// When there is no user activation and no orientation change, entering
// fullscreen will fail.
main_test_rfh()->EnterFullscreen(blink::mojom::FullscreenOptions::New(),
base::BindOnce(&ExpectFalse));
EXPECT_TRUE(contents()->IsTransientActivationRequiredForHtmlFullscreen());
EXPECT_FALSE(
main_test_rfh()->frame_tree_node()->HasTransientUserActivation());
EXPECT_FALSE(contents()->IsFullscreen());
EXPECT_FALSE(fake_delegate.IsFullscreenForTabOrPending(contents()));
contents()->SetDelegate(nullptr);
}
// Regression test for http://crbug.com/168611 - the URLs passed by the
// DidFinishLoad and DidFailLoadWithError IPCs should get filtered.
TEST_F(WebContentsImplTest, FilterURLs) {
TestWebContentsObserver observer(contents());
// A navigation to about:whatever should always look like a navigation to
// about:blank
GURL url_normalized(url::kAboutBlankURL);
GURL url_from_ipc("about:whatever");
GURL url_blocked(kBlockedURL);
// We navigate the test WebContents to about:blank, since NavigateAndCommit
// will use the given URL to create the NavigationEntry as well, and that
// entry should contain the filtered URL.
contents()->NavigateAndCommit(url_normalized);
// Check that an IPC with about:whatever is correctly normalized.
contents()->TestDidFinishLoad(url_from_ipc);
EXPECT_EQ(url_blocked, observer.last_url());
// Create and navigate another WebContents.
std::unique_ptr<TestWebContents> other_contents(
static_cast<TestWebContents*>(CreateTestWebContents().release()));
TestWebContentsObserver other_observer(other_contents.get());
other_contents->NavigateAndCommit(url_normalized);
// Check that an IPC with about:whatever is correctly normalized.
other_contents->GetPrimaryMainFrame()->DidFailLoadWithError(url_from_ipc,
net::ERR_FAILED);
EXPECT_EQ(url_blocked, other_observer.last_url());
}
// Test that if a pending contents is deleted before it is shown, we don't
// crash.
TEST_F(WebContentsImplTest, PendingContentsDestroyed) {
auto other_contents = base::WrapUnique(
static_cast<TestWebContents*>(CreateTestWebContents().release()));
content::TestWebContents* test_web_contents = other_contents.get();
contents()->AddPendingContents(std::move(other_contents), GURL());
RenderWidgetHost* widget =
test_web_contents->GetPrimaryMainFrame()->GetRenderWidgetHost();
int process_id = widget->GetProcess()->GetDeprecatedID();
int widget_id = widget->GetRoutingID();
// TODO(erikchen): Fix ownership semantics of WebContents. Nothing should be
// able to delete it beside from the owner. https://crbug.com/832879.
delete test_web_contents;
EXPECT_FALSE(contents()->GetCreatedWindow(process_id, widget_id).has_value());
}
TEST_F(WebContentsImplTest, PendingContentsShown) {
GURL url("http://example.com");
auto other_contents = base::WrapUnique(
static_cast<TestWebContents*>(CreateTestWebContents().release()));
content::TestWebContents* test_web_contents = other_contents.get();
contents()->AddPendingContents(std::move(other_contents), url);
RenderWidgetHost* widget =
test_web_contents->GetPrimaryMainFrame()->GetRenderWidgetHost();
int process_id = widget->GetProcess()->GetDeprecatedID();
int widget_id = widget->GetRoutingID();
// The first call to GetCreatedWindow pops it off the pending list.
std::optional<CreatedWindow> created_window =
contents()->GetCreatedWindow(process_id, widget_id);
EXPECT_TRUE(created_window.has_value());
EXPECT_EQ(test_web_contents, created_window->contents.get());
// Validate target_url.
EXPECT_EQ(url, created_window->target_url);
// A second call should return nullopt, verifying that it's been forgotten.
EXPECT_FALSE(contents()->GetCreatedWindow(process_id, widget_id).has_value());
}
TEST_F(WebContentsImplTest, CaptureHoldsWakeLock) {
EXPECT_FALSE(contents()->IsBeingCaptured());
EXPECT_FALSE(contents()->capture_wake_lock_);
auto expect_wake_lock = [&](bool expect_has_wake_lock) {
base::RunLoop run_loop;
contents()->capture_wake_lock_->HasWakeLockForTests(
base::BindLambdaForTesting([&](bool has_wake_lock) {
EXPECT_EQ(expect_has_wake_lock, has_wake_lock);
run_loop.QuitWhenIdle();
}));
run_loop.Run();
};
// Add capturer which doesn't care to stay awake.
auto handle1 = contents()->IncrementCapturerCount(
gfx::Size(), /*stay_hidden=*/false,
/*stay_awake=*/false, /*is_activity=*/true);
EXPECT_TRUE(contents()->IsBeingCaptured());
ASSERT_FALSE(contents()->capture_wake_lock_);
// Add capturer and ensure wake lock is held.
auto handle2 = contents()->IncrementCapturerCount(
gfx::Size(), /*stay_hidden=*/false,
/*stay_awake=*/true, /*is_activity=*/true);
EXPECT_TRUE(contents()->IsBeingCaptured());
ASSERT_TRUE(contents()->capture_wake_lock_);
expect_wake_lock(true);
// Add another capturer and ensure the wake lock is still held.
auto handle3 = contents()->IncrementCapturerCount(
gfx::Size(), /*stay_hidden=*/true,
/*stay_awake=*/true, /*is_activity=*/true);
EXPECT_TRUE(contents()->IsBeingCaptured());
expect_wake_lock(true);
// Remove one capturer, but one remains so wake lock should still be held.
handle3.RunAndReset();
EXPECT_TRUE(contents()->IsBeingCaptured());
expect_wake_lock(true);
// Remove the last stay_awake capturer and ensure the wake lock is released.
handle2.RunAndReset();
EXPECT_TRUE(contents()->IsBeingCaptured());
expect_wake_lock(false);
handle1.RunAndReset();
EXPECT_FALSE(contents()->IsBeingCaptured());
expect_wake_lock(false);
}
TEST_F(WebContentsImplTest, CapturerOverridesPreferredSize) {
const gfx::Size original_preferred_size(1024, 768);
contents()->UpdateWindowPreferredSize(main_test_rfh(),
original_preferred_size);
// With no capturers, expect the preferred size to be the one propagated into
// WebContentsImpl via the RenderViewHostDelegate interface.
EXPECT_FALSE(contents()->IsBeingCaptured());
EXPECT_EQ(original_preferred_size, contents()->GetPreferredSize());
// Increment capturer count, but without specifying a capture size. Expect
// a "not set" preferred size.
auto handle1 = contents()->IncrementCapturerCount(
gfx::Size(), /*stay_hidden=*/false,
/*stay_awake=*/true, /*is_activity=*/true);
EXPECT_TRUE(contents()->IsBeingCaptured());
EXPECT_EQ(gfx::Size(), contents()->GetPreferredSize());
// Increment capturer count again, but with an overriding capture size.
// Expect preferred size to now be overridden to the capture size.
const gfx::Size capture_size(1280, 720);
auto handle2 = contents()->IncrementCapturerCount(
capture_size, /*stay_hidden=*/false,
/*stay_awake=*/true, /*is_activity=*/true);
EXPECT_TRUE(contents()->IsBeingCaptured());
EXPECT_EQ(capture_size, contents()->GetPreferredSize());
// Increment capturer count a third time, but the expect that the preferred
// size is still the first capture size.
const gfx::Size another_capture_size(720, 480);
auto handle3 = contents()->IncrementCapturerCount(another_capture_size,
/*stay_hidden=*/false,
/*stay_awake=*/true,
/*is_activity=*/true);
EXPECT_TRUE(contents()->IsBeingCaptured());
EXPECT_EQ(capture_size, contents()->GetPreferredSize());
// Decrement capturer count twice, but expect the preferred size to still be
// overridden.
handle1.RunAndReset();
handle2.RunAndReset();
EXPECT_TRUE(contents()->IsBeingCaptured());
EXPECT_EQ(capture_size, contents()->GetPreferredSize());
// Decrement capturer count, and since the count has dropped to zero, the
// original preferred size should be restored.
handle3.RunAndReset();
EXPECT_FALSE(contents()->IsBeingCaptured());
EXPECT_EQ(original_preferred_size, contents()->GetPreferredSize());
}
TEST_F(WebContentsImplTest, UpdateWebContentsVisibility) {
TestRenderWidgetHostView* view = static_cast<TestRenderWidgetHostView*>(
main_test_rfh()->GetRenderViewHost()->GetWidget()->GetView());
TestWebContentsObserver observer(contents());
EXPECT_FALSE(view->is_showing());
EXPECT_FALSE(view->is_occluded());
// WebContents must be made visible once before it can be hidden.
contents()->UpdateWebContentsVisibility(Visibility::HIDDEN);
EXPECT_FALSE(view->is_showing());
EXPECT_FALSE(view->is_occluded());
EXPECT_EQ(Visibility::VISIBLE, contents()->GetVisibility());
contents()->UpdateWebContentsVisibility(Visibility::VISIBLE);
EXPECT_TRUE(view->is_showing());
EXPECT_FALSE(view->is_occluded());
EXPECT_EQ(Visibility::VISIBLE, contents()->GetVisibility());
// Hiding/occluding/showing the WebContents should hide and show |view|.
contents()->UpdateWebContentsVisibility(Visibility::HIDDEN);
EXPECT_FALSE(view->is_showing());
EXPECT_FALSE(view->is_occluded());
EXPECT_EQ(Visibility::HIDDEN, contents()->GetVisibility());
contents()->UpdateWebContentsVisibility(Visibility::VISIBLE);
EXPECT_TRUE(view->is_showing());
EXPECT_FALSE(view->is_occluded());
EXPECT_EQ(Visibility::VISIBLE, contents()->GetVisibility());
contents()->UpdateWebContentsVisibility(Visibility::OCCLUDED);
EXPECT_TRUE(view->is_showing());
EXPECT_TRUE(view->is_occluded());
EXPECT_EQ(Visibility::OCCLUDED, contents()->GetVisibility());
contents()->UpdateWebContentsVisibility(Visibility::VISIBLE);
EXPECT_TRUE(view->is_showing());
EXPECT_FALSE(view->is_occluded());
EXPECT_EQ(Visibility::VISIBLE, contents()->GetVisibility());
contents()->UpdateWebContentsVisibility(Visibility::OCCLUDED);
EXPECT_TRUE(view->is_showing());
EXPECT_TRUE(view->is_occluded());
EXPECT_EQ(Visibility::OCCLUDED, contents()->GetVisibility());
contents()->UpdateWebContentsVisibility(Visibility::HIDDEN);
EXPECT_FALSE(view->is_showing());
EXPECT_EQ(Visibility::HIDDEN, contents()->GetVisibility());
}
TEST_F(WebContentsImplTest, VideoPictureInPictureStaysVisibleIfHidden) {
// Entering video Picture in Picture then hiding keeps the view visible.
TestRenderWidgetHostView* view = static_cast<TestRenderWidgetHostView*>(
main_test_rfh()->GetRenderViewHost()->GetWidget()->GetView());
// Must set the visibility to "visible" before anything interesting happens.
contents()->UpdateWebContentsVisibility(Visibility::VISIBLE);
contents()->SetHasPictureInPictureVideo(true);
contents()->UpdateWebContentsVisibility(Visibility::HIDDEN);
EXPECT_TRUE(view->is_showing());
}
TEST_F(WebContentsImplTest, VisibilityIsUpdatedIfVideoPictureInPictureChanges) {
// Hiding, then entering video Picture in Picture shows the view. If we then
// leave picture-in-picture, the view should become hidden.
TestRenderWidgetHostView* view = static_cast<TestRenderWidgetHostView*>(
main_test_rfh()->GetRenderViewHost()->GetWidget()->GetView());
contents()->UpdateWebContentsVisibility(Visibility::VISIBLE);
contents()->UpdateWebContentsVisibility(Visibility::HIDDEN);
EXPECT_FALSE(view->is_showing());
// If the WebContents enters video Picture in Picture while hidden, then it
// should notify the view that it's visible.
contents()->SetHasPictureInPictureVideo(true);
EXPECT_TRUE(view->is_showing());
// The view should be re-hidden if the WebContents leaves PiP.
contents()->SetHasPictureInPictureVideo(false);
EXPECT_FALSE(view->is_showing());
}
TEST_F(WebContentsImplTest, DocumentPictureInPictureStaysVisibleIfHidden) {
// Entering document Picture in Picture then hiding keeps the view visible.
TestRenderWidgetHostView* view = static_cast<TestRenderWidgetHostView*>(
main_test_rfh()->GetRenderViewHost()->GetWidget()->GetView());
// Must set the visibility to "visible" before anything interesting happens.
contents()->UpdateWebContentsVisibility(Visibility::VISIBLE);
contents()->SetHasPictureInPictureDocument(true);
contents()->UpdateWebContentsVisibility(Visibility::HIDDEN);
EXPECT_TRUE(view->is_showing());
}
TEST_F(WebContentsImplTest,
VisibilityIsUpdatedIfDocumentPictureInPictureChanges) {
// Hiding, then entering document Picture in Picture shows the view. If we
// then leave picture-in-picture, the view should become hidden.
TestRenderWidgetHostView* view = static_cast<TestRenderWidgetHostView*>(
main_test_rfh()->GetRenderViewHost()->GetWidget()->GetView());
contents()->UpdateWebContentsVisibility(Visibility::VISIBLE);
contents()->UpdateWebContentsVisibility(Visibility::HIDDEN);
EXPECT_FALSE(view->is_showing());
// If the WebContents enters Picture in Picture while hidden, it should notify
// the view that it's visible.
contents()->SetHasPictureInPictureDocument(true);
EXPECT_TRUE(view->is_showing());
// The view should be re-hidden if the WebContents leaves PiP.
contents()->SetHasPictureInPictureDocument(false);
EXPECT_FALSE(view->is_showing());
}
namespace {
void HideOrOccludeWithCapturerTest(WebContentsImpl* contents,
Visibility hidden_or_occluded) {
TestRenderWidgetHostView* view = static_cast<TestRenderWidgetHostView*>(
contents->GetRenderWidgetHostView());
EXPECT_FALSE(view->is_showing());
// WebContents must be made visible once before it can be hidden.
contents->UpdateWebContentsVisibility(Visibility::VISIBLE);
EXPECT_TRUE(view->is_showing());
EXPECT_FALSE(view->is_occluded());
EXPECT_EQ(Visibility::VISIBLE, contents->GetVisibility());
// Add a capturer when the contents is visible and then hide the contents.
// |view| should remain visible.
auto handle1 = contents->IncrementCapturerCount(
gfx::Size(), /*stay_hidden=*/false,
/*stay_awake=*/true, /*is_activity=*/true);
contents->UpdateWebContentsVisibility(hidden_or_occluded);
EXPECT_TRUE(view->is_showing());
EXPECT_FALSE(view->is_occluded());
EXPECT_EQ(hidden_or_occluded, contents->GetVisibility());
// Remove the capturer when the contents is hidden/occluded. |view| should be
// hidden/occluded.
handle1.RunAndReset();
if (hidden_or_occluded == Visibility::HIDDEN) {
EXPECT_FALSE(view->is_showing());
} else {
EXPECT_TRUE(view->is_showing());
EXPECT_TRUE(view->is_occluded());
}
// Add a capturer when the contents is hidden. |view| should be unoccluded.
auto handle2 = contents->IncrementCapturerCount(
gfx::Size(), /*stay_hidden=*/false,
/*stay_awake=*/true, /*is_activity=*/true);
EXPECT_FALSE(view->is_occluded());
// Show the contents. The view should be visible.
contents->UpdateWebContentsVisibility(Visibility::VISIBLE);
EXPECT_TRUE(view->is_showing());
EXPECT_FALSE(view->is_occluded());
EXPECT_EQ(Visibility::VISIBLE, contents->GetVisibility());
// Remove the capturer when the contents is visible. The view should remain
// visible.
handle2.RunAndReset();
EXPECT_TRUE(view->is_showing());
EXPECT_FALSE(view->is_occluded());
}
} // namespace
TEST_F(WebContentsImplTest, HideWithCapturer) {
HideOrOccludeWithCapturerTest(contents(), Visibility::HIDDEN);
}
TEST_F(WebContentsImplTest, OccludeWithCapturer) {
HideOrOccludeWithCapturerTest(contents(), Visibility::OCCLUDED);
}
TEST_F(WebContentsImplTest, HiddenCapture) {
TestRenderWidgetHostView* rwhv = static_cast<TestRenderWidgetHostView*>(
contents()->GetRenderWidgetHostView());
contents()->UpdateWebContentsVisibility(Visibility::VISIBLE);
contents()->UpdateWebContentsVisibility(Visibility::HIDDEN);
EXPECT_EQ(Visibility::HIDDEN, contents()->GetVisibility());
auto handle1 = contents()->IncrementCapturerCount(
gfx::Size(), /*stay_hidden=*/true,
/*stay_awake=*/true, /*is_activity=*/true);
EXPECT_TRUE(rwhv->is_showing());
auto handle2 = contents()->IncrementCapturerCount(
gfx::Size(), /*stay_hidden=*/false,
/*stay_awake=*/true, /*is_activity=*/true);
EXPECT_TRUE(rwhv->is_showing());
handle1.RunAndReset();
EXPECT_TRUE(rwhv->is_showing());
handle2.RunAndReset();
EXPECT_FALSE(rwhv->is_showing());
}
TEST_F(WebContentsImplTest, NonActivityCaptureDoesNotCountAsActivity) {
TestRenderWidgetHostView* rwhv = static_cast<TestRenderWidgetHostView*>(
contents()->GetRenderWidgetHostView());
contents()->UpdateWebContentsVisibility(Visibility::VISIBLE);
ASSERT_EQ(Visibility::VISIBLE, contents()->GetVisibility());
// Reset the last active time to a known value.
// This is done because the clock in these tests is frozen,
// so recording the value and comparing against it later is meaningless.
contents()->last_active_time_ticks_ = base::TimeTicks();
contents()->last_active_time_ = base::Time();
auto handle = contents()->IncrementCapturerCount(
gfx::Size(), /*stay_hidden=*/true,
/*stay_awake=*/true, /*is_activity=*/false);
ASSERT_TRUE(rwhv->is_showing());
// The value returned by GetLastActiveTime() should not have been updated.
EXPECT_TRUE(contents()->GetLastActiveTimeTicks().is_null());
EXPECT_TRUE(contents()->GetLastActiveTime().is_null());
}
// Tests that GetLastActiveTimeTicks starts with a real, non-zero time and
// updates on activity.
TEST_F(WebContentsImplTest, GetLastActiveTimeTicks) {
// The WebContents starts with a valid creation time.
EXPECT_FALSE(contents()->GetLastActiveTimeTicks().is_null());
contents()->UpdateWebContentsVisibility(Visibility::VISIBLE);
contents()->UpdateWebContentsVisibility(Visibility::HIDDEN);
ASSERT_EQ(Visibility::HIDDEN, contents()->GetVisibility());
// Reset the last active time to a known-bad value.
// This is done because the clock in these tests is frozen,
// so recording the value and comparing against it later is meaningless.
contents()->last_active_time_ticks_ = base::TimeTicks();
ASSERT_TRUE(contents()->GetLastActiveTimeTicks().is_null());
contents()->last_active_time_ = base::Time();
ASSERT_TRUE(contents()->GetLastActiveTime().is_null());
// Simulate activating the WebContents. The active time should update.
contents()->WasShown();
EXPECT_FALSE(contents()->GetLastActiveTimeTicks().is_null());
EXPECT_FALSE(contents()->GetLastActiveTime().is_null());
}
class ContentsZoomChangedDelegate : public WebContentsDelegate {
public:
ContentsZoomChangedDelegate() = default;
ContentsZoomChangedDelegate(const ContentsZoomChangedDelegate&) = delete;
ContentsZoomChangedDelegate& operator=(const ContentsZoomChangedDelegate&) =
delete;
int GetAndResetContentsZoomChangedCallCount() {
int count = contents_zoom_changed_call_count_;
contents_zoom_changed_call_count_ = 0;
return count;
}
bool last_zoom_in() const { return last_zoom_in_; }
// WebContentsDelegate:
void ContentsZoomChange(bool zoom_in) override {
contents_zoom_changed_call_count_++;
last_zoom_in_ = zoom_in;
}
private:
int contents_zoom_changed_call_count_ = 0;
bool last_zoom_in_ = false;
};
// Tests that some mouseehweel events get turned into browser zoom requests.
TEST_F(WebContentsImplTest, HandleWheelEvent) {
using blink::WebInputEvent;
std::unique_ptr<ContentsZoomChangedDelegate> delegate(
new ContentsZoomChangedDelegate());
contents()->SetDelegate(delegate.get());
int modifiers = 0;
// Verify that normal mouse wheel events do nothing to change the zoom level.
blink::WebMouseWheelEvent event =
blink::SyntheticWebMouseWheelEventBuilder::Build(
0, 0, 0, 1, modifiers, ui::ScrollGranularity::kScrollByPixel);
EXPECT_FALSE(contents()->HandleWheelEvent(event));
EXPECT_EQ(0, delegate->GetAndResetContentsZoomChangedCallCount());
// But whenever the ctrl modifier is applied zoom can be increased or
// decreased. Except on MacOS where we never want to adjust zoom
// with mousewheel.
modifiers = WebInputEvent::kControlKey;
event = blink::SyntheticWebMouseWheelEventBuilder::Build(
0, 0, 0, 1, modifiers, ui::ScrollGranularity::kScrollByPixel);
bool handled = contents()->HandleWheelEvent(event);
#if defined(USE_AURA) || BUILDFLAG(IS_ANDROID)
EXPECT_TRUE(handled);
EXPECT_EQ(1, delegate->GetAndResetContentsZoomChangedCallCount());
EXPECT_TRUE(delegate->last_zoom_in());
#else
EXPECT_FALSE(handled);
EXPECT_EQ(0, delegate->GetAndResetContentsZoomChangedCallCount());
#endif
modifiers = WebInputEvent::kControlKey | WebInputEvent::kShiftKey |
WebInputEvent::kAltKey;
event = blink::SyntheticWebMouseWheelEventBuilder::Build(
0, 0, 2, -5, modifiers, ui::ScrollGranularity::kScrollByPixel);
handled = contents()->HandleWheelEvent(event);
#if defined(USE_AURA) || BUILDFLAG(IS_ANDROID)
EXPECT_TRUE(handled);
EXPECT_EQ(1, delegate->GetAndResetContentsZoomChangedCallCount());
EXPECT_FALSE(delegate->last_zoom_in());
#else
EXPECT_FALSE(handled);
EXPECT_EQ(0, delegate->GetAndResetContentsZoomChangedCallCount());
#endif
// Unless there is no vertical movement.
event = blink::SyntheticWebMouseWheelEventBuilder::Build(
0, 0, 2, 0, modifiers, ui::ScrollGranularity::kScrollByPixel);
EXPECT_FALSE(contents()->HandleWheelEvent(event));
EXPECT_EQ(0, delegate->GetAndResetContentsZoomChangedCallCount());
// Events containing precise scrolling deltas also shouldn't result in the
// zoom being adjusted, to avoid accidental adjustments caused by
// two-finger-scrolling on a touchpad.
modifiers = WebInputEvent::kControlKey;
event = blink::SyntheticWebMouseWheelEventBuilder::Build(
0, 0, 0, 5, modifiers, ui::ScrollGranularity::kScrollByPrecisePixel);
EXPECT_FALSE(contents()->HandleWheelEvent(event));
EXPECT_EQ(0, delegate->GetAndResetContentsZoomChangedCallCount());
// Ensure pointers to the delegate aren't kept beyond its lifetime.
contents()->SetDelegate(nullptr);
}
// Tests that GetRelatedActiveContentsCount is shared between related
// SiteInstances and includes WebContents that have not navigated yet.
TEST_F(WebContentsImplTest, ActiveContentsCountBasic) {
scoped_refptr<SiteInstance> instance1(
SiteInstance::CreateForURL(browser_context(), GURL("http://a.com")));
scoped_refptr<SiteInstance> instance2(
instance1->GetRelatedSiteInstance(GURL("http://b.com")));
EXPECT_EQ(0u, instance1->GetRelatedActiveContentsCount());
EXPECT_EQ(0u, instance2->GetRelatedActiveContentsCount());
std::unique_ptr<TestWebContents> contents1(
TestWebContents::Create(browser_context(), instance1.get()));
EXPECT_EQ(1u, instance1->GetRelatedActiveContentsCount());
EXPECT_EQ(1u, instance2->GetRelatedActiveContentsCount());
std::unique_ptr<TestWebContents> contents2(
TestWebContents::Create(browser_context(), instance1.get()));
EXPECT_EQ(2u, instance1->GetRelatedActiveContentsCount());
EXPECT_EQ(2u, instance2->GetRelatedActiveContentsCount());
contents1.reset();
EXPECT_EQ(1u, instance1->GetRelatedActiveContentsCount());
EXPECT_EQ(1u, instance2->GetRelatedActiveContentsCount());
contents2.reset();
EXPECT_EQ(0u, instance1->GetRelatedActiveContentsCount());
EXPECT_EQ(0u, instance2->GetRelatedActiveContentsCount());
}
// Tests that GetRelatedActiveContentsCount is preserved correctly across
// same-site and cross-site navigations.
TEST_F(WebContentsImplTest, ActiveContentsCountNavigate) {
scoped_refptr<SiteInstance> instance(SiteInstance::Create(browser_context()));
EXPECT_EQ(0u, instance->GetRelatedActiveContentsCount());
std::unique_ptr<TestWebContents> contents(
TestWebContents::Create(browser_context(), instance.get()));
EXPECT_EQ(1u, instance->GetRelatedActiveContentsCount());
// Navigate to a URL.
auto navigation1 = NavigationSimulator::CreateBrowserInitiated(
GURL("http://a.com/1"), contents.get());
navigation1->Start();
EXPECT_EQ(1u, instance->GetRelatedActiveContentsCount());
navigation1->Commit();
EXPECT_EQ(1u, instance->GetRelatedActiveContentsCount());
// Navigate to a URL in the same site.
auto navigation2 = NavigationSimulator::CreateBrowserInitiated(
GURL("http://a.com/2"), contents.get());
navigation2->Start();
EXPECT_EQ(1u, instance->GetRelatedActiveContentsCount());
navigation2->Commit();
if (CanSameSiteMainFrameNavigationsChangeSiteInstances()) {
// When ProactivelySwapBrowsingInstance turned on for same-site navigations,
// the BrowsingInstance will change on same-site navigations.
EXPECT_NE(instance, contents->GetSiteInstance());
// Check the previous instance's count.
EXPECT_EQ(0u, instance->GetRelatedActiveContentsCount());
// Update the current instance.
instance = contents->GetSiteInstance();
EXPECT_EQ(1u, instance->GetRelatedActiveContentsCount());
}
// Navigate to a URL in a different site in the same BrowsingInstance.
const GURL kUrl2("http://b.com");
auto navigation3 = NavigationSimulator::CreateRendererInitiated(
kUrl2, contents->GetPrimaryMainFrame());
navigation3->ReadyToCommit();
EXPECT_EQ(1u, instance->GetRelatedActiveContentsCount());
if (AreAllSitesIsolatedForTesting() ||
CanCrossSiteNavigationsProactivelySwapBrowsingInstances()) {
EXPECT_TRUE(contents->CrossProcessNavigationPending());
} else {
EXPECT_FALSE(contents->CrossProcessNavigationPending());
}
navigation3->Commit();
if (CanCrossSiteNavigationsProactivelySwapBrowsingInstances()) {
// When ProactivelySwapBrowsingInstance turned on, the BrowsingInstance will
// change on cross-site navigations.
EXPECT_NE(instance, contents->GetSiteInstance());
EXPECT_EQ(0u, instance->GetRelatedActiveContentsCount());
// Update the current instance.
instance = contents->GetSiteInstance();
}
EXPECT_EQ(1u, instance->GetRelatedActiveContentsCount());
// Navigate to a URL in a different site and different BrowsingInstance, by
// using a TYPED page transition instead of LINK.
const GURL kUrl3("http://c.com");
auto navigation4 =
NavigationSimulator::CreateBrowserInitiated(kUrl3, contents.get());
navigation4->SetTransition(ui::PAGE_TRANSITION_TYPED);
navigation4->ReadyToCommit();
EXPECT_TRUE(contents->CrossProcessNavigationPending());
EXPECT_EQ(1u, instance->GetRelatedActiveContentsCount());
scoped_refptr<SiteInstance> new_instance =
contents->GetSpeculativePrimaryMainFrame()->GetSiteInstance();
navigation4->Commit();
EXPECT_EQ(0u, instance->GetRelatedActiveContentsCount());
EXPECT_EQ(1u, new_instance->GetRelatedActiveContentsCount());
EXPECT_FALSE(new_instance->IsRelatedSiteInstance(instance.get()));
contents.reset();
EXPECT_EQ(0u, new_instance->GetRelatedActiveContentsCount());
}
// Tests that GetRelatedActiveContentsCount tracks BrowsingInstance changes
// from WebUI.
TEST_F(WebContentsImplTest, ActiveContentsCountChangeBrowsingInstance) {
scoped_refptr<SiteInstance> instance(SiteInstance::Create(browser_context()));
EXPECT_EQ(0u, instance->GetRelatedActiveContentsCount());
std::unique_ptr<TestWebContents> contents(
TestWebContents::Create(browser_context(), instance.get()));
EXPECT_EQ(1u, instance->GetRelatedActiveContentsCount());
// Navigate to a URL.
contents->NavigateAndCommit(GURL("http://a.com"));
EXPECT_EQ(1u, instance->GetRelatedActiveContentsCount());
// Navigate to a URL which sort of looks like a chrome:// url.
contents->NavigateAndCommit(GURL("http://gpu"));
if (CanCrossSiteNavigationsProactivelySwapBrowsingInstances()) {
// The navigation from "a.com" to "gpu" is using a new BrowsingInstance.
EXPECT_EQ(0u, instance->GetRelatedActiveContentsCount());
// The rest of the test expects |instance| to match the one in the main
// frame.
instance = contents->GetPrimaryMainFrame()->GetSiteInstance();
}
EXPECT_EQ(1u, instance->GetRelatedActiveContentsCount());
// Navigate to a URL with WebUI. This will change BrowsingInstances.
const GURL kWebUIUrl = GURL(GetWebUIURL(kChromeUIGpuHost));
auto web_ui_navigation =
NavigationSimulator::CreateBrowserInitiated(kWebUIUrl, contents.get());
web_ui_navigation->Start();
EXPECT_TRUE(contents->CrossProcessNavigationPending());
scoped_refptr<SiteInstance> instance_webui(
contents->GetSpeculativePrimaryMainFrame()->GetSiteInstance());
EXPECT_FALSE(instance->IsRelatedSiteInstance(instance_webui.get()));
// At this point, contents still counts for the old BrowsingInstance.
EXPECT_EQ(1u, instance->GetRelatedActiveContentsCount());
EXPECT_EQ(0u, instance_webui->GetRelatedActiveContentsCount());
// Commit and contents counts for the new one.
web_ui_navigation->Commit();
EXPECT_EQ(0u, instance->GetRelatedActiveContentsCount());
EXPECT_EQ(1u, instance_webui->GetRelatedActiveContentsCount());
contents.reset();
EXPECT_EQ(0u, instance->GetRelatedActiveContentsCount());
EXPECT_EQ(0u, instance_webui->GetRelatedActiveContentsCount());
}
class LoadingWebContentsObserver : public WebContentsObserver {
public:
explicit LoadingWebContentsObserver(WebContents* contents)
: WebContentsObserver(contents), is_loading_(false) {}
LoadingWebContentsObserver(const LoadingWebContentsObserver&) = delete;
LoadingWebContentsObserver& operator=(const LoadingWebContentsObserver&) =
delete;
~LoadingWebContentsObserver() override = default;
// The assertions on these messages ensure that they are received in order.
void DidStartLoading() override {
ASSERT_FALSE(is_loading_);
is_loading_ = true;
}
void DidStopLoading() override {
ASSERT_TRUE(is_loading_);
is_loading_ = false;
}
bool is_loading() const { return is_loading_; }
private:
bool is_loading_;
};
// Subclass of WebContentsImplTest for cases that need out-of-process iframes.
class WebContentsImplTestWithSiteIsolation : public WebContentsImplTest {
public:
WebContentsImplTestWithSiteIsolation() {
IsolateAllSitesForTesting(base::CommandLine::ForCurrentProcess());
}
};
// Ensure that DidStartLoading/DidStopLoading events balance out properly with
// interleaving cross-process navigations in multiple subframes.
// See https://crbug.com/448601 for details of the underlying issue. The
// sequence of events that reproduce it are as follows:
// * Navigate top-level frame with one subframe.
// * Subframe navigates more than once before the top-level frame has had a
// chance to complete the load.
// The subframe navigations cause the loading_frames_in_progress_ to drop down
// to 0, while the loading_progresses_ map is not reset.
TEST_F(WebContentsImplTestWithSiteIsolation, StartStopEventsBalance) {
// The bug manifests itself in regular mode as well, but browser-initiated
// navigation of subframes is only possible in --site-per-process mode within
// unit tests.
const GURL initial_url("about:blank");
const GURL main_url("http://www.chromium.org");
const GURL foo_url("http://foo.chromium.org");
const GURL bar_url("http://bar.chromium.org");
TestRenderFrameHost* orig_rfh = main_test_rfh();
// Use a WebContentsObserver to observe the behavior of the tab's spinner.
LoadingWebContentsObserver observer(contents());
// Navigate the main RenderFrame and commit. The frame should still be
// loading.
auto main_frame_navigation =
NavigationSimulatorImpl::CreateBrowserInitiated(main_url, contents());
main_frame_navigation->SetKeepLoading(true);
main_frame_navigation->Commit();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(orig_rfh, main_test_rfh());
EXPECT_TRUE(contents()->IsLoading());
// The Observer callback implementations contain assertions to ensure that the
// events arrive in the correct order.
EXPECT_TRUE(observer.is_loading());
// Create a child frame to navigate multiple times.
TestRenderFrameHost* subframe = orig_rfh->AppendChild("subframe");
// Navigate the child frame to about:blank, which will send DidStopLoading
// message.
NavigationSimulator::NavigateAndCommitFromDocument(initial_url, subframe);
// Navigate the frame to another URL, which will send again
// DidStartLoading and DidStopLoading messages.
NavigationSimulator::NavigateAndCommitFromDocument(foo_url, subframe);
// Since the main frame hasn't sent any DidStopLoading messages, it is
// expected that the WebContents is still in loading state.
EXPECT_TRUE(contents()->IsLoading());
EXPECT_TRUE(observer.is_loading());
// After navigation, the RenderFrameHost may change.
subframe = static_cast<TestRenderFrameHost*>(contents()
->GetPrimaryFrameTree()
.root()
->child_at(0)
->current_frame_host());
// Navigate the frame again, this time using LoadURLWithParams. This causes
// RenderFrameHost to call into WebContents::DidStartLoading, which starts
// the spinner.
{
auto navigation =
NavigationSimulatorImpl::CreateBrowserInitiated(bar_url, contents());
NavigationController::LoadURLParams load_params(bar_url);
load_params.referrer = Referrer(GURL("http://referrer"),
network::mojom::ReferrerPolicy::kDefault);
load_params.transition_type = ui::PAGE_TRANSITION_MANUAL_SUBFRAME;
load_params.extra_headers = "content-type: text/plain";
load_params.load_type = NavigationController::LOAD_TYPE_DEFAULT;
load_params.is_renderer_initiated = false;
load_params.override_user_agent = NavigationController::UA_OVERRIDE_TRUE;
load_params.frame_tree_node_id =
subframe->frame_tree_node()->frame_tree_node_id();
navigation->SetLoadURLParams(&load_params);
navigation->Commit();
subframe = static_cast<TestRenderFrameHost*>(
navigation->GetFinalRenderFrameHost());
}
// At this point the status should still be loading, since the main frame
// hasn't sent the DidstopLoading message yet.
EXPECT_TRUE(contents()->IsLoading());
EXPECT_TRUE(observer.is_loading());
// Send the DidStopLoading for the main frame and ensure it isn't loading
// anymore.
main_frame_navigation->StopLoading();
EXPECT_FALSE(contents()->IsLoading());
EXPECT_FALSE(observer.is_loading());
}
// Tests that WebContentsImpl::ShouldShowLoadingUI only reports main
// frame loads. Browser-initiated navigation of subframes is only possible in
// --site-per-process mode within unit tests.
TEST_F(WebContentsImplTestWithSiteIsolation, ShouldShowLoadingUI) {
const GURL main_url("http://www.chromium.org");
TestRenderFrameHost* orig_rfh = main_test_rfh();
// Navigate the main RenderFrame and commit. The frame should still be
// loading.
auto navigation =
NavigationSimulatorImpl::CreateBrowserInitiated(main_url, contents());
navigation->SetKeepLoading(true);
navigation->Commit();
EXPECT_FALSE(contents()->CrossProcessNavigationPending());
EXPECT_EQ(orig_rfh, main_test_rfh());
EXPECT_TRUE(contents()->IsLoading());
EXPECT_TRUE(contents()->ShouldShowLoadingUI());
// Send the DidStopLoading for the main frame and ensure it isn't loading
// anymore.
navigation->StopLoading();
EXPECT_FALSE(contents()->IsLoading());
EXPECT_FALSE(contents()->ShouldShowLoadingUI());
// Create a child frame to navigate.
TestRenderFrameHost* subframe = orig_rfh->AppendChild("subframe");
// Navigate the child frame to about:blank, make sure the web contents is
// marked as "loading" but not "showing loading UI".
subframe->SendNavigateWithTransition(0, false, GURL("about:blank"),
ui::PAGE_TRANSITION_AUTO_SUBFRAME);
EXPECT_TRUE(contents()->IsLoading());
EXPECT_FALSE(contents()->ShouldShowLoadingUI());
static_cast<mojom::FrameHost*>(subframe)->DidStopLoading();
EXPECT_FALSE(contents()->IsLoading());
}
// Ensure that WebContentsImpl does not stop loading too early when there still
// is a pending renderer. This can happen if a same-process non user-initiated
// navigation completes while there is an ongoing cross-process navigation.
// TODO(clamy): Rewrite that test when the renderer-initiated non-user-initiated
// navigation no longer kills the speculative RenderFrameHost. See
// https://crbug.com/889039.
TEST_F(WebContentsImplTest, DISABLED_NoEarlyStop) {
const GURL kUrl1("http://www.chromium.org");
const GURL kUrl2("http://www.google.com");
const GURL kUrl3("http://www.chromium.org/foo");
contents()->NavigateAndCommit(kUrl1);
TestRenderFrameHost* current_rfh = main_test_rfh();
// Start a browser-initiated cross-process navigation to |kUrl2|. The
// WebContents should be loading.
auto cross_process_navigation =
NavigationSimulator::CreateBrowserInitiated(kUrl2, contents());
cross_process_navigation->ReadyToCommit();
TestRenderFrameHost* pending_rfh =
contents()->GetSpeculativePrimaryMainFrame();
EXPECT_TRUE(contents()->IsLoading());
// The current RenderFrameHost starts a non user-initiated render-initiated
// navigation. The WebContents should still be loading.
auto same_process_navigation =
NavigationSimulator::CreateRendererInitiated(kUrl3, current_rfh);
same_process_navigation->SetHasUserGesture(false);
same_process_navigation->Start();
EXPECT_TRUE(contents()->IsLoading());
// Simulate the commit and DidStopLoading from the renderer-initiated
// navigation in the current RenderFrameHost. There should still be a pending
// RenderFrameHost and the WebContents should still be loading.
same_process_navigation->Commit();
static_cast<mojom::FrameHost*>(current_rfh)->DidStopLoading();
EXPECT_EQ(contents()->GetSpeculativePrimaryMainFrame(), pending_rfh);
EXPECT_TRUE(contents()->IsLoading());
// The same-process navigation should have committed.
ASSERT_EQ(2, controller().GetEntryCount());
EXPECT_EQ(kUrl3, controller().GetLastCommittedEntry()->GetURL());
// Commit the cross-process navigation. The formerly pending RenderFrameHost
// should now be the current RenderFrameHost and the WebContents should still
// be loading.
cross_process_navigation->Commit();
EXPECT_FALSE(contents()->GetSpeculativePrimaryMainFrame());
TestRenderFrameHost* new_current_rfh = main_test_rfh();
EXPECT_EQ(new_current_rfh, pending_rfh);
EXPECT_TRUE(contents()->IsLoading());
EXPECT_EQ(3, controller().GetEntryCount());
// Simulate the new current RenderFrameHost DidStopLoading. The WebContents
// should now have stopped loading.
static_cast<mojom::FrameHost*>(new_current_rfh)->DidStopLoading();
EXPECT_EQ(main_test_rfh(), new_current_rfh);
EXPECT_FALSE(contents()->IsLoading());
}
TEST_F(WebContentsImplTest, MediaWakeLock) {
EXPECT_FALSE(has_audio_wake_lock());
AudioStreamMonitor* monitor = contents()->audio_stream_monitor();
// Ensure RenderFrame is initialized before simulating events coming from it.
main_test_rfh()->InitializeRenderFrameIfNeeded();
// Send a fake audio stream monitor notification. The audio wake lock
// should be created.
monitor->set_was_recently_audible_for_testing(true);
contents()->NotifyNavigationStateChanged(INVALIDATE_TYPE_AUDIO);
EXPECT_TRUE(has_audio_wake_lock());
// Send another fake notification, this time when WasRecentlyAudible() will
// be false. The wake lock should be released.
monitor->set_was_recently_audible_for_testing(false);
contents()->NotifyNavigationStateChanged(INVALIDATE_TYPE_AUDIO);
EXPECT_FALSE(has_audio_wake_lock());
main_test_rfh()->GetProcess()->SimulateCrash();
// Verify that all the wake locks have been released.
EXPECT_FALSE(has_audio_wake_lock());
}
// Test that the WebContentsObserver is notified when text is copied to the
// clipboard for a given RenderFrameHost.
TEST_F(WebContentsImplTest, OnTextCopiedToClipboard) {
TestWebContentsObserver observer(contents());
TestRenderFrameHost* rfh = main_test_rfh();
const std::u16string copied_text = u"copied_text";
rfh->OnTextCopiedToClipboard(copied_text);
EXPECT_EQ(copied_text, observer.text_copied_to_clipboard());
}
TEST_F(WebContentsImplTest, ThemeColorChangeDependingOnFirstVisiblePaint) {
TestWebContentsObserver observer(contents());
TestRenderFrameHost* rfh = main_test_rfh();
rfh->InitializeRenderFrameIfNeeded();
EXPECT_EQ(std::nullopt, contents()->GetThemeColor());
EXPECT_EQ(0, observer.theme_color_change_calls());
// Theme color changes should not propagate past the WebContentsImpl before
// the first visually non-empty paint has occurred.
rfh->DidChangeThemeColor(SK_ColorRED);
EXPECT_EQ(SK_ColorRED, contents()->GetThemeColor());
EXPECT_EQ(0, observer.theme_color_change_calls());
// Simulate that the first visually non-empty paint has occurred. This will
// propagate the current theme color to the delegates.
rfh->GetPage().OnFirstVisuallyNonEmptyPaint();
EXPECT_EQ(SK_ColorRED, contents()->GetThemeColor());
EXPECT_EQ(1, observer.theme_color_change_calls());
// Additional changes made by the web contents should propagate as well.
rfh->DidChangeThemeColor(SK_ColorGREEN);
EXPECT_EQ(SK_ColorGREEN, contents()->GetThemeColor());
EXPECT_EQ(2, observer.theme_color_change_calls());
}
TEST_F(WebContentsImplTest, ParseDownloadHeaders) {
download::DownloadUrlParameters::RequestHeadersType request_headers =
WebContentsImpl::ParseDownloadHeaders("A: 1\r\nB: 2\r\nC: 3\r\n\r\n");
ASSERT_EQ(3u, request_headers.size());
EXPECT_EQ("A", request_headers[0].first);
EXPECT_EQ("1", request_headers[0].second);
EXPECT_EQ("B", request_headers[1].first);
EXPECT_EQ("2", request_headers[1].second);
EXPECT_EQ("C", request_headers[2].first);
EXPECT_EQ("3", request_headers[2].second);
request_headers = WebContentsImpl::ParseDownloadHeaders("A:1\r\nA:2\r\n");
ASSERT_EQ(2u, request_headers.size());
EXPECT_EQ("A", request_headers[0].first);
EXPECT_EQ("1", request_headers[0].second);
EXPECT_EQ("A", request_headers[1].first);
EXPECT_EQ("2", request_headers[1].second);
request_headers = WebContentsImpl::ParseDownloadHeaders("A 1\r\nA: 2");
ASSERT_EQ(1u, request_headers.size());
EXPECT_EQ("A", request_headers[0].first);
EXPECT_EQ("2", request_headers[0].second);
request_headers = WebContentsImpl::ParseDownloadHeaders("A: 1");
ASSERT_EQ(1u, request_headers.size());
EXPECT_EQ("A", request_headers[0].first);
EXPECT_EQ("1", request_headers[0].second);
request_headers = WebContentsImpl::ParseDownloadHeaders("A 1");
ASSERT_EQ(0u, request_headers.size());
}
// CHECKs should occur when `WebContentsImpl::DidLoadResourceFromMemoryCache()`
// is called with RequestDestinations that can only correspond to navigations.
TEST_F(WebContentsImplTest, DidLoadResourceFromMemoryCache_NavigationCheck) {
const GURL kImgUrl("https://www.example.com/image.png");
EXPECT_CHECK_DEATH(contents()->DidLoadResourceFromMemoryCache(
main_test_rfh(), kImgUrl, "GET", "image/png",
network::mojom::RequestDestination::kDocument,
/*include_credentials=*/false));
EXPECT_CHECK_DEATH(contents()->DidLoadResourceFromMemoryCache(
main_test_rfh(), kImgUrl, "GET", "image/png",
network::mojom::RequestDestination::kIframe,
/*include_credentials=*/false));
}
// Regression test for crbug.com/347934841#comment3 to ensure that if
// `WebContentsImpl::DidLoadResourceFromMemoryCache()` is called with a
// `request_destination` parameter value of
// `network::mojom::RequestDestination::kObject` or
// `network::mojom::RequestDestination::kEmbed`, a CHECK does not occur since
// those can correspond to both navigations and resource loads.
TEST_F(WebContentsImplTest,
DidLoadResourceFromMemoryCache_BypassNavigationCheck) {
mojo::PendingRemote<network::mojom::NetworkContext> network_context_remote;
MockNetworkContext mock_network_context(
network_context_remote.InitWithNewPipeAndPassReceiver());
auto* storage_partition_impl = static_cast<StoragePartitionImpl*>(
GetBrowserContext()->GetDefaultStoragePartition());
storage_partition_impl->SetNetworkContextForTesting(
std::move(network_context_remote));
const GURL kImgUrl("https://www.example.com/image.png");
const std::string kGet = "GET";
for (const auto destination : {network::mojom::RequestDestination::kObject,
network::mojom::RequestDestination::kEmbed}) {
SCOPED_TRACE(static_cast<int>(destination));
base::test::TestFuture<void> signal;
// If the NotifyExternalCacheHit call is reached then we know the CHECKs
// were evaluated but didn't trigger.
EXPECT_CALL(
mock_network_context,
NotifyExternalCacheHit(kImgUrl, kGet, ::testing::_, ::testing::_))
.WillOnce(base::test::InvokeFuture(signal));
contents()->DidLoadResourceFromMemoryCache(main_test_rfh(), kImgUrl, kGet,
"image/png", destination,
/*include_credentials=*/false);
EXPECT_TRUE(signal.Wait());
}
}
namespace {
class TestJavaScriptDialogManager : public JavaScriptDialogManager,
public WebContentsDelegate {
public:
TestJavaScriptDialogManager() = default;
TestJavaScriptDialogManager(const TestJavaScriptDialogManager&) = delete;
TestJavaScriptDialogManager& operator=(const TestJavaScriptDialogManager&) =
delete;
~TestJavaScriptDialogManager() override = default;
size_t reset_count() { return reset_count_; }
// WebContentsDelegate
JavaScriptDialogManager* GetJavaScriptDialogManager(
WebContents* source) override {
return this;
}
// JavaScriptDialogManager
void RunJavaScriptDialog(WebContents* web_contents,
RenderFrameHost* render_frame_host,
JavaScriptDialogType dialog_type,
const std::u16string& message_text,
const std::u16string& default_prompt_text,
DialogClosedCallback callback,
bool* did_suppress_message) override {
*did_suppress_message = true;
}
void RunBeforeUnloadDialog(WebContents* web_contents,
RenderFrameHost* render_frame_host,
bool is_reload,
DialogClosedCallback callback) override {}
bool HandleJavaScriptDialog(WebContents* web_contents,
bool accept,
const std::u16string* prompt_override) override {
return true;
}
void CancelDialogs(WebContents* web_contents, bool reset_state) override {
if (reset_state) {
++reset_count_;
}
}
private:
size_t reset_count_ = 0;
};
} // namespace
TEST_F(WebContentsImplTest, ResetJavaScriptDialogOnUserNavigate) {
const GURL kUrl("http://www.google.com");
const GURL kUrl2("http://www.google.com/sub");
TestJavaScriptDialogManager dialog_manager;
contents()->SetDelegate(&dialog_manager);
contents()->created_dialog_since_last_cancel_ = true;
// A user-initiated navigation.
NavigationSimulator::NavigateAndCommitFromBrowser(contents(), kUrl);
EXPECT_EQ(1u, dialog_manager.reset_count());
contents()->created_dialog_since_last_cancel_ = true;
// An automatic navigation.
auto navigation =
NavigationSimulator::CreateRendererInitiated(kUrl2, main_test_rfh());
navigation->SetHasUserGesture(false);
navigation->Commit();
if (CanSameSiteMainFrameNavigationsChangeRenderFrameHosts()) {
// If we changed RenderFrameHost on a renderer-initiated navigation above,
// we would trigger RenderFrameHostManager::UnloadOldFrame, similar to the
// first (user/browser-initiated) navigation, which will trigger dialog
// cancellations and increment the reset_count to 2.
EXPECT_EQ(2u, dialog_manager.reset_count());
} else {
EXPECT_EQ(1u, dialog_manager.reset_count());
}
contents()->SetDelegate(nullptr);
}
TEST_F(WebContentsImplTest, StartingSandboxFlags) {
WebContents::CreateParams params(browser_context());
network::mojom::WebSandboxFlags expected_flags =
network::mojom::WebSandboxFlags::kPopups |
network::mojom::WebSandboxFlags::kModals |
network::mojom::WebSandboxFlags::kTopNavigation;
params.starting_sandbox_flags = expected_flags;
std::unique_ptr<WebContentsImpl> new_contents(
WebContentsImpl::CreateWithOpener(params, nullptr));
FrameTreeNode* root = new_contents->GetPrimaryFrameTree().root();
network::mojom::WebSandboxFlags pending_flags =
root->pending_frame_policy().sandbox_flags;
EXPECT_EQ(pending_flags, expected_flags);
network::mojom::WebSandboxFlags effective_flags =
root->effective_frame_policy().sandbox_flags;
EXPECT_EQ(effective_flags, expected_flags);
}
TEST_F(WebContentsImplTest, DidFirstVisuallyNonEmptyPaint) {
TestWebContentsObserver observer(contents());
contents()->GetPrimaryPage().OnFirstVisuallyNonEmptyPaint();
EXPECT_TRUE(observer.observed_did_first_visually_non_empty_paint());
}
TEST_F(WebContentsImplTest, DidChangeVerticalScrollDirection) {
TestWebContentsObserver observer(contents());
EXPECT_FALSE(observer.last_vertical_scroll_direction().has_value());
contents()->OnVerticalScrollDirectionChanged(
viz::VerticalScrollDirection::kUp);
EXPECT_EQ(viz::VerticalScrollDirection::kUp,
observer.last_vertical_scroll_direction().value());
}
TEST_F(WebContentsImplTest, HandleContextMenuDelegate) {
MockWebContentsDelegate delegate;
contents()->SetDelegate(&delegate);
TestRenderFrameHost& main_rfh = *main_test_rfh();
EXPECT_CALL(delegate, HandleContextMenu(::testing::_, ::testing::_))
.WillOnce(::testing::Return(true));
ContextMenuParams params;
contents()->ShowContextMenu(main_rfh, mojo::NullAssociatedRemote(), params);
contents()->SetDelegate(nullptr);
}
TEST_F(WebContentsImplTest, RegisterProtocolHandlerDifferentOrigin) {
MockWebContentsDelegate delegate;
contents()->SetDelegate(&delegate);
GURL url("https://www.google.com");
GURL handler_url1("https://www.google.com/handler/%s");
GURL handler_url2("https://www.example.com/handler/%s");
contents()->NavigateAndCommit(url);
// Only the first call to RegisterProtocolHandler should register because the
// other call has a handler from a different origin.
EXPECT_CALL(delegate, RegisterProtocolHandler(main_test_rfh(), "mailto",
handler_url1, true))
.Times(1);
EXPECT_CALL(delegate, RegisterProtocolHandler(main_test_rfh(), "mailto",
handler_url2, true))
.Times(0);
{
contents()->RegisterProtocolHandler(main_test_rfh(), "mailto", handler_url1,
/*user_gesture=*/true);
}
{
contents()->RegisterProtocolHandler(main_test_rfh(), "mailto", handler_url2,
/*user_gesture=*/true);
}
// Check behavior for RegisterProtocolHandler::kUntrustedOrigins.
MockWebContentsDelegate unrestrictive_delegate(
blink::ProtocolHandlerSecurityLevel::kUntrustedOrigins);
contents()->SetDelegate(&unrestrictive_delegate);
EXPECT_CALL(
unrestrictive_delegate,
RegisterProtocolHandler(main_test_rfh(), "mailto", handler_url1, true))
.Times(1);
EXPECT_CALL(
unrestrictive_delegate,
RegisterProtocolHandler(main_test_rfh(), "mailto", handler_url2, true))
.Times(1);
{
contents()->RegisterProtocolHandler(main_test_rfh(), "mailto", handler_url1,
/*user_gesture=*/true);
}
{
contents()->RegisterProtocolHandler(main_test_rfh(), "mailto", handler_url2,
/*user_gesture=*/true);
}
contents()->SetDelegate(nullptr);
}
TEST_F(WebContentsImplTest, RegisterProtocolHandlerDataURL) {
MockWebContentsDelegate delegate;
contents()->SetDelegate(&delegate);
GURL data("data:text/html,<html><body><b>hello world</b></body></html>");
GURL data_handler(data.spec() + "%s");
contents()->NavigateAndCommit(data);
// Data URLs should fail.
EXPECT_CALL(delegate,
RegisterProtocolHandler(contents()->GetPrimaryMainFrame(),
"mailto", data_handler, true))
.Times(0);
{
contents()->RegisterProtocolHandler(main_test_rfh(), "mailto", data_handler,
/*user_gesture=*/true);
}
contents()->SetDelegate(nullptr);
}
TEST_F(WebContentsImplTest, RegisterProtocolHandlerInvalidURLSyntax) {
MockWebContentsDelegate delegate;
contents()->SetDelegate(&delegate);
GURL url("https://www.google.com");
GURL handler_url1("https://www.google.com/handler/%s");
GURL handler_url2("https://www.google.com/handler/");
GURL handler_url3("http://%s.com");
contents()->NavigateAndCommit(url);
// Only the first call to RegisterProtocolHandler should register because the
// other call has a handler from a different origin.
EXPECT_CALL(delegate, RegisterProtocolHandler(main_test_rfh(), "mailto",
handler_url1, true))
.Times(1);
EXPECT_CALL(delegate, RegisterProtocolHandler(main_test_rfh(), "mailto",
handler_url2, true))
.Times(0);
{
contents()->RegisterProtocolHandler(main_test_rfh(), "mailto", handler_url1,
/*user_gesture=*/true);
}
{
contents()->RegisterProtocolHandler(main_test_rfh(), "mailto", handler_url2,
/*user_gesture=*/true);
}
{
contents()->RegisterProtocolHandler(main_test_rfh(), "mailto", handler_url3,
/*user_gesture=*/true);
}
contents()->SetDelegate(nullptr);
}
TEST_F(WebContentsImplTest, Usb) {
testing::StrictMock<TestWebContentsObserver> observer(contents());
EXPECT_FALSE(contents()->IsCapabilityActive(WebContentsCapabilityType::kUSB));
EXPECT_CALL(observer,
OnCapabilityTypesChanged(WebContentsCapabilityType::kUSB, true))
.WillOnce(testing::Invoke([&]() {
// Accessor must return the updated state when the observer is notified.
EXPECT_TRUE(
contents()->IsCapabilityActive(WebContentsCapabilityType::kUSB));
}));
contents()->TestIncrementUsbActiveFrameCount();
testing::Mock::VerifyAndClearExpectations(&observer);
EXPECT_TRUE(contents()->IsCapabilityActive(WebContentsCapabilityType::kUSB));
// Additional increment/decrement don't modify state.
contents()->TestIncrementUsbActiveFrameCount();
EXPECT_TRUE(contents()->IsCapabilityActive(WebContentsCapabilityType::kUSB));
contents()->TestDecrementUsbActiveFrameCount();
EXPECT_TRUE(contents()->IsCapabilityActive(WebContentsCapabilityType::kUSB));
EXPECT_CALL(observer,
OnCapabilityTypesChanged(WebContentsCapabilityType::kUSB, false))
.WillOnce(testing::Invoke([&]() {
EXPECT_FALSE(
contents()->IsCapabilityActive(WebContentsCapabilityType::kUSB));
}));
contents()->TestDecrementUsbActiveFrameCount();
testing::Mock::VerifyAndClearExpectations(&observer);
EXPECT_FALSE(contents()->IsCapabilityActive(WebContentsCapabilityType::kUSB));
}
TEST_F(WebContentsImplTest, Hid) {
testing::StrictMock<TestWebContentsObserver> observer(contents());
EXPECT_FALSE(contents()->IsCapabilityActive(WebContentsCapabilityType::kHID));
EXPECT_CALL(observer,
OnCapabilityTypesChanged(WebContentsCapabilityType::kHID, true))
.WillOnce(testing::Invoke([&]() {
// Accessor must return the updated state when the observer is notified.
EXPECT_TRUE(
contents()->IsCapabilityActive(WebContentsCapabilityType::kHID));
}));
contents()->TestIncrementHidActiveFrameCount();
testing::Mock::VerifyAndClearExpectations(&observer);
EXPECT_TRUE(contents()->IsCapabilityActive(WebContentsCapabilityType::kHID));
// Additional increment/decrement don't modify state.
contents()->TestIncrementHidActiveFrameCount();
EXPECT_TRUE(contents()->IsCapabilityActive(WebContentsCapabilityType::kHID));
contents()->TestDecrementHidActiveFrameCount();
EXPECT_TRUE(contents()->IsCapabilityActive(WebContentsCapabilityType::kHID));
EXPECT_CALL(observer,
OnCapabilityTypesChanged(WebContentsCapabilityType::kHID, false))
.WillOnce(testing::Invoke([&]() {
EXPECT_FALSE(
contents()->IsCapabilityActive(WebContentsCapabilityType::kHID));
}));
contents()->TestDecrementHidActiveFrameCount();
testing::Mock::VerifyAndClearExpectations(&observer);
EXPECT_FALSE(contents()->IsCapabilityActive(WebContentsCapabilityType::kHID));
}
TEST_F(WebContentsImplTest, Serial) {
testing::StrictMock<TestWebContentsObserver> observer(contents());
EXPECT_FALSE(
contents()->IsCapabilityActive(WebContentsCapabilityType::kSerial));
EXPECT_CALL(observer, OnCapabilityTypesChanged(
WebContentsCapabilityType::kSerial, true))
.WillOnce(testing::Invoke([&]() {
// Accessor must return the updated state when the observer is notified.
EXPECT_TRUE(
contents()->IsCapabilityActive(WebContentsCapabilityType::kSerial));
}));
contents()->TestIncrementSerialActiveFrameCount();
testing::Mock::VerifyAndClearExpectations(&observer);
EXPECT_TRUE(
contents()->IsCapabilityActive(WebContentsCapabilityType::kSerial));
// Additional increment/decrement don't modify state.
contents()->TestIncrementSerialActiveFrameCount();
EXPECT_TRUE(
contents()->IsCapabilityActive(WebContentsCapabilityType::kSerial));
contents()->TestDecrementSerialActiveFrameCount();
EXPECT_TRUE(
contents()->IsCapabilityActive(WebContentsCapabilityType::kSerial));
EXPECT_CALL(observer, OnCapabilityTypesChanged(
WebContentsCapabilityType::kSerial, false))
.WillOnce(testing::Invoke([&]() {
EXPECT_FALSE(
contents()->IsCapabilityActive(WebContentsCapabilityType::kSerial));
}));
contents()->TestDecrementSerialActiveFrameCount();
testing::Mock::VerifyAndClearExpectations(&observer);
EXPECT_FALSE(
contents()->IsCapabilityActive(WebContentsCapabilityType::kSerial));
}
TEST_F(WebContentsImplTest, Bluetooth) {
testing::StrictMock<TestWebContentsObserver> observer(contents());
EXPECT_FALSE(contents()->IsCapabilityActive(
WebContentsCapabilityType::kBluetoothConnected));
EXPECT_CALL(observer,
OnCapabilityTypesChanged(
WebContentsCapabilityType::kBluetoothConnected, true))
.WillOnce(testing::Invoke([&]() {
// Accessor must return the updated state when the observer is notified.
EXPECT_TRUE(contents()->IsCapabilityActive(
WebContentsCapabilityType::kBluetoothConnected));
}));
contents()->TestIncrementBluetoothConnectedDeviceCount();
testing::Mock::VerifyAndClearExpectations(&observer);
EXPECT_TRUE(contents()->IsCapabilityActive(
WebContentsCapabilityType::kBluetoothConnected));
// Additional increment/decrement don't modify state.
contents()->TestIncrementBluetoothConnectedDeviceCount();
EXPECT_TRUE(contents()->IsCapabilityActive(
WebContentsCapabilityType::kBluetoothConnected));
contents()->TestDecrementBluetoothConnectedDeviceCount();
EXPECT_TRUE(contents()->IsCapabilityActive(
WebContentsCapabilityType::kBluetoothConnected));
EXPECT_CALL(observer,
OnCapabilityTypesChanged(
WebContentsCapabilityType::kBluetoothConnected, false))
.WillOnce(testing::Invoke([&]() {
EXPECT_FALSE(contents()->IsCapabilityActive(
WebContentsCapabilityType::kBluetoothConnected));
}));
contents()->TestDecrementBluetoothConnectedDeviceCount();
testing::Mock::VerifyAndClearExpectations(&observer);
EXPECT_FALSE(contents()->IsCapabilityActive(
WebContentsCapabilityType::kBluetoothConnected));
}
TEST_F(WebContentsImplTest, BadDownloadImageResponseFromRenderer) {
// Avoid using TestWebContents, which fakes image download logic without
// exercising the code in WebContentsImpl.
scoped_refptr<SiteInstance> instance =
SiteInstance::Create(GetBrowserContext());
instance->GetOrCreateProcess()->Init();
WebContents::CreateParams create_params(GetBrowserContext(),
std::move(instance));
create_params.desired_renderer_state = WebContents::CreateParams::
CreateParams::kInitializeAndWarmupRendererProcess;
std::unique_ptr<WebContentsImpl> contents(
WebContentsImpl::CreateWithOpener(create_params, /*opener_rfh=*/nullptr));
ASSERT_FALSE(
contents->GetPrimaryMainFrame()->GetProcess()->ShutdownRequested());
// Set up the fake image downloader.
FakeImageDownloader fake_image_downloader;
fake_image_downloader.Init(
contents->GetPrimaryMainFrame()->GetRemoteInterfaces());
// For the purpose of this test, set up a malformed response with different
// vector sizes.
const GURL kImageUrl = GURL("https://example.com/favicon.ico");
fake_image_downloader.SetFakeResponseData(
kImageUrl,
/*bitmaps=*/{}, /*original_bitmap_sizes=*/{gfx::Size(16, 16)});
base::RunLoop run_loop;
contents->DownloadImage(
kImageUrl,
/*is_favicon=*/true,
/*preferred_size=*/gfx::Size(16, 16),
/*max_bitmap_size=*/32,
/*bypass_cache=*/false,
base::BindLambdaForTesting([&](int id, int http_status_code,
const GURL& image_url,
const std::vector<SkBitmap>& bitmaps,
const std::vector<gfx::Size>& sizes) {
EXPECT_EQ(400, http_status_code);
EXPECT_TRUE(bitmaps.empty());
EXPECT_TRUE(sizes.empty());
run_loop.Quit();
}));
run_loop.Run();
// The renderer process should have been killed due to
// WCI_INVALID_DOWNLOAD_IMAGE_RESULT.
EXPECT_TRUE(
contents->GetPrimaryMainFrame()->GetProcess()->ShutdownRequested());
}
TEST_F(WebContentsImplTest,
GetCaptureHandleConfigBeforeSetIsCalledReturnsEmptyConfig) {
const auto empty_config = blink::mojom::CaptureHandleConfig::New();
EXPECT_EQ(contents()->GetCaptureHandleConfig(), *empty_config);
}
TEST_F(WebContentsImplTest, SetAndGetCaptureHandleConfig) {
// Value set - value returned.
{
auto config = blink::mojom::CaptureHandleConfig::New();
config->capture_handle = u"Pay not attention";
contents()->SetCaptureHandleConfig(config->Clone());
EXPECT_EQ(*config, contents()->GetCaptureHandleConfig());
}
// New value set - new value returned.
{
auto config = blink::mojom::CaptureHandleConfig::New();
config->capture_handle = u"to the man behind the curtain.";
contents()->SetCaptureHandleConfig(config->Clone());
EXPECT_EQ(*config, contents()->GetCaptureHandleConfig());
}
}
TEST_F(WebContentsImplTest, NoOnCaptureHandleConfigUpdateCallIfResettingEmpty) {
const auto empty_config = blink::mojom::CaptureHandleConfig::New();
// Reminder - empty in the beginning.
ASSERT_EQ(contents()->GetCaptureHandleConfig(),
*blink::mojom::CaptureHandleConfig::New());
TestWebContentsObserver observer(contents());
// Note that ExpectOnCaptureHandleConfigUpdate() is NOT called.
// If OnCaptureHandleConfigUpdate() is called, the test will fail.
contents()->SetCaptureHandleConfig(empty_config.Clone());
}
TEST_F(WebContentsImplTest,
OnCaptureHandleConfigUpdateCalledWhenHandleChanges) {
{
auto config = blink::mojom::CaptureHandleConfig::New();
config->capture_handle = u"Some handle.";
contents()->SetCaptureHandleConfig(config.Clone());
}
{
auto config = blink::mojom::CaptureHandleConfig::New();
config->capture_handle = u"A different handle.";
TestWebContentsObserver observer(contents());
observer.ExpectOnCaptureHandleConfigUpdate(config.Clone());
contents()->SetCaptureHandleConfig(config.Clone());
}
}
TEST_F(WebContentsImplTest,
OnCaptureHandleConfigUpdateNotCalledWhenResettingAnIdenticalHandle) {
{
auto config = blink::mojom::CaptureHandleConfig::New();
config->capture_handle = u"The ministry of redundancy ministry.";
contents()->SetCaptureHandleConfig(config.Clone());
}
{
auto config = blink::mojom::CaptureHandleConfig::New();
config->capture_handle = u"The ministry of redundancy ministry.";
TestWebContentsObserver observer(contents());
// Note that ExpectOnCaptureHandleConfigUpdate() is NOT called.
// If OnCaptureHandleConfigUpdate() is called, the test will fail.
contents()->SetCaptureHandleConfig(config.Clone());
}
}
TEST_F(WebContentsImplTest,
OnCaptureHandleConfigUpdateCalledWhenClearingTheConfig) {
auto config = blink::mojom::CaptureHandleConfig::New();
config->capture_handle = u"Some handle.";
contents()->SetCaptureHandleConfig(config.Clone());
auto empty_config = blink::mojom::CaptureHandleConfig::New();
TestWebContentsObserver observer(contents());
observer.ExpectOnCaptureHandleConfigUpdate(empty_config.Clone());
contents()->SetCaptureHandleConfig(empty_config.Clone());
}
TEST_F(WebContentsImplTest,
CrossDocumentMainPageNavigationClearsCaptureHandleConfig) {
TestRenderFrameHost* orig_rfh = main_test_rfh();
ASSERT_EQ(orig_rfh, orig_rfh->GetMainFrame());
// Navigate to the first site.
NavigationSimulator::NavigateAndCommitFromBrowser(
contents(), GURL("http://www.google.com/a.html"));
orig_rfh->GetSiteInstance()->group()->IncrementActiveFrameCount();
// Set a capture handle.
auto config = blink::mojom::CaptureHandleConfig::New();
config->capture_handle = u"Some handle.";
contents()->SetCaptureHandleConfig(config.Clone());
// Expect that navigation to a new site will reset the capture handle config.
const auto empty_config = blink::mojom::CaptureHandleConfig::New();
TestWebContentsObserver observer(contents());
observer.ExpectOnCaptureHandleConfigUpdate(empty_config.Clone());
// Navigate to the second site.
auto new_site_navigation = NavigationSimulator::CreateBrowserInitiated(
GURL("http://www.google.com/b.html"), contents());
new_site_navigation->ReadyToCommit();
// Further proof that the config was reset.
EXPECT_EQ(contents()->GetCaptureHandleConfig(), *empty_config);
}
TEST_F(WebContentsImplTest,
SameDocumentMainPageNavigationDoesNotClearCaptureHandleConfig) {
TestRenderFrameHost* orig_rfh = main_test_rfh();
ASSERT_EQ(orig_rfh, orig_rfh->GetMainFrame());
// Navigate to the first site.
NavigationSimulator::NavigateAndCommitFromBrowser(
contents(), GURL("http://www.google.com/index.html"));
orig_rfh->GetSiteInstance()->group()->IncrementActiveFrameCount();
// Set a capture handle.
auto config = blink::mojom::CaptureHandleConfig::New();
config->capture_handle = u"Some handle.";
contents()->SetCaptureHandleConfig(config.Clone());
// ExpectOnCaptureHandleConfigUpdate() not called - the test will fail
// if OnCaptureHandleConfigUpdate() is called.
TestWebContentsObserver observer(contents());
// Navigate to the second site.
auto new_site_navigation = NavigationSimulator::CreateBrowserInitiated(
GURL("http://www.google.com/index.html#same_doc"), contents());
new_site_navigation->ReadyToCommit();
// Further proof that the config was not reset.
EXPECT_EQ(contents()->GetCaptureHandleConfig(), *config);
}
TEST_F(WebContentsImplTest,
CrossDocumentChildPageNavigationDoesNotClearCaptureHandleConfig) {
TestRenderFrameHost* orig_rfh = main_test_rfh();
ASSERT_EQ(orig_rfh, orig_rfh->GetMainFrame());
NavigationSimulator::NavigateAndCommitFromBrowser(
contents(), GURL("http://www.google.com/a.html"));
TestRenderFrameHost* subframe = orig_rfh->AppendChild("subframe");
ASSERT_NE(subframe, subframe->GetMainFrame());
subframe->GetSiteInstance()->group()->IncrementActiveFrameCount();
NavigationSimulator::NavigateAndCommitFromDocument(
GURL("http://www.google.com/b.html"), subframe);
// Set a capture handle.
auto config = blink::mojom::CaptureHandleConfig::New();
config->capture_handle = u"Some handle.";
contents()->SetCaptureHandleConfig(config.Clone());
// ExpectOnCaptureHandleConfigUpdate() not called - the test will fail
// if OnCaptureHandleConfigUpdate() is called.
TestWebContentsObserver observer(contents());
NavigationSimulator::NavigateAndCommitFromDocument(
GURL("http://www.google.com/c.html"), subframe);
// Further proof that the config was not reset.
EXPECT_EQ(contents()->GetCaptureHandleConfig(), *config);
}
class TestCanonicalUrlLocalFrame : public content::FakeLocalFrame,
public WebContentsObserver {
public:
explicit TestCanonicalUrlLocalFrame(WebContents* web_contents,
std::optional<GURL> canonical_url)
: WebContentsObserver(web_contents), canonical_url_(canonical_url) {}
void RenderFrameCreated(RenderFrameHost* render_frame_host) override {
if (!initialized_) {
initialized_ = true;
Init(render_frame_host->GetRemoteAssociatedInterfaces());
}
}
void GetCanonicalUrlForSharing(
base::OnceCallback<void(const std::optional<GURL>&)> callback) override {
std::move(callback).Run(canonical_url_);
}
private:
bool initialized_ = false;
std::optional<GURL> canonical_url_;
};
TEST_F(WebContentsImplTest, CanonicalUrlSchemeHttpsIsAllowed) {
TestCanonicalUrlLocalFrame local_frame(contents(), GURL("https://someurl/"));
NavigationSimulator::NavigateAndCommitFromBrowser(contents(),
GURL("https://site/"));
base::RunLoop run_loop;
std::optional<GURL> canonical_url;
base::RepeatingClosure quit = run_loop.QuitClosure();
auto on_done = [&](const std::optional<GURL>& result) {
canonical_url = result;
quit.Run();
};
contents()->GetPrimaryMainFrame()->GetCanonicalUrl(
base::BindLambdaForTesting(on_done));
run_loop.Run();
ASSERT_TRUE(canonical_url);
EXPECT_EQ(GURL("https://someurl/"), *canonical_url);
}
TEST_F(WebContentsImplTest, CanonicalUrlSchemeChromeIsNotAllowed) {
TestCanonicalUrlLocalFrame local_frame(contents(), GURL("chrome://someurl/"));
NavigationSimulator::NavigateAndCommitFromBrowser(contents(),
GURL("https://site/"));
base::RunLoop run_loop;
std::optional<GURL> canonical_url;
base::RepeatingClosure quit = run_loop.QuitClosure();
auto on_done = [&](const std::optional<GURL>& result) {
canonical_url = result;
quit.Run();
};
contents()->GetPrimaryMainFrame()->GetCanonicalUrl(
base::BindLambdaForTesting(on_done));
run_loop.Run();
ASSERT_FALSE(canonical_url) << "canonical_url=" << *canonical_url;
}
TEST_F(WebContentsImplTest, RequestMediaAccessPermissionNoDelegate) {
MediaStreamRequest dummy_request(
/*render_process_id=*/0, /*render_frame_id=*/0, /*page_request_id=*/0,
/*url_origin=*/url::Origin::Create(GURL("")), /*user_gesture=*/false,
blink::MediaStreamRequestType::MEDIA_GENERATE_STREAM,
/*requested_audio_device_ids=*/{},
/*requested_video_device_ids=*/{},
blink::mojom::MediaStreamType::DISPLAY_AUDIO_CAPTURE,
blink::mojom::MediaStreamType::DISPLAY_VIDEO_CAPTURE,
/*disable_local_echo=*/false, /*request_pan_tilt_zoom_permission=*/false,
/*captured_surface_control_active=*/false);
bool callback_run = false;
contents()->RequestMediaAccessPermission(
contents()->GetPrimaryMainFrame(), dummy_request,
base::BindLambdaForTesting(
[&callback_run](
const blink::mojom::StreamDevicesSet& stream_devices_set,
blink::mojom::MediaStreamRequestResult result,
std::unique_ptr<MediaStreamUI> ui) {
EXPECT_TRUE(stream_devices_set.stream_devices.empty());
EXPECT_EQ(
result,
blink::mojom::MediaStreamRequestResult::FAILED_DUE_TO_SHUTDOWN);
callback_run = true;
}));
ASSERT_TRUE(callback_run);
}
TEST_F(WebContentsImplTest, IgnoreInputEvents) {
// By default, input events should not be ignored.
EXPECT_FALSE(contents()->ShouldIgnoreInputEvents());
std::optional<WebContents::ScopedIgnoreInputEvents> ignore_1 =
contents()->IgnoreInputEvents(std::nullopt);
EXPECT_TRUE(contents()->ShouldIgnoreInputEvents());
// A second request to ignore should continue to ignore events.
WebContents::ScopedIgnoreInputEvents ignore_2 =
contents()->IgnoreInputEvents(std::nullopt);
EXPECT_TRUE(contents()->ShouldIgnoreInputEvents());
// Releasing one of them should not change anything.
ignore_1.reset();
EXPECT_TRUE(contents()->ShouldIgnoreInputEvents());
// Move construction should not allow input.
WebContents::ScopedIgnoreInputEvents ignore_3(std::move(ignore_2));
EXPECT_TRUE(contents()->ShouldIgnoreInputEvents());
{
// Cannot create an empty `ScopedIgnoreInputEvents`, so get a new one and
// move-assign over it to verify that we end up with one outstanding token.
WebContents::ScopedIgnoreInputEvents ignore_4 =
contents()->IgnoreInputEvents(std::nullopt);
ignore_4 = std::move(ignore_3);
EXPECT_TRUE(contents()->ShouldIgnoreInputEvents());
// `ignore_4` goes out of scope.
}
// Now input should be allowed.
EXPECT_FALSE(contents()->ShouldIgnoreInputEvents());
}
TEST_F(WebContentsImplTest, OnColorProviderChangedTriggersPageBroadcast) {
TestColorProviderSource color_provider_source;
mojo::AssociatedRemote<blink::mojom::PageBroadcast> broadcast_remote;
testing::NiceMock<MockPageBroadcast> mock_page_broadcast(
broadcast_remote.BindNewEndpointAndPassDedicatedReceiver());
contents()->GetRenderViewHost()->BindPageBroadcast(broadcast_remote.Unbind());
contents()->SetColorProviderSource(&color_provider_source);
const auto color_provider_colors = contents()->GetColorProviderColorMaps();
color_provider_source.NotifyColorProviderChanged();
// The page broadcast should have been called twice. Once when first set and
// again when the source notified of a ColorProvider change.
EXPECT_CALL(mock_page_broadcast, UpdateColorProviders(color_provider_colors))
.Times(2);
mock_page_broadcast.FlushForTesting();
}
TEST_F(WebContentsImplTest, InvalidNetworkHandleAsDefault) {
WebContents::CreateParams params(browser_context());
std::unique_ptr<WebContents> contents(WebContents::Create(params));
EXPECT_EQ(net::handles::kInvalidNetworkHandle, contents->GetTargetNetwork());
}
TEST_F(WebContentsImplTest, CreateWebContentsWithNetworkHandle) {
int64_t test_target_network_handle = 100;
WebContents::CreateParams params(browser_context());
params.target_network = test_target_network_handle;
std::unique_ptr<WebContents> contents(WebContents::Create(params));
EXPECT_EQ(test_target_network_handle, contents->GetTargetNetwork());
}
TEST_F(WebContentsImplTest, CreateWebContentsWithOpenerAndNetworkHandle) {
int64_t test_target_network_handle = 100;
WebContents::CreateParams params(browser_context());
params.target_network = test_target_network_handle;
std::unique_ptr<WebContentsImpl> contents(
WebContentsImpl::CreateWithOpener(params, /*opener_rfh=*/nullptr));
EXPECT_EQ(test_target_network_handle, contents->GetTargetNetwork());
}
TEST_F(WebContentsImplTest, BadDownloadImageFromAXNodeId) {
// Avoid using TestWebContents, which fakes image download logic without
// exercising the code in WebContentsImpl.
scoped_refptr<SiteInstance> instance =
SiteInstance::Create(GetBrowserContext());
instance->GetOrCreateProcess()->Init();
WebContents::CreateParams create_params(GetBrowserContext(),
std::move(instance));
create_params.desired_renderer_state = WebContents::CreateParams::
CreateParams::kInitializeAndWarmupRendererProcess;
std::unique_ptr<WebContentsImpl> contents(
WebContentsImpl::CreateWithOpener(create_params, /*opener_rfh=*/nullptr));
ASSERT_FALSE(
contents->GetPrimaryMainFrame()->GetProcess()->ShutdownRequested());
// Set up the fake image downloader.
FakeImageDownloader fake_image_downloader;
fake_image_downloader.Init(
contents->GetPrimaryMainFrame()->GetRemoteInterfaces());
int img_node_id = 3;
fake_image_downloader.SetFakeResponseData(img_node_id, {},
{gfx::Size(30, 30)});
base::RunLoop run_loop;
contents->DownloadImageFromAxNode(
contents->GetPrimaryMainFrame()->GetAXTreeID(), img_node_id, gfx::Size(),
0, false,
base::BindLambdaForTesting([&](int download_id, int http_status_code,
const GURL& url,
const std::vector<SkBitmap>& bitmaps,
const std::vector<gfx::Size>& sizes) {
EXPECT_EQ(400, http_status_code);
EXPECT_TRUE(bitmaps.empty());
EXPECT_TRUE(sizes.empty());
run_loop.Quit();
}));
run_loop.Run();
}
// Test that the WebContentsObserver is notified when a fetch keepalive request
// is created in a given RenderFrameHost.
TEST_F(WebContentsImplTest, OnKeepAliveRequestCreated) {
TestWebContentsObserver observer(contents());
TestRenderFrameHost* rfh = main_test_rfh();
network::ResourceRequest request;
request.url = GURL("https://example.com");
request.attribution_reporting_eligibility =
network::mojom::AttributionReportingEligibility::kEmpty;
request.keepalive = true;
request.keepalive_token = base::UnguessableToken::Create();
rfh->OnKeepAliveRequestCreated(request);
EXPECT_EQ(request.url, observer.fetch_keepalive_request().url);
EXPECT_EQ(request.keepalive, observer.fetch_keepalive_request().keepalive);
EXPECT_EQ(request.keepalive_token,
observer.fetch_keepalive_request().keepalive_token);
}
class WebContentsImplTestKeyboardEvents
: public WebContentsImplTest,
public testing::WithParamInterface<blink::WebInputEvent::Type> {};
INSTANTIATE_TEST_SUITE_P(
WebContentsImplTest,
WebContentsImplTestKeyboardEvents,
testing::Values(blink::WebInputEvent::Type::kKeyDown,
blink::WebInputEvent::Type::kRawKeyDown));
TEST_P(WebContentsImplTestKeyboardEvents,
EventUpdatesRecentInteractionTracking) {
ASSERT_FALSE(contents()->HasRecentInteraction());
const int no_modifiers = 0;
const base::TimeTicks dummy_timestamp{};
input::NativeWebKeyboardEvent event{blink::WebInputEvent::Type::kKeyDown,
no_modifiers, dummy_timestamp};
contents()->DidReceiveInputEvent(
contents()->GetRenderWidgetHostWithPageFocus(), event);
EXPECT_TRUE(contents()->HasRecentInteraction());
}
TEST_F(WebContentsImplTest, ProcessSelectAudioOutputNoDelegate) {
SelectAudioOutputRequest dummy_request(content::GlobalRenderFrameHostId(0, 0),
std::vector<AudioOutputDeviceInfo>());
bool callback_run = false;
contents()->ProcessSelectAudioOutput(
dummy_request,
base::BindLambdaForTesting(
[&](base::expected<std::string, content::SelectAudioOutputError>
result) {
EXPECT_FALSE(result.has_value());
EXPECT_EQ(result.error(),
content::SelectAudioOutputError::kNotSupported);
callback_run = true;
}));
ASSERT_TRUE(callback_run);
}
} // namespace content
|