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
|
# mypy: allow-untyped-defs
import configparser
import json
import os
import platform
import re
import shutil
import stat
import subprocess
import tempfile
from abc import ABCMeta, abstractmethod
from datetime import datetime, timedelta, timezone
from shutil import which
from typing import Any, Dict, Optional, Tuple
from urllib.parse import urlsplit, quote
import html5lib
import requests
from packaging.specifiers import SpecifierSet
from .utils import (
call,
get,
get_download_to_descriptor,
rmtree,
sha256sum,
untar,
unzip,
)
from .wpt import venv_dir
uname = platform.uname()
# The root URL for Chrome for Testing API endpoints.
CHROME_FOR_TESTING_ROOT_URL = "https://googlechromelabs.github.io/chrome-for-testing/"
# File name containing a matching ChromeDriver download URL for a specific Chrome download.
CHROMEDRIVER_SAVED_DOWNLOAD_FILE = "matching_chromedriver_url.txt"
# the rootUrl for the firefox-ci deployment of Taskcluster
FIREFOX_CI_ROOT_URL = 'https://firefox-ci-tc.services.mozilla.com'
def _get_fileversion(binary, logger=None):
command = "(Get-Item -ErrorAction Stop '%s').VersionInfo.FileVersion" % binary.replace("'", "''")
try:
return call("powershell.exe", command).strip()
except (subprocess.CalledProcessError, OSError):
if logger is not None:
logger.warning("Failed to call %s in PowerShell" % command)
return None
def get_ext(filename):
"""Get the extension from a filename with special handling for .tar.foo"""
name, ext = os.path.splitext(filename)
if name.endswith(".tar"):
ext = ".tar%s" % ext
return ext
def get_download_filename(resp, default=None):
"""Get the filename from a requests.Response, or default"""
filename = None
content_disposition = resp.headers.get("content-disposition")
if content_disposition:
filenames = re.findall("filename=(.+)", content_disposition)
if filenames:
filename = filenames[0]
if not filename:
filename = urlsplit(resp.url).path.rsplit("/", 1)[1]
return filename or default
def get_taskcluster_artifact(index, path):
TC_INDEX_BASE = FIREFOX_CI_ROOT_URL + "/api/index/v1/"
resp = get(TC_INDEX_BASE + "task/%s/artifacts/%s" % (index, path))
resp.raise_for_status()
return resp
def get_file_github(repo: str, ref: str, path: str) -> bytes:
data: bytes = get(f"https://raw.githubusercontent.com/{repo}/{ref}/{path}").content # type: ignore
return data
class Browser:
__metaclass__ = ABCMeta
def __init__(self, logger):
self.logger = logger
def _get_browser_download_dir(self, dest, channel):
if dest is None:
return self._get_browser_binary_dir(dest, channel)
return dest
def _get_browser_binary_dir(self, dest, channel):
if dest is None:
# os.getcwd() doesn't include the venv path
dest = os.path.join(os.getcwd(), venv_dir())
dest = os.path.join(dest, "browsers", channel)
if not os.path.exists(dest):
os.makedirs(dest)
return dest
def download_from_url(
self, url, dest=None, channel=None, rename=None, default_name="download"
):
"""Download a URL into a dest/channel
:param url: The URL to download
:param dest: Directory in which to put the dowloaded
:param channel: Browser channel to append to the dest
:param rename: Optional name for the download; the original extension
is preserved
:param default_name: The default name for the download if none is
provided and none can be found from the network
:return: The path to the downloaded package/installer
"""
self.logger.info("Downloading from %s" % url)
dest = self._get_browser_download_dir(dest, channel)
resp = get(url)
filename = get_download_filename(resp, default_name)
if rename:
filename = "%s%s" % (rename, get_ext(filename))
output_path = os.path.join(dest, filename)
with open(output_path, "wb") as f:
for chunk in resp.iter_content(chunk_size=64 * 1024):
f.write(chunk)
return output_path
@abstractmethod
def download(self, dest=None, channel=None, rename=None):
"""Download a package or installer for the browser
:param dest: Directory in which to put the dowloaded package
:param channel: Browser channel to download
:param rename: Optional name for the downloaded package; the original
extension is preserved.
:return: The path to the downloaded package/installer
"""
return NotImplemented
@abstractmethod
def install(self, dest=None, channel=None):
"""Download and install the browser.
This method usually calls download().
:param dest: Directory in which to install the browser
:param channel: Browser channel to install
:return: The path to the installed browser
"""
return NotImplemented
@abstractmethod
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
"""Download and install the WebDriver implementation for this browser.
:param dest: Directory in which to install the WebDriver
:param channel: Browser channel to install
:param browser_binary: The path to the browser binary
:return: The path to the installed WebDriver
"""
return NotImplemented
@abstractmethod
def find_binary(self, venv_path=None, channel=None):
"""Find the binary of the browser.
If the WebDriver for the browser is able to find the binary itself, this
method doesn't need to be implemented, in which case NotImplementedError
is suggested to be raised to prevent accidental use.
"""
return NotImplemented
@abstractmethod
def find_webdriver(self, venv_path=None, channel=None):
"""Find the binary of the WebDriver."""
return NotImplemented
@abstractmethod
def version(self, binary=None, webdriver_binary=None):
"""Retrieve the release version of the installed browser."""
return NotImplemented
@abstractmethod
def requirements(self):
"""Name of the browser-specific wptrunner requirements file"""
return NotImplemented
class Firefox(Browser):
"""Firefox-specific interface.
Includes installation, webdriver installation, and wptrunner setup methods.
"""
product = "firefox"
binary = "browsers/firefox/firefox"
requirements = "requirements_firefox.txt"
platform = {
"Linux": "linux",
"Windows": "win",
"Darwin": "macos"
}.get(uname[0])
application_name = {
"stable": "Firefox.app",
"beta": "Firefox.app",
"nightly": "Firefox Nightly.app"
}
def platform_string_geckodriver(self):
if self.platform is None:
raise ValueError("Unable to construct a valid Geckodriver package name for current platform")
if self.platform in ("linux", "win"):
bits = "64" if uname[4] == "x86_64" else "32"
elif self.platform == "macos" and uname.machine == "arm64":
bits = "-aarch64"
else:
bits = ""
return "%s%s" % (self.platform, bits)
def download(self, dest=None, channel="nightly", rename=None):
product = {
"nightly": "firefox-nightly-latest-ssl",
"beta": "firefox-beta-latest-ssl",
"stable": "firefox-latest-ssl"
}
os_builds = {
("linux", "x86"): "linux",
("linux", "x86_64"): "linux64",
("win", "x86"): "win",
("win", "AMD64"): "win64",
("macos", "x86_64"): "osx",
("macos", "arm64"): "osx",
}
os_key = (self.platform, uname[4])
dest = self._get_browser_download_dir(dest, channel)
if channel not in product:
raise ValueError("Unrecognised release channel: %s" % channel)
if os_key not in os_builds:
raise ValueError("Unsupported platform: %s %s" % os_key)
url = "https://download.mozilla.org/?product=%s&os=%s&lang=en-US" % (product[channel],
os_builds[os_key])
self.logger.info("Downloading Firefox from %s" % url)
resp = get(url)
filename = get_download_filename(resp, "firefox.tar.bz2")
if rename:
filename = "%s%s" % (rename, get_ext(filename))
installer_path = os.path.join(dest, filename)
with open(installer_path, "wb") as f:
f.write(resp.content)
return installer_path
def install(self, dest=None, channel="nightly"):
"""Install Firefox."""
import mozinstall
dest = self._get_browser_binary_dir(dest, channel)
filename = os.path.basename(dest)
installer_path = self.download(dest, channel)
try:
mozinstall.install(installer_path, dest)
except mozinstall.mozinstall.InstallError:
if self.platform == "macos" and os.path.exists(os.path.join(dest, self.application_name.get(channel, "Firefox Nightly.app"))):
# mozinstall will fail if nightly is already installed in the venv because
# mac installation uses shutil.copy_tree
mozinstall.uninstall(os.path.join(dest, self.application_name.get(channel, "Firefox Nightly.app")))
mozinstall.install(filename, dest)
else:
raise
os.remove(installer_path)
return self.find_binary_path(dest)
def find_binary_path(self, path=None, channel="nightly"):
"""Looks for the firefox binary in the virtual environment"""
if path is None:
path = self._get_browser_binary_dir(None, channel)
binary = None
if self.platform == "linux":
binary = which("firefox", path=os.path.join(path, "firefox"))
elif self.platform == "win":
import mozinstall
try:
binary = mozinstall.get_binary(path, "firefox")
except mozinstall.InvalidBinary:
# ignore the case where we fail to get a binary
pass
elif self.platform == "macos":
binary = which("firefox",
path=os.path.join(path,
self.application_name.get(channel, "Firefox Nightly.app"),
"Contents", "MacOS"))
return binary
def find_binary(self, venv_path=None, channel="nightly"):
path = self._get_browser_binary_dir(venv_path, channel)
binary = self.find_binary_path(path, channel)
if not binary and self.platform == "win":
winpaths = [os.path.expandvars("$SYSTEMDRIVE\\Program Files\\Mozilla Firefox"),
os.path.expandvars("$SYSTEMDRIVE\\Program Files (x86)\\Mozilla Firefox")]
for winpath in winpaths:
binary = self.find_binary_path(winpath, channel)
if binary is not None:
break
if not binary and self.platform == "macos":
macpaths = ["/Applications/Firefox Nightly.app/Contents/MacOS",
os.path.expanduser("~/Applications/Firefox Nightly.app/Contents/MacOS"),
"/Applications/Firefox Developer Edition.app/Contents/MacOS",
os.path.expanduser("~/Applications/Firefox Developer Edition.app/Contents/MacOS"),
"/Applications/Firefox.app/Contents/MacOS",
os.path.expanduser("~/Applications/Firefox.app/Contents/MacOS")]
return which("firefox", path=os.pathsep.join(macpaths))
if binary is None:
return which("firefox")
return binary
def find_certutil(self):
path = which("certutil")
if path is None:
return None
if os.path.splitdrive(os.path.normcase(path))[1].split(os.path.sep) == ["", "windows", "system32", "certutil.exe"]:
return None
return path
def find_webdriver(self, venv_path=None, channel=None):
return which("geckodriver")
def extract_version_number(self, version_string: str) -> Tuple[Optional[str], str]:
version_parser = re.compile(r"^(\d+)\.(\d+)(?:\.(\d+))?((a|b)\d+)?")
m = version_parser.match(version_string)
if not m:
return None, "nightly"
major, minor, patch, pre, channel_id = m.groups()
version = f"{major}.{minor}"
if patch is not None:
version += f".{patch}"
if pre is not None:
version += pre
channel = {"a": "nightly", "b": "beta"}.get(channel_id, "stable")
return version, channel
def get_version_and_channel(self, binary: str) -> Tuple[Optional[str], str, Optional[str]]:
application_ini_path = os.path.join(os.path.dirname(binary), "application.ini")
if os.path.exists(application_ini_path):
try:
return self.get_version_and_channel_application_ini(application_ini_path)
except ValueError as e:
self.logger.info(f"Reading application ini file failed: {e}")
# Fall back to calling the binary
version_string: str = call(binary, "--version").strip() # type: ignore
version_re = re.compile(r"Mozilla Firefox (.*)")
m = version_re.match(version_string)
if not m:
return None, "nightly", None
version, channel = self.extract_version_number(m.group(1))
return version, channel, None
def get_version_and_channel_application_ini(self, path: str) -> Tuple[Optional[str], str, Optional[str]]:
"""Try to read application version from an ini file
This doesn't work in all cases e.g. local builds don't have
all the information, or builds where the binary path is a shell
script or similar."""
config = configparser.ConfigParser()
paths = config.read(path)
if path not in paths:
raise ValueError("Failed to read config file")
version = config.get("App", "Version", fallback=None)
if version is None:
raise ValueError("Failed to find Version key")
version, channel = self.extract_version_number(version)
rev = None
if channel == "nightly":
source_repo = config.get("App", "SourceRepository", fallback=None)
commit = config.get("App", "SourceStamp", fallback=None)
if source_repo is not None and commit is not None:
if source_repo.startswith("https://hg.mozilla.org"):
try:
commit_data: Dict[str, Any] = get(
f"https://hg-edge.mozilla.org/integration/autoland/json-rev/{commit}"
).json() # type: ignore
rev = commit_data.get("git_commit")
except Exception:
pass
else:
rev = commit
return version, channel, rev
def get_git_ref(self, version: str, channel: str, rev: Optional[str]) -> str:
if rev is not None:
return rev
if channel == "stable":
return "FIREFOX_%s_RELEASE" % version.replace(".", "_")
if channel == "beta":
ref_prefix = "FIREFOX_%s" % version.replace(".", "_")
tags = []
build_re = re.compile(fr"{ref_prefix}_BUILD(\d)+")
for tag_data in get(
f"https://api.github.com/repos/mozilla-firefox/firefox/git/matching-refs/tags/{ref_prefix}"
).json(): # type: ignore
tag = tag_data["ref"].rsplit("/", 1)[1]
if tag.endswith("_RELEASE"):
tags = [(0, tag)]
break
m = build_re.match(tag)
if m:
tags.append((int(m.group(1)), tag))
tags.sort()
if not tags:
raise ValueError(f"No tag found for {version} beta")
return f"{tags[-1][1]}"
return "main"
def get_profile_github(self, version: str, channel: str, dest: str, rev: Optional[str]) -> None:
"""Read the testing/profiles data from firefox source on GitHub"""
# There are several possible approaches here, none of which are great:
# 1. Shallow, sparse, clone of the repo with no history and just the testing/profiles
# directory. This is too slow to be usable.
# 2. Use the Github repository contents API to read all the files under that directory.
# This requires auth to not run into rate limits.
# 3. Gitub tree API has basically the same problems
# 4. Download a full archive of the relevant commit from Github and extract only the
# required directory. This is also too slow to be useful.
#
# In the end we use githubusercontent.com, which has the problem that it doesn't allow
# directory listings. So we have to hardcode in all the files we need. In particular
# for each profile we are currently just downloading the user.js file and ignoring the
# extensions/ directory, which is currently unused.
ref = self.get_git_ref(version, channel, rev)
file_data = {}
profiles_bytes = get_file_github("mozilla-firefox/firefox", ref, "testing/profiles/profiles.json")
profiles = json.loads(profiles_bytes)
file_data["profiles.json"] = profiles_bytes
for subdir in profiles["web-platform-tests"]:
rel_path = os.path.join(subdir, "user.js")
file_data[rel_path] = get_file_github("mozilla-firefox/firefox",
ref,
f"testing/profiles/{subdir}/user.js")
for path, data in file_data.items():
dest_path = os.path.join(dest, path)
os.makedirs(os.path.dirname(dest_path), exist_ok=True)
with open(dest_path, "wb") as f:
f.write(data)
def install_prefs(self, binary, dest=None, channel=None):
if binary and not binary.endswith(".apk"):
version, channel_, rev = self.get_version_and_channel(binary)
if channel is not None and channel != channel_:
# Beta doesn't always seem to have the b in the version string, so allow the
# manually supplied value to override the one from the binary
self.logger.warning("Supplied channel doesn't match binary, using supplied channel")
elif channel is None:
channel = channel_
else:
rev = None
version = None
if dest is None:
dest = os.curdir
dest = os.path.join(dest, "profiles", rev if rev is not None else channel)
if version:
dest = os.path.join(dest, version)
have_cache = False
if os.path.exists(dest) and os.path.exists(os.path.join(dest, "profiles.json")):
if channel != "nightly":
have_cache = True
else:
now = datetime.now()
have_cache = (datetime.fromtimestamp(os.stat(dest).st_mtime) >
now - timedelta(days=1))
# If we don't have a recent download, grab and extract the latest one
if not have_cache:
if os.path.exists(dest):
rmtree(dest)
os.makedirs(dest)
self.get_profile_github(version, channel, dest, rev)
self.logger.info(f"Test prefs downloaded to {dest}")
else:
self.logger.info(f"Using cached test prefs from {dest}")
return dest
def _latest_geckodriver_version(self):
"""Get and return latest version number for geckodriver."""
# This is used rather than an API call to avoid rate limits
tags = call("git", "ls-remote", "--tags", "--refs",
"https://github.com/mozilla/geckodriver.git")
release_re = re.compile(r".*refs/tags/v(\d+)\.(\d+)\.(\d+)")
latest_release = (0, 0, 0)
for item in tags.split("\n"):
m = release_re.match(item)
if m:
version = tuple(int(item) for item in m.groups())
if version > latest_release:
latest_release = version
assert latest_release != (0, 0, 0)
return "v%s.%s.%s" % tuple(str(item) for item in latest_release)
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
"""Install latest Geckodriver."""
if dest is None:
dest = os.getcwd()
path = None
if channel == "nightly":
path = self.install_geckodriver_nightly(dest)
if path is None:
self.logger.warning("Nightly webdriver not found; falling back to release")
if path is None:
version = self._latest_geckodriver_version()
format = "zip" if uname[0] == "Windows" else "tar.gz"
self.logger.debug("Latest geckodriver release %s" % version)
url = ("https://github.com/mozilla/geckodriver/releases/download/%s/geckodriver-%s-%s.%s" %
(version, version, self.platform_string_geckodriver(), format))
if format == "zip":
unzip(get(url).raw, dest=dest)
else:
untar(get(url).raw, dest=dest)
path = which("geckodriver", path=dest)
assert path is not None
self.logger.info("Installed %s" %
subprocess.check_output([path, "--version"]).splitlines()[0])
return path
def install_geckodriver_nightly(self, dest):
self.logger.info("Attempting to install webdriver from nightly")
platform_bits = ("64" if uname[4] == "x86_64" else
("32" if self.platform == "win" else ""))
tc_platform = "%s%s" % (self.platform, platform_bits)
archive_ext = ".zip" if uname[0] == "Windows" else ".tar.gz"
archive_name = "public/build/geckodriver%s" % archive_ext
try:
resp = get_taskcluster_artifact(
"gecko.v2.mozilla-central.latest.geckodriver.%s" % tc_platform,
archive_name)
except Exception:
self.logger.info("Geckodriver download failed")
return
if archive_ext == ".zip":
unzip(resp.raw, dest)
else:
untar(resp.raw, dest)
exe_ext = ".exe" if uname[0] == "Windows" else ""
path = os.path.join(dest, "geckodriver%s" % exe_ext)
self.logger.info("Extracted geckodriver to %s" % path)
return path
def version(self, binary=None, webdriver_binary=None):
"""Retrieve the release version of the installed browser."""
version_string = call(binary, "--version").strip()
m = re.match(r"Mozilla Firefox (.*)", version_string)
if not m:
return None
return m.group(1)
class FirefoxAndroid(Browser):
"""Android-specific Firefox interface."""
product = "firefox_android"
requirements = "requirements_firefox.txt"
def __init__(self, logger):
super().__init__(logger)
self.apk_path = None
self._fx_browser = Firefox(self.logger)
def download(self, dest=None, channel=None, rename=None):
if dest is None:
dest = os.pwd
resp = get_taskcluster_artifact(
"gecko.v2.mozilla-central.shippable.latest.mobile.android-x86_64-opt",
"public/build/geckoview-test_runner.apk")
filename = "geckoview-test_runner.apk"
if rename:
filename = "%s%s" % (rename, get_ext(filename)[1])
self.apk_path = os.path.join(dest, filename)
with open(self.apk_path, "wb") as f:
f.write(resp.content)
return self.apk_path
def install(self, dest=None, channel=None):
return self.download(dest, channel)
def install_prefs(self, binary, dest=None, channel=None):
return self._fx_browser.install_prefs(binary, dest, channel)
def find_binary(self, venv_path=None, channel=None):
return self.apk_path
def find_webdriver(self, venv_path=None, channel=None):
return self._fx_browser.find_webdriver(venv_path, channel)
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
return self._fx_browser.install_webdriver(dest, channel, None)
def version(self, binary=None, webdriver_binary=None):
return None
class ChromeChromiumBase(Browser):
"""
Chrome/Chromium base Browser class for shared functionality between Chrome and Chromium
For a detailed description on the installation and detection of these browser components,
see https://web-platform-tests.org/running-tests/chrome-chromium-installation-detection.html
"""
requirements: Optional[str] = "requirements_chromium.txt"
platform = {
"Linux": "Linux",
"Windows": "Win",
"Darwin": "Mac",
}.get(uname[0])
def _build_snapshots_url(self, revision, filename):
return ("https://storage.googleapis.com/chromium-browser-snapshots/"
f"{self._chromium_platform_string}/{revision}/{filename}")
def _get_latest_chromium_revision(self):
"""Returns latest Chromium revision available for download."""
# This is only used if the user explicitly passes "latest" for the revision flag.
# The pinned revision is used by default to avoid unexpected failures as versions update.
revision_url = ("https://storage.googleapis.com/chromium-browser-snapshots/"
f"{self._chromium_platform_string}/LAST_CHANGE")
return get(revision_url).text.strip()
def _get_pinned_chromium_revision(self):
"""Returns the pinned Chromium revision number."""
return get("https://storage.googleapis.com/wpt-versions/pinned_chromium_revision").text.strip()
def _get_chromium_revision(self, filename=None, version=None):
"""Retrieve a valid Chromium revision to download a browser component."""
# If a specific version is passed as an argument, we will use it.
if version is not None:
# Detect a revision number based on the version passed.
revision = self._get_base_revision_from_version(version)
if revision is not None:
# File name is needed to test if request is valid.
url = self._build_snapshots_url(revision, filename)
try:
# Check the status without downloading the content (this is a streaming request).
get(url)
return revision
except requests.RequestException:
self.logger.warning("404: Unsuccessful attempt to download file "
f"based on version. {url}")
# If no URL was used in a previous install
# and no version was passed, use the pinned Chromium revision.
revision = self._get_pinned_chromium_revision()
# If the url is successfully used to download/install, it will be used again
# if another component is also installed during this run (browser/webdriver).
return revision
def _get_base_revision_from_version(self, version):
"""Get a Chromium revision number that is associated with a given version."""
# This is not the single revision associated with the version,
# but instead is where it branched from. Chromium revisions are just counting
# commits on the master branch, there are no Chromium revisions for branches.
version = self._remove_version_suffix(version)
# Try to find the Chromium build with the same revision.
try:
omaha = get(f"https://omahaproxy.appspot.com/deps.json?version={version}").json()
detected_revision = omaha['chromium_base_position']
return detected_revision
except requests.RequestException:
self.logger.debug("Unsuccessful attempt to detect revision based on version")
return None
def _remove_existing_chromedriver_binary(self, path):
"""Remove an existing ChromeDriver for this product if it exists
in the virtual environment.
"""
# There may be an existing chromedriver binary from a previous install.
# To provide a clean install experience, remove the old binary - this
# avoids tricky issues like unzipping over a read-only file.
existing_chromedriver_path = which("chromedriver", path=path)
if existing_chromedriver_path:
self.logger.info(f"Removing existing ChromeDriver binary: {existing_chromedriver_path}")
os.chmod(existing_chromedriver_path, stat.S_IWUSR)
os.remove(existing_chromedriver_path)
def _remove_version_suffix(self, version):
"""Removes channel suffixes from Chrome/Chromium version string (e.g. " dev")."""
return version.split(' ')[0]
@property
def _chromedriver_platform_string(self):
"""Returns a string that represents the suffix of the ChromeDriver
file name when downloaded from Chromium Snapshots.
"""
if self.platform == "Linux":
bits = "64" if uname[4] == "x86_64" else "32"
elif self.platform == "Mac":
bits = "64"
elif self.platform == "Win":
bits = "32"
return f"{self.platform.lower()}{bits}"
@property
def _chromium_platform_string(self):
"""Returns a string that is used for the platform directory in Chromium Snapshots"""
if (self.platform == "Linux" or self.platform == "Win") and uname[4] == "x86_64":
return f"{self.platform}_x64"
if self.platform == "Mac" and uname.machine == "arm64":
return "Mac_Arm"
return self.platform
def find_webdriver(self, venv_path=None, channel=None, browser_binary=None):
if venv_path:
venv_path = os.path.join(venv_path, self.product)
return which("chromedriver", path=venv_path)
def install_mojojs(self, dest, browser_binary):
"""Install MojoJS web framework."""
# MojoJS is platform agnostic, but the version number must be an
# exact match of the Chrome/Chromium version to be compatible.
chrome_version = self.version(binary=browser_binary)
if not chrome_version:
return None
chrome_version = self._remove_version_suffix(chrome_version)
try:
# MojoJS version url must match the browser binary version exactly.
url = ("https://storage.googleapis.com/chrome-for-testing-public/"
f"{chrome_version}/mojojs.zip")
# Check the status without downloading the content (this is a streaming request).
get(url)
except requests.RequestException:
# If a valid matching version cannot be found in the CfT archive,
# download from Chromium snapshots bucket. However,
# MojoJS is only bundled with Linux from Chromium snapshots.
if self.platform == "Linux":
filename = "mojojs.zip"
revision = self._get_chromium_revision(filename, chrome_version)
url = self._build_snapshots_url(revision, filename)
else:
self.logger.error("A valid MojoJS version cannot be found "
f"for browser binary version {chrome_version}.")
return None
extracted = os.path.join(dest, "mojojs", "gen")
last_url_file = os.path.join(extracted, "DOWNLOADED_FROM")
if os.path.exists(last_url_file):
with open(last_url_file, "rt") as f:
last_url = f.read().strip()
if last_url == url:
self.logger.info("Mojo bindings already up to date")
return extracted
rmtree(extracted)
try:
self.logger.info(f"Downloading Mojo bindings from {url}")
unzip(get(url).raw, dest)
with open(last_url_file, "wt") as f:
f.write(url)
return extracted
except Exception as e:
self.logger.error(f"Cannot enable MojoJS: {e}")
return None
def install_webdriver_by_version(self, version, dest, revision=None):
dest = os.path.join(dest, self.product)
self._remove_existing_chromedriver_binary(dest)
# _get_webdriver_url is implemented differently for Chrome and Chromium because
# they download their respective versions of ChromeDriver from different sources.
url = self._get_webdriver_url(version, revision)
self.logger.info(f"Downloading ChromeDriver from {url}")
unzip(get(url).raw, dest)
# The two sources of ChromeDriver have different zip structures:
# * Chromium archives the binary inside a chromedriver_* directory;
# * Chrome archives the binary directly.
# We want to make sure the binary always ends up directly in bin/.
chromedriver_dir = os.path.join(dest,
f"chromedriver_{self._chromedriver_platform_string}")
chromedriver_path = which("chromedriver", path=chromedriver_dir)
if chromedriver_path is not None:
shutil.move(chromedriver_path, dest)
rmtree(chromedriver_dir)
chromedriver_path = which("chromedriver", path=dest)
assert chromedriver_path is not None
return chromedriver_path
def version(self, binary=None, webdriver_binary=None):
if not binary:
self.logger.warning("No browser binary provided.")
return None
if uname[0] == "Windows":
return _get_fileversion(binary, self.logger)
try:
version_string = call(binary, "--version").strip()
except (subprocess.CalledProcessError, OSError) as e:
self.logger.warning(f"Failed to call {binary}: {e}")
return None
m = re.match(r"(?:Google Chrome|Chromium) (.*)", version_string)
if not m:
self.logger.warning(f"Failed to extract version from: {version_string}")
return None
return m.group(1)
def webdriver_version(self, webdriver_binary):
if webdriver_binary is None:
self.logger.warning("No valid webdriver supplied to detect version.")
return None
try:
version_string = call(webdriver_binary, "--version").strip()
except (subprocess.CalledProcessError, OSError) as e:
self.logger.warning(f"Failed to call {webdriver_binary}: {e}")
return None
m = re.match(r"ChromeDriver ([0-9][0-9.]*)", version_string)
if not m:
self.logger.warning(f"Failed to extract version from: {version_string}")
return None
return m.group(1)
class Chromium(ChromeChromiumBase):
"""Chromium-specific interface.
Includes browser binary installation and detection.
Webdriver installation and wptrunner setup shared in base class with Chrome
For a detailed description on the installation and detection of these browser components,
see https://web-platform-tests.org/running-tests/chrome-chromium-installation-detection.html
"""
product = "chromium"
@property
def _chromium_package_name(self):
return f"chrome-{self.platform.lower()}"
def _get_existing_browser_revision(self, venv_path, channel):
revision = None
try:
# A file referencing the revision number is saved with the binary.
# Check if this revision number exists and use it if it does.
path = os.path.join(self._get_browser_binary_dir(None, channel), "revision")
with open(path) as f:
revision = f.read().strip()
except FileNotFoundError:
# If there is no information about the revision downloaded,
# use the pinned revision.
revision = self._get_pinned_chromium_revision()
return revision
def _find_binary_in_directory(self, directory):
"""Search for Chromium browser binary in a given directory."""
if uname[0] == "Darwin":
return which("Chromium", path=os.path.join(directory,
self._chromium_package_name,
"Chromium.app",
"Contents",
"MacOS"))
# which will add .exe on Windows automatically.
return which("chrome", path=os.path.join(directory, self._chromium_package_name))
def _get_webdriver_url(self, version, revision=None):
"""Get Chromium Snapshots url to download Chromium ChromeDriver."""
filename = f"chromedriver_{self._chromedriver_platform_string}.zip"
# Make sure we use the same revision in an invocation.
# If we have a url that was last used successfully during this run,
# that url takes priority over trying to form another.
if hasattr(self, "last_revision_used") and self.last_revision_used is not None:
return self._build_snapshots_url(self.last_revision_used, filename)
if revision is None:
revision = self._get_chromium_revision(filename, version)
elif revision == "latest":
revision = self._get_latest_chromium_revision()
elif revision == "pinned":
revision = self._get_pinned_chromium_revision()
return self._build_snapshots_url(revision, filename)
def download(self, dest=None, channel=None, rename=None, version=None, revision=None):
dest = self._get_browser_download_dir(dest, channel)
filename = f"{self._chromium_package_name}.zip"
if revision is None:
revision = self._get_chromium_revision(filename, version)
elif revision == "latest":
revision = self._get_latest_chromium_revision()
elif revision == "pinned":
revision = self._get_pinned_chromium_revision()
url = self._build_snapshots_url(revision, filename)
self.logger.info(f"Downloading Chromium from {url}")
resp = get(url)
installer_path = os.path.join(dest, filename)
with open(installer_path, "wb") as f:
f.write(resp.content)
# Revision successfully used. Keep this revision if another component install is needed.
self.last_revision_used = revision
with open(os.path.join(dest, "revision"), "w") as f:
f.write(revision)
return installer_path
def find_binary(self, venv_path=None, channel=None):
return self._find_binary_in_directory(self._get_browser_binary_dir(venv_path, channel))
def install(self, dest=None, channel=None, version=None, revision=None):
dest = self._get_browser_binary_dir(dest, channel)
installer_path = self.download(dest, channel, version=version, revision=revision)
with open(installer_path, "rb") as f:
unzip(f, dest)
os.remove(installer_path)
return self._find_binary_in_directory(dest)
def install_webdriver(self, dest=None, channel=None, browser_binary=None, revision=None):
if dest is None:
dest = os.pwd
if revision is None:
# If a revision was not given, we will need to detect the browser version.
# The ChromeDriver that is installed will match this version.
revision = self._get_existing_browser_revision(dest, channel)
chromedriver_path = self.install_webdriver_by_version(None, dest, revision)
return chromedriver_path
def webdriver_supports_browser(self, webdriver_binary, browser_binary, browser_channel=None):
"""Check that the browser binary and ChromeDriver versions are a valid match."""
browser_version = self.version(browser_binary)
chromedriver_version = self.webdriver_version(webdriver_binary)
if not chromedriver_version:
self.logger.warning("Unable to get version for ChromeDriver "
f"{webdriver_binary}, rejecting it")
return False
if not browser_version:
# If we can't get the browser version,
# we just have to assume the ChromeDriver is good.
return True
# Because Chromium and its ChromeDriver should be pulled from the
# same revision number, their version numbers should match exactly.
if browser_version == chromedriver_version:
self.logger.debug("Browser and ChromeDriver versions match.")
return True
self.logger.warning(f"ChromeDriver version {chromedriver_version} does not match "
f"Chromium version {browser_version}.")
return False
class DownloadNotFoundError(Exception):
"""Raised when a download is not found for browser/webdriver installation."""
pass
class Chrome(ChromeChromiumBase):
"""Chrome-specific interface.
Includes browser binary installation and detection.
Webdriver installation and wptrunner setup shared in base class with Chromium.
For a detailed description on the installation and detection of these browser components,
see https://web-platform-tests.org/running-tests/chrome-chromium-installation-detection.html
"""
product = "chrome"
@property
def _chrome_platform_string(self):
"""A string that represents the platform-based suffix
of the Chrome for Testing downloads.
"""
if self.platform in ("Linux", "Win"):
bits = "64" if uname.machine == "x86_64" else "32"
elif self.platform == "Mac":
bits = "-arm64" if uname.machine == "arm64" else "-x64"
else:
bits = ""
return f"{self.platform.lower()}{bits}"
@property
def _chrome_package_name(self):
return f"chrome-{self._chrome_platform_string}"
def _get_build_version(self, version):
"""Convert a Chrome/ChromeDriver version into MAJOR.MINOR.BUILD format."""
version_parts = version.split(".")
if len(version_parts) < 3:
self.logger.info(f"Version {version} could not be formatted for build matching.")
return None
return ".".join(version_parts[0:3])
def _get_webdriver_url(self, version, channel):
"""Get a ChromeDriver URL to download a version of ChromeDriver that matches
the browser binary version.
Raises: ValueError if the given version string could not be formatted.
Returns: A ChromeDriver download URL that matches the given Chrome version.
"""
# Remove version suffix if it exists.
if version:
version = self._remove_version_suffix(version)
formatted_version = self._get_build_version(version)
if formatted_version is None:
raise ValueError(f"Unknown version format: {version}")
major_version = version.split(".")[0]
# Chrome for Testing only has ChromeDriver downloads available for Chrome 115+.
# If we are matching an older version of Chrome, use the old ChromeDriver source.
if int(major_version) < 115:
return self._get_old_webdriver_url(formatted_version)
# Check if a file exists containing the matching ChromeDriver version download URL.
# This is generated when installing Chrome for Testing using the install command.
download_url_reference_file = os.path.join(
self._get_browser_binary_dir(None, channel), CHROMEDRIVER_SAVED_DOWNLOAD_FILE)
if os.path.isfile(download_url_reference_file):
self.logger.info("Download info for matching ChromeDriver version found.")
with open(download_url_reference_file, "r") as f:
return f.read()
# If no ChromeDriver download URL reference file exists,
# try to find a download URL based on the build version.
self.logger.info(f"Searching for ChromeDriver downloads for version {version}.")
download_url = self._get_webdriver_url_by_build(formatted_version)
if download_url is None:
milestone = version.split('.')[0]
self.logger.info(f'No ChromeDriver download found for build {formatted_version}. '
f'Finding latest available download for milestone {milestone}')
download_url = self._get_webdriver_url_by_milestone(milestone)
return download_url
def _get_old_webdriver_url(self, version):
"""Find a ChromeDriver download URL for Chrome version <= 114
Raises: DownloadNotFoundError if no ChromeDriver download URL is found
to match the given Chrome binary.
Returns: A ChromeDriver download URL that matches the given Chrome version.
"""
latest_url = ("https://chromedriver.storage.googleapis.com/LATEST_RELEASE_"
f"{version}")
try:
latest = get(latest_url).text.strip()
except requests.RequestException as e:
raise DownloadNotFoundError("No matching ChromeDriver download"
f" found for version {version}.", e)
filename = f"chromedriver_{self._chromedriver_platform_string}.zip"
return f"https://chromedriver.storage.googleapis.com/{latest}/{filename}"
def _get_webdriver_url_by_build(self, version):
"""Find a ChromeDriver download URL based on a MAJOR.MINOR.BUILD version.
Raises: RequestException if a bad responses is received from
Chrome for Testing sources.
Returns: Download URL string or None if no matching build is found.
"""
try:
# Get a list of builds with download URLs from Chrome for Testing.
resp = get(f"{CHROME_FOR_TESTING_ROOT_URL}"
"latest-patch-versions-per-build-with-downloads.json")
except requests.RequestException as e:
raise requests.RequestException(
"Chrome for Testing versions not found", e)
builds_json = resp.json()
builds_dict = builds_json["builds"]
if version not in builds_dict:
self.logger.info(f"No builds found for version {version}.")
return None
download_info = builds_dict[version]["downloads"]
if "chromedriver" not in download_info:
self.logger.info(f"No ChromeDriver download found for build {version}")
return None
downloads_for_platform = [d for d in download_info["chromedriver"]
if d["platform"] == self._chrome_platform_string]
if len(downloads_for_platform) == 0:
self.logger.info(f"No ChromeDriver download found for build {version}"
f"of platform {self.platform}")
return None
return downloads_for_platform[0]["url"]
def _get_webdriver_url_by_milestone(self, milestone):
"""Find a ChromeDriver download URL that is the latest available
for a Chrome milestone.
Raises: RequestException if a bad responses is received from
Chrome for Testing sources.
Returns: Download URL string or None if no matching milestone is found.
"""
try:
# Get a list of builds with download URLs from Chrome for Testing.
resp = get(f"{CHROME_FOR_TESTING_ROOT_URL}"
"latest-versions-per-milestone.json")
except requests.RequestException as e:
raise requests.RequestException(
"Chrome for Testing versions not found", e)
milestones_json = resp.json()
milestones_dict = milestones_json["milestones"]
if milestone not in milestones_dict:
self.logger.info(f"No latest version found for milestone {milestone}.")
return None
version_available = self._get_build_version(
milestones_dict[milestone]["version"])
return self._get_webdriver_url_by_build(version_available)
def _get_download_urls_by_version(self, version):
"""Find Chrome for Testing and ChromeDriver download URLs matching a specific version.
Raises: DownloadNotFoundError if no download is found for the given version or platform.
RequestException if a bad responses is received from
Chrome for Testing sources.
Returns: Both binary downloads for Chrome and ChromeDriver.
"""
try:
# Get a list of versions with download URLs from Chrome for Testing.
resp = get(f"{CHROME_FOR_TESTING_ROOT_URL}"
"known-good-versions-with-downloads.json")
except requests.RequestException as e:
raise requests.RequestException(
"Chrome for Testing versions not found", e)
versions_json = resp.json()
versions_list = versions_json["versions"]
# Attempt to find a version match in the list of available downloads.
matching_versions = [v for v in versions_list if v["version"] == version]
if len(matching_versions) == 0:
raise DownloadNotFoundError(f"No Chrome for Testing download found for {version}")
download_info = matching_versions[0]["downloads"]
# Find the download url that matches the current platform.
browser_download_urls = [d for d in download_info["chrome"]
if d["platform"] == self._chrome_platform_string]
if len(browser_download_urls) == 0:
raise DownloadNotFoundError(
f"No Chrome for Testing download found for {self.platform} of version {version}")
browser_download_url = browser_download_urls[0]["url"]
# Get the corresponding ChromeDriver download URL for later use.
chromedriver_download_urls = [d for d in download_info["chromedriver"]
if d["platform"] == self._chrome_platform_string]
if len(chromedriver_download_urls) == 0:
# Some older versions of Chrome for Testing
# do not have a matching ChromeDriver download.
raise DownloadNotFoundError(
f"ChromeDriver download does not exist for version {version}")
chromedriver_url = chromedriver_download_urls[0]["url"]
return browser_download_url, chromedriver_url
def _get_download_urls_by_channel(self, channel):
"""Find Chrome for Testing and ChromeDriver download URLs matching the given channel.
Raises: DownloadNotFoundError if no download is found for the given channel or platform.
RequestException if a bad responses is received from Chrome for Testing sources.
Returns: Both binary downloads for Chrome and ChromeDriver.
"""
try:
resp = get(f"{CHROME_FOR_TESTING_ROOT_URL}"
"last-known-good-versions-with-downloads.json")
except requests.RequestException as e:
raise requests.RequestException(
"Chrome for Testing versions not found", e)
channels_json = resp.json()
download_info = channels_json["channels"][channel.capitalize()]["downloads"]["chrome"]
# Find the download URL that matches the current platform.
matching_download_urls = [d for d in download_info
if d["platform"] == self._chrome_platform_string]
if len(matching_download_urls) == 0:
raise DownloadNotFoundError("No matching download for platform "
f"{self.platform} of channel \"{channel}\".")
browser_download_url = matching_download_urls[0]["url"]
# Get the corresponding ChromeDriver download URL for later use.
chromedriver_download_info = (
channels_json["channels"][channel.capitalize()]["downloads"]["chromedriver"])
matching_chromedriver_urls = [d for d in chromedriver_download_info
if d["platform"] == self._chrome_platform_string]
if len(matching_chromedriver_urls) == 0:
raise DownloadNotFoundError(
f"No ChromeDriver download found in Chrome for Testing {channel}.")
chromedriver_url = matching_chromedriver_urls[0]["url"]
return browser_download_url, chromedriver_url
def _save_chromedriver_download_info(self, dest, url):
"""Save the download URL of a ChromeDriver binary that matches the browser.
This will allow for easy version matching, even in separate CLI invocations.
"""
with open(os.path.join(dest, CHROMEDRIVER_SAVED_DOWNLOAD_FILE), "w") as f:
f.write(url)
def download(self, dest=None, channel="canary", rename=None, version=None):
"""Download Chrome for Testing. For more information,
see: https://github.com/GoogleChromeLabs/chrome-for-testing
"""
dest = self._get_browser_binary_dir(None, channel)
filename = f"{self._chrome_package_name}.zip"
# If a version has been supplied, try to find a download to match that version.
# Otherwise, find a download for the specified channel.
if version is not None:
download_url, chromedriver_url = self._get_download_urls_by_version(version)
else:
download_url, chromedriver_url = self._get_download_urls_by_channel(channel)
self.logger.info(f"Downloading Chrome for Testing from {download_url}")
resp = get(download_url)
installer_path = os.path.join(dest, filename)
with open(installer_path, "wb") as f:
f.write(resp.content)
# Save the ChromeDriver download URL for use if a matching ChromeDriver
# needs to be downloaded in a separate install invocation.
self._save_chromedriver_download_info(dest, chromedriver_url)
return installer_path
def _find_binary_in_directory(self, directory):
"""Search for Chrome for Testing browser binary in a given directory."""
if uname[0] == "Darwin":
return which(
"Google Chrome for Testing",
path=os.path.join(directory,
self._chrome_package_name,
"Google Chrome for Testing.app",
"Contents",
"MacOS"))
# "which" will add .exe on Windows automatically.
return which("chrome", path=os.path.join(directory, self._chrome_package_name))
def find_binary(self, venv_path=None, channel=None):
# Check for binary in venv first.
path = self._find_binary_in_directory(self._get_browser_binary_dir(venv_path, channel))
if path is not None:
return path
if uname[0] == "Linux":
name = "google-chrome"
if channel == "stable":
name += "-stable"
elif channel == "beta":
name += "-beta"
elif channel == "dev":
name += "-unstable"
# No Canary on Linux.
return which(name)
if uname[0] == "Darwin":
suffix = ""
if channel in ("beta", "dev", "canary"):
suffix = " " + channel.capitalize()
return f"/Applications/Google Chrome{suffix}.app/Contents/MacOS/Google Chrome{suffix}"
if uname[0] == "Windows":
name = "Chrome"
if channel == "beta":
name += " Beta"
elif channel == "dev":
name += " Dev"
path = os.path.expandvars(fr"$PROGRAMFILES\Google\{name}\Application\chrome.exe")
if channel == "canary":
path = os.path.expandvars(r"$LOCALAPPDATA\Google\Chrome SxS\Application\chrome.exe")
return path
self.logger.warning("Unable to find the browser binary.")
return None
def install(self, dest=None, channel=None, version=None):
dest = self._get_browser_binary_dir(dest, channel)
installer_path = self.download(dest=dest, channel=channel, version=version)
with open(installer_path, "rb") as f:
unzip(f, dest)
os.remove(installer_path)
return self._find_binary_in_directory(dest)
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
if dest is None:
dest = os.pwd
# Detect the browser version.
# The ChromeDriver that is installed will match this version.
if browser_binary is None:
# If a browser binary path was not given, detect a valid path.
browser_binary = self.find_binary(channel=channel)
# We need a browser to version match, so if a browser binary path
# was not given and cannot be detected, raise an error.
if browser_binary is None:
raise FileNotFoundError("No browser binary detected. "
"Cannot install ChromeDriver without a browser version.")
version = self.version(browser_binary)
if version is None:
# Check if the user has given a Chromium binary.
chromium = Chromium(self.logger)
if chromium.version(browser_binary):
raise ValueError("Provided binary is a Chromium binary and should be run using "
"\"./wpt run chromium\" or similar.")
raise ValueError(f"Unable to detect browser version from binary at {browser_binary}. "
" Cannot install ChromeDriver without a valid version to match.")
chromedriver_path = self.install_webdriver_by_version(version, dest, channel)
return chromedriver_path
def install_webdriver_by_version(self, version, dest, channel):
# Set the destination to a specific "chrome" folder to not overwrite or remove
# ChromeDriver versions used for Chromium.
dest = os.path.join(dest, self.product)
self._remove_existing_chromedriver_binary(dest)
url = self._get_webdriver_url(version, channel)
if url is None:
raise DownloadNotFoundError(
f"No ChromeDriver download found to match browser version {version}")
self.logger.info(f"Downloading ChromeDriver from {url}")
unzip(get(url).raw, dest)
chromedriver_dir = os.path.join(
dest, f"chromedriver-{self._chrome_platform_string}")
chromedriver_path = which("chromedriver", path=chromedriver_dir)
if chromedriver_path is not None:
shutil.move(chromedriver_path, dest)
rmtree(chromedriver_dir)
chromedriver_path = which("chromedriver", path=dest)
if chromedriver_path is None:
raise FileNotFoundError("ChromeDriver could not be detected after installation.")
return chromedriver_path
def webdriver_supports_browser(self, webdriver_binary, browser_binary, browser_channel):
"""Check that the browser binary and ChromeDriver versions are a valid match."""
browser_version = self.version(browser_binary)
chromedriver_version = self.webdriver_version(webdriver_binary)
if not chromedriver_version:
self.logger.warning("Unable to get version for ChromeDriver "
f"{webdriver_binary}, rejecting it")
return False
# TODO(DanielRyanSmith): Determine if this version logic fail case is
# still necessary and remove it if it isn't.
if not browser_version:
# If we can't get the browser version,
# we just have to assume the ChromeDriver is good.
return True
# Format versions for comparison.
browser_version = self._get_build_version(browser_version)
chromedriver_version = self._get_build_version(chromedriver_version)
# Chrome and ChromeDriver versions should match on the same MAJOR.MINOR.BUILD version.
if browser_version is not None and browser_version != chromedriver_version:
# Consider the same milestone as matching.
# Workaround for https://github.com/web-platform-tests/wpt/issues/42545
# TODO(DanielRyanSmith): Remove this logic when browser binary is
# downloaded from Chrome for Testing in CI runs.
browser_milestone = browser_version.split('.')[0]
chromedriver_milestone = chromedriver_version.split('.')[0]
if browser_milestone != chromedriver_milestone:
self.logger.warning(
f"ChromeDriver {chromedriver_version} does not match Chrome {browser_version}")
return False
return True
def version(self, binary=None, webdriver_binary=None):
"""Get version string from browser binary."""
if not binary:
self.logger.warning("No browser binary provided.")
return None
if uname[0] == "Windows":
return _get_fileversion(binary, self.logger)
try:
version_string = call(binary, "--version").strip()
except (subprocess.CalledProcessError, OSError) as e:
self.logger.warning(f"Failed to call {binary}: {e}")
return None
m = re.match(r"(?:Google Chrome for Testing|Google Chrome) (.*)", version_string)
if not m:
self.logger.warning(f"Failed to extract version from: {version_string}")
return None
return m.group(1)
def webdriver_version(self, webdriver_binary):
"""Get version string from ChromeDriver binary."""
if webdriver_binary is None:
self.logger.warning("No valid webdriver supplied to detect version.")
return None
try:
version_string = call(webdriver_binary, "--version").strip()
except (subprocess.CalledProcessError, OSError) as e:
self.logger.warning(f"Failed to call {webdriver_binary}: {e}")
return None
m = re.match(r"ChromeDriver ([0-9][0-9.]*)", version_string)
if not m:
self.logger.warning(f"Failed to extract version from: {version_string}")
return None
return m.group(1)
class HeadlessShell(ChromeChromiumBase):
"""Interface for the Chromium headless shell [0].
[0]: https://chromium.googlesource.com/chromium/src/+/HEAD/headless/README.md
"""
product = "headless_shell"
requirements = None
def download(self, dest=None, channel=None, rename=None):
# TODO(crbug.com/344669542): Download binaries via CfT.
raise NotImplementedError
def install(self, dest=None, channel=None):
raise NotImplementedError
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
raise NotImplementedError
def find_binary(self, venv_path=None, channel=None):
# `which()` adds `.exe` extension automatically for Windows.
# Chromium builds an executable named `headless_shell`, whereas CfT
# ships under the name `chrome-headless-shell`.
return which("headless_shell") or which("chrome-headless-shell")
def version(self, binary=None, webdriver_binary=None):
# TODO(crbug.com/327767951): Support `headless_shell --version`.
return "N/A"
class ChromeAndroidBase(Browser):
"""A base class for ChromeAndroid and AndroidWebView.
On Android, WebView is based on Chromium open source project, and on some
versions of Android we share the library with Chrome. Therefore, we have
a very similar WPT runner implementation.
Includes webdriver installation.
"""
__metaclass__ = ABCMeta # This is an abstract class.
def __init__(self, logger):
super().__init__(logger)
self.device_serial = None
self.adb_binary = "adb"
def download(self, dest=None, channel=None, rename=None):
raise NotImplementedError
def install(self, dest=None, channel=None):
raise NotImplementedError
@abstractmethod
def find_binary(self, venv_path=None, channel=None):
raise NotImplementedError
def find_webdriver(self, venv_path=None, channel=None):
return which("chromedriver")
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
if browser_binary is None:
browser_binary = self.find_binary(channel)
chrome = Chrome(self.logger)
return chrome.install_webdriver_by_version(self.version(browser_binary), dest, channel)
def version(self, binary=None, webdriver_binary=None):
if not binary:
self.logger.warning("No package name provided.")
return None
command = [self.adb_binary]
if self.device_serial:
# Assume we have same version of browser on all devices
command.extend(['-s', self.device_serial[0]])
command.extend(['shell', 'dumpsys', 'package', binary])
try:
output = call(*command)
except (subprocess.CalledProcessError, OSError):
self.logger.warning("Failed to call %s" % " ".join(command))
return None
match = re.search(r'versionName=(.*)', output)
if not match:
self.logger.warning("Failed to find versionName")
return None
return match.group(1)
class ChromeAndroid(ChromeAndroidBase):
"""Chrome-specific interface for Android.
"""
product = "chrome_android"
requirements = "requirements_chromium.txt"
def find_binary(self, venv_path=None, channel=None):
if channel in ("beta", "dev", "canary"):
return "com.chrome." + channel
return "com.android.chrome"
class AndroidWebview(ChromeAndroidBase):
"""Webview-specific interface for Android.
Design doc:
https://docs.google.com/document/d/19cGz31lzCBdpbtSC92svXlhlhn68hrsVwSB7cfZt54o/view
"""
product = "android_webview"
requirements = "requirements_chromium.txt"
def find_binary(self, venv_path=None, channel=None):
# Just get the current package name of the WebView provider.
# For WebView, it is not trivial to change the WebView provider, so
# we will just grab whatever is available.
# https://chromium.googlesource.com/chromium/src/+/HEAD/android_webview/docs/channels.md
command = [self.adb_binary]
if self.device_serial:
command.extend(['-s', self.device_serial[0]])
command.extend(['shell', 'dumpsys', 'webviewupdate'])
try:
output = call(*command)
except (subprocess.CalledProcessError, OSError):
self.logger.warning("Failed to call %s" % " ".join(command))
return None
m = re.search(r'^\s*Current WebView package \(name, version\): \((.*), ([0-9.]*)\)$',
output, re.M)
if m is None:
self.logger.warning("Unable to find current WebView package in dumpsys output")
return None
self.logger.warning("Final package name: " + m.group(1))
return m.group(1)
class ChromeiOS(Browser):
"""Chrome-specific interface for iOS.
"""
product = "chrome_ios"
requirements = None
def download(self, dest=None, channel=None, rename=None):
raise NotImplementedError
def install(self, dest=None, channel=None):
raise NotImplementedError
def find_binary(self, venv_path=None, channel=None):
raise NotImplementedError
def find_webdriver(self, venv_path=None, channel=None):
raise NotImplementedError
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
raise NotImplementedError
def version(self, binary=None, webdriver_binary=None):
if webdriver_binary is None:
self.logger.warning(
"Cannot find ChromeiOS version without CWTChromeDriver")
return None
# Use `chrome iOS driver --version` to get the version. Example output:
# "125.0.6378.0"
try:
version_string = call(webdriver_binary, "--version").strip()
except subprocess.CalledProcessError as e:
self.logger.warning(f"Failed to call {webdriver_binary}: {e}")
return None
m = re.match(r"[\d][\d\.]*", version_string)
if not m:
self.logger.warning(
f"Failed to extract version from: {version_string}")
return None
return m.group(0)
class Opera(Browser):
"""Opera-specific interface.
Includes webdriver installation, and wptrunner setup methods.
"""
product = "opera"
requirements = "requirements_opera.txt"
@property
def binary(self):
if uname[0] == "Linux":
return "/usr/bin/opera"
# TODO Windows, Mac?
self.logger.warning("Unable to find the browser binary.")
return None
def download(self, dest=None, channel=None, rename=None):
raise NotImplementedError
def install(self, dest=None, channel=None):
raise NotImplementedError
def platform_string(self):
platform = {
"Linux": "linux",
"Windows": "win",
"Darwin": "mac"
}.get(uname[0])
if platform is None:
raise ValueError("Unable to construct a valid Opera package name for current platform")
if platform == "linux":
bits = "64" if uname[4] == "x86_64" else "32"
elif platform == "mac":
bits = "64"
elif platform == "win":
bits = "32"
return "%s%s" % (platform, bits)
def find_binary(self, venv_path=None, channel=None):
raise NotImplementedError
def find_webdriver(self, venv_path=None, channel=None):
return which("operadriver")
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
if dest is None:
dest = os.pwd
latest = get("https://api.github.com/repos/operasoftware/operachromiumdriver/releases/latest").json()["tag_name"]
url = "https://github.com/operasoftware/operachromiumdriver/releases/download/%s/operadriver_%s.zip" % (latest,
self.platform_string())
unzip(get(url).raw, dest)
operadriver_dir = os.path.join(dest, "operadriver_%s" % self.platform_string())
shutil.move(os.path.join(operadriver_dir, "operadriver"), dest)
rmtree(operadriver_dir)
path = which("operadriver")
st = os.stat(path)
os.chmod(path, st.st_mode | stat.S_IEXEC)
return path
def version(self, binary=None, webdriver_binary=None):
"""Retrieve the release version of the installed browser."""
binary = binary or self.binary
try:
output = call(binary, "--version")
except subprocess.CalledProcessError:
self.logger.warning("Failed to call %s" % binary)
return None
m = re.search(r"[0-9\.]+( [a-z]+)?$", output.strip())
if m:
return m.group(0)
class Edge(Browser):
"""Microsoft Edge Chromium Browser class."""
product = "edge"
requirements = "requirements_chromium.txt"
platform = {
"Linux": "linux",
"Windows": "win",
"Darwin": "macos"
}.get(uname[0])
def _get_build_version(self, version):
"""Convert a Edge/MSEdgeDriver version into MAJOR.MINOR.BUILD format."""
version_parts = version.split(".")
if len(version_parts) < 3:
self.logger.info(f"Version {version} could not be formatted for build matching.")
return None
return ".".join(version_parts[0:3])
def _remove_existing_edgedriver_binary(self, path):
"""Remove an existing MSEdgeDriver for this product if it exists
in the virtual environment.
"""
# There may be an existing MSEdgeDriver binary from a previous install.
# To provide a clean install experience, remove the old binary - this
# avoids tricky issues like unzipping over a read-only file.
existing_edgedriver_path = which("MSEdgeDriver", path=path)
if existing_edgedriver_path:
self.logger.info(f"Removing existing MSEdgeDriver binary: {existing_edgedriver_path}")
os.chmod(existing_edgedriver_path, stat.S_IWUSR)
os.remove(existing_edgedriver_path)
existing_driver_notes_path = os.path.join(path, "Driver_notes")
if os.path.isdir(existing_driver_notes_path):
self.logger.info(f"Removing existing MSEdgeDriver binary: {existing_driver_notes_path}")
rmtree(existing_driver_notes_path)
def download(self, dest=None, channel=None, rename=None):
raise NotImplementedError
def install_mojojs(self, dest, browser_binary):
# MojoJS is platform agnostic, but the version number must be an
# exact match of the Edge version to be compatible.
edge_version = self.version(binary=browser_binary)
if not edge_version:
return None
try:
# MojoJS version url must match the browser binary version exactly.
url = ("https://msedgedriver.azureedge.net/wpt-mojom/"
f"{edge_version}/linux64/mojojs.zip")
# Check the status without downloading the content (this is a
# streaming request).
get(url)
except requests.RequestException:
self.logger.error("A valid MojoJS version cannot be found "
f"for browser binary version {edge_version}.")
return None
extracted = os.path.join(dest, "mojojs", "gen")
last_url_file = os.path.join(extracted, "DOWNLOADED_FROM")
if os.path.exists(last_url_file):
with open(last_url_file, "rt") as f:
last_url = f.read().strip()
if last_url == url:
self.logger.info("Mojo bindings already up to date")
return extracted
rmtree(extracted)
try:
self.logger.info(f"Downloading Mojo bindings from {url}")
unzip(get(url).raw, os.path.join(dest, "mojojs"))
with open(last_url_file, "wt") as f:
f.write(url)
return extracted
except Exception as e:
self.logger.error(f"Cannot enable MojoJS: {e}")
return None
def find_binary(self, venv_path=None, channel=None):
# TODO: Check for binary in virtual environment first
if self.platform == "linux":
name = "microsoft-edge"
if channel == "stable":
name += "-stable"
elif channel == "beta":
name += "-beta"
elif channel == "dev":
name += "-dev"
# No Canary on Linux.
return which(name)
if self.platform == "macos":
suffix = ""
if channel in ("beta", "dev", "canary"):
suffix = " " + channel.capitalize()
return f"/Applications/Microsoft Edge{suffix}.app/Contents/MacOS/Microsoft Edge{suffix}"
if self.platform == "win":
suffix = ""
if channel in ("beta", "dev"):
suffix = " " + channel.capitalize()
winpaths = [os.path.expandvars(fr"%PROGRAMFILES%\Microsoft\Edge{suffix}\Application"),
os.path.expandvars(fr"%programfiles(x86)%\Microsoft\Edge{suffix}\Application")]
path = which("msedge.exe", path=os.pathsep.join(winpaths))
if channel == "canary":
path = os.path.expandvars(r"%LOCALAPPDATA%\Microsoft\Edge SxS\Application\msedge.exe")
return path
self.logger.warning("Unable to find the browser binary.")
return None
def find_webdriver(self, venv_path=None, channel=None):
return which("msedgedriver")
def install(self, dest=None, channel=None):
raise NotImplementedError
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
if dest is None:
dest = os.pwd
# Detect the browser version.
# The MSEdgeDriver that is installed will match this version.
if browser_binary is None:
# If a browser binary path was not given, detect a valid path.
browser_binary = self.find_binary(channel=channel)
# We need a browser to version match, so if a browser binary path
# was not given and cannot be detected, raise an error.
if browser_binary is None:
raise FileNotFoundError("No browser binary detected. "
"Cannot install MSEdgeDriver without a browser version.")
version = self.version(browser_binary)
if version is None:
raise ValueError(f"Unable to detect browser version from binary at {browser_binary}. "
"Cannot install MSEdgeDriver without a valid version to match.")
edgedriver_path = self.install_webdriver_by_version(version, dest, channel)
return edgedriver_path
def install_webdriver_by_version(self, version, dest, channel):
self._remove_existing_edgedriver_binary(dest)
if self.platform == "linux":
bits = "linux64"
elif self.platform == "macos":
bits = "mac64"
elif self.platform == "win":
bits = "win64" if uname[4] == "x86_64" else "win32"
url = f"https://msedgedriver.azureedge.net/{version}/edgedriver_{bits}.zip"
self.logger.info(f"Downloading MSEdgeDriver from {url}")
unzip(get(url).raw, dest)
edgedriver_path = which("msedgedriver", path=dest)
assert edgedriver_path is not None
return edgedriver_path
def webdriver_supports_browser(self, webdriver_binary, browser_binary, browser_channel):
"""Check that the browser binary and MSEdgeDriver versions are a valid match."""
browser_version = self.version(browser_binary)
edgedriver_version = self.webdriver_version(webdriver_binary)
if not edgedriver_version:
self.logger.warning("Unable to get version for MSEdgeDriver "
f"{webdriver_binary}, rejecting it")
return False
if not browser_version:
# If we can't get the browser version, we just have to assume the
# MSEdgeDriver is good.
self.logger.warning("Unable to get version for the browser "
f"{browser_binary}, assuming MSEdgeDriver is good.")
return True
# Check that the EdgeDriver version matches the Edge version.
browser_version = self._get_build_version(browser_version)
edgedriver_version = self._get_build_version(edgedriver_version)
# Edge and MSEdgeDriver versions should match on the same MAJOR.MINOR.BUILD version.
if browser_version is not None and browser_version != edgedriver_version:
self.logger.warning(
f"MSEdgeDriver {edgedriver_version} does not match Edge {browser_version}")
return False
return True
def version(self, binary=None, webdriver_binary=None):
"""Get version string from browser binary."""
if not binary:
self.logger.warning("No browser binary provided.")
return None
if uname[0] == "Windows":
return _get_fileversion(binary, self.logger)
try:
version_string = call(binary, "--version").strip()
except (subprocess.CalledProcessError, OSError) as e:
self.logger.warning(f"Failed to call {binary}: {e}")
return None
m = re.match(r"Microsoft Edge ([0-9][0-9.]*)", version_string)
if not m:
self.logger.warning(f"Failed to extract version from: {version_string}")
return None
return m.group(1)
def webdriver_version(self, webdriver_binary):
"""Get version string from MSEdgeDriver binary."""
if webdriver_binary is None:
self.logger.warning("No valid webdriver supplied to detect version.")
return None
try:
version_string = call(webdriver_binary, "--version").strip()
except (subprocess.CalledProcessError, OSError) as e:
self.logger.warning(f"Failed to call {webdriver_binary}: {e}")
return None
m = re.match(r"Microsoft Edge WebDriver ([0-9][0-9.]*)", version_string)
if not m:
self.logger.warning(f"Failed to extract version from: {version_string}")
return None
return m.group(1)
class Safari(Browser):
"""Safari-specific interface.
Includes installation, webdriver installation, and wptrunner setup methods.
"""
product = "safari"
requirements = "requirements_safari.txt"
def _find_downloads(self):
def text_content(e, __output=None):
# this doesn't use etree.tostring so that we can add spaces for p and br
if __output is None:
__output = []
if e.tag == "p":
__output.append("\n\n")
if e.tag == "br":
__output.append("\n")
if e.text is not None:
__output.append(e.text)
for child in e:
text_content(child, __output)
if child.tail is not None:
__output.append(child.tail)
return "".join(__output)
self.logger.info("Finding STP download URLs")
resp = get("https://developer.apple.com/safari/download/")
doc = html5lib.parse(
resp.content,
"etree",
namespaceHTMLElements=False,
transport_encoding=resp.encoding,
)
ascii_ws = re.compile(r"[\x09\x0A\x0C\x0D\x20]+")
downloads = []
for candidate in doc.iterfind(".//li[@class]"):
class_names = set(ascii_ws.split(candidate.attrib["class"]))
if {"download", "dmg", "zip"} & class_names:
downloads.append(candidate)
# Note we use \s throughout for space as we don't care what form the whitespace takes
stp_link_text = re.compile(
r"^\s*Safari\s+Technology\s+Preview\s+(?:[0-9]+\s+)?for\s+macOS"
)
requirement = re.compile(
r"""(?x) # (extended regexp syntax for comments)
^\s*Requires\s+macOS\s+ # Starting with the magic string
([0-9]+(?:\.[0-9]+)*) # A macOS version number of numbers and dots
(?:\s+beta(?:\s+[0-9]+)?)? # Optionally a beta, itself optionally with a number (no dots!)
(?:\s+or\s+later)? # Optionally an 'or later'
\.?\s*$ # Optionally ending with a literal dot
"""
)
stp_downloads = []
for download in downloads:
for link in download.iterfind(".//a[@href]"):
if stp_link_text.search(text_content(link)):
break
else:
self.logger.debug("non-matching anchor: " + text_content(link))
else:
continue
for el in download.iter():
# avoid assuming any given element here, just assume it is a single element
m = requirement.search(text_content(el))
if m:
version = m.group(1)
# This assumes the current macOS numbering, whereby X.Y is compatible
# with X.(Y+1), e.g. 12.4 is compatible with 12.3, but 13.0 isn't
# compatible with 12.3.
if version.count(".") >= (2 if version.startswith("10.") else 1):
spec = SpecifierSet(f"~={version}")
else:
spec = SpecifierSet(f"=={version}.*")
stp_downloads.append((spec, link.attrib["href"].strip()))
break
else:
self.logger.debug(
"Found a link but no requirement: " + text_content(download)
)
if stp_downloads:
self.logger.info(
"Found STP URLs for macOS " +
", ".join(str(dl[0]) for dl in stp_downloads)
)
else:
self.logger.warning("Did not find any STP URLs")
return stp_downloads
def _download_image(self, downloads, dest, system_version=None):
if system_version is None:
system_version, _, _ = platform.mac_ver()
chosen_url = None
for version_spec, url in downloads:
if system_version in version_spec:
self.logger.debug(f"Will download Safari for {version_spec}")
chosen_url = url
break
if chosen_url is None:
raise ValueError(f"no download for {system_version}")
self.logger.info(f"Downloading Safari from {chosen_url}")
resp = get(chosen_url)
filename = get_download_filename(resp, "SafariTechnologyPreview.dmg")
installer_path = os.path.join(dest, filename)
with open(installer_path, "wb") as f:
f.write(resp.content)
return installer_path
def _download_extract(self, image_path, dest, rename=None):
with tempfile.TemporaryDirectory() as tmpdir:
self.logger.debug(f"Mounting {image_path}")
r = subprocess.run(
[
"hdiutil",
"attach",
"-readonly",
"-mountpoint",
tmpdir,
"-nobrowse",
"-verify",
"-noignorebadchecksums",
"-autofsck",
image_path,
],
encoding="utf-8",
capture_output=True,
check=True,
)
mountpoint = None
for line in r.stdout.splitlines():
if not line.startswith("/dev/"):
continue
_, _, mountpoint = line.split("\t", 2)
if mountpoint:
break
if mountpoint is None:
raise ValueError("no volume mounted from image")
pkgs = [p for p in os.listdir(mountpoint) if p.endswith((".pkg", ".mpkg"))]
if len(pkgs) != 1:
raise ValueError(
f"Expected a single .pkg/.mpkg, found {len(pkgs)}: {', '.join(pkgs)}"
)
source_path = os.path.join(mountpoint, pkgs[0])
dest_path = os.path.join(
dest, (rename + get_ext(pkgs[0])) if rename is not None else pkgs[0]
)
self.logger.debug(f"Copying {source_path} to {dest_path}")
shutil.copy2(
source_path,
dest_path,
)
self.logger.debug(f"Unmounting {mountpoint}")
subprocess.run(
["hdiutil", "detach", mountpoint],
encoding="utf-8",
capture_output=True,
check=True,
)
return dest_path
def download(self, dest=None, channel="preview", rename=None, system_version=None):
if channel != "preview":
raise ValueError(f"can only install 'preview', not '{channel}'")
dest = self._get_browser_download_dir(dest, channel)
stp_downloads = self._find_downloads()
with tempfile.TemporaryDirectory() as tmpdir:
image_path = self._download_image(stp_downloads, tmpdir, system_version)
return self._download_extract(image_path, dest, rename)
def install(self, dest=None, channel=None):
# We can't do this because stable/beta releases are system components and STP
# requires admin permissions to install.
raise NotImplementedError
def find_binary(self, venv_path=None, channel=None):
raise NotImplementedError
def find_webdriver(self, venv_path=None, channel=None):
path = None
if channel == "preview":
path = "/Applications/Safari Technology Preview.app/Contents/MacOS"
return which("safaridriver", path=path)
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
raise NotImplementedError
def version(self, binary=None, webdriver_binary=None):
if webdriver_binary is None:
self.logger.warning("Cannot find Safari version without safaridriver")
return None
# Use `safaridriver --version` to get the version. Example output:
# "Included with Safari 12.1 (14607.1.11)"
# "Included with Safari Technology Preview (Release 67, 13607.1.9.0.1)"
# The `--version` flag was added in STP 67, so allow the call to fail.
try:
version_string = call(webdriver_binary, "--version").strip()
except subprocess.CalledProcessError:
self.logger.warning("Failed to call %s --version" % webdriver_binary)
return None
m = re.match(r"Included with Safari (.*)", version_string)
if not m:
self.logger.warning("Failed to extract version from: %s" % version_string)
return None
return m.group(1)
class Servo(Browser):
"""Servo-specific interface."""
product = "servo"
requirements = None
def platform_components(self):
platform = {
"Linux": "linux",
"Windows": "win",
"Darwin": "mac"
}.get(uname[0])
if platform is None:
raise ValueError("Unable to construct a valid Servo package for current platform")
if platform == "linux":
extension = ".tar.gz"
decompress = untar
elif platform == "win" or platform == "mac":
raise ValueError("Unable to construct a valid Servo package for current platform")
return (platform, extension, decompress)
def _get(self, channel="nightly"):
if channel != "nightly":
raise ValueError("Only nightly versions of Servo are available")
platform, extension, _ = self.platform_components()
url = "https://download.servo.org/nightly/%s/servo-latest%s" % (platform, extension)
return get(url)
def download(self, dest=None, channel="nightly", rename=None):
if dest is None:
dest = os.pwd
resp = self._get(dest, channel)
_, extension, _ = self.platform_components()
filename = rename if rename is not None else "servo-latest"
with open(os.path.join(dest, "%s%s" % (filename, extension,)), "w") as f:
f.write(resp.content)
def install(self, dest=None, channel="nightly"):
"""Install latest Browser Engine."""
if dest is None:
dest = os.pwd
_, _, decompress = self.platform_components()
resp = self._get(channel)
decompress(resp.raw, dest=dest)
path = which("servo", path=os.path.join(dest, "servo"))
st = os.stat(path)
os.chmod(path, st.st_mode | stat.S_IEXEC)
return path
def find_binary(self, venv_path=None, channel=None):
path = which("servo", path=os.path.join(venv_path, "servo"))
if path is None:
path = which("servo")
return path
def find_webdriver(self, venv_path=None, channel=None):
return None
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
raise NotImplementedError
def version(self, binary=None, webdriver_binary=None):
"""Retrieve the release version of the installed browser."""
output = call(binary, "--version")
m = re.search(r"Servo ([0-9\.]+-[a-f0-9]+)?(-dirty)?$", output.strip())
if m:
return m.group(0)
class ServoWebDriver(Servo):
product = "servodriver"
class Sauce(Browser):
"""Sauce-specific interface."""
product = "sauce"
requirements = "requirements_sauce.txt"
def download(self, dest=None, channel=None, rename=None):
raise NotImplementedError
def install(self, dest=None, channel=None):
raise NotImplementedError
def find_binary(self, venev_path=None, channel=None):
raise NotImplementedError
def find_webdriver(self, venv_path=None, channel=None):
raise NotImplementedError
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
raise NotImplementedError
def version(self, binary=None, webdriver_binary=None):
return None
class WebKit(Browser):
"""WebKit-specific interface."""
product = "webkit"
requirements = None
def download(self, dest=None, channel=None, rename=None):
raise NotImplementedError
def install(self, dest=None, channel=None):
raise NotImplementedError
def find_binary(self, venv_path=None, channel=None):
return None
def find_webdriver(self, venv_path=None, channel=None):
return None
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
raise NotImplementedError
def version(self, binary=None, webdriver_binary=None):
return None
class Ladybird(Browser):
product = "ladybird"
requirements = None
def download(self, dest=None, channel=None, rename=None):
raise NotImplementedError
def install(self, dest=None, channel=None):
raise NotImplementedError
def find_binary(self, venv_path=None, channel=None):
return which("ladybird")
def find_webdriver(self, venv_path=None, channel=None):
return which("WebDriver")
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
raise NotImplementedError
def version(self, binary=None, webdriver_binary=None):
if not binary:
self.logger.warning("No browser binary provided.")
return None
output = call(binary, "--version")
if output:
version_string = output.strip()
match = re.match(r"Version (.*)", version_string)
if match:
return match.group(1)
return None
class WebKitTestRunner(Browser):
"""Interface for WebKitTestRunner.
"""
product = "wktr"
requirements = None
def _find_apple_port_builds(self, channel="main"):
if channel != "main":
raise ValueError(f"unable to get builds for branch {channel}")
system_version, _, _ = platform.mac_ver()
if system_version in SpecifierSet("==13.*"):
platform_key = "mac-ventura-x86_64%20arm64"
elif system_version in SpecifierSet("==12.*"):
platform_key = "mac-monterey-x86_64%20arm64"
else:
raise ValueError(
f"don't know what platform to use for macOS {system_version}"
)
# This should match http://github.com/WebKit/WebKit/blob/main/Websites/webkit.org/wp-content/themes/webkit/build-archives.php
build_index = get(
f"https://q1tzqfy48e.execute-api.us-west-2.amazonaws.com/v3/latest/{platform_key}-release"
).json()
builds = []
for entry in build_index["Items"]:
creation_time = datetime.fromtimestamp(
int(entry["creationTime"]["N"]), timezone.utc
)
identifier = entry["identifier"]["S"]
s3_url = entry["s3_url"]["S"]
builds.append((s3_url, identifier, creation_time))
return builds
def _download_metadata_apple_port(self, channel="main"):
digit_re = re.compile("([0-9]+)")
def natsort(string_to_split):
split = digit_re.split(string_to_split)
# this converts the split numbers into tuples so that "01" < "1"
split[1::2] = [(int(i), i) for i in split[1::2]]
return split
builds = sorted(
self._find_apple_port_builds(channel),
key=lambda x: natsort(x[1]),
reverse=True,
)
latest_build = builds[0]
return {
"url": latest_build[0],
"identifier": latest_build[1],
"creation_time": latest_build[2],
}
def download(
self, dest=None, channel="main", rename=None, version=None, revision=None
):
if platform.system() == "Darwin":
meta = self._download_metadata_apple_port(channel)
else:
raise ValueError("Unsupported platform")
output_path = self.download_from_url(
meta["url"],
dest=dest,
channel=channel,
rename=rename,
)
dest = os.path.dirname(output_path) # This is the actual, used dest.
self.last_revision_used = meta["identifier"]
with open(os.path.join(dest, "identifier"), "w") as f:
f.write(self.last_revision_used)
return output_path
def install(self, dest=None, channel="main"):
dest = self._get_browser_binary_dir(dest, channel)
installer_path = self.download(dest=dest, channel=channel)
self.logger.info(f"Extracting to {dest}")
with open(installer_path, "rb") as f:
unzip(f, dest)
def install_webdriver(self, dest=None, channel="main", browser_binary=None):
raise NotImplementedError
def find_binary(self, venv_path=None, channel="main"):
path = self._get_browser_binary_dir(venv_path, channel)
return which("WebKitTestRunner", path=os.path.join(path, "Release"))
def find_webdriver(self, venv_path=None, channel="main"):
return None
def version(self, binary=None, webdriver_binary=None):
dirname = os.path.dirname(binary)
identifier = os.path.join(dirname, "..", "identifier")
if not os.path.exists(identifier):
return None
with open(identifier, "r") as f:
return f.read().strip()
class WebKitGlibBaseMiniBrowser(WebKit):
"""WebKitGTK and WPE MiniBrowser specific interface (base class)."""
# This class is not meant to be used directly.
# And the class variables below should be defined on the subclasses.
BASE_DOWNLOAD_URI = ""
PORT_PRETTY_NAME = ""
WEBDRIVER_BINARY_NAME = ""
LIBEXEC_SUBDIR_PREFIXES = [""]
product = ""
def __init__(self, *args, **kwargs):
if self.__class__.__name__ == "WebKitGlibBaseMiniBrowser":
raise RuntimeError("class WebKitGlibBaseMiniBrowser should not be used directly, but subclassed")
for required_class_var in ["BASE_DOWNLOAD_URI", "PORT_PRETTY_NAME", "WEBDRIVER_BINARY_NAME", "LIBEXEC_SUBDIR_PREFIXES", "product"]:
class_var_value = getattr(self, required_class_var, "")
if all(len(i) == 0 for i in class_var_value):
raise NotImplementedError('subclass "%s" should define class variable "%s"' % (self.__class__.__name__, required_class_var))
return super().__init__(*args, **kwargs)
def download(self, dest=None, channel=None, rename=None):
base_download_dir = self.BASE_DOWNLOAD_URI + platform.machine() + "/release/" + channel + "/MiniBrowser/"
try:
response = get(base_download_dir + "LAST-IS")
except requests.exceptions.HTTPError as e:
if e.response.status_code == 404:
raise RuntimeError("Can't find a %s MiniBrowser %s bundle for %s at %s"
% (self.PORT_PRETTY_NAME, channel, platform.machine(), self.BASE_DOWNLOAD_URI))
raise
bundle_filename = response.text.strip()
bundle_url = base_download_dir + quote(bundle_filename)
dest = self._get_browser_download_dir(dest, channel)
bundle_file_path = os.path.join(dest, bundle_filename)
self.logger.info("Downloading %s MiniBrowser bundle from %s" % (self.PORT_PRETTY_NAME, bundle_url))
with open(bundle_file_path, "w+b") as f:
get_download_to_descriptor(f, bundle_url)
ext_ndots = 2 if '.tar.' in bundle_filename else 1
bundle_filename_no_ext = '.'.join(bundle_filename.split('.')[:-ext_ndots])
bundle_hash_url = base_download_dir + bundle_filename_no_ext + ".sha256sum"
bundle_expected_hash = get(bundle_hash_url).text.strip().split(" ")[0]
bundle_computed_hash = sha256sum(bundle_file_path)
if bundle_expected_hash != bundle_computed_hash:
self.logger.error("Calculated SHA256 hash is %s but was expecting %s" % (bundle_computed_hash, bundle_expected_hash))
raise RuntimeError("The %s MiniBrowser bundle at %s has incorrect SHA256 hash." % (self.PORT_PRETTY_NAME, bundle_file_path))
return bundle_file_path
def install(self, dest=None, channel=None, prompt=True):
dest = self._get_browser_binary_dir(dest, channel)
bundle_path = self.download(dest, channel)
bundle_uncompress_directory = os.path.join(dest, self.product)
# Clean it from previous runs
if os.path.exists(bundle_uncompress_directory):
rmtree(bundle_uncompress_directory)
os.mkdir(bundle_uncompress_directory)
bundle_file_name = os.path.basename(bundle_path)
with open(bundle_path, "rb") as f:
if bundle_file_name.endswith(".zip"):
unzip(f, bundle_uncompress_directory)
elif ".tar." in bundle_file_name:
untar(f, bundle_uncompress_directory)
else:
raise NotImplementedError("Don't know how to install the file: %s" % bundle_file_name)
os.remove(bundle_path)
for expected_binary in ["MiniBrowser", self.WEBDRIVER_BINARY_NAME]:
binary_path = os.path.join(bundle_uncompress_directory, expected_binary)
if not (os.path.isfile(binary_path) and os.access(binary_path, os.X_OK)):
raise RuntimeError("Can't find a %s binary at %s" % (expected_binary, binary_path))
minibrowser_path = os.path.join(bundle_uncompress_directory, "MiniBrowser")
version_str = subprocess.check_output([minibrowser_path, "--version"]).decode("utf-8").strip()
self.logger.info("%s MiniBrowser bundle for channel %s installed: %s" % (self.PORT_PRETTY_NAME, channel, version_str))
install_ok_file = os.path.join(bundle_uncompress_directory, ".installation-ok")
open(install_ok_file, "w").close() # touch
return minibrowser_path
def _find_executable_in_channel_bundle(self, binary, venv_path=None, channel=None):
if venv_path:
venv_base_path = self._get_browser_binary_dir(venv_path, channel)
bundle_dir = os.path.join(venv_base_path, self.product)
install_ok_file = os.path.join(bundle_dir, ".installation-ok")
if os.path.isfile(install_ok_file):
return shutil.which(binary, path=bundle_dir)
return None
def find_binary(self, venv_path=None, channel=None):
minibrowser_path = self._find_executable_in_channel_bundle("MiniBrowser", venv_path, channel)
if minibrowser_path:
self.logger.info("Found %s MiniBrowser %s at path: %s" % (self.PORT_PRETTY_NAME, channel, minibrowser_path))
return minibrowser_path
# Find MiniBrowser on the system which is usually installed on the libexec dir
triplet = "x86_64-linux-gnu"
# Try to use GCC to detect this machine triplet
gcc = shutil.which("gcc")
if gcc:
try:
triplet = call(gcc, "-dumpmachine").strip()
except subprocess.CalledProcessError:
pass
for libexec_dir in ["/usr/libexec", f"/usr/lib/{triplet}", "/usr/lib"]:
if os.path.isdir(libexec_dir):
for libexec_entry in sorted(os.listdir(libexec_dir), reverse=True):
for libexec_subdir_prefix in self.LIBEXEC_SUBDIR_PREFIXES:
if libexec_entry.startswith(libexec_subdir_prefix):
minibrowser_candidate_path = os.path.join(libexec_dir, libexec_entry, 'MiniBrowser')
if os.path.isfile(minibrowser_candidate_path) and os.access(minibrowser_candidate_path, os.X_OK):
self.logger.info("Found %s MiniBrowser at path: %s" % (self.PORT_PRETTY_NAME, minibrowser_candidate_path))
return minibrowser_candidate_path
return None
def find_webdriver(self, venv_path=None, channel=None):
webdriver_path = self._find_executable_in_channel_bundle(self.WEBDRIVER_BINARY_NAME, venv_path, channel)
if not webdriver_path:
webdriver_path = shutil.which(self.WEBDRIVER_BINARY_NAME)
if webdriver_path:
self.logger.info("Found %s WebDriver at path: %s" % (self.PORT_PRETTY_NAME, webdriver_path))
return webdriver_path
def version(self, binary=None, webdriver_binary=None):
if binary is None:
return None
try: # WebKitGTK MiniBrowser before 2.26.0 doesn't support --version
output = call(binary, "--version").strip()
except subprocess.CalledProcessError:
return None
# Example output: "WebKitGTK 2.26.1"
if output:
m = re.match(r"%s (.+)" % self.PORT_PRETTY_NAME, output)
if not m:
self.logger.warning("Failed to extract version from: %s" % output)
return None
return m.group(1)
return None
class WebKitGTKMiniBrowser(WebKitGlibBaseMiniBrowser):
"""WebKitGTK MiniBrowser specific interface."""
BASE_DOWNLOAD_URI = "https://webkitgtk.org/built-products/"
PORT_PRETTY_NAME = "WebKitGTK"
WEBDRIVER_BINARY_NAME = "WebKitWebDriver"
LIBEXEC_SUBDIR_PREFIXES = ["webkitgtk", "webkit2gtk"]
product = "webkitgtk_minibrowser"
class WPEWebKitMiniBrowser(WebKitGlibBaseMiniBrowser):
"""WPE WebKit MiniBrowser specific interface."""
BASE_DOWNLOAD_URI = "https://wpewebkit.org/built-products/"
PORT_PRETTY_NAME = "WPE WebKit"
WEBDRIVER_BINARY_NAME = "WPEWebDriver"
LIBEXEC_SUBDIR_PREFIXES = ["wpe-webkit"]
product = "wpewebkit_minibrowser"
class Epiphany(Browser):
"""Epiphany-specific interface."""
product = "epiphany"
requirements = None
def download(self, dest=None, channel=None, rename=None):
raise NotImplementedError
def install(self, dest=None, channel=None):
raise NotImplementedError
def find_binary(self, venv_path=None, channel=None):
return which("epiphany")
def find_webdriver(self, venv_path=None, channel=None):
return which("WebKitWebDriver")
def install_webdriver(self, dest=None, channel=None, browser_binary=None):
raise NotImplementedError
def version(self, binary=None, webdriver_binary=None):
if binary is None:
return None
output = call(binary, "--version")
if output:
# Stable release output looks like: "Web 3.30.2"
# Tech Preview output looks like "Web 3.31.3-88-g97db4f40f"
return output.split()[1]
return None
|