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
|
# Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
require 'date'
require 'google/apis/core/base_service'
require 'google/apis/core/json_representation'
require 'google/apis/core/hashable'
require 'google/apis/errors'
module Google
module Apis
module TestingV1
# Identifies an account and how to log into it.
class Account
include Google::Apis::Core::Hashable
# Enables automatic Google account login. If set, the service automatically
# generates a Google test account and adds it to the device, before executing
# the test. Note that test accounts might be reused. Many applications show
# their full set of functionalities when an account is present on the device.
# Logging into the device with these generated accounts allows testing more
# functionalities.
# Corresponds to the JSON property `googleAuto`
# @return [Google::Apis::TestingV1::GoogleAuto]
attr_accessor :google_auto
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@google_auto = args[:google_auto] if args.key?(:google_auto)
end
end
# A single Android device.
class AndroidDevice
include Google::Apis::Core::Hashable
# Required. The id of the Android device to be used. Use the
# TestEnvironmentDiscoveryService to get supported options.
# Corresponds to the JSON property `androidModelId`
# @return [String]
attr_accessor :android_model_id
# Required. The id of the Android OS version to be used. Use the
# TestEnvironmentDiscoveryService to get supported options.
# Corresponds to the JSON property `androidVersionId`
# @return [String]
attr_accessor :android_version_id
# Required. The locale the test device used for testing. Use the
# TestEnvironmentDiscoveryService to get supported options.
# Corresponds to the JSON property `locale`
# @return [String]
attr_accessor :locale
# Required. How the device is oriented during the test. Use the
# TestEnvironmentDiscoveryService to get supported options.
# Corresponds to the JSON property `orientation`
# @return [String]
attr_accessor :orientation
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@android_model_id = args[:android_model_id] if args.key?(:android_model_id)
@android_version_id = args[:android_version_id] if args.key?(:android_version_id)
@locale = args[:locale] if args.key?(:locale)
@orientation = args[:orientation] if args.key?(:orientation)
end
end
# The currently supported Android devices.
class AndroidDeviceCatalog
include Google::Apis::Core::Hashable
# The set of supported Android device models.
# Corresponds to the JSON property `models`
# @return [Array<Google::Apis::TestingV1::AndroidModel>]
attr_accessor :models
# Android configuration that can be selected at the time a test is run.
# Corresponds to the JSON property `runtimeConfiguration`
# @return [Google::Apis::TestingV1::AndroidRuntimeConfiguration]
attr_accessor :runtime_configuration
# The set of supported Android OS versions.
# Corresponds to the JSON property `versions`
# @return [Array<Google::Apis::TestingV1::AndroidVersion>]
attr_accessor :versions
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@models = args[:models] if args.key?(:models)
@runtime_configuration = args[:runtime_configuration] if args.key?(:runtime_configuration)
@versions = args[:versions] if args.key?(:versions)
end
end
# A list of Android device configurations in which the test is to be executed.
class AndroidDeviceList
include Google::Apis::Core::Hashable
# Required. A list of Android devices.
# Corresponds to the JSON property `androidDevices`
# @return [Array<Google::Apis::TestingV1::AndroidDevice>]
attr_accessor :android_devices
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@android_devices = args[:android_devices] if args.key?(:android_devices)
end
end
# A test of an Android application that can control an Android component
# independently of its normal lifecycle. Android instrumentation tests run an
# application APK and test APK inside the same process on a virtual or physical
# AndroidDevice. They also specify a test runner class, such as com.google.
# GoogleTestRunner, which can vary on the specific instrumentation framework
# chosen. See for more information on types of Android tests.
class AndroidInstrumentationTest
include Google::Apis::Core::Hashable
# A reference to a file, used for user inputs.
# Corresponds to the JSON property `appApk`
# @return [Google::Apis::TestingV1::FileReference]
attr_accessor :app_apk
# An Android App Bundle file format, containing a BundleConfig.pb file, a base
# module directory, zero or more dynamic feature module directories. See https://
# developer.android.com/guide/app-bundle/build for guidance on building App
# Bundles.
# Corresponds to the JSON property `appBundle`
# @return [Google::Apis::TestingV1::AppBundle]
attr_accessor :app_bundle
# The java package for the application under test. The default value is
# determined by examining the application's manifest.
# Corresponds to the JSON property `appPackageId`
# @return [String]
attr_accessor :app_package_id
# The option of whether running each test within its own invocation of
# instrumentation with Android Test Orchestrator or not. ** Orchestrator is only
# compatible with AndroidJUnitRunner version 1.0 or higher! ** Orchestrator
# offers the following benefits: - No shared state - Crashes are isolated - Logs
# are scoped per test See for more information about Android Test Orchestrator.
# If not set, the test will be run without the orchestrator.
# Corresponds to the JSON property `orchestratorOption`
# @return [String]
attr_accessor :orchestrator_option
# Options for enabling sharding.
# Corresponds to the JSON property `shardingOption`
# @return [Google::Apis::TestingV1::ShardingOption]
attr_accessor :sharding_option
# A reference to a file, used for user inputs.
# Corresponds to the JSON property `testApk`
# @return [Google::Apis::TestingV1::FileReference]
attr_accessor :test_apk
# The java package for the test to be executed. The default value is determined
# by examining the application's manifest.
# Corresponds to the JSON property `testPackageId`
# @return [String]
attr_accessor :test_package_id
# The InstrumentationTestRunner class. The default value is determined by
# examining the application's manifest.
# Corresponds to the JSON property `testRunnerClass`
# @return [String]
attr_accessor :test_runner_class
# Each target must be fully qualified with the package name or class name, in
# one of these formats: - "package package_name" - "class package_name.
# class_name" - "class package_name.class_name#method_name" If empty, all
# targets in the module will be run.
# Corresponds to the JSON property `testTargets`
# @return [Array<String>]
attr_accessor :test_targets
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@app_apk = args[:app_apk] if args.key?(:app_apk)
@app_bundle = args[:app_bundle] if args.key?(:app_bundle)
@app_package_id = args[:app_package_id] if args.key?(:app_package_id)
@orchestrator_option = args[:orchestrator_option] if args.key?(:orchestrator_option)
@sharding_option = args[:sharding_option] if args.key?(:sharding_option)
@test_apk = args[:test_apk] if args.key?(:test_apk)
@test_package_id = args[:test_package_id] if args.key?(:test_package_id)
@test_runner_class = args[:test_runner_class] if args.key?(:test_runner_class)
@test_targets = args[:test_targets] if args.key?(:test_targets)
end
end
# A set of Android device configuration permutations is defined by the the cross-
# product of the given axes. Internally, the given AndroidMatrix will be
# expanded into a set of AndroidDevices. Only supported permutations will be
# instantiated. Invalid permutations (e.g., incompatible models/versions) are
# ignored.
class AndroidMatrix
include Google::Apis::Core::Hashable
# Required. The ids of the set of Android device to be used. Use the
# TestEnvironmentDiscoveryService to get supported options.
# Corresponds to the JSON property `androidModelIds`
# @return [Array<String>]
attr_accessor :android_model_ids
# Required. The ids of the set of Android OS version to be used. Use the
# TestEnvironmentDiscoveryService to get supported options.
# Corresponds to the JSON property `androidVersionIds`
# @return [Array<String>]
attr_accessor :android_version_ids
# Required. The set of locales the test device will enable for testing. Use the
# TestEnvironmentDiscoveryService to get supported options.
# Corresponds to the JSON property `locales`
# @return [Array<String>]
attr_accessor :locales
# Required. The set of orientations to test with. Use the
# TestEnvironmentDiscoveryService to get supported options.
# Corresponds to the JSON property `orientations`
# @return [Array<String>]
attr_accessor :orientations
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@android_model_ids = args[:android_model_ids] if args.key?(:android_model_ids)
@android_version_ids = args[:android_version_ids] if args.key?(:android_version_ids)
@locales = args[:locales] if args.key?(:locales)
@orientations = args[:orientations] if args.key?(:orientations)
end
end
# A description of an Android device tests may be run on.
class AndroidModel
include Google::Apis::Core::Hashable
# The company that this device is branded with. Example: "Google", "Samsung".
# Corresponds to the JSON property `brand`
# @return [String]
attr_accessor :brand
# The name of the industrial design. This corresponds to android.os.Build.DEVICE.
# Corresponds to the JSON property `codename`
# @return [String]
attr_accessor :codename
# Whether this device is virtual or physical.
# Corresponds to the JSON property `form`
# @return [String]
attr_accessor :form
# Whether this device is a phone, tablet, wearable, etc.
# Corresponds to the JSON property `formFactor`
# @return [String]
attr_accessor :form_factor
# The unique opaque id for this model. Use this for invoking the
# TestExecutionService.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# True if and only if tests with this model are recorded by stitching together
# screenshots. See use_low_spec_video_recording in device config.
# Corresponds to the JSON property `lowFpsVideoRecording`
# @return [Boolean]
attr_accessor :low_fps_video_recording
alias_method :low_fps_video_recording?, :low_fps_video_recording
# The manufacturer of this device.
# Corresponds to the JSON property `manufacturer`
# @return [String]
attr_accessor :manufacturer
# The human-readable marketing name for this device model. Examples: "Nexus 5", "
# Galaxy S5".
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# Screen density in DPI. This corresponds to ro.sf.lcd_density
# Corresponds to the JSON property `screenDensity`
# @return [Fixnum]
attr_accessor :screen_density
# Screen size in the horizontal (X) dimension measured in pixels.
# Corresponds to the JSON property `screenX`
# @return [Fixnum]
attr_accessor :screen_x
# Screen size in the vertical (Y) dimension measured in pixels.
# Corresponds to the JSON property `screenY`
# @return [Fixnum]
attr_accessor :screen_y
# The list of supported ABIs for this device. This corresponds to either android.
# os.Build.SUPPORTED_ABIS (for API level 21 and above) or android.os.Build.
# CPU_ABI/CPU_ABI2. The most preferred ABI is the first element in the list.
# Elements are optionally prefixed by "version_id:" (where version_id is the id
# of an AndroidVersion), denoting an ABI that is supported only on a particular
# version.
# Corresponds to the JSON property `supportedAbis`
# @return [Array<String>]
attr_accessor :supported_abis
# The set of Android versions this device supports.
# Corresponds to the JSON property `supportedVersionIds`
# @return [Array<String>]
attr_accessor :supported_version_ids
# Tags for this dimension. Examples: "default", "preview", "deprecated".
# Corresponds to the JSON property `tags`
# @return [Array<String>]
attr_accessor :tags
# URL of a thumbnail image (photo) of the device. e.g. https://lh3.
# googleusercontent.com/90WcauuJiCYABEl8U0lcZeuS5STUbf2yW...
# Corresponds to the JSON property `thumbnailUrl`
# @return [String]
attr_accessor :thumbnail_url
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@brand = args[:brand] if args.key?(:brand)
@codename = args[:codename] if args.key?(:codename)
@form = args[:form] if args.key?(:form)
@form_factor = args[:form_factor] if args.key?(:form_factor)
@id = args[:id] if args.key?(:id)
@low_fps_video_recording = args[:low_fps_video_recording] if args.key?(:low_fps_video_recording)
@manufacturer = args[:manufacturer] if args.key?(:manufacturer)
@name = args[:name] if args.key?(:name)
@screen_density = args[:screen_density] if args.key?(:screen_density)
@screen_x = args[:screen_x] if args.key?(:screen_x)
@screen_y = args[:screen_y] if args.key?(:screen_y)
@supported_abis = args[:supported_abis] if args.key?(:supported_abis)
@supported_version_ids = args[:supported_version_ids] if args.key?(:supported_version_ids)
@tags = args[:tags] if args.key?(:tags)
@thumbnail_url = args[:thumbnail_url] if args.key?(:thumbnail_url)
end
end
# A test of an android application that explores the application on a virtual or
# physical Android Device, finding culprits and crashes as it goes. Next tag: 30
class AndroidRoboTest
include Google::Apis::Core::Hashable
# A reference to a file, used for user inputs.
# Corresponds to the JSON property `appApk`
# @return [Google::Apis::TestingV1::FileReference]
attr_accessor :app_apk
# An Android App Bundle file format, containing a BundleConfig.pb file, a base
# module directory, zero or more dynamic feature module directories. See https://
# developer.android.com/guide/app-bundle/build for guidance on building App
# Bundles.
# Corresponds to the JSON property `appBundle`
# @return [Google::Apis::TestingV1::AppBundle]
attr_accessor :app_bundle
# The initial activity that should be used to start the app.
# Corresponds to the JSON property `appInitialActivity`
# @return [String]
attr_accessor :app_initial_activity
# The java package for the application under test. The default value is
# determined by examining the application's manifest.
# Corresponds to the JSON property `appPackageId`
# @return [String]
attr_accessor :app_package_id
# The max depth of the traversal stack Robo can explore. Needs to be at least 2
# to make Robo explore the app beyond the first activity. Default is 50.
# Corresponds to the JSON property `maxDepth`
# @return [Fixnum]
attr_accessor :max_depth
# The max number of steps Robo can execute. Default is no limit.
# Corresponds to the JSON property `maxSteps`
# @return [Fixnum]
attr_accessor :max_steps
# A set of directives Robo should apply during the crawl. This allows users to
# customize the crawl. For example, the username and password for a test account
# can be provided.
# Corresponds to the JSON property `roboDirectives`
# @return [Array<Google::Apis::TestingV1::RoboDirective>]
attr_accessor :robo_directives
# A reference to a file, used for user inputs.
# Corresponds to the JSON property `roboScript`
# @return [Google::Apis::TestingV1::FileReference]
attr_accessor :robo_script
# The intents used to launch the app for the crawl. If none are provided, then
# the main launcher activity is launched. If some are provided, then only those
# provided are launched (the main launcher activity must be provided explicitly).
# Corresponds to the JSON property `startingIntents`
# @return [Array<Google::Apis::TestingV1::RoboStartingIntent>]
attr_accessor :starting_intents
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@app_apk = args[:app_apk] if args.key?(:app_apk)
@app_bundle = args[:app_bundle] if args.key?(:app_bundle)
@app_initial_activity = args[:app_initial_activity] if args.key?(:app_initial_activity)
@app_package_id = args[:app_package_id] if args.key?(:app_package_id)
@max_depth = args[:max_depth] if args.key?(:max_depth)
@max_steps = args[:max_steps] if args.key?(:max_steps)
@robo_directives = args[:robo_directives] if args.key?(:robo_directives)
@robo_script = args[:robo_script] if args.key?(:robo_script)
@starting_intents = args[:starting_intents] if args.key?(:starting_intents)
end
end
# Android configuration that can be selected at the time a test is run.
class AndroidRuntimeConfiguration
include Google::Apis::Core::Hashable
# The set of available locales.
# Corresponds to the JSON property `locales`
# @return [Array<Google::Apis::TestingV1::Locale>]
attr_accessor :locales
# The set of available orientations.
# Corresponds to the JSON property `orientations`
# @return [Array<Google::Apis::TestingV1::Orientation>]
attr_accessor :orientations
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@locales = args[:locales] if args.key?(:locales)
@orientations = args[:orientations] if args.key?(:orientations)
end
end
# A test of an Android Application with a Test Loop. The intent \ will be
# implicitly added, since Games is the only user of this api, for the time being.
class AndroidTestLoop
include Google::Apis::Core::Hashable
# A reference to a file, used for user inputs.
# Corresponds to the JSON property `appApk`
# @return [Google::Apis::TestingV1::FileReference]
attr_accessor :app_apk
# An Android App Bundle file format, containing a BundleConfig.pb file, a base
# module directory, zero or more dynamic feature module directories. See https://
# developer.android.com/guide/app-bundle/build for guidance on building App
# Bundles.
# Corresponds to the JSON property `appBundle`
# @return [Google::Apis::TestingV1::AppBundle]
attr_accessor :app_bundle
# The java package for the application under test. The default is determined by
# examining the application's manifest.
# Corresponds to the JSON property `appPackageId`
# @return [String]
attr_accessor :app_package_id
# The list of scenario labels that should be run during the test. The scenario
# labels should map to labels defined in the application's manifest. For example,
# player_experience and com.google.test.loops.player_experience add all of the
# loops labeled in the manifest with the com.google.test.loops.player_experience
# name to the execution. Scenarios can also be specified in the scenarios field.
# Corresponds to the JSON property `scenarioLabels`
# @return [Array<String>]
attr_accessor :scenario_labels
# The list of scenarios that should be run during the test. The default is all
# test loops, derived from the application's manifest.
# Corresponds to the JSON property `scenarios`
# @return [Array<Fixnum>]
attr_accessor :scenarios
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@app_apk = args[:app_apk] if args.key?(:app_apk)
@app_bundle = args[:app_bundle] if args.key?(:app_bundle)
@app_package_id = args[:app_package_id] if args.key?(:app_package_id)
@scenario_labels = args[:scenario_labels] if args.key?(:scenario_labels)
@scenarios = args[:scenarios] if args.key?(:scenarios)
end
end
# A version of the Android OS.
class AndroidVersion
include Google::Apis::Core::Hashable
# The API level for this Android version. Examples: 18, 19.
# Corresponds to the JSON property `apiLevel`
# @return [Fixnum]
attr_accessor :api_level
# The code name for this Android version. Examples: "JellyBean", "KitKat".
# Corresponds to the JSON property `codeName`
# @return [String]
attr_accessor :code_name
# Data about the relative number of devices running a given configuration of the
# Android platform.
# Corresponds to the JSON property `distribution`
# @return [Google::Apis::TestingV1::Distribution]
attr_accessor :distribution
# An opaque id for this Android version. Use this id to invoke the
# TestExecutionService.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# Represents a whole or partial calendar date, such as a birthday. The time of
# day and time zone are either specified elsewhere or are insignificant. The
# date is relative to the Gregorian Calendar. This can represent one of the
# following: * A full date, with non-zero year, month, and day values * A month
# and day value, with a zero year, such as an anniversary * A year on its own,
# with zero month and day values * A year and month value, with a zero day, such
# as a credit card expiration date Related types are google.type.TimeOfDay and `
# google.protobuf.Timestamp`.
# Corresponds to the JSON property `releaseDate`
# @return [Google::Apis::TestingV1::Date]
attr_accessor :release_date
# Tags for this dimension. Examples: "default", "preview", "deprecated".
# Corresponds to the JSON property `tags`
# @return [Array<String>]
attr_accessor :tags
# A string representing this version of the Android OS. Examples: "4.3", "4.4".
# Corresponds to the JSON property `versionString`
# @return [String]
attr_accessor :version_string
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@api_level = args[:api_level] if args.key?(:api_level)
@code_name = args[:code_name] if args.key?(:code_name)
@distribution = args[:distribution] if args.key?(:distribution)
@id = args[:id] if args.key?(:id)
@release_date = args[:release_date] if args.key?(:release_date)
@tags = args[:tags] if args.key?(:tags)
@version_string = args[:version_string] if args.key?(:version_string)
end
end
# An Android package file to install.
class Apk
include Google::Apis::Core::Hashable
# A reference to a file, used for user inputs.
# Corresponds to the JSON property `location`
# @return [Google::Apis::TestingV1::FileReference]
attr_accessor :location
# The java package for the APK to be installed. Value is determined by examining
# the application's manifest.
# Corresponds to the JSON property `packageName`
# @return [String]
attr_accessor :package_name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@location = args[:location] if args.key?(:location)
@package_name = args[:package_name] if args.key?(:package_name)
end
end
# Android application details based on application manifest and apk archive
# contents.
class ApkDetail
include Google::Apis::Core::Hashable
# An Android app manifest. See http://developer.android.com/guide/topics/
# manifest/manifest-intro.html
# Corresponds to the JSON property `apkManifest`
# @return [Google::Apis::TestingV1::ApkManifest]
attr_accessor :apk_manifest
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@apk_manifest = args[:apk_manifest] if args.key?(:apk_manifest)
end
end
# An Android app manifest. See http://developer.android.com/guide/topics/
# manifest/manifest-intro.html
class ApkManifest
include Google::Apis::Core::Hashable
# User-readable name for the application.
# Corresponds to the JSON property `applicationLabel`
# @return [String]
attr_accessor :application_label
#
# Corresponds to the JSON property `intentFilters`
# @return [Array<Google::Apis::TestingV1::IntentFilter>]
attr_accessor :intent_filters
# Maximum API level on which the application is designed to run.
# Corresponds to the JSON property `maxSdkVersion`
# @return [Fixnum]
attr_accessor :max_sdk_version
# Minimum API level required for the application to run.
# Corresponds to the JSON property `minSdkVersion`
# @return [Fixnum]
attr_accessor :min_sdk_version
# Full Java-style package name for this application, e.g. "com.example.foo".
# Corresponds to the JSON property `packageName`
# @return [String]
attr_accessor :package_name
# Specifies the API Level on which the application is designed to run.
# Corresponds to the JSON property `targetSdkVersion`
# @return [Fixnum]
attr_accessor :target_sdk_version
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@application_label = args[:application_label] if args.key?(:application_label)
@intent_filters = args[:intent_filters] if args.key?(:intent_filters)
@max_sdk_version = args[:max_sdk_version] if args.key?(:max_sdk_version)
@min_sdk_version = args[:min_sdk_version] if args.key?(:min_sdk_version)
@package_name = args[:package_name] if args.key?(:package_name)
@target_sdk_version = args[:target_sdk_version] if args.key?(:target_sdk_version)
end
end
# An Android App Bundle file format, containing a BundleConfig.pb file, a base
# module directory, zero or more dynamic feature module directories. See https://
# developer.android.com/guide/app-bundle/build for guidance on building App
# Bundles.
class AppBundle
include Google::Apis::Core::Hashable
# A reference to a file, used for user inputs.
# Corresponds to the JSON property `bundleLocation`
# @return [Google::Apis::TestingV1::FileReference]
attr_accessor :bundle_location
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bundle_location = args[:bundle_location] if args.key?(:bundle_location)
end
end
# Response containing the current state of the specified test matrix.
class CancelTestMatrixResponse
include Google::Apis::Core::Hashable
# The current rolled-up state of the test matrix. If this state is already final,
# then the cancelation request will have no effect.
# Corresponds to the JSON property `testState`
# @return [String]
attr_accessor :test_state
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@test_state = args[:test_state] if args.key?(:test_state)
end
end
# Information about the client which invoked the test.
class ClientInfo
include Google::Apis::Core::Hashable
# The list of detailed information about client.
# Corresponds to the JSON property `clientInfoDetails`
# @return [Array<Google::Apis::TestingV1::ClientInfoDetail>]
attr_accessor :client_info_details
# Required. Client name, such as gcloud.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@client_info_details = args[:client_info_details] if args.key?(:client_info_details)
@name = args[:name] if args.key?(:name)
end
end
# Key-value pair of detailed information about the client which invoked the test.
# Examples: `'Version', '1.0'`, `'Release Track', 'BETA'`.
class ClientInfoDetail
include Google::Apis::Core::Hashable
# Required. The key of detailed client information.
# Corresponds to the JSON property `key`
# @return [String]
attr_accessor :key
# Required. The value of detailed client information.
# Corresponds to the JSON property `value`
# @return [String]
attr_accessor :value
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@key = args[:key] if args.key?(:key)
@value = args[:value] if args.key?(:value)
end
end
# Represents a whole or partial calendar date, such as a birthday. The time of
# day and time zone are either specified elsewhere or are insignificant. The
# date is relative to the Gregorian Calendar. This can represent one of the
# following: * A full date, with non-zero year, month, and day values * A month
# and day value, with a zero year, such as an anniversary * A year on its own,
# with zero month and day values * A year and month value, with a zero day, such
# as a credit card expiration date Related types are google.type.TimeOfDay and `
# google.protobuf.Timestamp`.
class Date
include Google::Apis::Core::Hashable
# Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
# specify a year by itself or a year and month where the day isn't significant.
# Corresponds to the JSON property `day`
# @return [Fixnum]
attr_accessor :day
# Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
# and day.
# Corresponds to the JSON property `month`
# @return [Fixnum]
attr_accessor :month
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
# year.
# Corresponds to the JSON property `year`
# @return [Fixnum]
attr_accessor :year
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@day = args[:day] if args.key?(:day)
@month = args[:month] if args.key?(:month)
@year = args[:year] if args.key?(:year)
end
end
# A single device file description.
class DeviceFile
include Google::Apis::Core::Hashable
# An opaque binary blob file to install on the device before the test starts.
# Corresponds to the JSON property `obbFile`
# @return [Google::Apis::TestingV1::ObbFile]
attr_accessor :obb_file
# A file or directory to install on the device before the test starts.
# Corresponds to the JSON property `regularFile`
# @return [Google::Apis::TestingV1::RegularFile]
attr_accessor :regular_file
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@obb_file = args[:obb_file] if args.key?(:obb_file)
@regular_file = args[:regular_file] if args.key?(:regular_file)
end
end
# A single device IP block
class DeviceIpBlock
include Google::Apis::Core::Hashable
# Represents a whole or partial calendar date, such as a birthday. The time of
# day and time zone are either specified elsewhere or are insignificant. The
# date is relative to the Gregorian Calendar. This can represent one of the
# following: * A full date, with non-zero year, month, and day values * A month
# and day value, with a zero year, such as an anniversary * A year on its own,
# with zero month and day values * A year and month value, with a zero day, such
# as a credit card expiration date Related types are google.type.TimeOfDay and `
# google.protobuf.Timestamp`.
# Corresponds to the JSON property `addedDate`
# @return [Google::Apis::TestingV1::Date]
attr_accessor :added_date
# An IP address block in CIDR notation eg: 34.68.194.64/29
# Corresponds to the JSON property `block`
# @return [String]
attr_accessor :block
# Whether this block is used by physical or virtual devices
# Corresponds to the JSON property `form`
# @return [String]
attr_accessor :form
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@added_date = args[:added_date] if args.key?(:added_date)
@block = args[:block] if args.key?(:block)
@form = args[:form] if args.key?(:form)
end
end
# List of IP blocks used by the Firebase Test Lab
class DeviceIpBlockCatalog
include Google::Apis::Core::Hashable
# The device IP blocks used by Firebase Test Lab
# Corresponds to the JSON property `ipBlocks`
# @return [Array<Google::Apis::TestingV1::DeviceIpBlock>]
attr_accessor :ip_blocks
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@ip_blocks = args[:ip_blocks] if args.key?(:ip_blocks)
end
end
# Data about the relative number of devices running a given configuration of the
# Android platform.
class Distribution
include Google::Apis::Core::Hashable
# Output only. The estimated fraction (0-1) of the total market with this
# configuration.
# Corresponds to the JSON property `marketShare`
# @return [Float]
attr_accessor :market_share
# Output only. The time this distribution was measured.
# Corresponds to the JSON property `measurementTime`
# @return [String]
attr_accessor :measurement_time
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@market_share = args[:market_share] if args.key?(:market_share)
@measurement_time = args[:measurement_time] if args.key?(:measurement_time)
end
end
# The environment in which the test is run.
class Environment
include Google::Apis::Core::Hashable
# A single Android device.
# Corresponds to the JSON property `androidDevice`
# @return [Google::Apis::TestingV1::AndroidDevice]
attr_accessor :android_device
# A single iOS device.
# Corresponds to the JSON property `iosDevice`
# @return [Google::Apis::TestingV1::IosDevice]
attr_accessor :ios_device
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@android_device = args[:android_device] if args.key?(:android_device)
@ios_device = args[:ios_device] if args.key?(:ios_device)
end
end
# The matrix of environments in which the test is to be executed.
class EnvironmentMatrix
include Google::Apis::Core::Hashable
# A list of Android device configurations in which the test is to be executed.
# Corresponds to the JSON property `androidDeviceList`
# @return [Google::Apis::TestingV1::AndroidDeviceList]
attr_accessor :android_device_list
# A set of Android device configuration permutations is defined by the the cross-
# product of the given axes. Internally, the given AndroidMatrix will be
# expanded into a set of AndroidDevices. Only supported permutations will be
# instantiated. Invalid permutations (e.g., incompatible models/versions) are
# ignored.
# Corresponds to the JSON property `androidMatrix`
# @return [Google::Apis::TestingV1::AndroidMatrix]
attr_accessor :android_matrix
# A list of iOS device configurations in which the test is to be executed.
# Corresponds to the JSON property `iosDeviceList`
# @return [Google::Apis::TestingV1::IosDeviceList]
attr_accessor :ios_device_list
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@android_device_list = args[:android_device_list] if args.key?(:android_device_list)
@android_matrix = args[:android_matrix] if args.key?(:android_matrix)
@ios_device_list = args[:ios_device_list] if args.key?(:ios_device_list)
end
end
# A key-value pair passed as an environment variable to the test.
class EnvironmentVariable
include Google::Apis::Core::Hashable
# Key for the environment variable.
# Corresponds to the JSON property `key`
# @return [String]
attr_accessor :key
# Value for the environment variable.
# Corresponds to the JSON property `value`
# @return [String]
attr_accessor :value
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@key = args[:key] if args.key?(:key)
@value = args[:value] if args.key?(:value)
end
end
# A reference to a file, used for user inputs.
class FileReference
include Google::Apis::Core::Hashable
# A path to a file in Google Cloud Storage. Example: gs://build-app-
# 1414623860166/app%40debug-unaligned.apk These paths are expected to be url
# encoded (percent encoding)
# Corresponds to the JSON property `gcsPath`
# @return [String]
attr_accessor :gcs_path
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@gcs_path = args[:gcs_path] if args.key?(:gcs_path)
end
end
# Response containing the details of the specified Android application APK.
class GetApkDetailsResponse
include Google::Apis::Core::Hashable
# Android application details based on application manifest and apk archive
# contents.
# Corresponds to the JSON property `apkDetail`
# @return [Google::Apis::TestingV1::ApkDetail]
attr_accessor :apk_detail
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@apk_detail = args[:apk_detail] if args.key?(:apk_detail)
end
end
# Enables automatic Google account login. If set, the service automatically
# generates a Google test account and adds it to the device, before executing
# the test. Note that test accounts might be reused. Many applications show
# their full set of functionalities when an account is present on the device.
# Logging into the device with these generated accounts allows testing more
# functionalities.
class GoogleAuto
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# A storage location within Google cloud storage (GCS).
class GoogleCloudStorage
include Google::Apis::Core::Hashable
# Required. The path to a directory in GCS that will eventually contain the
# results for this test. The requesting user must have write access on the
# bucket in the supplied path.
# Corresponds to the JSON property `gcsPath`
# @return [String]
attr_accessor :gcs_path
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@gcs_path = args[:gcs_path] if args.key?(:gcs_path)
end
end
# The section of an tag. https://developer.android.com/guide/topics/manifest/
# intent-filter-element.html
class IntentFilter
include Google::Apis::Core::Hashable
# The android:name value of the tag.
# Corresponds to the JSON property `actionNames`
# @return [Array<String>]
attr_accessor :action_names
# The android:name value of the tag.
# Corresponds to the JSON property `categoryNames`
# @return [Array<String>]
attr_accessor :category_names
# The android:mimeType value of the tag.
# Corresponds to the JSON property `mimeType`
# @return [String]
attr_accessor :mime_type
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@action_names = args[:action_names] if args.key?(:action_names)
@category_names = args[:category_names] if args.key?(:category_names)
@mime_type = args[:mime_type] if args.key?(:mime_type)
end
end
# A single iOS device.
class IosDevice
include Google::Apis::Core::Hashable
# Required. The id of the iOS device to be used. Use the
# TestEnvironmentDiscoveryService to get supported options.
# Corresponds to the JSON property `iosModelId`
# @return [String]
attr_accessor :ios_model_id
# Required. The id of the iOS major software version to be used. Use the
# TestEnvironmentDiscoveryService to get supported options.
# Corresponds to the JSON property `iosVersionId`
# @return [String]
attr_accessor :ios_version_id
# Required. The locale the test device used for testing. Use the
# TestEnvironmentDiscoveryService to get supported options.
# Corresponds to the JSON property `locale`
# @return [String]
attr_accessor :locale
# Required. How the device is oriented during the test. Use the
# TestEnvironmentDiscoveryService to get supported options.
# Corresponds to the JSON property `orientation`
# @return [String]
attr_accessor :orientation
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@ios_model_id = args[:ios_model_id] if args.key?(:ios_model_id)
@ios_version_id = args[:ios_version_id] if args.key?(:ios_version_id)
@locale = args[:locale] if args.key?(:locale)
@orientation = args[:orientation] if args.key?(:orientation)
end
end
# The currently supported iOS devices.
class IosDeviceCatalog
include Google::Apis::Core::Hashable
# The set of supported iOS device models.
# Corresponds to the JSON property `models`
# @return [Array<Google::Apis::TestingV1::IosModel>]
attr_accessor :models
# iOS configuration that can be selected at the time a test is run.
# Corresponds to the JSON property `runtimeConfiguration`
# @return [Google::Apis::TestingV1::IosRuntimeConfiguration]
attr_accessor :runtime_configuration
# The set of supported iOS software versions.
# Corresponds to the JSON property `versions`
# @return [Array<Google::Apis::TestingV1::IosVersion>]
attr_accessor :versions
# The set of supported Xcode versions.
# Corresponds to the JSON property `xcodeVersions`
# @return [Array<Google::Apis::TestingV1::XcodeVersion>]
attr_accessor :xcode_versions
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@models = args[:models] if args.key?(:models)
@runtime_configuration = args[:runtime_configuration] if args.key?(:runtime_configuration)
@versions = args[:versions] if args.key?(:versions)
@xcode_versions = args[:xcode_versions] if args.key?(:xcode_versions)
end
end
# A file or directory to install on the device before the test starts.
class IosDeviceFile
include Google::Apis::Core::Hashable
# The bundle id of the app where this file lives. iOS apps sandbox their own
# filesystem, so app files must specify which app installed on the device.
# Corresponds to the JSON property `bundleId`
# @return [String]
attr_accessor :bundle_id
# A reference to a file, used for user inputs.
# Corresponds to the JSON property `content`
# @return [Google::Apis::TestingV1::FileReference]
attr_accessor :content
# Location of the file on the device, inside the app's sandboxed filesystem
# Corresponds to the JSON property `devicePath`
# @return [String]
attr_accessor :device_path
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bundle_id = args[:bundle_id] if args.key?(:bundle_id)
@content = args[:content] if args.key?(:content)
@device_path = args[:device_path] if args.key?(:device_path)
end
end
# A list of iOS device configurations in which the test is to be executed.
class IosDeviceList
include Google::Apis::Core::Hashable
# Required. A list of iOS devices.
# Corresponds to the JSON property `iosDevices`
# @return [Array<Google::Apis::TestingV1::IosDevice>]
attr_accessor :ios_devices
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@ios_devices = args[:ios_devices] if args.key?(:ios_devices)
end
end
# A description of an iOS device tests may be run on.
class IosModel
include Google::Apis::Core::Hashable
# Device capabilities. Copied from https://developer.apple.com/library/archive/
# documentation/DeviceInformation/Reference/iOSDeviceCompatibility/
# DeviceCompatibilityMatrix/DeviceCompatibilityMatrix.html
# Corresponds to the JSON property `deviceCapabilities`
# @return [Array<String>]
attr_accessor :device_capabilities
# Whether this device is a phone, tablet, wearable, etc.
# Corresponds to the JSON property `formFactor`
# @return [String]
attr_accessor :form_factor
# The unique opaque id for this model. Use this for invoking the
# TestExecutionService.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# The human-readable name for this device model. Examples: "iPhone 4s", "iPad
# Mini 2".
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# Screen density in DPI.
# Corresponds to the JSON property `screenDensity`
# @return [Fixnum]
attr_accessor :screen_density
# Screen size in the horizontal (X) dimension measured in pixels.
# Corresponds to the JSON property `screenX`
# @return [Fixnum]
attr_accessor :screen_x
# Screen size in the vertical (Y) dimension measured in pixels.
# Corresponds to the JSON property `screenY`
# @return [Fixnum]
attr_accessor :screen_y
# The set of iOS major software versions this device supports.
# Corresponds to the JSON property `supportedVersionIds`
# @return [Array<String>]
attr_accessor :supported_version_ids
# Tags for this dimension. Examples: "default", "preview", "deprecated".
# Corresponds to the JSON property `tags`
# @return [Array<String>]
attr_accessor :tags
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@device_capabilities = args[:device_capabilities] if args.key?(:device_capabilities)
@form_factor = args[:form_factor] if args.key?(:form_factor)
@id = args[:id] if args.key?(:id)
@name = args[:name] if args.key?(:name)
@screen_density = args[:screen_density] if args.key?(:screen_density)
@screen_x = args[:screen_x] if args.key?(:screen_x)
@screen_y = args[:screen_y] if args.key?(:screen_y)
@supported_version_ids = args[:supported_version_ids] if args.key?(:supported_version_ids)
@tags = args[:tags] if args.key?(:tags)
end
end
# iOS configuration that can be selected at the time a test is run.
class IosRuntimeConfiguration
include Google::Apis::Core::Hashable
# The set of available locales.
# Corresponds to the JSON property `locales`
# @return [Array<Google::Apis::TestingV1::Locale>]
attr_accessor :locales
# The set of available orientations.
# Corresponds to the JSON property `orientations`
# @return [Array<Google::Apis::TestingV1::Orientation>]
attr_accessor :orientations
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@locales = args[:locales] if args.key?(:locales)
@orientations = args[:orientations] if args.key?(:orientations)
end
end
# A test of an iOS application that implements one or more game loop scenarios.
# This test type accepts an archived application (.ipa file) and a list of
# integer scenarios that will be executed on the app sequentially.
class IosTestLoop
include Google::Apis::Core::Hashable
# Output only. The bundle id for the application under test.
# Corresponds to the JSON property `appBundleId`
# @return [String]
attr_accessor :app_bundle_id
# A reference to a file, used for user inputs.
# Corresponds to the JSON property `appIpa`
# @return [Google::Apis::TestingV1::FileReference]
attr_accessor :app_ipa
# The list of scenarios that should be run during the test. Defaults to the
# single scenario 0 if unspecified.
# Corresponds to the JSON property `scenarios`
# @return [Array<Fixnum>]
attr_accessor :scenarios
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@app_bundle_id = args[:app_bundle_id] if args.key?(:app_bundle_id)
@app_ipa = args[:app_ipa] if args.key?(:app_ipa)
@scenarios = args[:scenarios] if args.key?(:scenarios)
end
end
# A description of how to set up an iOS device prior to running the test.
class IosTestSetup
include Google::Apis::Core::Hashable
# iOS apps to install in addition to those being directly tested.
# Corresponds to the JSON property `additionalIpas`
# @return [Array<Google::Apis::TestingV1::FileReference>]
attr_accessor :additional_ipas
# The network traffic profile used for running the test. Available network
# profiles can be queried by using the NETWORK_CONFIGURATION environment type
# when calling TestEnvironmentDiscoveryService.GetTestEnvironmentCatalog.
# Corresponds to the JSON property `networkProfile`
# @return [String]
attr_accessor :network_profile
# List of directories on the device to upload to Cloud Storage at the end of the
# test. Directories should either be in a shared directory (e.g. /private/var/
# mobile/Media) or within an accessible directory inside the app's filesystem (e.
# g. /Documents) by specifying the bundle id.
# Corresponds to the JSON property `pullDirectories`
# @return [Array<Google::Apis::TestingV1::IosDeviceFile>]
attr_accessor :pull_directories
# List of files to push to the device before starting the test.
# Corresponds to the JSON property `pushFiles`
# @return [Array<Google::Apis::TestingV1::IosDeviceFile>]
attr_accessor :push_files
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@additional_ipas = args[:additional_ipas] if args.key?(:additional_ipas)
@network_profile = args[:network_profile] if args.key?(:network_profile)
@pull_directories = args[:pull_directories] if args.key?(:pull_directories)
@push_files = args[:push_files] if args.key?(:push_files)
end
end
# An iOS version.
class IosVersion
include Google::Apis::Core::Hashable
# An opaque id for this iOS version. Use this id to invoke the
# TestExecutionService.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# An integer representing the major iOS version. Examples: "8", "9".
# Corresponds to the JSON property `majorVersion`
# @return [Fixnum]
attr_accessor :major_version
# An integer representing the minor iOS version. Examples: "1", "2".
# Corresponds to the JSON property `minorVersion`
# @return [Fixnum]
attr_accessor :minor_version
# The available Xcode versions for this version.
# Corresponds to the JSON property `supportedXcodeVersionIds`
# @return [Array<String>]
attr_accessor :supported_xcode_version_ids
# Tags for this dimension. Examples: "default", "preview", "deprecated".
# Corresponds to the JSON property `tags`
# @return [Array<String>]
attr_accessor :tags
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@id = args[:id] if args.key?(:id)
@major_version = args[:major_version] if args.key?(:major_version)
@minor_version = args[:minor_version] if args.key?(:minor_version)
@supported_xcode_version_ids = args[:supported_xcode_version_ids] if args.key?(:supported_xcode_version_ids)
@tags = args[:tags] if args.key?(:tags)
end
end
# A test of an iOS application that uses the XCTest framework. Xcode supports
# the option to "build for testing", which generates an .xctestrun file that
# contains a test specification (arguments, test methods, etc). This test type
# accepts a zip file containing the .xctestrun file and the corresponding
# contents of the Build/Products directory that contains all the binaries needed
# to run the tests.
class IosXcTest
include Google::Apis::Core::Hashable
# Output only. The bundle id for the application under test.
# Corresponds to the JSON property `appBundleId`
# @return [String]
attr_accessor :app_bundle_id
# The option to test special app entitlements. Setting this would re-sign the
# app having special entitlements with an explicit application-identifier.
# Currently supports testing aps-environment entitlement.
# Corresponds to the JSON property `testSpecialEntitlements`
# @return [Boolean]
attr_accessor :test_special_entitlements
alias_method :test_special_entitlements?, :test_special_entitlements
# A reference to a file, used for user inputs.
# Corresponds to the JSON property `testsZip`
# @return [Google::Apis::TestingV1::FileReference]
attr_accessor :tests_zip
# The Xcode version that should be used for the test. Use the
# TestEnvironmentDiscoveryService to get supported options. Defaults to the
# latest Xcode version Firebase Test Lab supports.
# Corresponds to the JSON property `xcodeVersion`
# @return [String]
attr_accessor :xcode_version
# A reference to a file, used for user inputs.
# Corresponds to the JSON property `xctestrun`
# @return [Google::Apis::TestingV1::FileReference]
attr_accessor :xctestrun
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@app_bundle_id = args[:app_bundle_id] if args.key?(:app_bundle_id)
@test_special_entitlements = args[:test_special_entitlements] if args.key?(:test_special_entitlements)
@tests_zip = args[:tests_zip] if args.key?(:tests_zip)
@xcode_version = args[:xcode_version] if args.key?(:xcode_version)
@xctestrun = args[:xctestrun] if args.key?(:xctestrun)
end
end
# Specifies an intent that starts the main launcher activity.
class LauncherActivityIntent
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# A location/region designation for language.
class Locale
include Google::Apis::Core::Hashable
# The id for this locale. Example: "en_US".
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# A human-friendly name for this language/locale. Example: "English".
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# A human-friendly string representing the region for this locale. Example: "
# United States". Not present for every locale.
# Corresponds to the JSON property `region`
# @return [String]
attr_accessor :region
# Tags for this dimension. Example: "default".
# Corresponds to the JSON property `tags`
# @return [Array<String>]
attr_accessor :tags
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@id = args[:id] if args.key?(:id)
@name = args[:name] if args.key?(:name)
@region = args[:region] if args.key?(:region)
@tags = args[:tags] if args.key?(:tags)
end
end
# Shards test cases into the specified groups of packages, classes, and/or
# methods. With manual sharding enabled, specifying test targets via
# environment_variables or in InstrumentationTest is invalid.
class ManualSharding
include Google::Apis::Core::Hashable
# Required. Group of packages, classes, and/or test methods to be run for each
# shard. When any physical devices are selected, the number of
# test_targets_for_shard must be >= 1 and <= 50. When no physical devices are
# selected, the number must be >= 1 and <= 500.
# Corresponds to the JSON property `testTargetsForShard`
# @return [Array<Google::Apis::TestingV1::TestTargetsForShard>]
attr_accessor :test_targets_for_shard
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@test_targets_for_shard = args[:test_targets_for_shard] if args.key?(:test_targets_for_shard)
end
end
#
class NetworkConfiguration
include Google::Apis::Core::Hashable
# Network emulation parameters.
# Corresponds to the JSON property `downRule`
# @return [Google::Apis::TestingV1::TrafficRule]
attr_accessor :down_rule
# The unique opaque id for this network traffic configuration.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# Network emulation parameters.
# Corresponds to the JSON property `upRule`
# @return [Google::Apis::TestingV1::TrafficRule]
attr_accessor :up_rule
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@down_rule = args[:down_rule] if args.key?(:down_rule)
@id = args[:id] if args.key?(:id)
@up_rule = args[:up_rule] if args.key?(:up_rule)
end
end
#
class NetworkConfigurationCatalog
include Google::Apis::Core::Hashable
#
# Corresponds to the JSON property `configurations`
# @return [Array<Google::Apis::TestingV1::NetworkConfiguration>]
attr_accessor :configurations
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@configurations = args[:configurations] if args.key?(:configurations)
end
end
# An opaque binary blob file to install on the device before the test starts.
class ObbFile
include Google::Apis::Core::Hashable
# A reference to a file, used for user inputs.
# Corresponds to the JSON property `obb`
# @return [Google::Apis::TestingV1::FileReference]
attr_accessor :obb
# Required. OBB file name which must conform to the format as specified by
# Android e.g. [main|patch].0300110.com.example.android.obb which will be
# installed into \/Android/obb/\/ on the device.
# Corresponds to the JSON property `obbFileName`
# @return [String]
attr_accessor :obb_file_name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@obb = args[:obb] if args.key?(:obb)
@obb_file_name = args[:obb_file_name] if args.key?(:obb_file_name)
end
end
# Screen orientation of the device.
class Orientation
include Google::Apis::Core::Hashable
# The id for this orientation. Example: "portrait".
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# A human-friendly name for this orientation. Example: "portrait".
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# Tags for this dimension. Example: "default".
# Corresponds to the JSON property `tags`
# @return [Array<String>]
attr_accessor :tags
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@id = args[:id] if args.key?(:id)
@name = args[:name] if args.key?(:name)
@tags = args[:tags] if args.key?(:tags)
end
end
# The currently provided software environment on the devices under test.
class ProvidedSoftwareCatalog
include Google::Apis::Core::Hashable
# A string representing the current version of Android Test Orchestrator that is
# provided by TestExecutionService. Example: "1.0.2 beta".
# Corresponds to the JSON property `orchestratorVersion`
# @return [String]
attr_accessor :orchestrator_version
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@orchestrator_version = args[:orchestrator_version] if args.key?(:orchestrator_version)
end
end
# A file or directory to install on the device before the test starts.
class RegularFile
include Google::Apis::Core::Hashable
# A reference to a file, used for user inputs.
# Corresponds to the JSON property `content`
# @return [Google::Apis::TestingV1::FileReference]
attr_accessor :content
# Required. Where to put the content on the device. Must be an absolute,
# allowlisted path. If the file exists, it will be replaced. The following
# device-side directories and any of their subdirectories are allowlisted: $`
# EXTERNAL_STORAGE`, /sdcard, or /storage $`ANDROID_DATA`/local/tmp, or /data/
# local/tmp Specifying a path outside of these directory trees is invalid. The
# paths /sdcard and /data will be made available and treated as implicit path
# substitutions. E.g. if /sdcard on a particular device does not map to external
# storage, the system will replace it with the external storage path prefix for
# that device and copy the file there. It is strongly advised to use the
# Environment API in app and test code to access files on the device in a
# portable way.
# Corresponds to the JSON property `devicePath`
# @return [String]
attr_accessor :device_path
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@content = args[:content] if args.key?(:content)
@device_path = args[:device_path] if args.key?(:device_path)
end
end
# Locations where the results of running the test are stored.
class ResultStorage
include Google::Apis::Core::Hashable
# A storage location within Google cloud storage (GCS).
# Corresponds to the JSON property `googleCloudStorage`
# @return [Google::Apis::TestingV1::GoogleCloudStorage]
attr_accessor :google_cloud_storage
# Output only. URL to the results in the Firebase Web Console.
# Corresponds to the JSON property `resultsUrl`
# @return [String]
attr_accessor :results_url
# Represents a tool results execution resource. This has the results of a
# TestMatrix.
# Corresponds to the JSON property `toolResultsExecution`
# @return [Google::Apis::TestingV1::ToolResultsExecution]
attr_accessor :tool_results_execution
# Represents a tool results history resource.
# Corresponds to the JSON property `toolResultsHistory`
# @return [Google::Apis::TestingV1::ToolResultsHistory]
attr_accessor :tool_results_history
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@google_cloud_storage = args[:google_cloud_storage] if args.key?(:google_cloud_storage)
@results_url = args[:results_url] if args.key?(:results_url)
@tool_results_execution = args[:tool_results_execution] if args.key?(:tool_results_execution)
@tool_results_history = args[:tool_results_history] if args.key?(:tool_results_history)
end
end
# Directs Robo to interact with a specific UI element if it is encountered
# during the crawl. Currently, Robo can perform text entry or element click.
class RoboDirective
include Google::Apis::Core::Hashable
# Required. The type of action that Robo should perform on the specified element.
# Corresponds to the JSON property `actionType`
# @return [String]
attr_accessor :action_type
# The text that Robo is directed to set. If left empty, the directive will be
# treated as a CLICK on the element matching the resource_name.
# Corresponds to the JSON property `inputText`
# @return [String]
attr_accessor :input_text
# Required. The android resource name of the target UI element. For example, in
# Java: R.string.foo in xml: @string/foo Only the "foo" part is needed.
# Reference doc: https://developer.android.com/guide/topics/resources/accessing-
# resources.html
# Corresponds to the JSON property `resourceName`
# @return [String]
attr_accessor :resource_name
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@action_type = args[:action_type] if args.key?(:action_type)
@input_text = args[:input_text] if args.key?(:input_text)
@resource_name = args[:resource_name] if args.key?(:resource_name)
end
end
# Message for specifying the start activities to crawl.
class RoboStartingIntent
include Google::Apis::Core::Hashable
# Specifies an intent that starts the main launcher activity.
# Corresponds to the JSON property `launcherActivity`
# @return [Google::Apis::TestingV1::LauncherActivityIntent]
attr_accessor :launcher_activity
# A starting intent specified by an action, uri, and categories.
# Corresponds to the JSON property `startActivity`
# @return [Google::Apis::TestingV1::StartActivityIntent]
attr_accessor :start_activity
# Timeout in seconds for each intent.
# Corresponds to the JSON property `timeout`
# @return [String]
attr_accessor :timeout
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@launcher_activity = args[:launcher_activity] if args.key?(:launcher_activity)
@start_activity = args[:start_activity] if args.key?(:start_activity)
@timeout = args[:timeout] if args.key?(:timeout)
end
end
# Output only. Details about the shard.
class Shard
include Google::Apis::Core::Hashable
# Output only. The total number of shards.
# Corresponds to the JSON property `numShards`
# @return [Fixnum]
attr_accessor :num_shards
# Output only. The index of the shard among all the shards.
# Corresponds to the JSON property `shardIndex`
# @return [Fixnum]
attr_accessor :shard_index
# Test targets for a shard.
# Corresponds to the JSON property `testTargetsForShard`
# @return [Google::Apis::TestingV1::TestTargetsForShard]
attr_accessor :test_targets_for_shard
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@num_shards = args[:num_shards] if args.key?(:num_shards)
@shard_index = args[:shard_index] if args.key?(:shard_index)
@test_targets_for_shard = args[:test_targets_for_shard] if args.key?(:test_targets_for_shard)
end
end
# Options for enabling sharding.
class ShardingOption
include Google::Apis::Core::Hashable
# Shards test cases into the specified groups of packages, classes, and/or
# methods. With manual sharding enabled, specifying test targets via
# environment_variables or in InstrumentationTest is invalid.
# Corresponds to the JSON property `manualSharding`
# @return [Google::Apis::TestingV1::ManualSharding]
attr_accessor :manual_sharding
# Uniformly shards test cases given a total number of shards. For
# Instrumentation test, it will be translated to "-e numShard" "-e shardIndex"
# AndroidJUnitRunner arguments. With uniform sharding enabled, specifying these
# sharding arguments via environment_variables is invalid.
# Corresponds to the JSON property `uniformSharding`
# @return [Google::Apis::TestingV1::UniformSharding]
attr_accessor :uniform_sharding
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@manual_sharding = args[:manual_sharding] if args.key?(:manual_sharding)
@uniform_sharding = args[:uniform_sharding] if args.key?(:uniform_sharding)
end
end
# A starting intent specified by an action, uri, and categories.
class StartActivityIntent
include Google::Apis::Core::Hashable
# Action name. Required for START_ACTIVITY.
# Corresponds to the JSON property `action`
# @return [String]
attr_accessor :action
# Intent categories to set on the intent.
# Corresponds to the JSON property `categories`
# @return [Array<String>]
attr_accessor :categories
# URI for the action.
# Corresponds to the JSON property `uri`
# @return [String]
attr_accessor :uri
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@action = args[:action] if args.key?(:action)
@categories = args[:categories] if args.key?(:categories)
@uri = args[:uri] if args.key?(:uri)
end
end
#
class SystraceSetup
include Google::Apis::Core::Hashable
# Systrace duration in seconds. Should be between 1 and 30 seconds. 0 disables
# systrace.
# Corresponds to the JSON property `durationSeconds`
# @return [Fixnum]
attr_accessor :duration_seconds
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@duration_seconds = args[:duration_seconds] if args.key?(:duration_seconds)
end
end
# Additional details about the progress of the running test.
class TestDetails
include Google::Apis::Core::Hashable
# Output only. If the TestState is ERROR, then this string will contain human-
# readable details about the error.
# Corresponds to the JSON property `errorMessage`
# @return [String]
attr_accessor :error_message
# Output only. Human-readable, detailed descriptions of the test's progress. For
# example: "Provisioning a device", "Starting Test". During the course of
# execution new data may be appended to the end of progress_messages.
# Corresponds to the JSON property `progressMessages`
# @return [Array<String>]
attr_accessor :progress_messages
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@error_message = args[:error_message] if args.key?(:error_message)
@progress_messages = args[:progress_messages] if args.key?(:progress_messages)
end
end
# A description of a test environment.
class TestEnvironmentCatalog
include Google::Apis::Core::Hashable
# The currently supported Android devices.
# Corresponds to the JSON property `androidDeviceCatalog`
# @return [Google::Apis::TestingV1::AndroidDeviceCatalog]
attr_accessor :android_device_catalog
# List of IP blocks used by the Firebase Test Lab
# Corresponds to the JSON property `deviceIpBlockCatalog`
# @return [Google::Apis::TestingV1::DeviceIpBlockCatalog]
attr_accessor :device_ip_block_catalog
# The currently supported iOS devices.
# Corresponds to the JSON property `iosDeviceCatalog`
# @return [Google::Apis::TestingV1::IosDeviceCatalog]
attr_accessor :ios_device_catalog
# Supported network configurations.
# Corresponds to the JSON property `networkConfigurationCatalog`
# @return [Google::Apis::TestingV1::NetworkConfigurationCatalog]
attr_accessor :network_configuration_catalog
# The currently provided software environment on the devices under test.
# Corresponds to the JSON property `softwareCatalog`
# @return [Google::Apis::TestingV1::ProvidedSoftwareCatalog]
attr_accessor :software_catalog
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@android_device_catalog = args[:android_device_catalog] if args.key?(:android_device_catalog)
@device_ip_block_catalog = args[:device_ip_block_catalog] if args.key?(:device_ip_block_catalog)
@ios_device_catalog = args[:ios_device_catalog] if args.key?(:ios_device_catalog)
@network_configuration_catalog = args[:network_configuration_catalog] if args.key?(:network_configuration_catalog)
@software_catalog = args[:software_catalog] if args.key?(:software_catalog)
end
end
# A single test executed in a single environment.
class TestExecution
include Google::Apis::Core::Hashable
# The environment in which the test is run.
# Corresponds to the JSON property `environment`
# @return [Google::Apis::TestingV1::Environment]
attr_accessor :environment
# Output only. Unique id set by the service.
# Corresponds to the JSON property `id`
# @return [String]
attr_accessor :id
# Output only. Id of the containing TestMatrix.
# Corresponds to the JSON property `matrixId`
# @return [String]
attr_accessor :matrix_id
# Output only. The cloud project that owns the test execution.
# Corresponds to the JSON property `projectId`
# @return [String]
attr_accessor :project_id
# Output only. Details about the shard.
# Corresponds to the JSON property `shard`
# @return [Google::Apis::TestingV1::Shard]
attr_accessor :shard
# Output only. Indicates the current progress of the test execution (e.g.,
# FINISHED).
# Corresponds to the JSON property `state`
# @return [String]
attr_accessor :state
# Additional details about the progress of the running test.
# Corresponds to the JSON property `testDetails`
# @return [Google::Apis::TestingV1::TestDetails]
attr_accessor :test_details
# A description of how to run the test.
# Corresponds to the JSON property `testSpecification`
# @return [Google::Apis::TestingV1::TestSpecification]
attr_accessor :test_specification
# Output only. The time this test execution was initially created.
# Corresponds to the JSON property `timestamp`
# @return [String]
attr_accessor :timestamp
# Represents a tool results step resource. This has the results of a
# TestExecution.
# Corresponds to the JSON property `toolResultsStep`
# @return [Google::Apis::TestingV1::ToolResultsStep]
attr_accessor :tool_results_step
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@environment = args[:environment] if args.key?(:environment)
@id = args[:id] if args.key?(:id)
@matrix_id = args[:matrix_id] if args.key?(:matrix_id)
@project_id = args[:project_id] if args.key?(:project_id)
@shard = args[:shard] if args.key?(:shard)
@state = args[:state] if args.key?(:state)
@test_details = args[:test_details] if args.key?(:test_details)
@test_specification = args[:test_specification] if args.key?(:test_specification)
@timestamp = args[:timestamp] if args.key?(:timestamp)
@tool_results_step = args[:tool_results_step] if args.key?(:tool_results_step)
end
end
# TestMatrix captures all details about a test. It contains the environment
# configuration, test specification, test executions and overall state and
# outcome.
class TestMatrix
include Google::Apis::Core::Hashable
# Information about the client which invoked the test.
# Corresponds to the JSON property `clientInfo`
# @return [Google::Apis::TestingV1::ClientInfo]
attr_accessor :client_info
# The matrix of environments in which the test is to be executed.
# Corresponds to the JSON property `environmentMatrix`
# @return [Google::Apis::TestingV1::EnvironmentMatrix]
attr_accessor :environment_matrix
# If true, only a single attempt at most will be made to run each execution/
# shard in the matrix. Flaky test attempts are not affected. Normally, 2 or more
# attempts are made if a potential infrastructure issue is detected. This
# feature is for latency sensitive workloads. The incidence of execution
# failures may be significantly greater for fail-fast matrices and support is
# more limited because of that expectation.
# Corresponds to the JSON property `failFast`
# @return [Boolean]
attr_accessor :fail_fast
alias_method :fail_fast?, :fail_fast
# The number of times a TestExecution should be re-attempted if one or more of
# its test cases fail for any reason. The maximum number of reruns allowed is 10.
# Default is 0, which implies no reruns.
# Corresponds to the JSON property `flakyTestAttempts`
# @return [Fixnum]
attr_accessor :flaky_test_attempts
# Output only. Describes why the matrix is considered invalid. Only useful for
# matrices in the INVALID state.
# Corresponds to the JSON property `invalidMatrixDetails`
# @return [String]
attr_accessor :invalid_matrix_details
# Output Only. The overall outcome of the test. Only set when the test matrix
# state is FINISHED.
# Corresponds to the JSON property `outcomeSummary`
# @return [String]
attr_accessor :outcome_summary
# The cloud project that owns the test matrix.
# Corresponds to the JSON property `projectId`
# @return [String]
attr_accessor :project_id
# Locations where the results of running the test are stored.
# Corresponds to the JSON property `resultStorage`
# @return [Google::Apis::TestingV1::ResultStorage]
attr_accessor :result_storage
# Output only. Indicates the current progress of the test matrix.
# Corresponds to the JSON property `state`
# @return [String]
attr_accessor :state
# Output only. The list of test executions that the service creates for this
# matrix.
# Corresponds to the JSON property `testExecutions`
# @return [Array<Google::Apis::TestingV1::TestExecution>]
attr_accessor :test_executions
# Output only. Unique id set by the service.
# Corresponds to the JSON property `testMatrixId`
# @return [String]
attr_accessor :test_matrix_id
# A description of how to run the test.
# Corresponds to the JSON property `testSpecification`
# @return [Google::Apis::TestingV1::TestSpecification]
attr_accessor :test_specification
# Output only. The time this test matrix was initially created.
# Corresponds to the JSON property `timestamp`
# @return [String]
attr_accessor :timestamp
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@client_info = args[:client_info] if args.key?(:client_info)
@environment_matrix = args[:environment_matrix] if args.key?(:environment_matrix)
@fail_fast = args[:fail_fast] if args.key?(:fail_fast)
@flaky_test_attempts = args[:flaky_test_attempts] if args.key?(:flaky_test_attempts)
@invalid_matrix_details = args[:invalid_matrix_details] if args.key?(:invalid_matrix_details)
@outcome_summary = args[:outcome_summary] if args.key?(:outcome_summary)
@project_id = args[:project_id] if args.key?(:project_id)
@result_storage = args[:result_storage] if args.key?(:result_storage)
@state = args[:state] if args.key?(:state)
@test_executions = args[:test_executions] if args.key?(:test_executions)
@test_matrix_id = args[:test_matrix_id] if args.key?(:test_matrix_id)
@test_specification = args[:test_specification] if args.key?(:test_specification)
@timestamp = args[:timestamp] if args.key?(:timestamp)
end
end
# A description of how to set up the Android device prior to running the test.
class TestSetup
include Google::Apis::Core::Hashable
# Identifies an account and how to log into it.
# Corresponds to the JSON property `account`
# @return [Google::Apis::TestingV1::Account]
attr_accessor :account
# APKs to install in addition to those being directly tested. Currently capped
# at 100.
# Corresponds to the JSON property `additionalApks`
# @return [Array<Google::Apis::TestingV1::Apk>]
attr_accessor :additional_apks
# List of directories on the device to upload to GCS at the end of the test;
# they must be absolute paths under /sdcard, /storage or /data/local/tmp. Path
# names are restricted to characters a-z A-Z 0-9 _ - . + and / Note: The paths /
# sdcard and /data will be made available and treated as implicit path
# substitutions. E.g. if /sdcard on a particular device does not map to external
# storage, the system will replace it with the external storage path prefix for
# that device.
# Corresponds to the JSON property `directoriesToPull`
# @return [Array<String>]
attr_accessor :directories_to_pull
# Whether to prevent all runtime permissions to be granted at app install
# Corresponds to the JSON property `dontAutograntPermissions`
# @return [Boolean]
attr_accessor :dont_autogrant_permissions
alias_method :dont_autogrant_permissions?, :dont_autogrant_permissions
# Environment variables to set for the test (only applicable for instrumentation
# tests).
# Corresponds to the JSON property `environmentVariables`
# @return [Array<Google::Apis::TestingV1::EnvironmentVariable>]
attr_accessor :environment_variables
# List of files to push to the device before starting the test.
# Corresponds to the JSON property `filesToPush`
# @return [Array<Google::Apis::TestingV1::DeviceFile>]
attr_accessor :files_to_push
# The network traffic profile used for running the test. Available network
# profiles can be queried by using the NETWORK_CONFIGURATION environment type
# when calling TestEnvironmentDiscoveryService.GetTestEnvironmentCatalog.
# Corresponds to the JSON property `networkProfile`
# @return [String]
attr_accessor :network_profile
# Systrace configuration for the run. If set a systrace will be taken, starting
# on test start and lasting for the configured duration. The systrace file thus
# obtained is put in the results bucket together with the other artifacts from
# the run.
# Corresponds to the JSON property `systrace`
# @return [Google::Apis::TestingV1::SystraceSetup]
attr_accessor :systrace
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@account = args[:account] if args.key?(:account)
@additional_apks = args[:additional_apks] if args.key?(:additional_apks)
@directories_to_pull = args[:directories_to_pull] if args.key?(:directories_to_pull)
@dont_autogrant_permissions = args[:dont_autogrant_permissions] if args.key?(:dont_autogrant_permissions)
@environment_variables = args[:environment_variables] if args.key?(:environment_variables)
@files_to_push = args[:files_to_push] if args.key?(:files_to_push)
@network_profile = args[:network_profile] if args.key?(:network_profile)
@systrace = args[:systrace] if args.key?(:systrace)
end
end
# A description of how to run the test.
class TestSpecification
include Google::Apis::Core::Hashable
# A test of an Android application that can control an Android component
# independently of its normal lifecycle. Android instrumentation tests run an
# application APK and test APK inside the same process on a virtual or physical
# AndroidDevice. They also specify a test runner class, such as com.google.
# GoogleTestRunner, which can vary on the specific instrumentation framework
# chosen. See for more information on types of Android tests.
# Corresponds to the JSON property `androidInstrumentationTest`
# @return [Google::Apis::TestingV1::AndroidInstrumentationTest]
attr_accessor :android_instrumentation_test
# A test of an android application that explores the application on a virtual or
# physical Android Device, finding culprits and crashes as it goes. Next tag: 30
# Corresponds to the JSON property `androidRoboTest`
# @return [Google::Apis::TestingV1::AndroidRoboTest]
attr_accessor :android_robo_test
# A test of an Android Application with a Test Loop. The intent \ will be
# implicitly added, since Games is the only user of this api, for the time being.
# Corresponds to the JSON property `androidTestLoop`
# @return [Google::Apis::TestingV1::AndroidTestLoop]
attr_accessor :android_test_loop
# Disables performance metrics recording. May reduce test latency.
# Corresponds to the JSON property `disablePerformanceMetrics`
# @return [Boolean]
attr_accessor :disable_performance_metrics
alias_method :disable_performance_metrics?, :disable_performance_metrics
# Disables video recording. May reduce test latency.
# Corresponds to the JSON property `disableVideoRecording`
# @return [Boolean]
attr_accessor :disable_video_recording
alias_method :disable_video_recording?, :disable_video_recording
# A test of an iOS application that implements one or more game loop scenarios.
# This test type accepts an archived application (.ipa file) and a list of
# integer scenarios that will be executed on the app sequentially.
# Corresponds to the JSON property `iosTestLoop`
# @return [Google::Apis::TestingV1::IosTestLoop]
attr_accessor :ios_test_loop
# A description of how to set up an iOS device prior to running the test.
# Corresponds to the JSON property `iosTestSetup`
# @return [Google::Apis::TestingV1::IosTestSetup]
attr_accessor :ios_test_setup
# A test of an iOS application that uses the XCTest framework. Xcode supports
# the option to "build for testing", which generates an .xctestrun file that
# contains a test specification (arguments, test methods, etc). This test type
# accepts a zip file containing the .xctestrun file and the corresponding
# contents of the Build/Products directory that contains all the binaries needed
# to run the tests.
# Corresponds to the JSON property `iosXcTest`
# @return [Google::Apis::TestingV1::IosXcTest]
attr_accessor :ios_xc_test
# A description of how to set up the Android device prior to running the test.
# Corresponds to the JSON property `testSetup`
# @return [Google::Apis::TestingV1::TestSetup]
attr_accessor :test_setup
# Max time a test execution is allowed to run before it is automatically
# cancelled. The default value is 5 min.
# Corresponds to the JSON property `testTimeout`
# @return [String]
attr_accessor :test_timeout
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@android_instrumentation_test = args[:android_instrumentation_test] if args.key?(:android_instrumentation_test)
@android_robo_test = args[:android_robo_test] if args.key?(:android_robo_test)
@android_test_loop = args[:android_test_loop] if args.key?(:android_test_loop)
@disable_performance_metrics = args[:disable_performance_metrics] if args.key?(:disable_performance_metrics)
@disable_video_recording = args[:disable_video_recording] if args.key?(:disable_video_recording)
@ios_test_loop = args[:ios_test_loop] if args.key?(:ios_test_loop)
@ios_test_setup = args[:ios_test_setup] if args.key?(:ios_test_setup)
@ios_xc_test = args[:ios_xc_test] if args.key?(:ios_xc_test)
@test_setup = args[:test_setup] if args.key?(:test_setup)
@test_timeout = args[:test_timeout] if args.key?(:test_timeout)
end
end
# Test targets for a shard.
class TestTargetsForShard
include Google::Apis::Core::Hashable
# Group of packages, classes, and/or test methods to be run for each shard. The
# targets need to be specified in AndroidJUnitRunner argument format. For
# example, "package com.my.packages" "class com.my.package.MyClass". The number
# of shard_test_targets must be greater than 0.
# Corresponds to the JSON property `testTargets`
# @return [Array<String>]
attr_accessor :test_targets
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@test_targets = args[:test_targets] if args.key?(:test_targets)
end
end
# Represents a tool results execution resource. This has the results of a
# TestMatrix.
class ToolResultsExecution
include Google::Apis::Core::Hashable
# Output only. A tool results execution ID.
# Corresponds to the JSON property `executionId`
# @return [String]
attr_accessor :execution_id
# Output only. A tool results history ID.
# Corresponds to the JSON property `historyId`
# @return [String]
attr_accessor :history_id
# Output only. The cloud project that owns the tool results execution.
# Corresponds to the JSON property `projectId`
# @return [String]
attr_accessor :project_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@execution_id = args[:execution_id] if args.key?(:execution_id)
@history_id = args[:history_id] if args.key?(:history_id)
@project_id = args[:project_id] if args.key?(:project_id)
end
end
# Represents a tool results history resource.
class ToolResultsHistory
include Google::Apis::Core::Hashable
# Required. A tool results history ID.
# Corresponds to the JSON property `historyId`
# @return [String]
attr_accessor :history_id
# Required. The cloud project that owns the tool results history.
# Corresponds to the JSON property `projectId`
# @return [String]
attr_accessor :project_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@history_id = args[:history_id] if args.key?(:history_id)
@project_id = args[:project_id] if args.key?(:project_id)
end
end
# Represents a tool results step resource. This has the results of a
# TestExecution.
class ToolResultsStep
include Google::Apis::Core::Hashable
# Output only. A tool results execution ID.
# Corresponds to the JSON property `executionId`
# @return [String]
attr_accessor :execution_id
# Output only. A tool results history ID.
# Corresponds to the JSON property `historyId`
# @return [String]
attr_accessor :history_id
# Output only. The cloud project that owns the tool results step.
# Corresponds to the JSON property `projectId`
# @return [String]
attr_accessor :project_id
# Output only. A tool results step ID.
# Corresponds to the JSON property `stepId`
# @return [String]
attr_accessor :step_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@execution_id = args[:execution_id] if args.key?(:execution_id)
@history_id = args[:history_id] if args.key?(:history_id)
@project_id = args[:project_id] if args.key?(:project_id)
@step_id = args[:step_id] if args.key?(:step_id)
end
end
# Network emulation parameters.
class TrafficRule
include Google::Apis::Core::Hashable
# Bandwidth in kbits/second.
# Corresponds to the JSON property `bandwidth`
# @return [Float]
attr_accessor :bandwidth
# Burst size in kbits.
# Corresponds to the JSON property `burst`
# @return [Float]
attr_accessor :burst
# Packet delay, must be >= 0.
# Corresponds to the JSON property `delay`
# @return [String]
attr_accessor :delay
# Packet duplication ratio (0.0 - 1.0).
# Corresponds to the JSON property `packetDuplicationRatio`
# @return [Float]
attr_accessor :packet_duplication_ratio
# Packet loss ratio (0.0 - 1.0).
# Corresponds to the JSON property `packetLossRatio`
# @return [Float]
attr_accessor :packet_loss_ratio
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bandwidth = args[:bandwidth] if args.key?(:bandwidth)
@burst = args[:burst] if args.key?(:burst)
@delay = args[:delay] if args.key?(:delay)
@packet_duplication_ratio = args[:packet_duplication_ratio] if args.key?(:packet_duplication_ratio)
@packet_loss_ratio = args[:packet_loss_ratio] if args.key?(:packet_loss_ratio)
end
end
# Uniformly shards test cases given a total number of shards. For
# Instrumentation test, it will be translated to "-e numShard" "-e shardIndex"
# AndroidJUnitRunner arguments. With uniform sharding enabled, specifying these
# sharding arguments via environment_variables is invalid.
class UniformSharding
include Google::Apis::Core::Hashable
# Required. Total number of shards. When any physical devices are selected, the
# number must be >= 1 and <= 50. When no physical devices are selected, the
# number must be >= 1 and <= 500.
# Corresponds to the JSON property `numShards`
# @return [Fixnum]
attr_accessor :num_shards
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@num_shards = args[:num_shards] if args.key?(:num_shards)
end
end
# An Xcode version that an iOS version is compatible with.
class XcodeVersion
include Google::Apis::Core::Hashable
# Tags for this Xcode version. Example: "default".
# Corresponds to the JSON property `tags`
# @return [Array<String>]
attr_accessor :tags
# The id for this version. Example: "9.2".
# Corresponds to the JSON property `version`
# @return [String]
attr_accessor :version
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@tags = args[:tags] if args.key?(:tags)
@version = args[:version] if args.key?(:version)
end
end
end
end
end
|