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
|
// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/service_worker_apitest.h"
#include <stdint.h>
#include <optional>
#include <utility>
#include "base/auto_reset.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/json/json_reader.h"
#include "base/memory/raw_ptr.h"
#include "base/path_service.h"
#include "base/run_loop.h"
#include "base/scoped_observation.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/bind.h"
#include "base/test/metrics/histogram_tester.h"
#include "base/test/scoped_feature_list.h"
#include "base/threading/thread_restrictions.h"
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/browser/extensions/api/permissions/permissions_api.h"
#include "chrome/browser/extensions/browsertest_util.h"
#include "chrome/browser/extensions/chrome_content_browser_client_extensions_part.h"
#include "chrome/browser/extensions/chrome_test_extension_loader.h"
#include "chrome/browser/extensions/crx_installer.h"
#include "chrome/browser/extensions/error_console/error_console.h"
#include "chrome/browser/extensions/error_console/error_console_test_observer.h"
#include "chrome/browser/extensions/extension_action_runner.h"
#include "chrome/browser/extensions/extension_apitest.h"
#include "chrome/browser/extensions/unpacked_installer.h"
#include "chrome/browser/gcm/gcm_profile_service_factory.h"
#include "chrome/browser/notifications/notification_display_service_factory.h"
#include "chrome/browser/notifications/notification_display_service_tester.h"
#include "chrome/browser/notifications/notification_permission_context.h"
#include "chrome/browser/notifications/stub_notification_display_service.h"
#include "chrome/browser/push_messaging/push_messaging_app_identifier.h"
#include "chrome/browser/push_messaging/push_messaging_features.h"
#include "chrome/browser/push_messaging/push_messaging_service_factory.h"
#include "chrome/browser/push_messaging/push_messaging_service_impl.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/extensions/extension_action_test_helper.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/extensions/api/web_navigation.h"
#include "chrome/test/base/ui_test_utils.h"
#include "components/content_settings/core/common/content_settings_types.h"
#include "components/gcm_driver/fake_gcm_profile_service.h"
#include "components/gcm_driver/instance_id/fake_gcm_driver_for_instance_id.h"
#include "components/version_info/channel.h"
#include "components/version_info/version_info.h"
#include "content/public/browser/console_message.h"
#include "content/public/browser/navigation_controller.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/render_process_host.h"
#include "content/public/browser/service_worker_context.h"
#include "content/public/browser/service_worker_context_observer.h"
#include "content/public/browser/web_contents.h"
#include "content/public/common/content_switches.h"
#include "content/public/common/page_type.h"
#include "content/public/common/result_codes.h"
#include "content/public/test/background_sync_test_util.h"
#include "content/public/test/browser_test.h"
#include "content/public/test/browser_test_utils.h"
#include "content/public/test/service_worker_test_helpers.h"
#include "extensions/browser/browsertest_util.h"
#include "extensions/browser/event_router.h"
#include "extensions/browser/extension_function_histogram_value.h"
#include "extensions/browser/extension_host.h"
#include "extensions/browser/extension_host_test_helper.h"
#include "extensions/browser/extension_registrar.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/process_map.h"
#include "extensions/browser/service_worker/service_worker_task_queue.h"
#include "extensions/browser/service_worker/service_worker_test_utils.h"
#include "extensions/common/api/test.h"
#include "extensions/common/extensions_client.h"
#include "extensions/common/features/feature_channel.h"
#include "extensions/common/manifest_handlers/background_info.h"
#include "extensions/common/mojom/event_dispatcher.mojom.h"
#include "extensions/common/permissions/permissions_data.h"
#include "extensions/common/verifier_formats.h"
#include "extensions/test/extension_background_page_waiter.h"
#include "extensions/test/extension_test_message_listener.h"
#include "extensions/test/result_catcher.h"
#include "extensions/test/test_extension_dir.h"
#include "net/dns/mock_host_resolver.h"
#include "net/test/embedded_test_server/embedded_test_server.h"
#include "services/network/public/cpp/is_potentially_trustworthy.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "third_party/blink/public/common/service_worker/service_worker_status_code.h"
#include "third_party/blink/public/common/storage_key/storage_key.h"
#include "ui/message_center/public/cpp/notification.h"
#include "url/url_constants.h"
namespace extensions {
using service_worker_test_utils::TestServiceWorkerTaskQueueObserver;
namespace {
using ::testing::HasSubstr;
class WebContentsLoadStopObserver : content::WebContentsObserver {
public:
explicit WebContentsLoadStopObserver(content::WebContents* web_contents)
: content::WebContentsObserver(web_contents),
load_stop_observed_(false) {}
WebContentsLoadStopObserver(const WebContentsLoadStopObserver&) = delete;
WebContentsLoadStopObserver& operator=(const WebContentsLoadStopObserver&) =
delete;
void WaitForLoadStop() {
if (load_stop_observed_)
return;
message_loop_runner_ = new content::MessageLoopRunner;
message_loop_runner_->Run();
}
private:
void DidStopLoading() override {
load_stop_observed_ = true;
if (message_loop_runner_)
message_loop_runner_->Quit();
}
bool load_stop_observed_;
scoped_refptr<content::MessageLoopRunner> message_loop_runner_;
};
// Extension ID for tests that use
// "worker_based_background/test_extension.pem" key.
constexpr char kTestExtensionId[] = "ogdbpbegnmindpdjfafpmpicikegejdj";
} // namespace
void ServiceWorkerTest::SetUpOnMainThread() {
ExtensionApiTest::SetUpOnMainThread();
host_resolver()->AddRule("*", "127.0.0.1");
}
const Extension* ServiceWorkerTest::StartTestFromBackgroundPage(
const char* script_name) {
ExtensionTestMessageListener ready_listener("ready");
const Extension* extension =
LoadExtension(test_data_dir_.AppendASCII("service_worker/background"));
CHECK(extension);
CHECK(ready_listener.WaitUntilSatisfied());
ExtensionHost* background_host =
process_manager()->GetBackgroundHostForExtension(extension->id());
CHECK(background_host);
EXPECT_EQ(
"", content::EvalJs(background_host->host_contents(),
base::StringPrintf("test.registerServiceWorker('%s')",
script_name)));
return extension;
}
content::WebContents* ServiceWorkerTest::Navigate(const GURL& url) {
ui_test_utils::NavigateToURLWithDisposition(
browser(), url, WindowOpenDisposition::NEW_FOREGROUND_TAB,
ui_test_utils::BROWSER_TEST_WAIT_FOR_LOAD_STOP);
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
content::WaitForLoadStop(web_contents);
return web_contents;
}
content::PageType ServiceWorkerTest::NavigateAndGetPageType(const GURL& url) {
return Navigate(url)->GetController().GetLastCommittedEntry()->GetPageType();
}
std::string ServiceWorkerTest::ExtractInnerText(
content::WebContents* contents) {
return content::EvalJs(contents, "document.body.innerText").ExtractString();
}
std::string ServiceWorkerTest::NavigateAndExtractInnerText(const GURL& url) {
return ExtractInnerText(Navigate(url));
}
size_t ServiceWorkerTest::GetWorkerRefCount(const blink::StorageKey& key) {
content::ServiceWorkerContext* sw_context = GetServiceWorkerContext();
return sw_context->CountExternalRequestsForTest(key);
}
void ServiceWorkerBasedBackgroundTest::SetUpOnMainThread() {
host_resolver()->AddRule("*", "127.0.0.1");
ASSERT_TRUE(embedded_test_server()->Start());
ServiceWorkerTest::SetUpOnMainThread();
}
// Returns the only running worker id for |extension_id|.
// Returns std::nullopt if there isn't any worker running or more than one
// worker is running for |extension_id|.
std::optional<WorkerId>
ServiceWorkerBasedBackgroundTest::GetUniqueRunningWorkerId(
const ExtensionId& extension_id) {
ProcessManager* process_manager = ProcessManager::Get(profile());
std::vector<WorkerId> all_workers =
process_manager->GetAllWorkersIdsForTesting();
std::optional<WorkerId> running_worker_id;
for (const WorkerId& worker_id : all_workers) {
if (worker_id.extension_id == extension_id) {
if (running_worker_id) { // More than one worker present.
return std::nullopt;
}
running_worker_id = worker_id;
}
}
return running_worker_id;
}
bool ServiceWorkerBasedBackgroundTest::ExtensionHasRenderProcessHost(
const ExtensionId& extension_id) {
ProcessMap* process_map = ProcessMap::Get(browser()->profile());
content::RenderProcessHost::iterator it =
content::RenderProcessHost::AllHostsIterator();
while (!it.IsAtEnd()) {
if (process_map->Contains(extension_id,
it.GetCurrentValue()->GetDeprecatedID())) {
return true;
}
it.Advance();
}
return false;
}
class ServiceWorkerBasedBackgroundTestWithNotification
: public ServiceWorkerBasedBackgroundTest {
public:
ServiceWorkerBasedBackgroundTestWithNotification() = default;
ServiceWorkerBasedBackgroundTestWithNotification(
const ServiceWorkerBasedBackgroundTestWithNotification&) = delete;
ServiceWorkerBasedBackgroundTestWithNotification& operator=(
const ServiceWorkerBasedBackgroundTestWithNotification&) = delete;
~ServiceWorkerBasedBackgroundTestWithNotification() override = default;
void SetUpOnMainThread() override {
ServiceWorkerBasedBackgroundTest::SetUpOnMainThread();
display_service_tester_ =
std::make_unique<NotificationDisplayServiceTester>(
browser()->profile());
}
void TearDownOnMainThread() override {
display_service_tester_.reset();
ServiceWorkerBasedBackgroundTest::TearDownOnMainThread();
}
protected:
// Returns a vector with the Notification objects that are being displayed
// by the notification display service. Synchronous.
std::vector<message_center::Notification> GetDisplayedNotifications() const {
return display_service_tester_->GetDisplayedNotificationsForType(
NotificationHandler::Type::WEB_PERSISTENT);
}
std::unique_ptr<NotificationDisplayServiceTester> display_service_tester_;
};
enum class ManifestVersion { kTwo, kThree };
class ServiceWorkerWithManifestVersionTest
: public ServiceWorkerBasedBackgroundTest,
public testing::WithParamInterface<ManifestVersion> {
public:
ServiceWorkerWithManifestVersionTest() = default;
~ServiceWorkerWithManifestVersionTest() override = default;
const Extension* LoadExtensionInternal(const base::FilePath& path) {
LoadOptions options;
if (GetParam() == ManifestVersion::kThree)
options.load_as_manifest_version_3 = true;
return LoadExtension(path, options);
}
};
// Tests that Service Worker based background pages can be loaded and they can
// receive extension events.
// The extension is installed and loaded during this step and it registers
// an event listener for tabs.onCreated event. The step also verifies that tab
// creation correctly fires the listener.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, PRE_Basic) {
ExtensionTestMessageListener newtab_listener("CREATED");
newtab_listener.set_failure_message("CREATE_FAILED");
ExtensionTestMessageListener worker_listener("WORKER_RUNNING");
worker_listener.set_failure_message("NON_WORKER_SCOPE");
const Extension* extension = LoadExtension(test_data_dir_.AppendASCII(
"service_worker/worker_based_background/basic"));
ASSERT_TRUE(extension);
const ExtensionId extension_id = extension->id();
EXPECT_TRUE(worker_listener.WaitUntilSatisfied());
const GURL url = embedded_test_server()->GetURL("/extensions/test_file.html");
content::WebContents* new_web_contents =
browsertest_util::AddTab(browser(), url);
EXPECT_TRUE(new_web_contents);
EXPECT_TRUE(newtab_listener.WaitUntilSatisfied());
// Service Worker extension does not have ExtensionHost.
EXPECT_FALSE(process_manager()->GetBackgroundHostForExtension(extension_id));
}
// After browser restarts, this test step ensures that opening a tab fires
// tabs.onCreated event listener to the extension without explicitly loading the
// extension. This is because the extension registered a listener before browser
// restarted in PRE_Basic.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, Basic) {
ExtensionTestMessageListener newtab_listener("CREATED");
newtab_listener.set_failure_message("CREATE_FAILED");
const GURL url = embedded_test_server()->GetURL("/extensions/test_file.html");
content::WebContents* new_web_contents =
browsertest_util::AddTab(browser(), url);
EXPECT_TRUE(new_web_contents);
EXPECT_TRUE(newtab_listener.WaitUntilSatisfied());
}
// Tests that an extension with a service worker script registered in non-root
// directory can successfully be registered.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, NonRootDirectory) {
ASSERT_TRUE(RunExtensionTest(
"service_worker/worker_based_background/non_root_directory"))
<< message_;
}
// Tests that a module service worker with static import can successfully be
// registered.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
ModuleServiceWorkerWithStaticImport) {
ASSERT_TRUE(
RunExtensionTest("service_worker/worker_based_background/"
"module_service_worker_static_import"))
<< message_;
}
// Tests that registering a module service worker with dynamic import fails.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
ModuleServiceWorkerWithDynamicImport) {
constexpr size_t kErrorsExpected = 1u;
ErrorConsoleTestObserver observer(kErrorsExpected, profile());
observer.EnableErrorCollection();
const Extension* extension = LoadExtension(
test_data_dir_.AppendASCII("service_worker/worker_based_background/"
"module_service_worker_dynamic_import"));
observer.WaitForErrors();
const ErrorList& error_list =
ErrorConsole::Get(profile())->GetErrorsForExtension(extension->id());
ASSERT_EQ(kErrorsExpected, error_list.size());
ASSERT_EQ(
error_list[0]->message(),
std::u16string(u"Uncaught (in promise) TypeError: import() is disallowed "
u"on ServiceWorkerGlobalScope by the HTML specification. "
u"See https://github.com/w3c/ServiceWorker/issues/1356."));
}
// Tests a service worker registration that fails due to the worker script
// synchronously throwing a runtime error.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
ServiceWorkerWithRegistrationFailure) {
constexpr size_t kErrorsExpected = 2u;
ErrorConsoleTestObserver observer(kErrorsExpected, profile());
observer.EnableErrorCollection();
const Extension* extension = LoadExtension(
test_data_dir_.AppendASCII("service_worker/worker_based_background/"
"service_worker_registration_failure"),
{.wait_for_renderers = false});
ASSERT_TRUE(extension);
observer.WaitForErrors();
const ErrorList& error_list =
ErrorConsole::Get(profile())->GetErrorsForExtension(extension->id());
ASSERT_EQ(kErrorsExpected, error_list.size());
std::vector<std::u16string> error_message_list;
for (std::string::size_type i = 0; i < error_list.size(); i++) {
error_message_list.push_back(error_list[i]->message());
}
// status code 15: kErrorScriptEvaluateFailed
EXPECT_THAT(error_message_list,
testing::UnorderedElementsAre(
u"Uncaught Error: lol",
u"Service worker registration failed. Status code: 15"));
}
// Tests that an error is generated if there is a syntax error in the service
// worker script.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, SyntaxError) {
const size_t kErrorsExpected = 1u;
ErrorConsoleTestObserver observer(kErrorsExpected, profile());
observer.EnableErrorCollection();
ExtensionTestMessageListener test_listener("ready",
ReplyBehavior::kWillReply);
const Extension* extension = LoadExtension(test_data_dir_.AppendASCII(
"service_worker/worker_based_background/syntax_error"));
ASSERT_TRUE(extension);
ASSERT_TRUE(test_listener.WaitUntilSatisfied());
test_listener.Reply("");
observer.WaitForErrors();
const ErrorList& error_list =
ErrorConsole::Get(profile())->GetErrorsForExtension(extension->id());
ASSERT_EQ(kErrorsExpected, error_list.size());
EXPECT_EQ(ExtensionError::Type::kRuntimeError, error_list[0]->type());
EXPECT_THAT(base::UTF16ToUTF8(error_list[0]->message()),
HasSubstr("Error handling response: TypeError: "
"console.lg is not a function"));
}
// Tests that an error is generated if there is an undefined variable in the
// service worker script.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, UndefinedVariable) {
const size_t kErrorsExpected = 1u;
ErrorConsoleTestObserver observer(kErrorsExpected, profile());
observer.EnableErrorCollection();
ExtensionTestMessageListener test_listener("ready",
ReplyBehavior::kWillReply);
const Extension* extension = LoadExtension(test_data_dir_.AppendASCII(
"service_worker/worker_based_background/undefined_variable"));
ASSERT_TRUE(extension);
ASSERT_TRUE(test_listener.WaitUntilSatisfied());
test_listener.Reply("");
observer.WaitForErrors();
const ErrorList& error_list =
ErrorConsole::Get(profile())->GetErrorsForExtension(extension->id());
ASSERT_EQ(kErrorsExpected, error_list.size());
EXPECT_EQ(ExtensionError::Type::kRuntimeError, error_list[0]->type());
EXPECT_THAT(base::UTF16ToUTF8(error_list[0]->message()),
HasSubstr("Error handling response: ReferenceError: "
"undefined_variable is not defined"));
}
// Tests that an error is generated if console.error() is called from an
// extension's service worker.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, ConsoleError) {
const size_t kErrorsExpected = 1u;
ErrorConsoleTestObserver observer(kErrorsExpected, profile());
observer.EnableErrorCollection();
ASSERT_TRUE(
RunExtensionTest("service_worker/worker_based_background/console_error"))
<< message_;
observer.WaitForErrors();
const ErrorList& error_list =
ErrorConsole::Get(profile())->GetErrorsForExtension(
ExtensionBrowserTest::last_loaded_extension_id());
ASSERT_EQ(kErrorsExpected, error_list.size());
EXPECT_EQ(ExtensionError::Type::kRuntimeError, error_list[0]->type());
EXPECT_THAT(base::UTF16ToUTF8(error_list[0]->message()),
HasSubstr("Logged from MV3 service worker"));
}
// Tests that an extension can fetch a file scheme URL from the service worker,
// if it has file access.
// TODO(crbug.com/40939961): Flaky on mac
#if BUILDFLAG(IS_MAC)
#define MAYBE_FetchFileSchemeURLWithFileAccess \
DISABLED_FetchFileSchemeURLWithFileAccess
#else
#define MAYBE_FetchFileSchemeURLWithFileAccess FetchFileSchemeURLWithFileAccess
#endif
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
MAYBE_FetchFileSchemeURLWithFileAccess) {
ASSERT_TRUE(
RunExtensionTest("service_worker/worker_based_background/"
"fetch_file_scheme_url_with_file_access",
{}, {.allow_file_access = true}))
<< message_;
}
// Tests that an extension can not fetch a file scheme URL from the service
// worker, if it does not have file access.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
FetchFileSchemeURLWithNoFileAccess) {
ASSERT_TRUE(
RunExtensionTest("service_worker/worker_based_background/"
"fetch_file_scheme_url_with_no_file_access",
{}))
<< message_;
}
// Tests chrome.runtime.onInstalled fires for extension service workers.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, OnInstalledEvent) {
ASSERT_TRUE(RunExtensionTest(
"service_worker/worker_based_background/events_on_installed"))
<< message_;
}
// Tests chrome.runtime.id and chrome.runtime.getURL().
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, RuntimeMisc) {
ASSERT_TRUE(
RunExtensionTest("service_worker/worker_based_background/runtime_misc"))
<< message_;
}
// Tests chrome.app namespace is undefined for service worker-based extensions.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, ChromeAppUndefined) {
ASSERT_TRUE(RunExtensionTest(
"service_worker/worker_based_background/chrome_app_undefined"))
<< message_;
}
// Tests chrome.storage APIs.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, StorageSetAndGet) {
ASSERT_TRUE(
RunExtensionTest("service_worker/worker_based_background/storage"))
<< message_;
}
// Tests chrome.storage APIs are only enabled with permission.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, StorageNoPermissions) {
ASSERT_TRUE(RunExtensionTest(
"service_worker/worker_based_background/storage_no_permissions"))
<< message_;
}
// Tests chrome.tabs APIs.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, TabsBasic) {
base::HistogramTester histogram_tester;
ASSERT_TRUE(
RunExtensionTest("service_worker/worker_based_background/tabs_basic"))
<< message_;
// Extension should issue two chrome.tabs.create calls, verify that we logged
// histograms for them.
EXPECT_EQ(2, histogram_tester.GetBucketCount(
"Extensions.Functions.ExtensionServiceWorkerCalls",
functions::HistogramValue::TABS_CREATE));
}
// Tests chrome.tabs events.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, TabsEvents) {
ASSERT_TRUE(
RunExtensionTest("service_worker/worker_based_background/tabs_events"))
<< message_;
}
// Tests chrome.tabs APIs.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, TabsExecuteScript) {
ASSERT_TRUE(RunExtensionTest(
"service_worker/worker_based_background/tabs_execute_script"))
<< message_;
}
// Tests chrome.windows APIs.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, WindowsBasic) {
base::HistogramTester histogram_tester;
ASSERT_TRUE(
RunExtensionTest("service_worker/worker_based_background/windows_basic"))
<< message_;
// Extension should issue one chrome.windows.create call and two
// chrome.windows.getAll, verify that we logged histogram for it.
EXPECT_EQ(1, histogram_tester.GetBucketCount(
"Extensions.Functions.ExtensionServiceWorkerCalls",
functions::HistogramValue::WINDOWS_CREATE));
EXPECT_EQ(2, histogram_tester.GetBucketCount(
"Extensions.Functions.ExtensionServiceWorkerCalls",
functions::HistogramValue::WINDOWS_GETALL));
EXPECT_EQ(1, histogram_tester.GetBucketCount(
"Extensions.Functions.ExtensionServiceWorkerCalls",
functions::HistogramValue::WINDOWS_GET));
}
// Tests chrome.webRequest APIs.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, WebRequest) {
ASSERT_TRUE(
RunExtensionTest("service_worker/worker_based_background/web_request"))
<< message_;
}
// Tests more chrome.webRequest APIs. Any potentially flaky tests are isolated
// here.
// Flaky (crbug.com/1072715).
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, DISABLED_WebRequest2) {
ASSERT_TRUE(
RunExtensionTest("service_worker/worker_based_background/web_request2"))
<< message_;
}
// Tests chrome.webRequest APIs in blocking mode.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, WebRequestBlocking) {
// Try to load the page before installing the extension, which should work.
const GURL url = embedded_test_server()->GetURL("/extensions/test_file.html");
EXPECT_EQ(content::PAGE_TYPE_NORMAL, NavigateAndGetPageType(url));
// Install the extension and navigate again to the page.
ExtensionTestMessageListener ready_listener("ready");
ASSERT_TRUE(LoadExtension(test_data_dir_.AppendASCII(
"service_worker/worker_based_background/web_request_blocking")));
ASSERT_TRUE(ready_listener.WaitUntilSatisfied());
EXPECT_EQ(content::PAGE_TYPE_ERROR, NavigateAndGetPageType(url));
}
// Tests chrome.webNavigation APIs.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, FilteredEvents) {
ASSERT_TRUE(RunExtensionTest(
"service_worker/worker_based_background/filtered_events"))
<< message_;
}
// Listens for |message| from extension Service Worker early so that tests can
// wait for the message on startup (and not miss it).
template <const char message[]>
class ServiceWorkerWithEarlyMessageListenerTest
: public ServiceWorkerBasedBackgroundTest {
public:
ServiceWorkerWithEarlyMessageListenerTest() : test_message_(message) {}
ServiceWorkerWithEarlyMessageListenerTest(
const ServiceWorkerWithEarlyMessageListenerTest&) = delete;
ServiceWorkerWithEarlyMessageListenerTest& operator=(
const ServiceWorkerWithEarlyMessageListenerTest&) = delete;
~ServiceWorkerWithEarlyMessageListenerTest() override = default;
bool WaitForMessage() { return listener_->WaitUntilSatisfied(); }
void CreatedBrowserMainParts(content::BrowserMainParts* main_parts) override {
// At this point, the notification service is initialized but the profile
// and extensions have not.
listener_ = std::make_unique<ExtensionTestMessageListener>(test_message_);
ServiceWorkerBasedBackgroundTest::CreatedBrowserMainParts(main_parts);
}
private:
const std::string test_message_;
std::unique_ptr<ExtensionTestMessageListener> listener_;
};
constexpr char kMsgOnStartup[] = "onStartup event";
using ServiceWorkerOnStartupEventTest =
ServiceWorkerWithEarlyMessageListenerTest<kMsgOnStartup>;
// Tests "runtime.onStartup" for extension SW.
IN_PROC_BROWSER_TEST_F(ServiceWorkerOnStartupEventTest, PRE_Event) {
base::HistogramTester histograms;
ASSERT_TRUE(RunExtensionTest(
"service_worker/worker_based_background/on_startup_event"))
<< message_;
histograms.ExpectUniqueSample(
"Extensions.ServiceWorkerBackground.StartWorkerStatus", /*sample=*/true,
/*expected_bucket_count=*/1);
histograms.ExpectTotalCount(
"Extensions.ServiceWorkerBackground.StartWorkerTime",
/*expected_count=*/1);
histograms.ExpectTotalCount(
"Extensions.ServiceWorkerBackground.StartWorkerTime_Fail",
/*expected_count=*/0);
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerOnStartupEventTest, Event) {
EXPECT_TRUE(WaitForMessage());
}
constexpr char kMsgWorkerRunning[] = "WORKER_RUNNING";
class ServiceWorkerRegistrationAtStartupTest
: public ServiceWorkerWithEarlyMessageListenerTest<kMsgWorkerRunning> {
public:
ServiceWorkerRegistrationAtStartupTest() = default;
~ServiceWorkerRegistrationAtStartupTest() override = default;
ServiceWorkerRegistrationAtStartupTest(
const ServiceWorkerRegistrationAtStartupTest&) = delete;
ServiceWorkerRegistrationAtStartupTest& operator=(
const ServiceWorkerRegistrationAtStartupTest&) = delete;
void WaitForOnActivateExtension() {
extension_activate_observer_.WaitForOnActivateExtension(kExtensionId);
}
std::optional<bool> WillRegisterServiceWorker() {
return extension_activate_observer_.WillRegisterServiceWorker(kExtensionId);
}
protected:
static constexpr char kExtensionId[] = "gnchfmandajfaiajniicagenfmhdjila";
private:
TestServiceWorkerTaskQueueObserver extension_activate_observer_;
};
// Disabled on Win due an unrelated bug: https://crbug.com/41491822.
#if BUILDFLAG(IS_WIN)
#define MAYBE_PRE_ExtensionActivationDoesNotReregister \
DISABLED_PRE_ExtensionActivationDoesNotReregister
#define MAYBE_ExtensionActivationDoesNotReregister \
DISABLED_ExtensionActivationDoesNotReregister
#else
#define MAYBE_PRE_ExtensionActivationDoesNotReregister \
PRE_ExtensionActivationDoesNotReregister
#define MAYBE_ExtensionActivationDoesNotReregister \
ExtensionActivationDoesNotReregister
#endif
// Tests that Service Worker registration for existing extension isn't issued
// upon browser restart.
// Regression test for https://crbug.com/889687.
IN_PROC_BROWSER_TEST_F(ServiceWorkerRegistrationAtStartupTest,
MAYBE_PRE_ExtensionActivationDoesNotReregister) {
const Extension* extension = LoadExtension(
test_data_dir_.AppendASCII(
"service_worker/worker_based_background/registration_at_startup"),
{.wait_for_registration_stored = true});
ASSERT_TRUE(extension);
EXPECT_EQ(kExtensionId, extension->id());
// Wait for "WORKER_RUNNING" message from the Service Worker.
EXPECT_TRUE(WaitForMessage());
WaitForOnActivateExtension();
ASSERT_TRUE(WillRegisterServiceWorker());
EXPECT_TRUE(WillRegisterServiceWorker().value());
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerRegistrationAtStartupTest,
MAYBE_ExtensionActivationDoesNotReregister) {
// Since the extension has onStartup listener, the Service Worker will run on
// browser start and we'll see "WORKER_RUNNING" message from the worker.
EXPECT_TRUE(WaitForMessage());
WaitForOnActivateExtension();
// As the extension activated during first run on PRE_ step, it shouldn't
// re-register the Service Worker upon browser restart.
ASSERT_TRUE(WillRegisterServiceWorker());
EXPECT_FALSE(WillRegisterServiceWorker().value());
}
// Class that dispatches an event to |extension_id| right after a
// non-lazy listener to the event is added from the extension's Service Worker.
class EarlyWorkerMessageSender : public EventRouter::Observer {
public:
EarlyWorkerMessageSender(content::BrowserContext* browser_context,
const ExtensionId& extension_id,
std::unique_ptr<Event> event)
: browser_context_(browser_context),
event_router_(EventRouter::EventRouter::Get(browser_context_)),
extension_id_(extension_id),
event_(std::move(event)),
listener_("PASS") {
DCHECK(browser_context_);
listener_.set_failure_message("FAIL");
event_router_->RegisterObserver(this, event_->event_name);
}
EarlyWorkerMessageSender(const EarlyWorkerMessageSender&) = delete;
EarlyWorkerMessageSender& operator=(const EarlyWorkerMessageSender&) = delete;
~EarlyWorkerMessageSender() override {
event_router_->UnregisterObserver(this);
}
// EventRouter::Observer:
void OnListenerAdded(const EventListenerInfo& details) override {
if (!event_ || extension_id_ != details.extension_id ||
event_->event_name != details.event_name) {
return;
}
if (details.is_lazy) {
// Wait for the non-lazy listener as we want to exercise the code to
// dispatch the event right after the Service Worker registration is
// completing.
return;
}
DispatchEvent(std::move(event_));
}
bool SendAndWait() { return listener_.WaitUntilSatisfied(); }
private:
void DispatchEvent(std::unique_ptr<Event> event) {
EventRouter::Get(browser_context_)
->DispatchEventToExtension(extension_id_, std::move(event));
}
const raw_ptr<content::BrowserContext> browser_context_ = nullptr;
const raw_ptr<EventRouter> event_router_ = nullptr;
const ExtensionId extension_id_;
std::unique_ptr<Event> event_;
ExtensionTestMessageListener listener_;
};
// Tests that extension event dispatch works correctly right after extension
// installation registers its Service Worker.
// Regression test for: https://crbug.com/850792.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, EarlyEventDispatch) {
const ExtensionId kId("pkplfbidichfdicaijlchgnapepdginl");
// Build "test.onMessage" event for dispatch.
auto event = std::make_unique<Event>(
events::FOR_TEST, api::test::OnMessage::kEventName,
std::move(
base::JSONReader::Read(R"([{"data": "hello", "lastMessage": true}])")
.value()
.GetList()),
profile());
EarlyWorkerMessageSender sender(profile(), kId, std::move(event));
// pkplfbidichfdicaijlchgnapepdginl
const Extension* extension = LoadExtension(test_data_dir_.AppendASCII(
"service_worker/worker_based_background/early_event_dispatch"));
CHECK(extension);
EXPECT_EQ(kId, extension->id());
EXPECT_TRUE(sender.SendAndWait());
}
// Tests that filtered events dispatches correctly right after a non-lazy
// listener is registered for that event (and before the corresponding lazy
// listener is registered).
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
EarlyFilteredEventDispatch) {
const ExtensionId kId("pkplfbidichfdicaijlchgnapepdginl");
// Add minimal details required to dispatch webNavigation.onCommitted event:
api::web_navigation::OnCommitted::Details details;
details.transition_type = api::web_navigation::TransitionType::kTyped;
details.frame_type = api::extension_types::FrameType::kOutermostFrame;
details.document_lifecycle = api::extension_types::DocumentLifecycle::kActive;
// Build a dummy onCommited event to dispatch.
auto on_committed_event = std::make_unique<Event>(
events::WEB_NAVIGATION_ON_COMMITTED, "webNavigation.onCommitted",
api::web_navigation::OnCommitted::Create(details), profile());
// The filter will match the listener filter registered from the extension.
mojom::EventFilteringInfoPtr info = mojom::EventFilteringInfo::New();
info->url = GURL("http://foo.com/a.html");
on_committed_event->filter_info = std::move(info);
EarlyWorkerMessageSender sender(profile(), kId,
std::move(on_committed_event));
// pkplfbidichfdicaijlchgnapepdginl
const Extension* extension = LoadExtension(test_data_dir_.AppendASCII(
"service_worker/worker_based_background/early_filtered_event_dispatch"));
ASSERT_TRUE(extension);
EXPECT_EQ(kId, extension->id());
EXPECT_TRUE(sender.SendAndWait());
}
class ServiceWorkerBackgroundSyncTest : public ServiceWorkerTest {
public:
ServiceWorkerBackgroundSyncTest() = default;
ServiceWorkerBackgroundSyncTest(const ServiceWorkerBackgroundSyncTest&) =
delete;
ServiceWorkerBackgroundSyncTest& operator=(
const ServiceWorkerBackgroundSyncTest&) = delete;
~ServiceWorkerBackgroundSyncTest() override = default;
void SetUpCommandLine(base::CommandLine* command_line) override {
// ServiceWorkerRegistration.sync requires experimental flag.
command_line->AppendSwitch(
::switches::kEnableExperimentalWebPlatformFeatures);
ServiceWorkerTest::SetUpCommandLine(command_line);
}
void SetUp() override {
content::background_sync_test_util::SetIgnoreNetworkChanges(true);
ServiceWorkerTest::SetUp();
}
};
class ServiceWorkerPushMessagingTest : public ServiceWorkerTest {
public:
ServiceWorkerPushMessagingTest()
: scoped_testing_factory_installer_(
base::BindRepeating(&gcm::FakeGCMProfileService::Build)),
gcm_driver_(nullptr),
push_service_(nullptr) {
feature_list_.InitAndDisableFeature(
features::kPushMessagingDisallowSenderIDs);
}
ServiceWorkerPushMessagingTest(const ServiceWorkerPushMessagingTest&) =
delete;
ServiceWorkerPushMessagingTest& operator=(
const ServiceWorkerPushMessagingTest&) = delete;
~ServiceWorkerPushMessagingTest() override = default;
void GrantNotificationPermissionForTest(const GURL& url) {
NotificationPermissionContext::UpdatePermission(
profile(), url.DeprecatedGetOriginAsURL(), CONTENT_SETTING_ALLOW);
}
PushMessagingAppIdentifier GetAppIdentifierForServiceWorkerRegistration(
int64_t service_worker_registration_id,
const GURL& origin) {
PushMessagingAppIdentifier app_identifier =
PushMessagingAppIdentifier::FindByServiceWorker(
profile(), origin, service_worker_registration_id);
EXPECT_FALSE(app_identifier.is_null());
return app_identifier;
}
// ExtensionApiTest overrides.
void SetUpCommandLine(base::CommandLine* command_line) override {
command_line->AppendSwitch(
::switches::kEnableExperimentalWebPlatformFeatures);
ServiceWorkerTest::SetUpCommandLine(command_line);
}
void SetUpOnMainThread() override {
NotificationDisplayServiceFactory::GetInstance()->SetTestingFactory(
profile(),
base::BindRepeating(&StubNotificationDisplayService::FactoryForTests));
gcm::FakeGCMProfileService* gcm_service =
static_cast<gcm::FakeGCMProfileService*>(
gcm::GCMProfileServiceFactory::GetForProfile(profile()));
gcm_driver_ = static_cast<instance_id::FakeGCMDriverForInstanceID*>(
gcm_service->driver());
push_service_ = PushMessagingServiceFactory::GetForProfile(profile());
ServiceWorkerTest::SetUpOnMainThread();
}
instance_id::FakeGCMDriverForInstanceID* gcm_driver() const {
return gcm_driver_;
}
PushMessagingServiceImpl* push_service() const { return push_service_; }
private:
base::test::ScopedFeatureList feature_list_;
gcm::GCMProfileServiceFactory::ScopedTestingFactoryInstaller
scoped_testing_factory_installer_;
raw_ptr<instance_id::FakeGCMDriverForInstanceID, DanglingUntriaged>
gcm_driver_;
raw_ptr<PushMessagingServiceImpl, DanglingUntriaged> push_service_;
};
class ServiceWorkerLazyBackgroundTest : public ServiceWorkerTest {
public:
ServiceWorkerLazyBackgroundTest() = default;
ServiceWorkerLazyBackgroundTest(const ServiceWorkerLazyBackgroundTest&) =
delete;
ServiceWorkerLazyBackgroundTest& operator=(
const ServiceWorkerLazyBackgroundTest&) = delete;
~ServiceWorkerLazyBackgroundTest() override = default;
void SetUpCommandLine(base::CommandLine* command_line) override {
ServiceWorkerTest::SetUpCommandLine(command_line);
// Disable background network activity as it can suddenly bring the Lazy
// Background Page alive.
command_line->AppendSwitch(::switches::kDisableBackgroundNetworking);
command_line->AppendSwitch(::switches::kNoProxyServer);
}
void SetUpInProcessBrowserTestFixture() override {
ServiceWorkerTest::SetUpInProcessBrowserTestFixture();
// Set shorter delays to prevent test timeouts.
ProcessManager::SetEventPageIdleTimeForTesting(1);
ProcessManager::SetEventPageSuspendingTimeForTesting(1);
}
};
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, RegisterSucceeds) {
StartTestFromBackgroundPage("register.js");
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, UpdateRefreshesServiceWorker) {
base::ScopedAllowBlockingForTesting allow_blocking;
base::ScopedTempDir scoped_temp_dir;
ASSERT_TRUE(scoped_temp_dir.CreateUniqueTempDir());
base::FilePath pem_path = test_data_dir_.AppendASCII("service_worker")
.AppendASCII("update")
.AppendASCII("service_worker.pem");
base::FilePath path_v1 =
PackExtensionWithOptions(test_data_dir_.AppendASCII("service_worker")
.AppendASCII("update")
.AppendASCII("v1"),
scoped_temp_dir.GetPath().AppendASCII("v1.crx"),
pem_path, base::FilePath());
base::FilePath path_v2 =
PackExtensionWithOptions(test_data_dir_.AppendASCII("service_worker")
.AppendASCII("update")
.AppendASCII("v2"),
scoped_temp_dir.GetPath().AppendASCII("v2.crx"),
pem_path, base::FilePath());
static constexpr char kId[] = "hfaanndiiilofhfokeanhddpkfffchdi";
ExtensionTestMessageListener listener_v1("Pong from version 1");
listener_v1.set_failure_message("FAILURE_V1");
// Install version 1.0 of the extension.
ASSERT_TRUE(InstallExtension(path_v1, 1));
EXPECT_TRUE(
ExtensionRegistry::Get(profile())->enabled_extensions().GetByID(kId));
EXPECT_TRUE(listener_v1.WaitUntilSatisfied());
ExtensionTestMessageListener listener_v2("Pong from version 2");
listener_v2.set_failure_message("FAILURE_V2");
// Update to version 2.0.
EXPECT_TRUE(UpdateExtension(kId, path_v2, 0));
EXPECT_TRUE(
ExtensionRegistry::Get(profile())->enabled_extensions().GetByID(kId));
EXPECT_TRUE(listener_v2.WaitUntilSatisfied());
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, UpdateWithoutSkipWaiting) {
base::ScopedAllowBlockingForTesting allow_blocking;
base::ScopedTempDir scoped_temp_dir;
ASSERT_TRUE(scoped_temp_dir.CreateUniqueTempDir());
base::FilePath pem_path = test_data_dir_.AppendASCII("service_worker")
.AppendASCII("update_without_skip_waiting")
.AppendASCII("update_without_skip_waiting.pem");
base::FilePath path_v1 =
PackExtensionWithOptions(test_data_dir_.AppendASCII("service_worker")
.AppendASCII("update_without_skip_waiting")
.AppendASCII("v1"),
scoped_temp_dir.GetPath().AppendASCII("v1.crx"),
pem_path, base::FilePath());
base::FilePath path_v2 =
PackExtensionWithOptions(test_data_dir_.AppendASCII("service_worker")
.AppendASCII("update_without_skip_waiting")
.AppendASCII("v2"),
scoped_temp_dir.GetPath().AppendASCII("v2.crx"),
pem_path, base::FilePath());
const char* kId = "mhnnnflgagdakldgjpfcofkiocpdmogl";
// Install version 1.0 of the extension.
ASSERT_TRUE(InstallExtension(path_v1, 1));
EXPECT_TRUE(
ExtensionRegistry::Get(profile())->enabled_extensions().GetByID(kId));
const Extension* extension =
ExtensionRegistry::Get(profile())->enabled_extensions().GetByID(kId);
ExtensionTestMessageListener listener1("Pong from version 1");
listener1.set_failure_message("FAILURE");
content::WebContents* web_contents = browsertest_util::AddTab(
browser(), extension->ResolveExtensionURL("page.html"));
EXPECT_TRUE(listener1.WaitUntilSatisfied());
// Update to version 2.0.
EXPECT_TRUE(UpdateExtension(kId, path_v2, 0));
EXPECT_TRUE(
ExtensionRegistry::Get(profile())->enabled_extensions().GetByID(kId));
const Extension* extension_after_update =
ExtensionRegistry::Get(profile())->enabled_extensions().GetByID(kId);
// Service worker version 2 would be installed but it won't be controlling
// the extension page yet.
ExtensionTestMessageListener listener2("Pong from version 1");
listener2.set_failure_message("FAILURE");
web_contents = browsertest_util::AddTab(
browser(), extension_after_update->ResolveExtensionURL("page.html"));
EXPECT_TRUE(listener2.WaitUntilSatisfied());
// Navigate the tab away from the extension page so that no clients are
// using the service worker.
// Note that just closing the tab with WebContentsDestroyedWatcher doesn't
// seem to be enough because it returns too early.
WebContentsLoadStopObserver navigate_away_observer(web_contents);
web_contents->GetController().LoadURL(
GURL(url::kAboutBlankURL), content::Referrer(), ui::PAGE_TRANSITION_TYPED,
std::string());
navigate_away_observer.WaitForLoadStop();
// Now expect service worker version 2 to control the extension page.
ExtensionTestMessageListener listener3("Pong from version 2");
listener3.set_failure_message("FAILURE");
web_contents = browsertest_util::AddTab(
browser(), extension_after_update->ResolveExtensionURL("page.html"));
EXPECT_TRUE(listener3.WaitUntilSatisfied());
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, UpdateToMV3RefreshesServiceWorker) {
base::ScopedAllowBlockingForTesting allow_blocking;
base::ScopedTempDir scoped_temp_dir;
ASSERT_TRUE(scoped_temp_dir.CreateUniqueTempDir());
base::FilePath pem_path = test_data_dir_.AppendASCII("service_worker")
.AppendASCII("update")
.AppendASCII("service_worker.pem");
base::FilePath path_v1 =
PackExtensionWithOptions(test_data_dir_.AppendASCII("service_worker")
.AppendASCII("update")
.AppendASCII("v1"),
scoped_temp_dir.GetPath().AppendASCII("v1.crx"),
pem_path, base::FilePath());
base::FilePath path_v3 =
PackExtensionWithOptions(test_data_dir_.AppendASCII("service_worker")
.AppendASCII("update")
.AppendASCII("v3_mv3"),
scoped_temp_dir.GetPath().AppendASCII("v3.crx"),
pem_path, base::FilePath());
static constexpr char kId[] = "hfaanndiiilofhfokeanhddpkfffchdi";
ExtensionTestMessageListener listener_v1("Pong from version 1");
listener_v1.set_failure_message("FAILURE_V1");
ExtensionTestMessageListener listener_v3("Pong from version 3");
listener_v3.set_failure_message("FAILURE_V3");
// Install version 1.0 that is a MV2 extension.
ASSERT_TRUE(InstallExtension(path_v1, 1));
EXPECT_TRUE(
ExtensionRegistry::Get(profile())->enabled_extensions().GetByID(kId));
EXPECT_TRUE(listener_v1.WaitUntilSatisfied());
// Update to version 3.0 that is a MV3 extension.
EXPECT_TRUE(UpdateExtension(kId, path_v3, 0));
EXPECT_TRUE(
ExtensionRegistry::Get(profile())->enabled_extensions().GetByID(kId));
EXPECT_TRUE(listener_v3.WaitUntilSatisfied());
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, FetchArbitraryPaths) {
const Extension* extension = StartTestFromBackgroundPage("fetch.js");
// Open some arbitrary paths. Their contents should be what the service worker
// responds with, which in this case is the path of the fetch.
EXPECT_EQ("Caught a fetch for /index.html",
NavigateAndExtractInnerText(
extension->ResolveExtensionURL("index.html")));
EXPECT_EQ("Caught a fetch for /path/to/other.html",
NavigateAndExtractInnerText(
extension->ResolveExtensionURL("path/to/other.html")));
EXPECT_EQ("Caught a fetch for /some/text/file.txt",
NavigateAndExtractInnerText(
extension->ResolveExtensionURL("some/text/file.txt")));
EXPECT_EQ("Caught a fetch for /no/file/extension",
NavigateAndExtractInnerText(
extension->ResolveExtensionURL("no/file/extension")));
EXPECT_EQ("Caught a fetch for /",
NavigateAndExtractInnerText(extension->url()));
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest,
FetchExtensionResourceFromServiceWorker) {
const Extension* extension = StartTestFromBackgroundPage("fetch_from_sw.js");
ASSERT_TRUE(extension);
// The service worker in this test tries to load 'hello.txt' via fetch()
// and sends back the content of the file, which should be 'hello'.
const char* kScript = R"(
let channel = new MessageChannel();
test.waitForMessage(channel.port1).then(message => {
chrome.test.sendScriptResult(message);
});
test.registeredServiceWorker.postMessage(
{port: channel.port2}, [channel.port2]);
)";
EXPECT_EQ("hello", ExecuteScriptInBackgroundPage(extension->id(), kScript));
}
// Tests that fetch() from service worker and network fallback
// go through webRequest.onBeforeRequest API.
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, OnBeforeRequest) {
const Extension* extension =
LoadExtension(test_data_dir_.AppendASCII("service_worker/webrequest"));
ASSERT_TRUE(extension);
ASSERT_TRUE(StartEmbeddedTestServer());
// Start a service worker and make it control the page.
GURL page_url = embedded_test_server()->GetURL(
"/extensions/api_test/service_worker/"
"webrequest/webpage.html");
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), page_url));
EXPECT_TRUE(content::WaitForLoadStop(web_contents));
EXPECT_EQ("ready", content::EvalJs(web_contents, "register();"));
// Initiate a fetch that the service worker doesn't intercept
// (network fallback).
EXPECT_EQ("hello",
content::EvalJs(web_contents, "doFetch('hello.txt?fallthrough');"));
EXPECT_EQ(
"/extensions/api_test/service_worker/webrequest/hello.txt?fallthrough",
ExecuteScriptInBackgroundPageDeprecated(extension->id(),
"getLastHookedPath()"));
// Initiate a fetch that results in calling fetch() in the service worker.
EXPECT_EQ("hello", content::EvalJs(web_contents,
"doFetch('hello.txt?respondWithFetch');"));
EXPECT_EQ(
"/extensions/api_test/service_worker/webrequest/"
"hello.txt?respondWithFetch",
ExecuteScriptInBackgroundPageDeprecated(extension->id(),
"getLastHookedPath()"));
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, SWServedBackgroundPageReceivesEvent) {
const Extension* extension =
StartTestFromBackgroundPage("replace_background.js");
ExtensionHost* background_page =
process_manager()->GetBackgroundHostForExtension(extension->id());
ASSERT_TRUE(background_page);
// Close the background page and start it again so that the service worker
// will start controlling pages.
background_page->Close();
ExtensionBackgroundPageWaiter(profile(), *extension)
.WaitForBackgroundClosed();
background_page = nullptr;
process_manager()->WakeEventPage(extension->id(), base::DoNothing());
ExtensionBackgroundPageWaiter(profile(), *extension).WaitForBackgroundOpen();
// Since the SW is now controlling the extension, the SW serves the background
// script. page.html sends a message to the background script and we verify
// that the SW served background script correctly receives the message/event.
ExtensionTestMessageListener listener("onMessage/SW BG.");
listener.set_failure_message("onMessage/original BG.");
content::WebContents* web_contents = browsertest_util::AddTab(
browser(), extension->ResolveExtensionURL("page.html"));
ASSERT_TRUE(web_contents);
EXPECT_TRUE(listener.WaitUntilSatisfied());
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, SWServedBackgroundPage) {
const Extension* extension = StartTestFromBackgroundPage("fetch.js");
std::string kExpectedInnerText = "background.html contents for testing.";
// Sanity check that the background page has the expected content.
ExtensionHost* background_page =
process_manager()->GetBackgroundHostForExtension(extension->id());
ASSERT_TRUE(background_page);
EXPECT_EQ(kExpectedInnerText,
ExtractInnerText(background_page->host_contents()));
// Close the background page.
background_page->Close();
ExtensionBackgroundPageWaiter(profile(), *extension)
.WaitForBackgroundClosed();
background_page = nullptr;
// Start it again.
process_manager()->WakeEventPage(extension->id(), base::DoNothing());
ExtensionBackgroundPageWaiter(profile(), *extension).WaitForBackgroundOpen();
// The service worker should get a fetch event for the background page.
background_page =
process_manager()->GetBackgroundHostForExtension(extension->id());
ASSERT_TRUE(background_page);
EXPECT_TRUE(content::WaitForLoadStop(background_page->host_contents()));
EXPECT_EQ("Caught a fetch for /background.html",
ExtractInnerText(background_page->host_contents()));
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest,
ServiceWorkerPostsMessageToBackgroundClient) {
const Extension* extension =
StartTestFromBackgroundPage("post_message_to_background_client.js");
// The service worker in this test simply posts a message to the background
// page it receives from the `clients` service worker interface.
const char* kScript =
"var messagePromise = null;\n"
"if (test.lastMessageFromServiceWorker) {\n"
" messagePromise = Promise.resolve(test.lastMessageFromServiceWorker);\n"
"} else {\n"
" messagePromise = test.waitForMessage(navigator.serviceWorker);\n"
"}\n"
"messagePromise.then(function(message) {\n"
" chrome.test.sendScriptResult(String(message == 'success'));\n"
"})\n";
EXPECT_EQ("true", ExecuteScriptInBackgroundPage(extension->id(), kScript));
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest,
BackgroundPagePostsMessageToServiceWorker) {
const Extension* extension =
StartTestFromBackgroundPage("post_message_to_sw.js");
// The service worker in this test waits for a message, then echoes it back
// over the same message pipe.
const char* kScript =
"var mc = new MessageChannel();\n"
"test.waitForMessage(mc.port1).then(function(message) {\n"
" chrome.test.sendScriptResult(String(message == 'hello'));\n"
"});\n"
"test.registeredServiceWorker.postMessage(\n"
" {message: 'hello', port: mc.port2}, [mc.port2])\n";
EXPECT_EQ("true", ExecuteScriptInBackgroundPage(extension->id(), kScript));
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest,
ServiceWorkerSuspensionOnExtensionUnload) {
// For this test, only hold onto the extension's ID and URL + a function to
// get a resource URL, because we're going to be disabling and uninstalling
// it, which will invalidate the pointer.
std::string extension_id;
GURL extension_url;
{
const Extension* extension = StartTestFromBackgroundPage("fetch.js");
extension_id = extension->id();
extension_url = extension->url();
}
auto get_resource_url = [&extension_url](const std::string& path) {
return Extension::ResolveExtensionURL(extension_url, path);
};
// Fetch should route to the service worker.
EXPECT_EQ("Caught a fetch for /index.html",
NavigateAndExtractInnerText(get_resource_url("index.html")));
// Disable the extension. Opening the page should fail.
extension_registrar()->DisableExtension(
extension_id, {disable_reason::DISABLE_USER_ACTION});
base::RunLoop().RunUntilIdle();
EXPECT_EQ(content::PAGE_TYPE_ERROR,
NavigateAndGetPageType(get_resource_url("index.html")));
EXPECT_EQ(content::PAGE_TYPE_ERROR,
NavigateAndGetPageType(get_resource_url("other.html")));
// Re-enable the extension. Opening pages should immediately start to succeed
// again.
extension_registrar()->EnableExtension(extension_id);
base::RunLoop().RunUntilIdle();
EXPECT_EQ("Caught a fetch for /index.html",
NavigateAndExtractInnerText(get_resource_url("index.html")));
EXPECT_EQ("Caught a fetch for /other.html",
NavigateAndExtractInnerText(get_resource_url("other.html")));
EXPECT_EQ("Caught a fetch for /another.html",
NavigateAndExtractInnerText(get_resource_url("another.html")));
// Uninstall the extension. Opening pages should fail again.
std::u16string error;
extension_registrar()->UninstallExtension(
extension_id, UninstallReason::UNINSTALL_REASON_FOR_TESTING, &error);
base::RunLoop().RunUntilIdle();
EXPECT_EQ(content::PAGE_TYPE_ERROR,
NavigateAndGetPageType(get_resource_url("index.html")));
EXPECT_EQ(content::PAGE_TYPE_ERROR,
NavigateAndGetPageType(get_resource_url("other.html")));
EXPECT_EQ(content::PAGE_TYPE_ERROR,
NavigateAndGetPageType(get_resource_url("anotherother.html")));
EXPECT_EQ(content::PAGE_TYPE_ERROR,
NavigateAndGetPageType(get_resource_url("final.html")));
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, NotificationAPI) {
EXPECT_TRUE(RunExtensionTest("service_worker/notifications/has_permission",
{.extension_url = "page.html"}));
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, WebAccessibleResourcesFetch) {
EXPECT_TRUE(RunExtensionTest("service_worker/web_accessible_resources/fetch/",
{.extension_url = "page.html"}));
}
class ServiceWorkerFetchTest : public ServiceWorkerTest {
public:
ServiceWorkerFetchTest() = default;
ServiceWorkerFetchTest(const ServiceWorkerFetchTest&) = delete;
ServiceWorkerFetchTest& operator=(const ServiceWorkerFetchTest&) = delete;
~ServiceWorkerFetchTest() override = default;
protected:
void SetUpOnMainThread() override {
ServiceWorkerTest::SetUpOnMainThread();
ASSERT_TRUE(InitializeEmbeddedTestServer());
// All requests to embedded_test_server() will be passed to RecordRequest().
embedded_test_server()->RegisterRequestMonitor(base::BindRepeating(
&ServiceWorkerFetchTest::RecordRequest, base::Unretained(this)));
// Serve embedded_test_server() requests from a specific directory.
base::FilePath http_server_root_path;
base::PathService::Get(chrome::DIR_TEST_DATA, &http_server_root_path);
http_server_root_path = http_server_root_path.AppendASCII(
"extensions/api_test/service_worker/");
embedded_test_server()->ServeFilesFromDirectory(http_server_root_path);
EmbeddedTestServerAcceptConnections();
}
// Records requests that are sent to embedded_test_server() during the test.
void RecordRequest(const net::test_server::HttpRequest& request) {
base::AutoLock lock(requests_to_server_lock_);
requests_to_server_[request.GetURL()] = request;
if (url_to_wait_for_ != request.GetURL()) {
return;
}
ASSERT_TRUE(wait_for_request_run_loop_);
url_to_wait_for_ = GURL();
wait_for_request_run_loop_->Quit();
}
// Waits for `url_to_wait_for` request to be seen by the test and then
// confirms that the value of header with `header_name` matches
// `expected_header_value`.
bool WaitForRequestAndCheckHeaderValue(
const GURL& url_to_wait_for,
const char* header_name,
const std::string& expected_header_value) {
{
SCOPED_TRACE(
base::StringPrintf("waiting for url request: %s to be captured",
url_to_wait_for.spec()));
WaitForRequest(url_to_wait_for);
}
std::string header_value =
GetHeaderValueFromRequest(url_to_wait_for, header_name);
if (expected_header_value == header_value) {
return true;
}
ADD_FAILURE() << "header name: " << header_name
<< " for request: " << url_to_wait_for.spec()
<< " had value: " << header_value
<< " instead of expected value: " << expected_header_value;
return false;
}
// Waits for `url_to_wait_for` to be requested from the embedded_test_server()
// during the test.
void WaitForRequest(const GURL& url_to_wait_for) {
{
base::AutoLock lock(requests_to_server_lock_);
DCHECK(url_to_wait_for_.is_empty());
DCHECK(!wait_for_request_run_loop_);
if (requests_to_server_.count(url_to_wait_for)) {
return;
}
url_to_wait_for_ = url_to_wait_for;
wait_for_request_run_loop_ = std::make_unique<base::RunLoop>();
}
wait_for_request_run_loop_->Run();
wait_for_request_run_loop_.reset();
}
// Gets the headers for `url_request` that was seen during the test. If the
// request wasn't recorded, or the header isn't present on the request then
// return an empty string.
std::string GetHeaderValueFromRequest(const GURL& url_request,
const char* header_name) {
base::AutoLock lock(requests_to_server_lock_);
const auto url_request_search = requests_to_server_.find(url_request);
if (url_request_search == requests_to_server_.end()) {
ADD_FAILURE() << "url_request: " << url_request.spec()
<< " wasn't seen during the test";
return "";
}
const auto headers_for_request = url_request_search->second.headers;
auto header = headers_for_request.find(header_name);
if (header == headers_for_request.end()) {
ADD_FAILURE() << "header_name: " << header_name
<< " wasn't set on the request during the test";
return "";
}
return header->second;
}
// Requests observed by the EmbeddedTestServer. This is accessed on both the
// UI and the EmbeddedTestServer's IO thread. Access is protected by
// `requests_to_server_lock_`.
std::map<GURL, net::test_server::HttpRequest> requests_to_server_
GUARDED_BY(requests_to_server_lock_);
// URL that `wait_for_request_run_loop_` is currently waiting to observe.
GURL url_to_wait_for_ GUARDED_BY(requests_to_server_lock_);
// RunLoop to quit when a request for `url_to_wait_for_` is observed.
std::unique_ptr<base::RunLoop> wait_for_request_run_loop_;
base::Lock requests_to_server_lock_;
};
// Tests the behavior of a privileged (background) context when it
// attempts to set forbidden and non-forbidden headers on fetch() requests to a
// URL for which the extension has host_permissions.
IN_PROC_BROWSER_TEST_F(ServiceWorkerFetchTest,
SetFetchHeadersFromExtensionBackground) {
SetCustomArg("run_background_tests");
// Run fetch() header setting tests from the (privileged) background context.
ASSERT_TRUE(
RunExtensionTest("service_worker/worker_fetch_headers/test_extension"));
// Confirm that headers that are not forbidden are allowed to be set on a
// fetch() request by an extension background script.
EXPECT_TRUE(WaitForRequestAndCheckHeaderValue(
embedded_test_server()->GetURL("/fetch/fetch_allowed.html"),
/*header_name=*/"Content-Type",
/*expected_header_value=*/"text/testing"));
// Confirm that headers that are forbidden are not allowed to be set on a
// fetch() request by an extension background script (they're overridden).
EXPECT_TRUE(WaitForRequestAndCheckHeaderValue(
embedded_test_server()->GetURL("/fetch/fetch_forbidden.html"),
/*header_name=*/"Accept-Encoding",
// TODO(crbug.com/418811955): Set this to "fakeencoding, fakeencoding2"
// when this capability is allowed.
/*expected_header_value=*/"gzip, deflate, br, zstd"));
}
// Tests the behavior of a privileged (extension resource) context when it
// attempts to set forbidden and non-forbidden headers on fetch() requests to a
// URL for which the extension has host_permissions.
IN_PROC_BROWSER_TEST_F(ServiceWorkerFetchTest,
SetFetchHeadersFromExtensionResource) {
const Extension* extension = LoadExtension(test_data_dir_.AppendASCII(
"service_worker/worker_fetch_headers/test_extension"));
ASSERT_TRUE(extension);
// Opening extension popup causes popup script to run the fetch() header
// setting tests.
{
SCOPED_TRACE("waiting for extension popup to open");
// Open popup and test allowed and forbidden header setting.
extensions::ExtensionHostTestHelper popup_waiter(profile(),
extension->id());
popup_waiter.RestrictToType(extensions::mojom::ViewType::kExtensionPopup);
ExtensionActionTestHelper::Create(browser())->Press(extension->id());
popup_waiter.WaitForHostCompletedFirstLoad();
}
// Confirm that headers that are not forbidden are allowed to be set on a
// fetch() request by an extension resource (popup) script.
EXPECT_TRUE(WaitForRequestAndCheckHeaderValue(
embedded_test_server()->GetURL("/fetch/fetch_allowed.html"),
/*header_name=*/"Content-Type",
/*expected_header_value=*/"text/testing"));
// Confirm that headers that are forbidden are not allowed to be set on a
// fetch() request by an extension resource (popup) (they're overridden).
EXPECT_TRUE(WaitForRequestAndCheckHeaderValue(
embedded_test_server()->GetURL("/fetch/fetch_forbidden.html"),
/*header_name=*/"Accept-Encoding",
// TODO(crbug.com/418811955): Set this to "fakeencoding, fakeencoding2"
// when this capability is allowed.
/*expected_header_value=*/"gzip, deflate, br, zstd"));
}
// Tests the behavior of an unprivileged (content script) context when it
// attempts to set forbidden and non-forbidden headers on fetch() requests to a
// URL for which the extension has host_permissions.
IN_PROC_BROWSER_TEST_F(ServiceWorkerFetchTest,
SetFetchHeadersFromExtensionContentScript) {
const Extension* extension = LoadExtension(test_data_dir_.AppendASCII(
"service_worker/worker_fetch_headers/test_extension"));
ASSERT_TRUE(extension);
// Navigating to URL causes content script to run the fetch() header setting
// tests.
{
SCOPED_TRACE(
"waiting for page to load and content script to finish running");
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
ResultCatcher content_script_catcher;
ASSERT_TRUE(ui_test_utils::NavigateToURL(
browser(), embedded_test_server()->GetURL(
"/fetch/fetch_from_content_script.html")));
ASSERT_TRUE(content::WaitForLoadStop(web_contents));
EXPECT_TRUE(content_script_catcher.GetNextResult())
<< content_script_catcher.message();
}
// Confirm that headers that are not forbidden are allowed to be set on a
// fetch() request by a content script.
EXPECT_TRUE(WaitForRequestAndCheckHeaderValue(
embedded_test_server()->GetURL("/fetch/fetch_allowed.html"),
/*header_name=*/"Content-Type",
/*expected_header_value=*/"text/testing"));
// Confirm that headers that are forbidden are not allowed to be set on a
// fetch() request by a content script since it's not a privileged extension
// context (they're overridden).
EXPECT_TRUE(WaitForRequestAndCheckHeaderValue(
embedded_test_server()->GetURL("/fetch/fetch_forbidden.html"),
/*header_name=*/"Accept-Encoding",
/*expected_header_value=*/"gzip, deflate, br, zstd"));
}
// Tests that updating a packed extension with modified scripts works
// properly -- we expect that the new script will execute, rather than the
// previous one.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
UpdatePackedExtension) {
constexpr char kManifest1[] =
R"({
"name": "Test Extension",
"manifest_version": 2,
"version": "0.1",
"background": {"service_worker": "script.js"}
})";
constexpr char kNewVersionString[] = "0.2";
// This script installs an event listener for updates to the extension with
// a callback that forces itself to reload.
constexpr char kScript1[] =
R"(
chrome.runtime.onUpdateAvailable.addListener(function(details) {
chrome.test.assertEq('%s', details.version);
chrome.runtime.reload();
});
chrome.test.sendMessage('ready1');
)";
std::string id;
TestExtensionDir test_dir;
// Write the manifest and script files and load the extension.
test_dir.WriteManifest(kManifest1);
test_dir.WriteFile(FILE_PATH_LITERAL("script.js"),
base::StringPrintf(kScript1, kNewVersionString));
{
ExtensionTestMessageListener ready_listener("ready1");
base::FilePath path = test_dir.Pack();
const Extension* extension = LoadExtension(path);
ASSERT_TRUE(extension);
EXPECT_TRUE(ready_listener.WaitUntilSatisfied());
id = extension->id();
}
constexpr char kManifest2[] =
R"({
"name": "Test Extension",
"manifest_version": 2,
"version": "%s",
"background": {"service_worker": "script.js"}
})";
constexpr char kScript2[] =
R"(
chrome.runtime.onInstalled.addListener(function(details) {
chrome.test.assertEq('update', details.reason);
chrome.test.sendMessage('onInstalled');
});
chrome.test.sendMessage('ready2');
)";
// Rewrite the manifest and script files with a version change in the manifest
// file. After reloading the extension, the old version of the extension
// should detect the update, force the reload, and the new script should
// execute.
test_dir.WriteManifest(base::StringPrintf(kManifest2, kNewVersionString));
test_dir.WriteFile(FILE_PATH_LITERAL("script.js"), kScript2);
{
ExtensionTestMessageListener ready_listener("ready2");
ExtensionTestMessageListener on_installed_listener("onInstalled");
base::FilePath path = test_dir.Pack();
CRXFileInfo crx_info(path, GetTestVerifierFormat());
crx_info.extension_id = id;
ExtensionUpdater* updater = ExtensionUpdater::Get(profile());
auto installer = updater->CreateUpdateInstaller(crx_info, true);
EXPECT_TRUE(installer);
installer->InstallCrxFile(crx_info);
EXPECT_TRUE(ready_listener.WaitUntilSatisfied());
EXPECT_EQ("0.2", ExtensionRegistry::Get(profile())
->enabled_extensions()
.GetByID(id)
->version()
.GetString());
EXPECT_TRUE(on_installed_listener.WaitUntilSatisfied());
}
}
// Tests that updating an unpacked extension with modified scripts works
// properly -- we expect that the new script will execute, rather than the
// previous one.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
UpdateUnpackedExtension) {
constexpr char kManifest1[] =
R"({
"name": "Test Extension",
"manifest_version": 2,
"version": "0.1",
"background": {"service_worker": "script.js"}
})";
constexpr char kManifest2[] =
R"({
"name": "Test Extension",
"manifest_version": 2,
"version": "0.2",
"background": {"service_worker": "script.js"}
})";
constexpr char kScript[] =
R"(
chrome.runtime.onInstalled.addListener(function(details) {
chrome.test.assertEq('%s', details.reason);
chrome.test.sendMessage('%s');
chrome.test.sendMessage('onInstalled');
});
)";
std::string id;
ExtensionRegistrar* const extension_registrar =
ExtensionRegistrar::Get(profile());
scoped_refptr<UnpackedInstaller> installer =
UnpackedInstaller::Create(profile());
// Set a completion callback so we can get the ID of the extension.
installer->set_completion_callback(base::BindLambdaForTesting(
[&id](const Extension* extension, const base::FilePath& path,
const std::string& error) {
ASSERT_TRUE(extension);
ASSERT_TRUE(error.empty());
id = extension->id();
}));
TestExtensionDir test_dir;
// Write the manifest and script files and load the extension.
test_dir.WriteManifest(kManifest1);
test_dir.WriteFile(FILE_PATH_LITERAL("script.js"),
base::StringPrintf(kScript, "install", "ready1"));
{
ExtensionTestMessageListener ready_listener("ready1");
ExtensionTestMessageListener on_installed_listener("onInstalled");
installer->Load(test_dir.UnpackedPath());
EXPECT_TRUE(ready_listener.WaitUntilSatisfied());
EXPECT_TRUE(on_installed_listener.WaitUntilSatisfied());
ASSERT_FALSE(id.empty());
}
// Rewrite the script file without a version change in the manifest and reload
// the extension. The new script should execute.
test_dir.WriteFile(FILE_PATH_LITERAL("script.js"),
base::StringPrintf(kScript, "update", "ready2"));
{
ExtensionTestMessageListener ready_listener("ready2");
ExtensionTestMessageListener on_installed_listener("onInstalled");
extension_registrar->ReloadExtension(id);
EXPECT_TRUE(ready_listener.WaitUntilSatisfied());
EXPECT_TRUE(on_installed_listener.WaitUntilSatisfied());
}
// Rewrite the manifest and script files with a version change in the manifest
// file. After reloading the extension, the new script should execute.
test_dir.WriteManifest(kManifest2);
test_dir.WriteFile(FILE_PATH_LITERAL("script.js"),
base::StringPrintf(kScript, "update", "ready3"));
{
ExtensionTestMessageListener ready_listener("ready3");
ExtensionTestMessageListener on_installed_listener("onInstalled");
extension_registrar->ReloadExtension(id);
EXPECT_TRUE(ready_listener.WaitUntilSatisfied());
EXPECT_TRUE(on_installed_listener.WaitUntilSatisfied());
}
}
// This test loads a web page that has an iframe pointing to a
// chrome-extension:// URL. The URL is listed in the extension's
// web_accessible_resources. Initially the iframe is served from the extension's
// resource file. After verifying that, we register a Service Worker that
// controls the extension. Further requests to the same resource as before
// should now be served by the Service Worker.
// This test also verifies that if the requested resource exists in the manifest
// but is not present in the extension directory, the Service Worker can still
// serve the resource file.
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, WebAccessibleResourcesIframeSrc) {
const Extension* extension = LoadExtension(test_data_dir_.AppendASCII(
"service_worker/web_accessible_resources/iframe_src"));
ASSERT_TRUE(extension);
ASSERT_TRUE(StartEmbeddedTestServer());
// Service workers can only control secure contexts
// (https://w3c.github.io/webappsec-secure-contexts/). For documents, this
// typically means the document must have a secure origin AND all its ancestor
// frames must have documents with secure origins. However, extension pages
// are considered secure, even if they have an ancestor document that is an
// insecure context (see GetSchemesBypassingSecureContextCheckAllowlist). So
// extension service workers must be able to control an extension page
// embedded in an insecure context. To test this, set up an insecure
// (non-localhost, non-https) URL for the web page. This page will create
// iframes that load extension pages that must be controllable by service
// worker.
GURL page_url =
embedded_test_server()->GetURL("a.com",
"/extensions/api_test/service_worker/"
"web_accessible_resources/webpage.html");
EXPECT_FALSE(network::IsUrlPotentiallyTrustworthy(page_url));
content::WebContents* web_contents =
browsertest_util::AddTab(browser(), page_url);
// webpage.html will create an iframe pointing to a resource from |extension|.
// Expect the resource to be served by the extension.
EXPECT_EQ("FROM_EXTENSION_RESOURCE",
content::EvalJs(
web_contents,
base::StringPrintf("window.testIframe('%s', 'iframe.html')",
extension->id().c_str())));
ExtensionTestMessageListener service_worker_ready_listener("SW_READY");
EXPECT_TRUE(ExecuteScriptInBackgroundPageNoWait(
extension->id(), "window.registerServiceWorker()"));
EXPECT_TRUE(service_worker_ready_listener.WaitUntilSatisfied());
// webpage.html will create another iframe pointing to a resource from
// |extension| as before. But this time, the resource should be be served
// from the Service Worker.
EXPECT_EQ("FROM_SW_RESOURCE",
content::EvalJs(
web_contents,
base::StringPrintf("window.testIframe('%s', 'iframe.html')",
extension->id().c_str())));
// webpage.html will create yet another iframe pointing to a resource that
// exists in the extension manifest's web_accessible_resources, but is not
// present in the extension directory. Expect the resources of the iframe to
// be served by the Service Worker.
EXPECT_EQ(
"FROM_SW_RESOURCE",
content::EvalJs(web_contents,
base::StringPrintf(
"window.testIframe('%s', 'iframe_non_existent.html')",
extension->id().c_str())));
}
// Verifies that service workers that aren't specified as the background script
// for the extension do not have extension API bindings.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, VerifyNoApiBindings) {
const Extension* extension = LoadExtension(
test_data_dir_.AppendASCII("service_worker/verify_no_api_bindings"));
ASSERT_TRUE(extension);
ASSERT_TRUE(ui_test_utils::NavigateToURL(
browser(), extension->ResolveExtensionURL("page.html")));
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
// Have the page script start the service worker and wait for that to
// succeed.
ExtensionTestMessageListener worker_start_listener("WORKER STARTED");
worker_start_listener.set_failure_message("FAILURE");
ASSERT_TRUE(content::ExecJs(web_contents, "window.runServiceWorker()"));
ASSERT_TRUE(worker_start_listener.WaitUntilSatisfied());
// Kick off the test, which will check the available bindings and fail if
// there is anything unexpected.
ExtensionTestMessageListener worker_listener("SUCCESS");
worker_listener.set_failure_message("FAILURE");
ASSERT_TRUE(content::ExecJs(web_contents, "window.testSendMessage()"));
EXPECT_TRUE(worker_listener.WaitUntilSatisfied());
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerBackgroundSyncTest, Sync) {
const Extension* extension =
LoadExtension(test_data_dir_.AppendASCII("service_worker/sync"));
ASSERT_TRUE(extension);
ASSERT_TRUE(ui_test_utils::NavigateToURL(
browser(), extension->ResolveExtensionURL("page.html")));
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
// Prevent firing by going offline.
content::background_sync_test_util::SetOnline(web_contents, false);
ExtensionTestMessageListener sync_listener("SYNC: send-chats");
sync_listener.set_failure_message("FAIL");
ASSERT_EQ("SERVICE_WORKER_READY",
content::EvalJs(web_contents, "window.runServiceWorker()"));
EXPECT_FALSE(sync_listener.was_satisfied());
// Resume firing by going online.
content::background_sync_test_util::SetOnline(web_contents, true);
EXPECT_TRUE(sync_listener.WaitUntilSatisfied());
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest,
FetchFromContentScriptShouldNotGoToServiceWorkerOfPage) {
ASSERT_TRUE(StartEmbeddedTestServer());
GURL page_url = embedded_test_server()->GetURL(
"/extensions/api_test/service_worker/content_script_fetch/"
"controlled_page/index.html");
content::WebContents* tab =
browser()->tab_strip_model()->GetActiveWebContents();
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), page_url));
EXPECT_TRUE(content::WaitForLoadStop(tab));
EXPECT_EQ("SW controlled", content::EvalJs(tab, "register();"));
ASSERT_TRUE(RunExtensionTest("service_worker/content_script_fetch"))
<< message_;
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerPushMessagingTest, OnPush) {
const Extension* extension = LoadExtension(
test_data_dir_.AppendASCII("service_worker/push_messaging"));
ASSERT_TRUE(extension);
GURL extension_url = extension->url();
GrantNotificationPermissionForTest(extension_url);
GURL url = extension->ResolveExtensionURL("page.html");
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), url));
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
// Start the ServiceWorker.
ExtensionTestMessageListener ready_listener("SERVICE_WORKER_READY");
ready_listener.set_failure_message("SERVICE_WORKER_FAILURE");
const char* kScript = "window.runServiceWorker()";
EXPECT_TRUE(content::ExecJs(web_contents->GetPrimaryMainFrame(), kScript));
EXPECT_TRUE(ready_listener.WaitUntilSatisfied());
PushMessagingAppIdentifier app_identifier =
GetAppIdentifierForServiceWorkerRegistration(0LL, extension_url);
ASSERT_EQ(app_identifier.app_id(), gcm_driver()->last_gettoken_app_id());
EXPECT_EQ("1234567890", gcm_driver()->last_gettoken_authorized_entity());
base::RunLoop run_loop;
// Send a push message via gcm and expect the ServiceWorker to receive it.
ExtensionTestMessageListener push_message_listener("OK");
push_message_listener.set_failure_message("FAIL");
gcm::IncomingMessage message;
message.sender_id = "1234567890";
message.raw_data = "testdata";
message.decrypted = true;
push_service()->SetMessageCallbackForTesting(run_loop.QuitClosure());
push_service()->OnMessage(app_identifier.app_id(), message);
EXPECT_TRUE(push_message_listener.WaitUntilSatisfied());
run_loop.Run(); // Wait until the message is handled by push service.
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, MimeHandlerView) {
ASSERT_TRUE(RunExtensionTest("service_worker/mime_handler_view"));
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
EventsToStoppedWorker) {
ExtensionTestMessageListener event_listener_added("ready");
event_listener_added.set_failure_message("ERROR");
// Note: Extension is packed to avoid reloading while loading.
const Extension* extension = LoadExtension(
PackExtension(test_data_dir_.AppendASCII(
"service_worker/worker_based_background/events_to_stopped_worker")),
// Wait for the registration to be stored so that it's persistent
// before the test terminates.
{.wait_for_registration_stored = true});
ASSERT_TRUE(extension);
EXPECT_TRUE(event_listener_added.WaitUntilSatisfied());
// Stop the service worker.
{
base::RunLoop run_loop;
content::ServiceWorkerContext* context = GetServiceWorkerContext();
// The service worker is registered at the root scope.
content::StopServiceWorkerForScope(context, extension->url(),
run_loop.QuitClosure());
run_loop.Run();
}
// Navigate to a URL, which should wake up the service worker.
ExtensionTestMessageListener finished_listener("finished");
ASSERT_TRUE(ui_test_utils::NavigateToURL(
browser(), extension->ResolveExtensionURL("page.html")));
EXPECT_TRUE(finished_listener.WaitUntilSatisfied());
}
namespace {
constexpr char kIncognitoManifest[] =
R"({
"name": "Incognito Test Extension",
"version": "0.1",
"manifest_version": 2,
"permissions": ["tabs"],
"background": {"service_worker": "worker.js"},
"incognito": "%s"
})";
constexpr char kQueryWorkerScript[] =
R"(var inIncognitoContext = chrome.extension.inIncognitoContext;
var incognitoStr =
inIncognitoContext ? 'incognito' : 'regular';
chrome.test.sendMessage('Script started ' + incognitoStr, function() {
chrome.tabs.query({}, function(tabs) {
let urls = tabs.map(tab => tab.url);
chrome.test.sendMessage(JSON.stringify(urls));
});
});)";
constexpr char kTabsOnUpdatedSplitScript[] =
R"(var inIncognitoContext = chrome.extension.inIncognitoContext;
var incognitoStr =
inIncognitoContext ? 'incognito' : 'regular';
var urls = [];
chrome.tabs.onUpdated.addListener(function localListener(tabId,
changeInfo,
tab) {
if (changeInfo.status === 'loading') {
chrome.tabs.onUpdated.removeListener(localListener);
urls.push(changeInfo.url);
}
});
chrome.test.sendMessage('Script started ' + incognitoStr, function() {
chrome.test.sendMessage(JSON.stringify(urls));
});)";
constexpr char kTabsOnUpdatedSpanningScript[] =
R"(var inIncognitoContext = chrome.extension.inIncognitoContext;
var incognitoStr =
inIncognitoContext ? 'incognito' : 'regular';
var urls = [];
var expectedCount = 0;
chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) {
if (changeInfo.status === 'complete') {
urls.push(tab.url);
if (urls.length == expectedCount) {
chrome.test.sendMessage(JSON.stringify(urls));
}
}
});
chrome.test.sendMessage('Script started ' + incognitoStr,
function(expected) {
expectedCount = expected;
});)";
} // anonymous namespace
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, TabsQuerySplit) {
ExtensionTestMessageListener ready_regular("Script started regular",
ReplyBehavior::kWillReply);
ExtensionTestMessageListener ready_incognito("Script started incognito",
ReplyBehavior::kWillReply);
// Open an incognito window.
Browser* browser_incognito =
OpenURLOffTheRecord(browser()->profile(), GURL("about:blank"));
ASSERT_TRUE(browser_incognito);
TestExtensionDir test_dir;
test_dir.WriteManifest(base::StringPrintf(kIncognitoManifest, "split"));
test_dir.WriteFile(FILE_PATH_LITERAL("worker.js"), kQueryWorkerScript);
const Extension* extension =
LoadExtension(test_dir.UnpackedPath(), {.allow_in_incognito = true});
ASSERT_TRUE(extension);
// Wait for the extension's service workers to be ready.
ASSERT_TRUE(ready_regular.WaitUntilSatisfied());
ASSERT_TRUE(ready_incognito.WaitUntilSatisfied());
// Load a new tab in both browsers.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL("chrome:version")));
ASSERT_TRUE(
ui_test_utils::NavigateToURL(browser_incognito, GURL("chrome:about")));
{
ExtensionTestMessageListener tabs_listener;
// The extension waits for the reply to the "ready" sendMessage call
// and replies with the URLs of the tabs.
ready_regular.Reply("");
EXPECT_TRUE(tabs_listener.WaitUntilSatisfied());
EXPECT_EQ(R"(["chrome://version/"])", tabs_listener.message());
}
{
ExtensionTestMessageListener tabs_listener;
// Reply to the original message and wait for the return message.
ready_incognito.Reply("");
EXPECT_TRUE(tabs_listener.WaitUntilSatisfied());
EXPECT_EQ(R"(["chrome://about/"])", tabs_listener.message());
}
}
// Tests already-loaded extension activation in incognito profile.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
AlreadyLoadedSplitExtensionActivationInIncognito) {
ExtensionTestMessageListener ready_regular("Script started regular",
ReplyBehavior::kWillReply);
ExtensionTestMessageListener ready_incognito("Script started incognito",
ReplyBehavior::kWillReply);
TestExtensionDir test_dir;
test_dir.WriteManifest(base::StringPrintf(kIncognitoManifest, "split"));
test_dir.WriteFile(FILE_PATH_LITERAL("worker.js"), kQueryWorkerScript);
const Extension* extension =
LoadExtension(test_dir.UnpackedPath(), {.allow_in_incognito = true});
ASSERT_TRUE(extension);
// Open an incognito window.
// Note: It is important that we create incognito profile _after_ loading
// |extension| above as we want to test how extensions that already has been
// activated in the main profile are activated in incognito (see
// |ServiceWorkerTaskQueue::ActivateIncognitoSplitModeExtensions|).
Browser* browser_incognito =
OpenURLOffTheRecord(browser()->profile(), GURL("about:blank"));
ASSERT_TRUE(browser_incognito);
// Wait for the extension's service workers to be ready.
ASSERT_TRUE(ready_regular.WaitUntilSatisfied());
ASSERT_TRUE(ready_incognito.WaitUntilSatisfied());
// Load a new tab in both browsers.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL("chrome:version")));
ASSERT_TRUE(
ui_test_utils::NavigateToURL(browser_incognito, GURL("chrome:about")));
{
ExtensionTestMessageListener tabs_listener;
// The extension waits for the reply to the "ready" sendMessage call
// and replies with the URLs of the tabs.
ready_regular.Reply("");
EXPECT_TRUE(tabs_listener.WaitUntilSatisfied());
EXPECT_EQ(R"(["chrome://version/"])", tabs_listener.message());
}
{
ExtensionTestMessageListener tabs_listener;
// Reply to the original message and wait for the return message.
ready_incognito.Reply("");
EXPECT_TRUE(tabs_listener.WaitUntilSatisfied());
EXPECT_EQ(R"(["chrome://about/"])", tabs_listener.message());
}
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, TabsQuerySpanning) {
ExtensionTestMessageListener ready_listener("Script started regular",
ReplyBehavior::kWillReply);
// Open an incognito window.
Browser* browser_incognito =
OpenURLOffTheRecord(browser()->profile(), GURL("about:blank"));
ASSERT_TRUE(browser_incognito);
TestExtensionDir test_dir;
test_dir.WriteManifest(base::StringPrintf(kIncognitoManifest, "spanning"));
test_dir.WriteFile(FILE_PATH_LITERAL("worker.js"), kQueryWorkerScript);
const Extension* extension =
LoadExtension(test_dir.UnpackedPath(), {.allow_in_incognito = true});
ASSERT_TRUE(extension);
// Wait for the extension's service worker to be ready.
ASSERT_TRUE(ready_listener.WaitUntilSatisfied());
// Load a new tab in both browsers.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL("chrome:version")));
ASSERT_TRUE(
ui_test_utils::NavigateToURL(browser_incognito, GURL("chrome:about")));
ExtensionTestMessageListener tabs_listener;
// The extension waits for the reply to the "ready" sendMessage call
// and replies with the URLs of the tabs.
ready_listener.Reply("");
EXPECT_TRUE(tabs_listener.WaitUntilSatisfied());
EXPECT_EQ(R"(["chrome://version/","chrome://about/"])",
tabs_listener.message());
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, TabsOnUpdatedSplit) {
ExtensionTestMessageListener ready_regular("Script started regular",
ReplyBehavior::kWillReply);
ExtensionTestMessageListener ready_incognito("Script started incognito",
ReplyBehavior::kWillReply);
// Open an incognito window.
Browser* browser_incognito =
OpenURLOffTheRecord(browser()->profile(), GURL("about:blank"));
ASSERT_TRUE(browser_incognito);
TestExtensionDir test_dir;
test_dir.WriteManifest(base::StringPrintf(kIncognitoManifest, "split"));
test_dir.WriteFile(FILE_PATH_LITERAL("worker.js"), kTabsOnUpdatedSplitScript);
const Extension* extension =
LoadExtension(test_dir.UnpackedPath(), {.allow_in_incognito = true});
ASSERT_TRUE(extension);
// Wait for the extension's service workers to be ready.
ASSERT_TRUE(ready_regular.WaitUntilSatisfied());
ASSERT_TRUE(ready_incognito.WaitUntilSatisfied());
// Load a new tab in both browsers.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL("chrome:version")));
ASSERT_TRUE(
ui_test_utils::NavigateToURL(browser_incognito, GURL("chrome:about")));
{
ExtensionTestMessageListener tabs_listener;
// The extension waits for the reply to the "ready" sendMessage call
// and replies with the URLs of the tabs.
ready_regular.Reply("");
EXPECT_TRUE(tabs_listener.WaitUntilSatisfied());
EXPECT_EQ(R"(["chrome://version/"])", tabs_listener.message());
}
{
ExtensionTestMessageListener tabs_listener;
// The extension waits for the reply to the "ready" sendMessage call
// and replies with the URLs of the tabs.
ready_incognito.Reply("");
EXPECT_TRUE(tabs_listener.WaitUntilSatisfied());
EXPECT_EQ(R"(["chrome://about/"])", tabs_listener.message());
}
}
// Test extension with OnInstalled listener can be successfully updated when,
// 1) Was allowed in incognito.
// 2) An incognito window was open.
// 3) Toggle the allow in incognito switch to off
// Regression test for crbug.com/1394588
// TODO(crbug.com/40282331): Disabled on ASAN due to leak caused by renderer gin
// objects which are intended to be leaked.
#if defined(ADDRESS_SANITIZER)
#define MAYBE_DisallowIncognitoWithOnInstalledListener \
DISABLED_DisallowIncognitoWithOnInstalledListener
#else
#define MAYBE_DisallowIncognitoWithOnInstalledListener \
DisallowIncognitoWithOnInstalledListener
#endif
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
MAYBE_DisallowIncognitoWithOnInstalledListener) {
ResultCatcher catcher;
base::ScopedAllowBlockingForTesting allow_blocking;
base::ScopedTempDir scoped_temp_dir;
ASSERT_TRUE(scoped_temp_dir.CreateUniqueTempDir());
base::FilePath pem_path = test_data_dir_.AppendASCII("service_worker")
.AppendASCII("update_incognito_mode")
.AppendASCII("service_worker.pem");
base::FilePath path_v1 =
PackExtensionWithOptions(test_data_dir_.AppendASCII("service_worker")
.AppendASCII("update_incognito_mode")
.AppendASCII("v1"),
scoped_temp_dir.GetPath().AppendASCII("v1.crx"),
pem_path, base::FilePath());
base::FilePath path_v2 =
PackExtensionWithOptions(test_data_dir_.AppendASCII("service_worker")
.AppendASCII("update_incognito_mode")
.AppendASCII("v2"),
scoped_temp_dir.GetPath().AppendASCII("v2.crx"),
pem_path, base::FilePath());
// Allow in incognito.
const Extension* extension =
LoadExtension(path_v1, {.allow_in_incognito = true});
ASSERT_TRUE(extension);
ASSERT_TRUE(catcher.GetNextResult());
// Open an incognito window.
GURL url(url::kAboutBlankURL);
OpenURLOffTheRecord(profile(), url);
// Disallow in incognito.
ExtensionPrefs* extension_prefs = ExtensionPrefs::Get(profile());
extension_prefs->SetIsIncognitoEnabled(extension->id(), false);
// Should successfully update.
const Extension* extension2 = UpdateExtension(extension->id(), path_v2, 0);
EXPECT_TRUE(extension2);
ASSERT_TRUE(catcher.GetNextResult());
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
TabsOnUpdatedSpanning) {
// The spanning test differs from the Split test because it lets the
// renderer send the URLs once the expected number of onUpdated
// events have completed. This solves flakiness in the previous
// implementation, where the browser pulled the URLs from the
// renderer.
ExtensionTestMessageListener ready_listener("Script started regular",
ReplyBehavior::kWillReply);
// Open an incognito window.
Browser* browser_incognito =
OpenURLOffTheRecord(browser()->profile(), GURL("about:blank"));
ASSERT_TRUE(browser_incognito);
TestExtensionDir test_dir;
test_dir.WriteManifest(base::StringPrintf(kIncognitoManifest, "spanning"));
test_dir.WriteFile(FILE_PATH_LITERAL("worker.js"),
kTabsOnUpdatedSpanningScript);
const Extension* extension =
LoadExtension(test_dir.UnpackedPath(), {.allow_in_incognito = true});
ASSERT_TRUE(extension);
// Wait for the extension's service worker to be ready.
ASSERT_TRUE(ready_listener.WaitUntilSatisfied());
// Let the JavaScript side know the number of expected URLs.
ready_listener.Reply(2);
// This listener will catch the URLs coming back.
ExtensionTestMessageListener tabs_listener;
// Load a new tab in both browsers.
ASSERT_TRUE(ui_test_utils::NavigateToURL(browser(), GURL("chrome:version")));
ASSERT_TRUE(
ui_test_utils::NavigateToURL(browser_incognito, GURL("chrome:about")));
EXPECT_TRUE(tabs_listener.WaitUntilSatisfied());
EXPECT_EQ(R"(["chrome://version/","chrome://about/"])",
tabs_listener.message());
}
// Tests the restriction on registering service worker scripts at root scope.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
ServiceWorkerScriptRootScope) {
// Set up an observer to track all SW registrations. We expect only
// one for the extension's root scope. This test attempts to register
// an additional service worker, which will fail.
service_worker_test_utils::TestServiceWorkerContextObserver observer(
browser()->profile());
ExtensionTestMessageListener registration_listener("REGISTRATION_FAILED");
registration_listener.set_failure_message("WORKER_STARTED");
const Extension* extension = LoadExtension(test_data_dir_.AppendASCII(
"service_worker/worker_based_background/script_root_scope"));
ASSERT_TRUE(extension);
EXPECT_TRUE(registration_listener.WaitUntilSatisfied());
// We expect exactly one registration, which is the one specified in the
// manifest.
EXPECT_EQ(1, observer.GetCompletedCount(extension->url()));
}
// Tests that a worker that failed to start due to 'install' error, clears its
// PendingTasks correctly. Also tests that subsequent tasks are properly
// cleared.
// Regression test for https://crbug.com/1019161.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
WorkerStartFailureClearsPendingTasks) {
content::ServiceWorkerContext* context = GetServiceWorkerContext();
const ExtensionId test_extension_id("iegclhlplifhodhkoafiokenjoapiobj");
// Set up an observer to wait for worker to start and then stop.
service_worker_test_utils::TestServiceWorkerContextObserver observer(
context, test_extension_id);
TestExtensionDir test_dir;
// Key for extension id |test_extension_id|.
static constexpr const char kKey[] =
"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjzv7dI7Ygyh67VHE1DdidudpYf8P"
"Ffv8iucWvzO+3xpF/Dm5xNo7aQhPNiEaNfHwJQ7lsp4gc+C+4bbaVewBFspTruoSJhZc5uEf"
"qxwovJwN+v1/SUFXTXQmQBv6gs0qZB4gBbl4caNQBlqrFwAMNisnu1V6UROna8rOJQ90D7Nv"
"7TCwoVPKBfVshpFjdDOTeBg4iLctO3S/06QYqaTDrwVceSyHkVkvzBY6tc6mnYX0RZu78J9i"
"L8bdqwfllOhs69cqoHHgrLdI6JdOyiuh6pBP6vxMlzSKWJ3YTNjaQTPwfOYaLMuzdl0v+Ydz"
"afIzV9zwe4Xiskk+5JNGt8b2rQIDAQAB";
test_dir.WriteManifest(base::StringPrintf(
R"({
"name": "Test Extension",
"manifest_version": 2,
"version": "0.1",
"key": "%s",
"permissions": ["tabs"],
"background": {"service_worker": "script.js"}
})",
kKey));
static constexpr char kScript[] =
R"(self.oninstall = function(event) {
event.waitUntil(Promise.reject(new Error('foo')));
};)";
test_dir.WriteFile(FILE_PATH_LITERAL("script.js"), kScript);
const Extension* extension = LoadExtension(test_dir.UnpackedPath());
ASSERT_TRUE(extension);
ASSERT_EQ(test_extension_id, extension->id());
LazyContextId context_id =
LazyContextId::ForExtension(browser()->profile(), extension);
// Let the worker start so it rejects 'install' event. This causes the worker
// to stop.
observer.WaitForWorkerStarted();
observer.WaitForWorkerStopped();
TestServiceWorkerTaskQueueObserver worker_start_failure_observer;
ServiceWorkerTaskQueue* service_worker_task_queue =
ServiceWorkerTaskQueue::Get(browser()->profile());
base::HistogramTester histograms;
// Adding a pending task to ServiceWorkerTaskQueue will try to start the
// worker that failed during installation before. This enables us to ensure
// that this pending task is cleared on failure.
service_worker_task_queue->AddPendingTask(context_id, base::DoNothing());
// Since the worker rejects installation, it will fail to start now. Ensure
// that the queue sees pending tasks while the error is observed.
TestServiceWorkerTaskQueueObserver::WorkerStartFailedData failed_data =
worker_start_failure_observer.WaitForDidStartWorkerFail(extension->id());
EXPECT_NE(0u, failed_data.num_pending_tasks);
EXPECT_EQ(blink::ServiceWorkerStatusCode::kErrorNotFound,
failed_data.status_code);
// Ensure DidStartWorkerFail finished clearing tasks.
base::RunLoop().RunUntilIdle();
histograms.ExpectUniqueSample(
"Extensions.ServiceWorkerBackground.StartWorkerStatus", /*sample=*/false,
/*expected_bucket_count=*/1);
histograms.ExpectUniqueSample(
"Extensions.ServiceWorkerBackground.StartWorker_FailStatus",
// TODO(crbug.com/40909770): Shouldn't this be kErrorInstallWorkerFailed
// since failure is due to throwing error in oninstall?
/*sample=*/blink::ServiceWorkerStatusCode::kErrorNotFound,
/*expected_bucket_count=*/1);
histograms.ExpectTotalCount(
"Extensions.ServiceWorkerBackground.StartWorkerTime_Fail",
/*expected_count=*/1);
histograms.ExpectTotalCount(
"Extensions.ServiceWorkerBackground.StartWorkerTime",
/*expected_count=*/0);
// And the task count will be reset to zero afterwards.
EXPECT_EQ(0u,
service_worker_task_queue->GetNumPendingTasksForTest(context_id));
// The registration should not have been stored, so we shouldn't cache the
// extension version.
base::Version stored_version =
service_worker_task_queue->RetrieveRegisteredServiceWorkerVersion(
extension->id());
EXPECT_FALSE(stored_version.IsValid());
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
ProcessManagerRegistrationOnShutdown) {
// Note that StopServiceWorkerForScope call below expects the worker to be
// completely installed, so wait for the |extension| worker to see "activate"
// event.
ExtensionTestMessageListener activated_listener("WORKER_ACTIVATED");
const Extension* extension = LoadExtension(test_data_dir_.AppendASCII(
"service_worker/worker_based_background/process_manager"));
ASSERT_TRUE(extension);
EXPECT_TRUE(activated_listener.WaitUntilSatisfied());
std::optional<WorkerId> worker_id = GetUniqueRunningWorkerId(extension->id());
ASSERT_TRUE(worker_id);
browsertest_util::StopServiceWorkerForExtensionGlobalScope(
browser()->profile(), extension->id());
EXPECT_FALSE(ProcessManager::Get(profile())->HasServiceWorker(*worker_id));
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
ProcessManagerRegistrationOnTerminate) {
// NOTE: It is not necessary to wait for "activate" event from the worker
// for this test, but we're lazily reusing the extension from
// ProcessManagerRegistrationOnShutdown test.
ExtensionTestMessageListener activated_listener("WORKER_ACTIVATED");
const Extension* extension = LoadExtension(test_data_dir_.AppendASCII(
"service_worker/worker_based_background/process_manager"));
ASSERT_TRUE(extension);
EXPECT_TRUE(activated_listener.WaitUntilSatisfied());
std::optional<WorkerId> worker_id = GetUniqueRunningWorkerId(extension->id());
ASSERT_TRUE(worker_id);
{
// Terminate worker's RenderProcessHost.
content::RenderProcessHost* worker_render_process_host =
content::RenderProcessHost::FromID(worker_id->render_process_id);
ASSERT_TRUE(worker_render_process_host);
content::RenderProcessHostWatcher process_exit_observer(
worker_render_process_host,
content::RenderProcessHostWatcher::WATCH_FOR_PROCESS_EXIT);
worker_render_process_host->Shutdown(content::RESULT_CODE_KILLED);
process_exit_observer.Wait();
}
EXPECT_FALSE(ProcessManager::Get(profile())->HasServiceWorker(*worker_id));
}
// Tests that worker ref count increments while extension API function is
// active.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, WorkerRefCount) {
ExtensionTestMessageListener worker_start_listener("WORKER STARTED");
const Extension* extension = LoadExtension(test_data_dir_.AppendASCII(
"service_worker/worker_based_background/worker_ref_count"));
ASSERT_TRUE(extension);
ASSERT_TRUE(worker_start_listener.WaitUntilSatisfied());
ASSERT_TRUE(ui_test_utils::NavigateToURL(
browser(), extension->ResolveExtensionURL("page.html")));
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
url::Origin extension_origin = url::Origin::Create(extension->url());
const blink::StorageKey extension_key =
blink::StorageKey::CreateFirstParty(extension_origin);
// Service worker should have no pending requests because it hasn't performed
// any extension API request yet.
EXPECT_EQ(0u, GetWorkerRefCount(extension_key));
ExtensionTestMessageListener worker_listener("CHECK_REF_COUNT",
ReplyBehavior::kWillReply);
worker_listener.set_failure_message("FAILURE");
ASSERT_TRUE(content::ExecJs(web_contents, "window.testSendMessage()"));
ASSERT_TRUE(worker_listener.WaitUntilSatisfied());
// Service worker should have exactly one pending request because
// chrome.test.sendMessage() API call is in-flight.
EXPECT_EQ(1u, GetWorkerRefCount(extension_key));
// Perform another extension API request while one is ongoing.
{
ExtensionTestMessageListener listener("CHECK_REF_COUNT",
ReplyBehavior::kWillReply);
listener.set_failure_message("FAILURE");
ASSERT_TRUE(content::ExecJs(web_contents, "window.testSendMessage()"));
ASSERT_TRUE(listener.WaitUntilSatisfied());
// Service worker currently has two extension API requests in-flight.
EXPECT_EQ(2u, GetWorkerRefCount(extension_key));
// Finish executing the nested chrome.test.sendMessage() first.
listener.Reply("Hello world");
}
ExtensionTestMessageListener worker_completion_listener(
"SUCCESS_FROM_WORKER");
// Finish executing chrome.test.sendMessage().
worker_listener.Reply("Hello world");
EXPECT_TRUE(worker_completion_listener.WaitUntilSatisfied());
// The following assertions make sure we have received all the IPCs related to
// ref-count from the worker.
// The following roundtrip:
// browser->extension->worker->extension->browser
// will ensure that the worker sent the relevant ref count IPCs.
EXPECT_EQ("roundtrip-succeeded",
content::EvalJs(web_contents, "window.roundtripToWorker();"));
// Ensure IO thread IPCs run.
content::RunAllTasksUntilIdle();
// The ref count should drop to 0.
EXPECT_EQ(0u, GetWorkerRefCount(extension_key));
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
PRE_EventsAfterRestart) {
ExtensionTestMessageListener event_added_listener("ready");
base::ScopedAllowBlockingForTesting allow_blocking;
base::ScopedTempDir scoped_temp_dir;
ASSERT_TRUE(scoped_temp_dir.CreateUniqueTempDir());
base::FilePath pem_path = test_data_dir_.AppendASCII("service_worker")
.AppendASCII("worker_based_background")
.AppendASCII("test_extension.pem");
// Note: Extension is packed to avoid reloading while loading.
base::FilePath extension_path = PackExtensionWithOptions(
test_data_dir_.AppendASCII("service_worker/worker_based_background/"
"events_to_stopped_extension"),
scoped_temp_dir.GetPath().AppendASCII("v1.crx"), pem_path,
base::FilePath());
const Extension* extension =
LoadExtension(extension_path, {.wait_for_registration_stored = true});
ASSERT_TRUE(extension);
EXPECT_EQ(kTestExtensionId, extension->id());
ProcessManager* pm = ProcessManager::Get(browser()->profile());
// TODO(crbug.com/41462506): This will break once keep alive counts
// for service workers are tracked by the Process Manager.
EXPECT_LT(pm->GetLazyKeepaliveCount(extension), 1);
EXPECT_TRUE(pm->GetLazyKeepaliveActivities(extension).empty());
EXPECT_TRUE(event_added_listener.WaitUntilSatisfied());
}
// After browser restarts, this test step ensures that opening a tab fires
// tabs.onCreated event listener to the extension without explicitly loading the
// extension. This is because the extension registered a listener for
// tabs.onMoved before browser restarted in PRE_EventsAfterRestart.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, EventsAfterRestart) {
// Verify there is no RenderProcessHost for the extension.
EXPECT_FALSE(ExtensionHasRenderProcessHost(kTestExtensionId));
ExtensionTestMessageListener moved_tab_listener("moved-tab");
// Add a tab, then move it.
content::WebContents* new_web_contents =
browsertest_util::AddTab(browser(), GURL(url::kAboutBlankURL));
EXPECT_TRUE(new_web_contents);
browser()->tab_strip_model()->MoveWebContentsAt(
browser()->tab_strip_model()->count() - 1, 0, false);
EXPECT_TRUE(moved_tab_listener.WaitUntilSatisfied());
}
constexpr char kListenerAdded[] = "listener-added";
using ServiceWorkerWebRequestEarlyListenerTest =
ServiceWorkerWithEarlyMessageListenerTest<kListenerAdded>;
IN_PROC_BROWSER_TEST_F(ServiceWorkerWebRequestEarlyListenerTest,
PRE_WebRequestAfterRestart) {
base::FilePath extension_path = test_data_dir_.AppendASCII("service_worker")
.AppendASCII("worker_based_background")
.AppendASCII("web_request_after_restart");
const Extension* extension =
LoadExtension(extension_path, {.wait_for_registration_stored = true});
ASSERT_TRUE(extension);
EXPECT_TRUE(WaitForMessage());
}
// After browser restarts, this test step ensures that navigating a tab fires
// the webRequest listener.
IN_PROC_BROWSER_TEST_F(ServiceWorkerWebRequestEarlyListenerTest,
WebRequestAfterRestart) {
// Wait for the page to load.
EXPECT_TRUE(WaitForMessage());
// Navigate and expect the listener in the extension to be triggered.
ResultCatcher catcher;
ASSERT_TRUE(ui_test_utils::NavigateToURL(
browser(), embedded_test_server()->GetURL("/empty.html")));
EXPECT_TRUE(catcher.GetNextResult()) << message_;
}
// Disabled on win due to flakiness: https://crbug.com/1127126.
#if BUILDFLAG(IS_WIN)
#define MAYBE_PRE_FilteredEventsAfterRestart \
DISABLED_PRE_FilteredEventsAfterRestart
#define MAYBE_FilteredEventsAfterRestart DISABLED_FilteredEventsAfterRestart
#else
#define MAYBE_PRE_FilteredEventsAfterRestart PRE_FilteredEventsAfterRestart
#define MAYBE_FilteredEventsAfterRestart FilteredEventsAfterRestart
#endif
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
MAYBE_PRE_FilteredEventsAfterRestart) {
ExtensionTestMessageListener listener_added("ready");
base::FilePath test_dir =
test_data_dir_.AppendASCII("service_worker/worker_based_background");
base::FilePath pem_path = test_dir.AppendASCII("test_extension.pem");
base::ScopedAllowBlockingForTesting allow_blocking;
base::ScopedTempDir scoped_temp_dir;
ASSERT_TRUE(scoped_temp_dir.CreateUniqueTempDir());
const Extension* extension = LoadExtension(
PackExtensionWithOptions(
test_dir.AppendASCII("filtered_events_after_restart"),
scoped_temp_dir.GetPath().AppendASCII("test_extension.crx"), pem_path,
base::FilePath()),
// Wait for the registration to be stored so that it's persistent
// before the test terminates.
{.wait_for_registration_stored = true});
ASSERT_TRUE(extension);
EXPECT_EQ(kTestExtensionId, extension->id());
ProcessManager* pm = ProcessManager::Get(browser()->profile());
// TODO(crbug.com/41462506): This will break once keep alive counts
// for service workers are tracked by the Process Manager.
EXPECT_LT(pm->GetLazyKeepaliveCount(extension), 1);
EXPECT_TRUE(pm->GetLazyKeepaliveActivities(extension).empty());
EXPECT_TRUE(listener_added.WaitUntilSatisfied());
}
// After browser restarts, this test step ensures that opening a tab fires
// tabs.onCreated event listener to the extension without explicitly loading the
// extension. This is because the extension registered a listener for
// tabs.onMoved before browser restarted in PRE_EventsAfterRestart.
//
// Disabled on win due to flakiness: https://crbug.com/1127126.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
MAYBE_FilteredEventsAfterRestart) {
// Verify there is no RenderProcessHost for the extension.
EXPECT_FALSE(ExtensionHasRenderProcessHost(kTestExtensionId));
// Create a tab to a.html, expect it to navigate to b.html. The service worker
// will see two webNavigation.onCommitted events.
GURL page_url = embedded_test_server()->GetURL(
"/extensions/api_test/service_worker/worker_based_background/"
"filtered_events_after_restart/"
"a.html");
ExtensionTestMessageListener worker_filtered_event_listener(
"PASS_FROM_WORKER");
worker_filtered_event_listener.set_failure_message("FAIL_FROM_WORKER");
content::WebContents* web_contents =
browsertest_util::AddTab(browser(), page_url);
EXPECT_TRUE(web_contents);
EXPECT_TRUE(worker_filtered_event_listener.WaitUntilSatisfied());
}
// Tests that chrome.browserAction.onClicked sees user gesture.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
BrowserActionUserGesture) {
// First, load |extension| first so that it has browserAction.onClicked
// listener registered.
ExtensionTestMessageListener listener_added("ready");
const Extension* extension = LoadExtension(
test_data_dir_.AppendASCII("service_worker/worker_based_background/"
"browser_action"));
ASSERT_TRUE(extension);
EXPECT_TRUE(listener_added.WaitUntilSatisfied());
ResultCatcher catcher;
// Click on browser action to start the test.
{
content::WebContents* web_contents =
browsertest_util::AddTab(browser(), GURL("about:blank"));
ASSERT_TRUE(web_contents);
ExtensionActionRunner::GetForWebContents(
browser()->tab_strip_model()->GetActiveWebContents())
->RunAction(extension, true);
}
EXPECT_TRUE(catcher.GetNextResult()) << message_;
}
// Tests that Service Worker notification handlers can call extension APIs that
// require user gesture to be present.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTestWithNotification,
ServiceWorkerNotificationClick) {
ResultCatcher catcher;
const Extension* extension = LoadExtension(
test_data_dir_.AppendASCII("service_worker/worker_based_background/"
"notification_click"));
ASSERT_TRUE(extension);
EXPECT_TRUE(catcher.GetNextResult()) << message_;
// Click on the Service Worker notification.
{
std::vector<message_center::Notification> notifications =
GetDisplayedNotifications();
ASSERT_EQ(1u, notifications.size());
display_service_tester_->SimulateClick(
NotificationHandler::Type::WEB_PERSISTENT, notifications[0].id(),
std::nullopt, std::nullopt);
}
EXPECT_TRUE(catcher.GetNextResult()) << message_;
}
// Tests chrome.permissions.request API.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, PermissionsAPI) {
// First, load |extension| first so that it has browserAction.onClicked
// listener registered.
ExtensionTestMessageListener worker_listener("ready");
const Extension* extension = LoadExtension(test_data_dir_.AppendASCII(
"service_worker/worker_based_background/permissions_api"));
ASSERT_TRUE(extension);
const ExtensionId extension_id = extension->id();
EXPECT_TRUE(worker_listener.WaitUntilSatisfied());
// "storage" permission is optional in |extension|, and isn't available right
// away.
EXPECT_FALSE(extension->permissions_data()->HasAPIPermission(
mojom::APIPermissionID::kStorage));
auto dialog_action_reset =
PermissionsRequestFunction::SetDialogActionForTests(
PermissionsRequestFunction::DialogAction::kAutoConfirm);
ResultCatcher catcher;
// Click on browser action to start the test.
{
content::WebContents* web_contents =
browsertest_util::AddTab(browser(), GURL("about:blank"));
ASSERT_TRUE(web_contents);
ExtensionActionRunner::GetForWebContents(
browser()->tab_strip_model()->GetActiveWebContents())
->RunAction(extension, true);
}
EXPECT_TRUE(catcher.GetNextResult()) << message_;
// Expect the permission ("storage") to be available now.
EXPECT_TRUE(extension->permissions_data()->HasAPIPermission(
mojom::APIPermissionID::kStorage));
}
// Tests that loading a component MV3 extension succeeds.
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest, Component) {
ASSERT_TRUE(
RunExtensionTest("service_worker/worker_based_background/component", {},
{.load_as_component = true}))
<< message_;
}
// Tests that two extensions with the same ServiceWorkerContext* can be
// disabled successfully. This test ensures that the DCHECK in
// ServiceWorkerTaskQueue::StopObserving does not fail in such a scenario.
// Regression test for https://crbug.com/1223476
IN_PROC_BROWSER_TEST_F(ServiceWorkerBasedBackgroundTest,
ObserveServiceWorkerContext) {
static constexpr char kManifest[] = R"({
"name": "Test",
"manifest_version": 3,
"version": "0.1",
"background": {"service_worker": "worker.js"}
})";
static constexpr char kScript[] = "";
TestExtensionDir test_dir1;
test_dir1.WriteManifest(kManifest);
test_dir1.WriteFile(FILE_PATH_LITERAL("worker.js"), kScript);
scoped_refptr<const Extension> extension1 =
LoadExtension(test_dir1.UnpackedPath());
ASSERT_TRUE(extension1);
TestExtensionDir test_dir2;
test_dir2.WriteManifest(kManifest);
test_dir2.WriteFile(FILE_PATH_LITERAL("worker.js"), kScript);
scoped_refptr<const Extension> extension2 =
LoadExtension(test_dir2.UnpackedPath());
ASSERT_TRUE(extension2);
EXPECT_NE(extension1->id(), extension2->id());
extension_registrar()->DisableExtension(
extension1->id(), {disable_reason::DISABLE_USER_ACTION});
extension_registrar()->DisableExtension(
extension2->id(), {disable_reason::DISABLE_USER_ACTION});
}
constexpr char kReady[] = "ready";
class ServiceWorkerTestWithEarlyReadyMesssage
: public ServiceWorkerWithEarlyMessageListenerTest<kReady> {
public:
ServiceWorkerTestWithEarlyReadyMesssage() = default;
bool WaitForRegistrationMismatchMitigation() {
return registration_mismatch_observer_
.WaitForRegistrationMismatchMitigation(kExtensionId);
}
base::HistogramTester& histogram_tester() { return histogram_tester_; }
protected:
static constexpr char kExtensionId[] = "gnchfmandajfaiajniicagenfmhdjila";
private:
TestServiceWorkerTaskQueueObserver registration_mismatch_observer_;
base::HistogramTester histogram_tester_;
};
// Tests that missing SW registration is re-registered upon extension
// activation.
//
// In PRE_ test, extension is loaded and then its SW is unregistered. After
// browser restart, the tests verifies that the extension still runs after
// browser restart.
//
// Regression test for crbug.com/1271154.
IN_PROC_BROWSER_TEST_F(ServiceWorkerTestWithEarlyReadyMesssage,
PRE_MissingRegistrationMitigated) {
const Extension* extension = LoadExtension(
test_data_dir_.AppendASCII(
"service_worker/worker_based_background/activate_ensures_register"),
{.wait_for_registration_stored = true});
ASSERT_TRUE(extension);
EXPECT_EQ(kExtensionId, extension->id());
ASSERT_TRUE(WaitForMessage());
base::RunLoop().RunUntilIdle();
// Since we wait for the registration to be stored (and run until idle,
// guaranteeing all observers see the result), we should now have a stored
// version for the service worker in the extensions system.
ServiceWorkerTaskQueue* service_worker_task_queue =
ServiceWorkerTaskQueue::Get(browser()->profile());
base::Version stored_version =
service_worker_task_queue->RetrieveRegisteredServiceWorkerVersion(
extension->id());
{
// Bypass our unregistration protections to unregister the worker. Though
// we largely prevent this, it could still happen by means of e.g.
// disk or pref corruption.
base::RunLoop run_loop;
content::ServiceWorkerContext* context = GetServiceWorkerContext();
// The service worker is registered at the root scope.
const GURL& scope = extension->url();
base::AutoReset<const GURL*> allow_worker_unregistration =
ChromeContentBrowserClientExtensionsPart::
AllowServiceWorkerUnregistrationForScopeForTesting(&scope);
context->UnregisterServiceWorker(
scope, blink::StorageKey::CreateFirstParty(extension->origin()),
base::BindLambdaForTesting(
[&run_loop](blink::ServiceWorkerStatusCode status) {
run_loop.QuitWhenIdle();
}));
run_loop.Run();
}
// The version should still be stored in the extension system.
stored_version =
service_worker_task_queue->RetrieveRegisteredServiceWorkerVersion(
extension->id());
EXPECT_TRUE(stored_version.IsValid());
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerTestWithEarlyReadyMesssage,
MissingRegistrationMitigated) {
WaitForMessage();
EXPECT_EQ(1,
histogram_tester().GetBucketCount(
"Extensions.ServiceWorkerBackground.RegistrationWhenExpected",
false));
EXPECT_EQ(
1, histogram_tester().GetBucketCount(
"Extensions.ServiceWorkerBackground.RegistrationMismatchLocation",
mojom::ManifestLocation::kUnpacked));
EXPECT_TRUE(WaitForRegistrationMismatchMitigation());
EXPECT_EQ(
1,
histogram_tester().GetBucketCount(
"Extensions.ServiceWorkerBackground.RegistrationMismatchMitigated2",
true));
}
// Tests that an extension's service worker can't be used to relax the extension
// CSP.
IN_PROC_BROWSER_TEST_P(ServiceWorkerWithManifestVersionTest,
ExtensionCSPModification) {
ExtensionTestMessageListener worker_listener("ready");
const Extension* extension = LoadExtensionInternal(test_data_dir_.AppendASCII(
"service_worker/worker_based_background/extension_csp_modification"));
ASSERT_TRUE(extension);
const ExtensionId extension_id = extension->id();
ASSERT_TRUE(worker_listener.WaitUntilSatisfied());
const char* kDefaultCSP = GetParam() == ManifestVersion::kTwo
? "script-src 'self' blob: filesystem:; "
"object-src 'self' blob: filesystem:;"
: "script-src 'self';";
ExtensionTestMessageListener csp_modified_listener(kDefaultCSP);
csp_modified_listener.set_extension_id(extension_id);
ASSERT_TRUE(ui_test_utils::NavigateToURL(
browser(), extension->ResolveExtensionURL("extension_page.html")));
EXPECT_TRUE(csp_modified_listener.WaitUntilSatisfied());
// Ensure the inline script is not executed because we ensure that the
// extension's CSP is applied in the renderer (even though the service worker
// removed it).
constexpr char kScript[] = R"(
(() => {
try {
scriptExecuted;
return 'FAIL';
} catch (e) {
const result = e.message.includes('scriptExecuted is not defined')
? 'PASS' : 'FAIL: ' + e.message;
return result;
}
})();
)";
content::WebContents* web_contents =
browser()->tab_strip_model()->GetActiveWebContents();
EXPECT_EQ("PASS", content::EvalJs(web_contents, kScript));
// Also ensure that a local scheme subframe in the extension page correctly
// inherits the extension CSP.
content::RenderFrameHost* iframe =
content::ChildFrameAt(web_contents->GetPrimaryMainFrame(), 0);
ASSERT_TRUE(iframe);
EXPECT_EQ("PASS", content::EvalJs(iframe, kScript));
}
INSTANTIATE_TEST_SUITE_P(,
ServiceWorkerWithManifestVersionTest,
::testing::Values(ManifestVersion::kTwo,
ManifestVersion::kThree));
// Tests that console messages logged by extension service workers, both via
// the typical console.* methods and via our custom bindings console, are
// passed through the normal ServiceWorker console messaging and are
// observable.
IN_PROC_BROWSER_TEST_F(ServiceWorkerLazyBackgroundTest, ConsoleLogging) {
// A helper class to wait for a particular message to be logged from a
// ServiceWorker.
class ConsoleMessageObserver : public content::ServiceWorkerContextObserver {
public:
ConsoleMessageObserver(content::BrowserContext* browser_context,
std::u16string expected_message)
: expected_message_(std::move(expected_message)) {
scoped_observation_.Observe(GetServiceWorkerContext(browser_context));
}
ConsoleMessageObserver(const ConsoleMessageObserver&) = delete;
ConsoleMessageObserver& operator=(const ConsoleMessageObserver&) = delete;
~ConsoleMessageObserver() override = default;
void Wait() { run_loop_.Run(); }
private:
// ServiceWorkerContextObserver:
void OnReportConsoleMessage(
int64_t version_id,
const GURL& scope,
const content::ConsoleMessage& message) override {
// NOTE: We could check the version_id, but it shouldn't be necessary with
// the expected messages we're verifying (they're uncommon enough).
if (message.message != expected_message_)
return;
scoped_observation_.Reset();
run_loop_.QuitWhenIdle();
}
std::u16string expected_message_;
base::RunLoop run_loop_;
base::ScopedObservation<content::ServiceWorkerContext,
content::ServiceWorkerContextObserver>
scoped_observation_{this};
};
TestExtensionDir test_dir;
test_dir.WriteManifest(
R"({
"name": "Test Extension",
"manifest_version": 2,
"version": "0.1",
"background": {"service_worker": "script.js"}
})");
constexpr char kScript[] =
R"(// First, log a message using the normal, built-in blink console.
console.log('test message');
chrome.test.runTests([
function justATest() {
// Next, we use the "Console" object from
// extensions/renderer/console.cc, which is used by custom bindings
// so that it isn't tampered with by untrusted script. The test
// custom bindings log a message whenever a test is passed, so we
// force a log by just passing this test.
chrome.test.succeed();
}
]);)";
test_dir.WriteFile(FILE_PATH_LITERAL("script.js"), kScript);
// The observer for the built-in blink console.
ConsoleMessageObserver default_console_observer(profile(), u"test message");
// The observer for our custom extensions bindings console.
ConsoleMessageObserver custom_console_observer(profile(),
u"[SUCCESS] justATest");
const Extension* extension = LoadExtension(test_dir.UnpackedPath());
ASSERT_TRUE(extension);
default_console_observer.Wait();
custom_console_observer.Wait();
// If we receive both messages, we passed!
}
class ServiceWorkerCheckBindingsTest
: public ServiceWorkerTest,
public testing::WithParamInterface<version_info::Channel> {
public:
ServiceWorkerCheckBindingsTest() = default;
ServiceWorkerCheckBindingsTest(const ServiceWorkerCheckBindingsTest&) =
delete;
ServiceWorkerCheckBindingsTest& operator=(
const ServiceWorkerCheckBindingsTest&) = delete;
~ServiceWorkerCheckBindingsTest() override = default;
};
// Load an extension in each allowed channel and check that the expected
// bindings are available.
IN_PROC_BROWSER_TEST_P(ServiceWorkerCheckBindingsTest, BindingsAvailability) {
static constexpr char kManifest[] =
R"({
"name": "Service Worker-based background script",
"version": "0.1",
"manifest_version": 2,
"description": "Test that bindings are available.",
"permissions": ["storage"],
"background": {"service_worker": "worker.js"}
})";
static constexpr char kScript[] =
R"(var chromeAPIAvailable = !!chrome;
var storageAPIAvailable = chromeAPIAvailable && !!chrome.storage;
var tabsAPIAvailable = chromeAPIAvailable && !!chrome.tabs;
var testAPIAvailable = chromeAPIAvailable && !!chrome.test;
if (chromeAPIAvailable && storageAPIAvailable && tabsAPIAvailable &&
testAPIAvailable) {
chrome.test.sendMessage('SUCCESS');
} else {
console.log('chromeAPIAvailable: ' + chromeAPIAvailable);
console.log('storageAPIAvailable: ' + storageAPIAvailable);
console.log('tabsAPIAvailable: ' + tabsAPIAvailable);
console.log('testAPIAvailable: ' + testAPIAvailable);
chrome.test.sendMessage('FAILURE');
})";
TestExtensionDir test_dir;
test_dir.WriteManifest(kManifest);
test_dir.WriteFile(FILE_PATH_LITERAL("worker.js"), kScript);
const base::FilePath path = test_dir.UnpackedPath();
// Wait for the extension to load and the script to finish.
ExtensionTestMessageListener result_listener("SUCCESS");
result_listener.set_failure_message("FAILURE");
scoped_refptr<const Extension> extension =
LoadExtension(test_dir.UnpackedPath());
ASSERT_TRUE(extension.get());
EXPECT_TRUE(BackgroundInfo::IsServiceWorkerBased(extension.get()));
EXPECT_TRUE(result_listener.WaitUntilSatisfied());
}
INSTANTIATE_TEST_SUITE_P(Unknown,
ServiceWorkerCheckBindingsTest,
::testing::Values(version_info::Channel::UNKNOWN,
version_info::Channel::CANARY,
version_info::Channel::DEV,
version_info::Channel::BETA,
version_info::Channel::STABLE));
} // namespace extensions
|