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
|
# Copyright 2009-2013 Bernhard M. Wiedemann
# Copyright 2012-2021 SUSE LLC
# SPDX-License-Identifier: GPL-2.0-or-later
package testapi;
use Carp;
use Exporter;
use Mojo::Base 'Exporter', -signatures;
use File::Basename qw(basename dirname);
use File::Path 'make_path';
use Time::HiRes qw(sleep gettimeofday tv_interval);
use autotest 'query_isotovideo';
use Mojo::DOM;
use Net::Domain qw(hostfqdn);
require IPC::System::Simple;
use autodie ':all';
use OpenQA::Exceptions;
use OpenQA::Isotovideo::NeedleDownloader;
use Digest::MD5 'md5_base64';
use Carp qw(cluck croak);
use MIME::Base64 'decode_base64';
use Scalar::Util qw(looks_like_number reftype);
use B::Deparse;
use Time::Seconds;
require bmwqemu;
use constant OPENQA_LIBPATH => '/usr/share/openqa/lib';
our @EXPORT = qw($realname $username $password $serialdev %cmd %vars
get_var get_required_var check_var set_var get_var_array check_var_array autoinst_url
send_key send_key_until_needlematch type_string type_password
enter_cmd
hold_key release_key
assert_screen check_screen assert_and_dclick save_screenshot
assert_and_click mouse_hide mouse_set mouse_click
mouse_dclick mouse_tclick match_has_tag click_lastmatch mouse_drag
assert_script_run script_run background_script_run
assert_script_sudo script_sudo script_output validate_script_output
start_audiocapture assert_recorded_sound check_recorded_sound
select_console console reset_consoles current_console
upload_asset data_url check_shutdown assert_shutdown parse_junit_log parse_extra_log upload_logs
wait_screen_change assert_screen_change wait_still_screen assert_still_screen wait_serial
record_soft_failure record_info force_soft_failure
become_root x11_start_program ensure_installed eject_cd power
switch_network
save_memory_dump freeze_vm resume_vm save_storage
diag hashed_string
save_tmp_file get_test_data
);
our @EXPORT_OK = qw(is_serial_terminal);
our %cmd;
our $distri;
our $realname = "Bernhard M. Wiedemann";
our $username;
our $password;
our $last_matched_needle;
our $serialdev;
sub check_screen;
sub enter_cmd;
sub is_serial_terminal;
sub send_key;
sub type_password;
sub type_string;
=head1 introduction
=for stopwords os autoinst isotovideo openQA
This test API module provides methods exposed by the os-autoinst backend to be
used within tests.
Many methods define a timeout parameter which can be scaled by setting the
C<TIMEOUT_SCALE> variable in the test settings which are read by the isotovideo
process. The scale parameter can be used based on performance of workers to
prevent false positive timeouts based on differing worker performance.
os-autoinst is used in the openQA project.
For more information on how to use openQA, please visit http://open.qa/documentation
=cut
=head1 internal
=head2 _calculate_clickpoint
This subroutine is used to by several subroutines dealing with mouse clicks to calculate
a clickpoint, when only the needle area is available. It takes the area coordinates and
returns the center of that area. It is meant to be a helper subroutine not available
to be used in tests.
=cut
sub _calculate_clickpoint ($needle_to_use, $needle_area = undef, $click_point = undef) {
# If there is no needle area defined, take it from the needle itself.
$needle_area ||= $needle_to_use->{area}->[-1];
# If there is no clickpoint defined, or if it has been specifically defined as "center"
# then calculate the click point as a central point of the specified area.
if (!$click_point || $click_point eq 'center') {
$click_point = {
xpos => $needle_area->{w} / 2,
ypos => $needle_area->{h} / 2,
};
}
# Use the click point coordinates (which are relative numbers inside of the area)
# to calculate the absolute click point position.
my $x = int($needle_area->{x} + $click_point->{xpos});
my $y = int($needle_area->{y} + $click_point->{ypos});
return $x, $y;
}
=for stopwords xen hvc0 xvc0 ipmi ttyS
=head2 init
Used for internal initialization, do not call from tests.
=cut
sub _serialdev () {
return 'hvc0' if get_var('OFW') || get_var('BACKEND', '') =~ /s390x|pvm_hmc/;
return 'ttysclp0' if (check_var('ARCH', 's390x') && check_var('BACKEND', 'qemu'));
return get_var('SERIALDEV', 'ttyS0');
}
sub init () {
$serialdev = _serialdev();
return;
}
=for stopwords ProhibitSubroutinePrototypes
=head2 set_distribution
set_distribution($distri);
Set distribution object.
You can use distribution object to implement distribution specific helpers.
=cut
sub set_distribution { # no:style:signatures
($distri) = @_;
return $distri->init();
}
=for stopwords SUT
=head1 video output handling
=head2 save_screenshot
save_screenshot;
Saves screenshot of current SUT screen.
=cut
sub save_screenshot () { $autotest::current_test->take_screenshot unless is_serial_terminal }
=head2 record_soft_failure
=for stopwords softfail
record_soft_failure([$reason]);
Record a soft failure on the current test modules result. The result will
still be counted as a success. Use this to mark where workarounds are applied.
Takes an optional C<$reason> string which is recorded in the log file. See
C<force_soft_failure> to forcefully override a failed test module status from
a C<post_fail_hook> or C<record_info> when the status should not be
influenced.
=cut
sub record_soft_failure ($reason) {
bmwqemu::log_call(reason => $reason);
$autotest::current_test->record_soft_failure_result($reason);
}
sub _is_valid_result ($result) { $result =~ /^(ok|fail|softfail)$/ }
=head2 record_info
=for stopwords softfail
record_info($title [, $output] [, result => $result] [, resultname => $resultname]);
Example:
record_info('workaround', "we know what we are doing");
Record a generic step result on the current test modules. This is meant for
informational purposes to be interpreted by a displaying system. For example
openQA can show a info box as part of the job results details. Use this
instead of C<record_soft_failure> for example when you do not want to mark the
job as a softfail. The optional value C<$result> can be 'ok' (default),
'fail', 'softfail'. C<$resultname> can be specified for the additional name
tag on the result file.
=cut
sub record_info ($title, $output = undef, %nargs) {
$nargs{result} //= 'ok';
die 'unsupported $result \'' . $nargs{result} . '\'' unless _is_valid_result($nargs{result});
$output //= '';
bmwqemu::log_call(title => $title, output => $output, %nargs);
$autotest::current_test->record_resultfile($title, $output, %nargs);
}
=head2 force_soft_failure
=for stopwords softfail
force_soft_failure([$reason]);
Similar to C<record_soft_failure> but can be used to override the test module
status to softfail from a C<post_fail_hook> if the module would be set to fail
otherwise. This can be used for easier tracking of known issues without
needing to handle failed tests a lot.
=cut
sub force_soft_failure ($reason) {
bmwqemu::log_call(reason => $reason);
$autotest::current_test->record_soft_failure_result($reason, force_status => 1);
}
sub _handle_found_needle ($foundneedle, $rsp, $tags) {
# convert the needle back to an object
$foundneedle->{needle} = needle->new($foundneedle->{needle});
my $img = tinycv::from_ppm(decode_base64($rsp->{image}));
my $frame = $rsp->{frame};
$autotest::current_test->record_screenmatch($img, $foundneedle, $tags, $rsp->{candidates}, $frame);
my $lastarea = $foundneedle->{area}->[-1];
bmwqemu::fctres(
sprintf("found %s, similarity %.2f @ %d/%d", $foundneedle->{needle}->{name}, $lastarea->{similarity}, $lastarea->{x} // 0, $lastarea->{y} // 0));
$last_matched_needle = $foundneedle;
return $foundneedle;
}
sub _check_backend_response ($rsp, $check, $timeout, $mustmatch) {
my $tags = $rsp->{tags};
if (my $foundneedle = $rsp->{found}) {
return _handle_found_needle($foundneedle, $rsp, $tags);
}
elsif ($rsp->{timeout}) {
my $method = $check ? 'check_screen' : 'assert_screen';
my $status_message = "match=" . join(',', @$tags) . " timed out after $timeout ($method)";
bmwqemu::fctres($status_message);
# add the final mismatch as 'unk' result to be able to create a new needle from it
# note: add the screenshot only if configured to pause on timeout - otherwise we would
# record each failure twice
my $failed_screens = $rsp->{failed_screens};
my $final_mismatch = $failed_screens->[-1];
if (query_isotovideo(is_configured_to_pause_on_timeout => {check => $check})) {
my $current_test = $autotest::current_test;
if ($final_mismatch) {
$autotest::current_test->record_screenfail(
img => tinycv::from_ppm(decode_base64($final_mismatch->{image})),
needles => $final_mismatch->{candidates},
tags => $tags,
result => 'unk',
frame => $final_mismatch->{frame},
);
}
else {
bmwqemu::fctwarn("ran into $method timeout but there's no final mismatch - just taking a screenshot");
$current_test->take_screenshot();
}
$current_test->save_test_result();
}
# do a special rpc call to isotovideo which will block if the test should be paused
# (if the test should not be paused this call will return 0; on resume (after pause) it will return 1)
query_isotovideo('report_timeout', {
tags => $tags,
msg => $status_message,
check => $check,
}) and return 'try_again';
# only care for the last one
$failed_screens = [$final_mismatch] if $check && defined $final_mismatch;
for my $l (@$failed_screens) {
my $img = tinycv::from_ppm(decode_base64($l->{image}));
my $result = $check ? 'unk' : 'fail';
$result = 'unk' if ($l != $final_mismatch);
$autotest::current_test->record_screenfail(
img => $img,
needles => $l->{candidates},
tags => $tags,
result => $result,
overall => (!$rsp->{saveresult} && $check) ? undef : 'fail',
frame => $l->{frame},
);
}
# Handle case where a stall was detected: fail if this is an
# assert_screen, warn if it's a check_screen
if ($rsp->{stall}) {
if (!$check) {
record_info('Stall detected', 'Stall was detected during assert_screen fail', result => 'fail');
}
else {
bmwqemu::fctwarn("stall detected during check_screen failure!");
}
}
if (!$check && !$rsp->{saveresult}) {
# Must match can be only scalar or array ref.
my $needletags = ref($mustmatch) eq 'ARRAY' ? join(', ', @$mustmatch) : $mustmatch;
OpenQA::Exception::FailedNeedle->throw(
error => "no candidate needle with tag(s) '$needletags' matched",
tags => $mustmatch
);
}
if ($rsp->{saveresult}) {
$autotest::current_test->save_test_result();
# now back into waiting for the backend
$rsp = myjsonrpc::read_json($autotest::isotovideo);
return unless $rsp;
$rsp = $rsp->{ret};
$rsp->{tags} = $tags;
return _check_backend_response($rsp, $check, $timeout, $mustmatch);
}
}
else {
die "unexpected response " . bmwqemu::pp($rsp);
}
return;
}
sub _check_or_assert ($mustmatch, $check, %args) {
die "no tags specified" if (!$mustmatch || (ref $mustmatch eq 'ARRAY' && scalar @$mustmatch == 0));
die "current_test undefined" unless $autotest::current_test;
$args{timeout} = bmwqemu::scale_timeout($args{timeout});
while (1) {
my $rsp = query_isotovideo('check_screen', {mustmatch => $mustmatch, check => $check, timeout => $args{timeout}, no_wait => $args{no_wait}});
# check backend response
# (implemented as separate function because it needs to call itself)
my $backend_response = _check_backend_response($rsp, $check, $args{timeout}, $mustmatch);
# return the response unless we should try again after resuming from paused state
return $backend_response if (!$backend_response || $backend_response ne 'try_again');
# download new needles
OpenQA::Isotovideo::NeedleDownloader->new()->download_missing_needles($rsp->{new_needles} // []);
# reload needles before trying again
query_isotovideo('backend_reload_needles', {});
}
}
=head2 assert_screen
assert_screen($mustmatch [, [$timeout] | [timeout => $timeout]] [, no_wait => $no_wait]);
Wait for needle with tag C<$mustmatch> to appear on SUT screen. C<$mustmatch>
can be string or C<ARRAYREF> of string (C<['tag1', 'tag2']>). The maximum
waiting time is defined by C<$timeout>. It is recommended to use a value lower
than the default timeout only when explicitly needed. C<assert_screen> is not
very suitable for checking performance expectations. Under the normal
circumstance of the screen being shown this does not imply a longer waiting
time as the method returns as soon as a successful needle match occurred.
Specify C<$no_wait> to run the screen check as fast as possible that is
possibly more than once per second which is default. Select this to check a
screen which can change in a range faster than 1-2 seconds not to miss the
screen to check for.
Returns matched needle or throws C<FailedNeedle> exception if $timeout timeout
is hit. Default timeout is 30s.
=cut
sub assert_screen { # no:style:signatures
my ($mustmatch) = shift;
my $timeout;
$timeout = shift if (@_ % 2);
my %args = (timeout => $timeout // $bmwqemu::default_timeout, @_);
bmwqemu::log_call(mustmatch => $mustmatch, %args);
return _check_or_assert($mustmatch, 0, %args);
}
=head2 check_screen
check_screen($mustmatch [, [$timeout] | [timeout => $timeout]] [, no_wait => $no_wait]);
Similar to C<assert_screen> but does not throw exceptions. Use this for optional matches.
Check C<assert_screen> for parameters.
Unlike C<assert_screen> it is recommended to use the lowest possible timeout
to prevent needless waiting time in case no match is expected behaviour. In
general a value of 0s for the timeout should suffice, that is only checking
once with no waiting time. In most cases a check_screen with a higher timeout
can be replaced by C<assert_screen> with multiple tags using an C<ARRAYREF> in
combination with C<match_has_tag> or another synchronization call in before,
for example C<wait_screen_change> or C<wait_still_screen>.
Returns matched needle or C<undef> if timeout is hit. Default timeout is 0s.
=cut
sub check_screen { # no:style:signatures
my ($mustmatch) = shift;
my $timeout;
$timeout = shift if (@_ % 2);
my %args = (timeout => $timeout // 0, @_);
bmwqemu::log_call(mustmatch => $mustmatch, %args);
return _check_or_assert($mustmatch, 1, %args);
}
=head2 match_has_tag
match_has_tag($tag);
Returns true (1) if last matched needle has C<$tag>, false (0) if last
matched needle does not have C<$tag>, and C<undef> if no needle has yet
been matched at the time of the call.
=cut
sub match_has_tag ($tag) { $last_matched_needle ? $last_matched_needle->{needle}->has_tag($tag) : undef }
=head2 assert_and_click
assert_and_click($mustmatch [, timeout => $timeout] [, button => $button] [, clicktime => $clicktime ] [, dclick => 1 ] [, mousehide => 1 ] [, point_id => $id ]);
Wait for needle with C<$mustmatch> tag to appear on SUT screen. Then click
C<$button> at the "click_point" position as defined in the needle JSON file,
or - if the JSON has not explicit "click_point" - in the middle of the last
needle area. If C<$dclick> is set, do double click instead. C<$mustmatch> can
be string or C<ARRAYREF> of strings (C<['tag1', 'tag2']>). C<$button> is by
default C<'left'>. C<'left'> and C<'right'> is supported. If C<$mousehide> is
true then always move mouse to the 'hidden' position after clicking to prevent
to hide the area where the user wants to assert/click in the second step. If
C<$point_id> is specified, the clickpoint used will be the one with a matching
ID.
Throws C<FailedNeedle> exception if C<$timeout> timeout is hit. Default timeout is 30s.
=cut
sub assert_and_click ($mustmatch, %args) {
$args{timeout} //= $bmwqemu::default_timeout;
$last_matched_needle = assert_screen($mustmatch, $args{timeout});
bmwqemu::log_call(mustmatch => $mustmatch, %args);
my %click_args = map { $_ => $args{$_} } qw(button clicktime dclick mousehide point_id);
return click_lastmatch(%click_args);
}
=head2 click_lastmatch
click_lastmatch([, button => $button] [, clicktime => $clicktime ] [, dclick => 1 ] [, mousehide => 1 ] [, point_id => $id ]);
Click C<$button> at the "click_point" position as defined in the needle JSON file
of the last matched needle, or - if the JSON has not explicit "click_point" -
in the middle of the last match area. If C<$dclick> is set, do double click
instead. Supported values for C<$button> are C<'left'> and C<'right'>, C<'left'>
is the default. If C<$mousehide> is true then always move mouse to the 'hidden'
position after clicking to prevent to disturb the area where the user wants to
assert/click in the second step, otherwise move the mouse back to its previous
position. If C<$point_id> is specified, the clickpoint used will be the one
with a matching ID.
=cut
sub click_lastmatch (%args) {
$args{button} //= 'left';
$args{dclick} //= 0;
$args{mousehide} //= 0;
$args{point_id} //= undef;
return unless $last_matched_needle;
my $old_mouse_coords = query_isotovideo('backend_get_last_mouse_set');
# determine click coordinates from the last area which has those explicitly specified
my $relevant_area;
my $relative_click_point;
for my $area (reverse @{$last_matched_needle->{area}}) {
next unless ($relative_click_point = $area->{click_point});
next if defined $args{point_id} && $relative_click_point->{id} ne $args{point_id};
$relevant_area = $area;
last;
}
# Calculate the absolute click point.
my ($x, $y) = _calculate_clickpoint($last_matched_needle, $relevant_area, $relative_click_point);
bmwqemu::diag("clicking at $x/$y");
mouse_set($x, $y);
if ($args{dclick}) {
mouse_dclick($args{button}, $args{clicktime});
}
else {
mouse_click($args{button}, $args{clicktime});
}
# move mouse back to where it was before we clicked, or to the 'hidden' position if it had never been
# positioned
# note: We can not move the mouse instantly. Otherwise we might end up in a click-and-drag situation.
sleep 1;
if ($old_mouse_coords->{x} > -1 && $old_mouse_coords->{y} > -1 && !$args{mousehide}) {
return mouse_set($old_mouse_coords->{x}, $old_mouse_coords->{y});
}
else {
return mouse_hide();
}
}
=head2 assert_and_dclick
assert_and_dclick($mustmatch [, timeout => $timeout] [, button => $button] [, clicktime => $clicktime ] [, dclick => 1 ] [, mousehide => 1 ]);
Alias for C<assert_and_click> with C<$dclick> set.
=cut
sub assert_and_dclick ($mustmatch, %args) {
$args{dclick} = 1;
return assert_and_click($mustmatch, %args);
}
=head2 wait_screen_change
wait_screen_change(CODEREF [,$timeout [, similarity_level => 50, no_wait => 0]]);
Wrapper around code that is supposed to change the screen. This is the
opposite to C<wait_still_screen>. Make sure to put the commands to change the
screen within the block to avoid races between the action and the screen
change. C<wait_screen_change> waits for a screen change after C<CODEREF> was
executed.
Example:
wait_screen_change {
send_key 'esc';
};
Notice: If you use the second parameter, you could get the following warning
Useless use of private variable in void context
To avoid it, use parentheses for the function call and the reserved word 'sub' for the callback
subroutine block.
wait_screen_change(sub {
send_key 'esc';
}, 15);
To lower the backend's internal update interval while looking for screen changes, use
the optional parameter `no_wait => 1`. This makes the test execution faster if the
screen change is expected to happen (almost) immediately.
Returns true if screen changed or false on timeout. Default timeout is 10s. Default
similarity_level is 50.
=cut
sub wait_screen_change : prototype(&@) { # no:style:signatures
my ($callback, $timeout, %args) = @_;
$timeout ||= 10;
$args{similarity_level} //= 50;
bmwqemu::log_call(timeout => $timeout, %args);
$args{timeout} = bmwqemu::scale_timeout($timeout);
# get the initial screen
query_isotovideo('backend_set_reference_screenshot');
$callback->() if $callback;
my $res = query_isotovideo('backend_wait_screen_change', \%args);
if (!$res->{timed_out}) {
bmwqemu::fctres("screen change seen after $res->{elapsed} seconds (similarity: $res->{sim})");
return 1;
}
else {
bmwqemu::fctres("timed out after $res->{elapsed} seconds (similarity: $res->{sim})");
save_screenshot;
return 0;
}
}
=head2 assert_screen_change
assert_screen_change(CODEREF [,$timeout]);
Run C<CODEREF> with C<wait_screen_change> but C<die> if screen did not change
within timeout. Look into C<wait_screen_change> for details.
Example:
assert_screen_change { send_key 'alt-f4' };
=cut
sub assert_screen_change : prototype(&@) { # no:style:signatures
# Need to parse code reference and pass to the method explicitly as
# wait_screen_change uses prototype which expects code block as an argument
# This resolves compile time issues
my ($coderef, @args) = @_;
wait_screen_change(\&{$coderef}, @_) or die 'assert_screen_change failed to detect a screen change';
}
=head2 wait_still_screen
=for stopwords stilltime
wait_still_screen([$stilltime | [stilltime => $stilltime]] [, $timeout] | [timeout => $timeout]] [, similarity_level => $similarity_level] [, no_wait => $no_wait]);
Wait until the screen stops changing.
See C<assert_screen> for C<$no_wait>.
Returns true if screen is not changed for given C<$stilltime> (in seconds) or undef on timeout.
Default timeout is 30s, default stilltime is 7s.
=cut
sub wait_still_screen { # no:style:signatures
my $stilltime = looks_like_number($_[0]) ? shift : 7;
my $timeout = (@_ % 2) ? shift : $bmwqemu::default_timeout;
my %args = (stilltime => $stilltime, timeout => $timeout, @_);
$args{similarity_level} //= 47;
bmwqemu::log_call(%args);
$timeout = $args{timeout} = bmwqemu::scale_timeout($args{timeout});
$stilltime = $args{stilltime};
if ($timeout < $stilltime) {
bmwqemu::fctwarn("Selected timeout \'$timeout\' below stilltime \'$stilltime\', returning with false");
return 0;
}
my $res = query_isotovideo('backend_wait_still_screen', \%args);
if (!$res->{timed_out}) {
bmwqemu::fctres("detected same image for $stilltime seconds ($res->{elapsed} s elapsed), last detected similarity is $res->{sim}");
return 1;
}
else {
$autotest::current_test->timeout_screenshot;
bmwqemu::fctres("wait_still_screen timed out after $res->{elapsed} seconds, last detected similarity is $res->{sim}");
return 0;
}
}
=head2 assert_still_screen
assert_still_screen([$args...])
Run C<wait_still_screen> but C<die> if screen changed within timeout. Look
into C<wait_still_screen> for details.
=cut
sub assert_still_screen (@args) {
wait_still_screen(@args) or die 'assert_still_screen failed to detect a still screen';
}
=head1 test variable access
=head2 get_var
get_var($variable [, $default ])
Returns content of test variable C<$variable> or the C<$default> given as second argument or C<undef>
=cut
sub get_var ($var, $default = undef) {
return $bmwqemu::vars{$var} // $default;
}
=head2 get_required_var
get_required_var($variable)
Similar to C<get_var> but without default value and throws exception if variable can not be retrieved.
=cut
sub get_required_var ($var) {
return $bmwqemu::vars{$var} // croak "Could not retrieve required variable $var";
}
=head2 set_var
set_var($variable, $value [, reload_needles => 1] );
Set test variable C<$variable> to value C<$value>.
Variables starting with C<_SECRET_> or including C<_PASSWORD> will not appear
in the C<vars.json> file.
Specify a true value for the C<reload_needles> flag to trigger a reloading
of needles in the backend and call the cleanup handler with the new variables
to make sure that possibly deselected needles are now taken into account
(useful if you change scenarios during the test run)
=cut
sub set_var ($var, $val, %args) {
$bmwqemu::vars{$var} = $val;
if ($args{reload_needles}) {
bmwqemu::save_vars();
query_isotovideo('backend_reload_needles', {});
}
return;
}
=head2 check_var
check_var($variable, $value);
Returns true if test variable C<$variable> is equal to C<$value> or returns C<undef>.
=cut
sub check_var ($var, $val) {
return defined $bmwqemu::vars{$var} && $bmwqemu::vars{$var} eq $val;
}
=head2 get_var_array
get_var_array($variable [, $default ]);
Return the given variable as array reference (split variable value by , | or ; )
=cut
sub get_var_array ($var, $default = undef) {
my @vars = split(/,|;/, $bmwqemu::vars{$var} || '');
my @default = split(/,|;/, $default || '');
return \@default if !@vars;
return \@vars;
}
=head2 check_var_array
check_var_array($variable, $value);
Boolean function to check if a value list contains a value
=cut
sub check_var_array ($var, $val) {
my $vars_r = get_var_array($var);
return grep { $_ eq $val } @$vars_r;
}
=head1 script execution helpers
=for stopwords os-autoinst autoinst isotovideo VNC
=head2 is_serial_terminal
is_serial_terminal;
Determines if communication with the guest is being performed purely over a
serial port. When true, the guest should have a tty attached to a serial port
and os-autoinst sends commands to it as text. This differs from when a text
console is selected in the guest, but VNC is being used to simulate key presses.
When a serial terminal is selected you will not be able to use functions which
rely on needles. This sub is not exported by default as most tests I<will not
benefit> from changing their behaviour depending on if communication happens
over serial or VNC.
For more info see consoles/virtio_console.pm and consoles/serial_screen.pm.
=cut
sub is_serial_terminal () {
state $ret;
state $last_seen = '';
if (defined current_console() && current_console() ne $last_seen) {
$last_seen = current_console();
$ret = query_isotovideo('backend_is_serial_terminal', {});
}
return $ret->{yesorno};
}
=head2 wait_serial
wait_serial($regex or ARRAYREF of $regexes, [, timeout => $timeout] [, expect_not_found => $expect_not_found] [, %args]);
Positional mode (not suggested)
wait_serial($regex or ARRAYREF of $regexes [, $timeout [, $expect_not_found [, @args ]]]);
Wait for C<$regex> or anyone of C<$regexes> to appear on serial output.
A regex object has to be created with the C<qr> operator.
Setting C<$no_regex> will cause it to do a plain string search.
Set C<$quiet>, to avoid recording serial_result.
For serial_terminal there are more options available, like C<record_output>,
C<buffer_size>. See C<consoles::serial_screen::read_until> for details.
Returns the string matched or C<undef> if C<$expect_not_found> is false
(default).
Returns C<undef> or (after timeout) the string that I<did _not_ match> if
C<$expect_not_found> is true. The default timeout is 90 seconds.
Examples:
wait_serial qr/Password:\s*$/i;
wait_serial 'substring', no_regex => 1, timeout => 30;
=cut
sub wait_serial { # no:style:signatures
my $regexp = shift;
my %args = compat_args(
{
regexp => $regexp,
timeout => 90,
expect_not_found => 0,
quiet => undef,
no_regex => 0,
buffer_size => undef,
record_output => undef,
}, ['timeout', 'expect_not_found'], @_);
bmwqemu::log_call(%args);
$args{timeout} = bmwqemu::scale_timeout($args{timeout});
my $ret = query_isotovideo('backend_wait_serial', \%args);
my $matched = $args{expect_not_found} ? !$ret->{matched} : $ret->{matched};
bmwqemu::wait_for_one_more_screenshot() unless is_serial_terminal;
# to string, we need to feed string of result to
# record_serialresult()
$matched = $matched ? 'ok' : 'fail';
# convert dos2unix (poo#20542)
# hyperv and vmware (backend/svirt.pm) connect serial line over TCP/IP (socat)
# convert CRLF to LF only
$ret->{string} =~ s,\r\n,\n,g;
$autotest::current_test->record_serialresult(bmwqemu::pp($regexp), $matched, $ret->{string}) unless ($args{quiet});
bmwqemu::fctres("$regexp: $matched");
return $ret->{string} if ($matched eq "ok");
return; # false
}
=head2 x11_start_program
x11_start_program($program[, @args]);
Start C<$program> in graphical desktop environment.
I<The implementation is distribution specific and not always available.>
=cut
sub x11_start_program { # no:style:signatures
my ($program, @args) = @_;
bmwqemu::log_call(program => $program, @args);
return $distri->x11_start_program($program, @args);
}
sub _handle_script_run_ret { # no:style:signatures
my ($ret, $cmd, %args) = @_;
return autotest::croak assert_script_run => "command '$cmd' timed out" unless defined $ret;
my $die_msg = "command '$cmd' failed";
$die_msg .= ": $args{fail_message}" if $args{fail_message};
return autotest::croak assert_script_run => $die_msg unless $ret == 0;
}
=head2 assert_script_run
assert_script_run($cmd [, timeout => $timeout] [, fail_message => $fail_message] [,quiet => $quiet]);
Positional mode (not suggested)
assert_script_run($cmd [, $timeout [, $fail_message]]);
Run C<$cmd> via C<< $distri->script_run >> and C<die> unless it returns zero
(indicating successful completion of C<$cmd>). Default timeout is 90 seconds.
Use C<script_run> instead if C<$cmd> may fail.
C<$fail_message> is returned in the die message if specified.
I<The C<script_run> implementation is distribution specific and not always available.
For this to work correctly, it must return 0 if and only if C<$command> completes
successfully. It must NOT return 0 if C<$command> times out. The default implementation
should work on *nix operating systems with a configured serial device.>
=cut
sub assert_script_run { # no:style:signatures
my $cmd = shift;
my %args = compat_args(
{
# assert_script_run originally had the implicit default timeout of
# wait_serial which we are repeating here to preserve old behaviour and
# not change default timeout.
timeout => 90,
fail_message => '',
quiet => testapi::get_var('_QUIET_SCRIPT_CALLS')
}, ['timeout', 'fail_message'], @_);
bmwqemu::log_call(cmd => $cmd, %args);
my $ret = $distri->script_run($cmd, timeout => $args{timeout}, quiet => $args{quiet});
_handle_script_run_ret($ret, $cmd, %args);
return;
}
=head2 script_run
script_run($cmd [, timeout => $timeout] [, output => ''] [, quiet => $quiet]);
Positional mode (not suggested)
script_run($cmd [, $timeout]);
Run C<$cmd> (in the default implementation, by assuming the console prompt and typing
the command). If C<$timeout> is greater than 0, wait for that length of time for
execution to complete.
C<$output> can be used as an explanatory text that will be displayed with the execution of
the command.
C<script_run> will throw an exception if the timeout has expired.
<Returns> exit code received from I<$cmd> or undef if C<$timeout> is 0.
I<The implementation is distribution specific and not always available.>
The default implementation should work on *nix operating systems with a configured
serial device so long as the user has permissions to write to the supplied serial
device C<$serialdev>.
=cut
sub script_run { # no:style:signatures
my $cmd = shift;
my %args = compat_args(
{
timeout => $bmwqemu::default_timeout,
output => '',
quiet => testapi::get_var('_QUIET_SCRIPT_CALLS')
}, ['timeout'], @_);
bmwqemu::log_call(cmd => $cmd, %args);
my $ret = $distri->script_run($cmd, %args);
croak("command '$cmd' timed out") if $args{timeout} > 0 && !defined($ret);
return $ret;
}
=head2 background_script_run
background_script_run($cmd [, output => ''] [, quiet => $quiet]);
Run C<$cmd> in background without waiting for it to finish. Remember to redirect output,
otherwise the PID marker may get corrupted.
C<$output> can be used as an explanatory text that will be displayed with the execution of
the command.
<Returns> PID of the I<$cmd> process running in the background.
I<The implementation is distribution specific and not always available.>
The default implementation should work on *nix operating systems with a configured
serial device so long as the user has permissions to write to the supplied serial
device C<$serialdev>.
=cut
sub background_script_run { # no:style:signatures
my ($cmd, %args) = @_;
bmwqemu::log_call(cmd => $cmd, %args);
return $distri->background_script_run($cmd, %args);
}
=head2 assert_script_sudo
assert_script_sudo($command [, $wait]);
Run C<$command> via C<script_sudo> and then check by C<wait_serial> if its exit
status is not zero.
See C<wait_serial> for default timeout.
I<The implementation is distribution specific and not always available.>
Make sure the non-root user has permissions to write to the supplied serial device
C<$serialdev>.
=cut
sub assert_script_sudo { # no:style:signatures
my ($cmd, $wait) = @_;
# Keep in mind C<str> needs to agree with the corresponding C<str> marker
# defined on C<$distri->script_sudo> itself.
my $str = hashed_string("ASS$cmd");
my $ret = script_sudo("$cmd", $wait);
$ret = ($ret =~ /$str-(\d+)-/)[0] if $ret;
_handle_script_run_ret($ret, $cmd);
return;
}
=head2 script_sudo
script_sudo($program [, $wait]);
Run C<$program> using sudo. Handle the sudo timeout and send password when appropriate.
C<$wait> defaults to 2 seconds.
I<The implementation is distribution specific and not always available.>
=cut
sub script_sudo { # no:style:signatures
my $name = shift;
my $wait = shift // 2;
bmwqemu::log_call(name => $name, wait => $wait);
return $distri->script_sudo($name, $wait);
}
=for stopwords SUT
=head2 script_output
script_output($script [, $wait, type_command => 1, proceed_on_failure => 1] [,quiet => $quiet])
Executing script inside SUT with C<bash -eox> (in case of serial console with C<bash -eo>)
and directs C<stdout> (I<not> C<stderr>!) to the serial console and returns
the output I<if> the script exits with 0. Otherwise the test is set to failed.
NOTE: execution result may include extra serial output which was on serial console
since command was triggered in case serial console is not dedicated for
the script output only.
The script content is based on the variable content of C<current_test_script>
and is typed or fetched through HTTP depending on various parameters. Typing
can be forced by passing C<type_command => 1> for example when the SUT does
not provide a usable network connection.
C<proceed_on_failure> - allows to proceed with validation when C<$script> is
failing (return non-zero exit code)
The default timeout for the script is based on the default in C<wait_serial>
and can be tweaked by setting the C<$wait> positional parameter.
=cut
sub script_output { # no:style:signatures
my $script = shift;
my %args = testapi::compat_args(
{
timeout => undef,
proceed_on_failure => undef, # fail on error by default
quiet => testapi::get_var('_QUIET_SCRIPT_CALLS'),
type_command => undef,
}, ['timeout'], @_);
return $distri->script_output($script, %args);
}
=head2 save_tmp_file
save_tmp_file($relpath, $content)
Saves content to the file in the worker pool directory using hash of the path,
including file, so it can be fetched via http later on using
C< <autoinst_url>/files/#path_to_the_file> > url.
Can be used to modify files for specific test needs, e.g. autoinst profiles.
Dies if cannot open file for writing.
Returns filename of saved file (filename hashed).
Example:
save_tmp_file('autoyast/autoinst.xml', '<profile>Test</profile>')
Then the file can be fetched using url:
C< <autoinst_url>/files/autoyast/autoinst.xml> >
=cut
sub save_tmp_file ($relpath, $content) {
my $path = hashed_string($relpath);
bmwqemu::log_call(path => $relpath);
open my $fh, ">", $path;
print $fh $content;
close $fh;
return $path;
}
=head2 get_test_data
get_test_data($relpath)
Returns content of the file located in data directory. This method can be used
if one needs to modify files content before accessing it in SUT.
Example:
get_test_data('autoyast/autoinst.xml')
This will return content of the file located in data/autoyast/autoinst.xml
=cut
sub get_test_data ($path) {
defined $bmwqemu::vars{CASEDIR} or die 'Need variable CASEDIR';
$path = "$bmwqemu::vars{CASEDIR}/data/$path";
bmwqemu::log_call(path => $path);
unless (-e $path) {
bmwqemu::diag("File doesn't exist: $path");
return;
}
open my $fh, "<", $path;
my $content = do { local $/; <$fh> };
close $fh;
return $content;
}
=head2 validate_script_output
validate_script_output($script, $code | $regexp [, timeout => $timeout] [, quiet => $quiet] [, title => $title] [, fail_message => $fail_message])
Positional mode (not suggested)
validate_script_output($script, $code, [$wait])
Wrapper around script_output, that runs a callback on the output, or
alternatively matches a regular expression. Use it as
validate_script_output "cat /etc/hosts", sub { m/127.*localhost/ };
validate_script_output "cat /etc/hosts", qr/127.*localhost/;
validate_script_output "cat /etc/hosts", qr/127.*localhost/, title => 'localhost check', fail_message => 'No localhost line in /etc/hosts!';
validate_script_output "cat /etc/hosts", sub { $_ !~ m/987.*somehost/ };
=cut
sub validate_script_output { # no:style:signatures
my ($script, $check, @args) = @_;
my %args = compat_args(
{
title => 'validate_script_output',
fail_message => 'output not validating',
timeout => undef,
proceed_on_failure => undef,
quiet => 1, # less noise by default
type_command => undef,
}, ['timeout'], @args);
my $title = delete $args{title};
my $fail_message = delete $args{fail_message};
my $output = script_output($script, %args);
my $res = 'ok';
my $message = '';
if (reftype $check eq 'CODE') {
# set $_ so the callbacks can be simpler code
$_ = $output;
if (!$check->()) {
$res = 'fail';
bmwqemu::diag("output does not pass the code block:\n$output");
}
my $deparse = B::Deparse->new("-p");
# avoid "use strict; use warnings" in the output to make it shorter
$deparse->ambient_pragmas(warnings => [], strict => "all");
my $body = $deparse->coderef2text($check);
$message = sprintf
"Script:\n%s\n\nCheck function (deparsed code):\n%s\n\nOutput:\n%s",
$script, $body, $output;
}
elsif (reftype $check eq 'REGEXP') {
if ($output !~ $check) {
$res = 'fail';
bmwqemu::diag("output does not match the regex:\n$output");
}
$message = sprintf
"Script:\n%s\n\nRegular expression:\n%s\n\nOutput:\n%s",
$script, $check, $output;
}
else {
croak "Invalid use of validate_script_output(), second arg must be a coderef or regexp";
}
$autotest::current_test->record_resultfile(
$title, $message,
result => $res,
);
croak $fail_message if $res eq 'fail';
return 0;
}
=head2 become_root
become_root;
Open a root shell.
I<The implementation is distribution specific and not always available.>
=cut
sub become_root () { $distri->become_root }
=head2 ensure_installed
ensure_installed $package;
Helper to install a package to SUT.
I<The implementation is distribution specific and not always available.>
=cut
sub ensure_installed (@args) { $distri->ensure_installed(@args) }
=head2 hashed_string
hashed_string();
Return a short string representing the given string by passing it through the
MD5 algorithm and taking the first characters.
=cut
sub hashed_string ($string, $count = undef) {
$count //= 5;
my $hash = md5_base64($string);
# + and / are problematic in regexps and shell commands
$hash =~ s,\+,_,g;
$hash =~ s,/,~,g;
return substr($hash, 0, $count);
}
=head1 keyboard support
=head2 send_key
send_key($key [, wait_screen_change => $wait_screen_change]);
Send one C<$key> to SUT keyboard input. Waits for the screen to change when
C<$wait_screen_change> is true.
Special characters naming:
'esc', 'down', 'right', 'up', 'left', 'equal', 'spc', 'minus', 'shift', 'ctrl'
'caps', 'meta', 'alt', 'ret', 'tab', 'backspace', 'end', 'delete', 'home', 'insert'
'pgup', 'pgdn', 'sysrq', 'super'
=cut
sub send_key { # no:style:signatures
my ($key, %args) = @_;
$args{wait_screen_change} //= 0;
bmwqemu::log_call(key => $key, %args);
if ($args{wait_screen_change}) {
wait_screen_change { query_isotovideo('backend_send_key', {key => $key}) };
}
else {
query_isotovideo('backend_send_key', {key => $key});
}
}
=head2 hold_key
hold_key($key);
Hold one C<$key> until release it
=cut
sub hold_key ($key) {
bmwqemu::log_call(key => $key);
query_isotovideo('backend_hold_key', {key => $key});
}
=head2 release_key
release_key($key);
Release one C<$key> which is kept holding
=cut
sub release_key ($key) {
bmwqemu::log_call(key => $key);
query_isotovideo('backend_release_key', {key => $key});
}
=head2 send_key_until_needlematch
send_key_until_needlematch($tag, $key [, $counter, $timeout]);
Send specific key until needle with C<$tag> is matched or C<$counter> is 0.
C<$tag> can be string or C<ARRAYREF> (C<['tag1', 'tag2']>)
Default counter is 20 steps, default timeout is 1s
Throws C<FailedNeedle> exception if needle is not matched until C<$counter> is 0.
=cut
sub send_key_until_needlematch ($tag, $key, $counter = undef, $timeout = undef) {
$counter //= 20;
$timeout //= 1;
my $real_timeout = 0;
while (!check_screen($tag, $real_timeout)) {
wait_screen_change {
send_key $key;
};
if (--$counter <= 0) {
assert_screen $tag, 1;
}
$real_timeout = $timeout;
}
}
=head2 type_string
type_string($string [, max_interval => <num> ] [, wait_screen_change => <num> ] [, wait_still_screen => <num> ] [, secret => 1 ]
[, timeout => <num>] [, similarity_level => <num>] [, lf => 1 ]);
send a string of characters, mapping them to appropriate key names as necessary
you can pass optional parameters with following keys:
C<max_interval (1-250)> determines the typing speed, the lower the
C<max_interval> the slower the typing.
C<wait_screen_change> if set, type only this many characters at a time
C<wait_screen_change> and wait for the screen to change between sets.
C<wait_still_screen> if set, C<wait_still_screen> returns true if screen is not
changed for given C<$wait_still_screen> seconds or false if the screen is not still
for the given seconds within defined C<timeout> after the whole string is typed.
Default timeout is 30s, default stilltime is 0s.
C<similarity_level> can be passed as argument for wrapped C<wait_still_screen> calls.
C<secret (bool)> suppresses logging of the actual string typed.
C<lf (bool)> finishes the string with an additional line feed, for example to
enter a command line.
=cut
sub type_string { # no:style:signatures
# special argument handling for backward compat
my $string = shift;
# backward compat
my %args = (@_ == 1) ? (max_interval => $_[0]) : @_;
$string .= "\n" if $args{lf};
if (is_serial_terminal) {
query_isotovideo('backend_type_string', {text => $string, %args});
return;
}
my $max_interval = $args{max_interval} // 250;
my $wait = $args{wait_screen_change} // 0;
my $wait_still = $args{wait_still_screen} // 0;
my $wait_timeout = $args{timeout} // 30;
my $wait_sim_level = $args{similarity_level} // 47;
my $wait_screen_change_sim_level = $args{wait_screen_change_similarity_level} // 60;
bmwqemu::log_call(string => $string, max_interval => $max_interval, wait_screen_change => $wait, wait_still_screen => $wait_still,
timeout => $wait_timeout, similarity_level => $wait_sim_level, $args{secret} ? (-masked => $string) : ());
my @pieces;
if ($wait) {
# split string into an array of pieces of specified size
# https://stackoverflow.com/questions/372370
@pieces = unpack("(a${wait})*", $string);
}
else {
push @pieces, $string;
}
for my $piece (@pieces) {
if ($wait) {
wait_screen_change { query_isotovideo('backend_type_string', {text => $piece, max_interval => $max_interval}); } $wait_timeout, no_wait => 1, similarity_level => $wait_screen_change_sim_level;
}
else {
query_isotovideo('backend_type_string', {text => $piece, max_interval => $max_interval});
}
if ($wait_still && !wait_still_screen(stilltime => $wait_still,
timeout => $wait_timeout, similarity_level => $wait_sim_level)) {
die "wait_still_screen timed out after ${wait_timeout}s!";
}
}
}
=head2 type_password
type_password($password [, max_interval => <num> ] [, wait_screen_change => <num> ] [, wait_still_screen => <num> ] [, timeout => <num>]
[, similarity_level => <num>] );
A convenience wrapper around C<type_string>, which doesn't log the string.
Uses C<$testapi::password> if no string is given.
You can pass the same optional parameters as for C<type_string> function.
=cut
sub type_password { # no:style:signatures
my ($string, %args) = @_;
$string //= $password;
type_string $string, secret => 1, max_interval => ($args{max_interval} // 100), %args;
}
=head2 enter_cmd
enter_cmd($string [, max_interval => <num> ] [, wait_screen_change => <num> ] [, wait_still_screen => <num> ] [, secret => 1 ]
[, timeout => <num>] [, similarity_level => <num>] );
A convenience wrapper around C<type_string>, that adds a linefeed to execute a
command within a command line prompt.
You can pass the same optional parameters as for C<type_string> function.
=cut
sub enter_cmd { # no:style:signatures
type_string shift, lf => 1, @_;
}
=head1 mouse support
=head2 mouse_set
mouse_set($x, $y);
Move mouse pointer to given coordinates
=cut
sub mouse_set ($mx, $my) {
bmwqemu::log_call(x => $mx, y => $my);
query_isotovideo('backend_mouse_set', {x => $mx, y => $my});
}
=head2 mouse_click
mouse_click([$button, $hold_time]);
Click mouse C<$button>. Can be C<'left'> or C<'right'>. Set C<$hold_time> to hold button for set time in seconds.
Default hold time is 0.15s
=cut
sub mouse_click ($button = undef, $time = undef) {
$button //= 'left';
$time //= $bmwqemu::vars{DEFAULT_CLICK_SLEEP};
$time //= 0.15;
bmwqemu::log_call(button => $button, cursor_down => $time);
query_isotovideo('backend_mouse_button', {button => $button, bstate => 1});
sleep $time;
query_isotovideo('backend_mouse_button', {button => $button, bstate => 0});
}
=head2 mouse_dclick
mouse_dclick([$button, $hold_time]);
Same as mouse_click only for double click.
=cut
sub mouse_dclick ($button = undef, $time = undef) {
$button //= 'left';
$time //= $bmwqemu::vars{DEFAULT_DCLICK_SLEEP};
$time //= 0.10;
bmwqemu::log_call(button => $button, cursor_down => $time);
query_isotovideo('backend_mouse_button', {button => $button, bstate => 1});
sleep $time;
query_isotovideo('backend_mouse_button', {button => $button, bstate => 0});
sleep $time;
query_isotovideo('backend_mouse_button', {button => $button, bstate => 1});
sleep $time;
query_isotovideo('backend_mouse_button', {button => $button, bstate => 0});
}
=head2 mouse_tclick
mouse_tclick([$button, $hold_time]);
Same as mouse_click only for triple click.
=cut
sub mouse_tclick ($button = undef, $time = undef) {
$button //= 'left';
$time //= $bmwqemu::vars{DEFAULT_DCLICK_SLEEP};
$time //= 0.10;
bmwqemu::log_call(button => $button, cursor_down => $time);
query_isotovideo('backend_mouse_button', {button => $button, bstate => 1});
sleep $time;
query_isotovideo('backend_mouse_button', {button => $button, bstate => 0});
sleep $time;
query_isotovideo('backend_mouse_button', {button => $button, bstate => 1});
sleep $time;
query_isotovideo('backend_mouse_button', {button => $button, bstate => 0});
sleep $time;
query_isotovideo('backend_mouse_button', {button => $button, bstate => 1});
sleep $time;
query_isotovideo('backend_mouse_button', {button => $button, bstate => 0});
}
=head2 mouse_hide
mouse_hide([$border_offset]);
Hide mouse cursor by moving it out of screen area.
=cut
sub mouse_hide ($border_offset = undef) {
$border_offset //= 0;
bmwqemu::log_call(border_offset => $border_offset);
query_isotovideo('backend_mouse_hide', {border_offset => $border_offset});
}
=head2 mouse_drag
mouse_drag([$startpoint, $endpoint, $startx, $starty, $endx, $endy, $button, $timeout]);
Click mouse C<$button>, C<'left'> or C<'right'>, at a given location, hold the button and drag
the mouse to another location where the button is released. You can set the C<$startpoint>
and C<$endpoint> by passing the name of the needle tag, i.e. the mouse drag happens between
the two needle areas. Alternatively, you can set all the coordinates explicitly with C<$startx>,
C<$starty>, C<$endx>, and C<$endy>. You can also set one point using a needle and another one
using coordinates. If both the coordinates and the needle are provided, the coordinates
will be used to set up the locations and the needle location will be overridden.
=cut
sub mouse_drag (%args) {
my ($startx, $starty, $endx, $endy);
# If full coordinates are provided, work with them as a priority,
if (defined $args{startx} and defined $args{starty}) {
$startx = $args{startx};
$starty = $args{starty};
}
# If the coordinates were not complete, use the needle as a fallback solution.
elsif (defined $args{startpoint}) {
my $startmatch = $args{startpoint};
# Check that the needle exists.
my $start_matched_needle = assert_screen($startmatch, $args{timeout});
# Calculate the click point from the area defined by the needle (take the center of it)
($startx, $starty) = _calculate_clickpoint($start_matched_needle);
}
# If neither coordinates nor a needle is provided, report an error and quit.
else {
die "The starting point of the drag was not correctly provided. Either provide the 'startx' and 'starty' coordinates, or a needle marking the starting point.";
}
# Repeat the same for endpoint coordinates or needles.
if (defined $args{endx} and defined $args{endy}) {
$endx = $args{endx};
$endy = $args{endy};
}
elsif (defined $args{endpoint}) {
my $endmatch = $args{endpoint};
my $end_matched_needle = assert_screen($endmatch, $args{timeout});
($endx, $endy) = _calculate_clickpoint($end_matched_needle);
}
else {
die "The ending point of the drag was not correctly provided. Either provide the 'endx' and 'endy' coordinates, or a needle marking the end point.";
}
# Get the button variable. If no button has been provided, assume the "left" button.
my $button = $args{button} // "left";
# Now, perform the actual mouse drag. Navigate to the startpoint location,
# press and hold the mouse button, then navigate to the endpoint location
# and release the mouse button.
mouse_set($startx, $starty);
query_isotovideo('backend_mouse_button', {button => $button, bstate => 1});
mouse_set($endx, $endy);
query_isotovideo('backend_mouse_button', {button => $button, bstate => 0});
bmwqemu::log_call(message => "Mouse dragged from $startx,$starty to $endx, $endy", button => $button);
}
=head1 multi console support
All C<testapi> commands that interact with the system under test do that
through a console. C<send_key>, C<type_string> type into a console.
C<assert_screen> 'looks' at a console, C<assert_and_click> looks at
and clicks on a console.
Most backends support several consoles in some way. These consoles
then have names as defined by the backend.
Consoles can be selected for interaction with the system under test.
One of them is 'selected' by default, as defined by the backend.
There are no consoles predefined by default, the distribution has
to add them during initial setup and define actions on what should
happen when they are selected first by the tests.
E.g. your distribution can give e.g. C<tty2> and C<tty4> a name for the
tests to select
$self->add_console('root-console', 'tty-console', {tty => 2});
$self->add_console('user-console', 'tty-console', {tty => 4});
=head2 add_console
add_console("console", "console type" [, optional console parameters...])
You need to do this in your distribution and not in tests. It will not trigger
any action on the system under test, but only store the parameters.
The console parameters are console specific. Parameter C<persistent> skips
console reset and console is persistent during the test execution.
I<The implementation is distribution specific and not always available.>
=cut
require backend::console_proxy;
our %testapi_console_proxies;
=head2 select_console
select_console($console [, @args]);
Example:
select_console("root-console");
Select the named console for further C<testapi> interaction (send_text,
send_key, wait_screen_change, ...)
If this the first time, a test selects this console, the distribution
will get a call into activate_console('root-console', $console_obj, @args) to
make sure to actually log in root. For the backend it's just a C<tty>
object (in this example) - so it will ensure the console is active,
but to setup the root shell on this console, the distribution needs
to run test code.
After the console selection the distribution callback
C<$distri->console_selected> is called with C<@args>.
=cut
sub select_console ($testapi_console, @args) {
bmwqemu::log_call(testapi_console => $testapi_console, @args);
if (!exists $testapi_console_proxies{$testapi_console}) {
$testapi_console_proxies{$testapi_console} = backend::console_proxy->new($testapi_console);
}
my $ret = query_isotovideo('backend_select_console', {testapi_console => $testapi_console});
die $ret->{error} if $ret->{error};
$autotest::selected_console = $testapi_console;
if ($ret->{activated}) {
# we need to store the activated consoles for rollback
if ($autotest::last_milestone) {
push(@{$autotest::last_milestone->{activated_consoles}}, $testapi_console);
}
$testapi::distri->activate_console($testapi_console, @args);
}
$testapi::distri->console_selected($testapi_console, @args);
return $testapi_console_proxies{$testapi_console};
}
=head2 console
console("testapi_console")->$console_command(@console_command_args)
Some consoles have special commands beyond C<type_string>, C<assert_screen>
Such commands can be accessed using this API.
C<console("bootloader")>, C<console("errorlog")>, ... returns a proxy
object for the specific console which can then be directly accessed.
This is also useful for typing/interacting 'in the background',
without turning the video away from the currently selected console.
Note: C<assert_screen()> and friends look at the currently selected
console (select_console), no matter which console you send commands to
here.
=cut
sub console ($testapi_console = undef) {
$testapi_console ||= current_console();
bmwqemu::log_call(testapi_console => $testapi_console);
if (!exists $testapi_console_proxies{$testapi_console}) {
$testapi_console_proxies{$testapi_console} = backend::console_proxy->new($testapi_console);
}
return $testapi_console_proxies{$testapi_console};
}
=head2 reset_consoles
reset_consoles;
will make sure the next select_console will activate the console. This is important
if you did something to the system that affects the console (e.g. trigger reboot).
=cut
sub reset_consoles () {
query_isotovideo('backend_reset_consoles');
return;
}
=head2
current_console
Return the currently selected console, a call when no console is selected, will
return C<undef>.
=cut
sub current_console () { $autotest::selected_console }
=head1 audio support
=for stopwords qemu
=head2 start_audiocapture
start_audiocapture;
Tells the backend to record a C<.wav> file of the sound card.
I<Only supported by qemu backend.>
=cut
sub start_audiocapture () {
my $fn = $autotest::current_test->capture_filename;
my $filename = join('/', bmwqemu::result_dir(), $fn);
bmwqemu::log_call(filename => $filename);
return query_isotovideo('backend_start_audiocapture', {filename => $filename});
}
sub _snd2png ($wavfile, $imgpath) { system("snd2png $wavfile $imgpath") } # uncoverable statement
sub _check_or_assert_sound ($mustmatch, $check = undef) {
my $result = $autotest::current_test->stop_audiocapture();
my $wavfile = join('/', bmwqemu::result_dir(), $result->{audio});
my $imgpath = "$result->{audio}.png";
_snd2png($wavfile, $imgpath);
return $autotest::current_test->verify_sound_image($imgpath, $mustmatch, $check);
}
=head2 assert_recorded_sound
assert_recorded_sound('we-will-rock-you');
Tells the backend to record a C<.wav> file of the sound card and asserts if it matches
expected audio. Comparison is performed after conversion to the image.
I<Only supported by QEMU backend.>
=cut
sub assert_recorded_sound ($mustmatch) {
return _check_or_assert_sound $mustmatch;
}
=head2 check_recorded_sound
check_recorded_sound('we-will-rock-you');
Tells the backend to record a C<.wav> file of the sound card and checks if it matches
expected audio. Comparison is performed after conversion to the image.
I<Only supported by QEMU backend.>
=cut
sub check_recorded_sound ($mustmatch) {
return _check_or_assert_sound $mustmatch, 1;
}
=head1 miscellaneous
=head2 power
power($action);
Trigger backend specific power action, can be C<'on'>, C<'off'>, C<'acpi'> or C<'reset'>
=cut
sub power ($action) {
bmwqemu::log_call(action => $action);
query_isotovideo('backend_power', {action => $action});
}
=head2 check_shutdown
check_shutdown([$timeout]);
Periodically check backend for status until C<'shutdown'>. Does I<not> initiate shutdown.
Returns true on success and false if C<$timeout> timeout is hit. Default timeout is 60s.
=cut
sub check_shutdown ($timeout = undef) {
$timeout //= ONE_MINUTE;
bmwqemu::log_call(timeout => $timeout);
$timeout = bmwqemu::scale_timeout($timeout);
while ($timeout >= 0) {
my $is_shutdown = query_isotovideo('backend_is_shutdown') || 0;
if ($is_shutdown < 0) {
bmwqemu::diag("Backend does not implement is_shutdown - just sleeping");
sleep($timeout);
}
# -1 counts too
return 1 if $is_shutdown;
sleep 1;
--$timeout;
}
return 0;
}
=head2 assert_shutdown
assert_shutdown([$timeout]);
Periodically check backend for status until C<'shutdown'>. Does I<not> initiate shutdown.
Returns C<undef> on success, marks the test as failed and throws exception
if C<$timeout> timeout is hit. Default timeout is 60s.
=cut
sub assert_shutdown ($timeout = undef) {
if (check_shutdown($timeout)) {
$autotest::current_test->take_screenshot('ok');
return;
}
else {
$autotest::current_test->take_screenshot('fail');
croak "Machine didn't shut down!";
}
}
=head2 eject_cd
eject_cd;
if backend supports it, eject the CD
=cut
sub eject_cd (%nargs) {
bmwqemu::log_call(%nargs);
query_isotovideo(backend_eject_cd => \%nargs);
}
=head2 switch_network
switch_network network_enabled => $boolean, [network_link_name => $string];
Changes network device's state akin to disconnecting the physical cable,
default network is qanet0.
This method is fatal in case the network device doesn't exist.
=cut
sub switch_network (%nargs) {
bmwqemu::log_call(%nargs);
query_isotovideo(backend_switch_network => \%nargs);
}
=head2 save_memory_dump
save_memory_dump(filename => undef);
Saves the SUT memory state using C<$filename> as base for the memory dump
filename, the default will be the current test's name.
This method must be called within a post_fail_hook.
I<Currently only qemu backend is supported.>
=cut
sub save_memory_dump (%nargs) {
$nargs{filename} ||= $autotest::current_test->{name};
bmwqemu::log_call(%nargs);
bmwqemu::diag("Trying to save machine state");
query_isotovideo('backend_save_memory_dump', \%nargs);
}
=head2 save_storage
save_storage(filename => undef);
Saves all of the SUT volumes using C<$filename> as part of the final filename,
the default will be the current test's name.
I<Currently only qemu backend is supported.>
=cut
sub save_storage (%nargs) {
$nargs{filename} ||= $autotest::current_test->{name};
query_isotovideo('backend_save_storage', \%nargs);
}
=head2 freeze_vm
freeze_vm;
If the backend supports it, freeze the virtual machine. This will allow the
virtual machine to be paused/frozen within the test, it is recommended to call
this within a C<post_fail_hook> so that memory and disk dumps can be extracted
without any risk of data changing, or in rare cases call it before the tests
tests have already begun, to avoid unexpected behaviour.
I<Currently only qemu backend is supported.>
=cut
sub freeze_vm () {
# While it might be a good idea to allow the user to stop the vm within a test
# we're not encouraging them to do that outside a post_fail_hook or at any point
# in the test code.
bmwqemu::diag "Call freeze_vm within a post_fail_hook or very early in your test"
unless ((caller(1))[3]) =~ /post_fail_hook/;
bmwqemu::log_call();
query_isotovideo('backend_freeze_vm');
}
=head2 resume_vm
resume_vm;
If the backend supports it, resume the virtual machine. Call this method to
start virtual machine CPU explicitly if DELAYED_START is set.
I<Currently only qemu backend is supported.>
=cut
sub resume_vm () {
bmwqemu::log_call();
query_isotovideo('backend_cont_vm');
}
=head2 parse_junit_log
=for stopwords jUnit
parse_junit_log("report.xml");
Upload log file from SUT (calls upload_logs internally). The uploaded
file is then parsed as jUnit format and extra test results are created from it.
=cut
# XXX: To keep until tests are adapted
sub parse_junit_log ($path) { return parse_extra_log('JUnit', $path) }
=head2 parse_extra_log
=for stopwords extra_log
parse_extra_log( Format => "report.xml" );
Upload log file from SUT (calls upload_logs internally). The uploaded
file is then parsed as the format supplied, that can be understood by OpenQA::Parser
and extra test results are created from it.
Formats currently supported are: JUnit, XUnit, LTP, IPA, TAP
=cut
sub parse_extra_log ($format, $file) {
$file = upload_logs($file);
my @tests;
{
local $@;
# We need to touch @INC as specific supported format are split
# in different classes and dynamically loaded by OpenQA::Parser
local @INC = ($ENV{OPENQA_LIBPATH} // OPENQA_LIBPATH, @INC);
eval {
require OpenQA::Parser;
OpenQA::Parser->import('parser');
my $parser = parser($format => "ulogs/$file");
$parser->write_output(bmwqemu::result_dir());
$parser->write_test_result(bmwqemu::result_dir());
$parser->tests->each(
sub {
push(@tests, $_->to_openqa);
});
};
croak $@ if $@;
}
return $autotest::current_test->register_extra_test_results(\@tests);
}
=head1 log and data upload and download helpers
=for stopwords diag
=head2 diag
diag('important message');
Write a diagnostic message to the logfile. In color, if possible.
=cut
sub diag (@args) { bmwqemu::diag(@args) }
=head2 host_ip
=for stopwords kvm VM
Return VM's host IP.
In a kvm instance you reach the VM's host under default 10.0.2.2
Optional named parameter C<inside_sut> in C<$args> will force using actual
worker IP/hostname even on KVM guests if set to 0.
In case of non-qemu tries to return a sane default if the test variable
C<WORKER_HOSTNAME> was not specified.
=cut
sub host_ip ($args = {}) { (check_var('BACKEND', 'qemu') && ($args->{inside_sut} // 1)) ? get_var('QEMU_HOST_IP', '10.0.2.2') : ($bmwqemu::vars{WORKER_HOSTNAME} //= hostfqdn) }
=head2 autoinst_url
autoinst_url([$path, $query, $args]);
returns the base URL to contact the local C<os-autoinst> service
Optional C<$path> argument is appended after base url.
Optional HASHREF C<$query> is converted to URL query and appended
after path.
Optional named parameter C<inside_sut> in C<$args> will force using actual worker IP/hostname
even on KVM guests if set to 0.
Returns constructor URL. Can be used inline:
script_run("curl " . autoinst_url . "/data");
=cut
sub autoinst_url ($path = undef, $query = undef, $args = {}) {
$path //= '';
$query //= {};
my $hostname = get_var('AUTOINST_URL_HOSTNAME', host_ip($args));
# QEMUPORT is historical for the base port of the worker instance
my $workerport = get_required_var("QEMUPORT") + 1;
my $token = get_required_var('JOBTOKEN');
my $querystring = join('&', map { "$_=$query->{$_}" } sort keys %$query);
my $url = "http://$hostname:$workerport/$token$path";
$url .= "?$querystring" if $querystring;
return $url;
}
=head2 data_url
data_url($name);
returns the URL to download data or asset file
Special values REPO_\d and ASSET_\d points to the asset configured
in the corresponding variable
=cut
sub data_url ($name) {
autoinst_url($name =~ /^REPO_\d$/ ? "/assets/repo/" . get_var($name) :
$name =~ /^ASSET_\d$/ ? "/assets/other/" . get_var($name) : "/data/$name");
}
=head2 upload_logs
=for stopwords GiB failok OpenQA WebUI
upload_logs($file [, failok => 0, timeout => 90, log_name => "custom_name.log" ]);
Upload C<$file> to OpenQA WebUI as a log file and
return the uploaded file name. If failok is not set, a failed upload or
timeout will cause the test to die. Failed uploads happen if the file does not
exist or is over 20 GiB in size, so failok is useful when you just want
to upload the file if it exists but not mind if it doesn't. Default
timeout is 90s. C<log_name> parameter allow to control resulted job's attachment name.
=cut
sub upload_logs ($file, %args) {
my $failok = $args{failok} || 0;
my $timeout = $args{timeout} || 90;
if (get_var('OFFLINE_SUT')) {
record_info('upload skipped', "Skipped uploading log file '$file' as we are offline");
return;
}
bmwqemu::log_call(file => $file, failok => $failok, timeout => $timeout, %args);
my $basename = basename($file);
my $upname = $args{log_name} || ($autotest::current_test->{name} . '-' . $basename);
my $cmd = "curl --form upload=\@$file --form upname=$upname ";
$cmd .= show_curl_progress_meter();
$cmd .= autoinst_url("/uploadlog/$basename");
if ($failok) {
# just use script_run so we don't care if the upload fails
script_run($cmd, $timeout);
}
else {
assert_script_run($cmd, $timeout);
}
return $upname;
}
=head2 upload_asset
=for stopwords svirt
upload_asset $file [,$public[,$nocheck]];
Uploads C<$file> as asset to OpenQA WebUI
You can upload private assets only accessible by related jobs:
upload_asset '/tmp/suse.ps';
Or you can upload public assets that will have a fixed filename
replacing previous assets - useful for external users:
upload_asset '/tmp/suse.ps', 1;
If you just want to upload a file and verify that it was uploaded
correctly on your own (e.g. in svirt console we don't have a serial
line and can't rely on assert_script_run check), add an optional
C<$nocheck> parameter:
upload_asset '/tmp/suse.ps', 1, 1;
=cut
sub upload_asset ($file, $public = undef, $nocheck = undef) {
if (get_var('OFFLINE_SUT')) {
record_info('upload skipped', "Skipped uploading asset '$file' as we are offline");
return;
}
bmwqemu::log_call(file => $file, public => $public, nocheck => $nocheck);
my $cmd = "curl --form upload=\@$file ";
$cmd .= "--form target=assets_public " if $public;
$cmd .= show_curl_progress_meter();
my $basename = basename($file);
$cmd .= autoinst_url("/upload_asset/$basename");
return assert_script_run($cmd) unless $nocheck;
type_string("$cmd\n");
}
=head2 compat_args
Helper function to create backward compatible function arguments when moving
from positional arguments to named one.
compat_args( $hash_ref_defaults, $arrayref_old_fixed, [ $arg1, $arg2, ...])
A typical call would look like:
my %args = compat_args({timeout => 60, .. }, ['timeout'], @_);
=cut
sub compat_args ($def_args, $fix_keys, @args) {
my %ret;
if (@$fix_keys == 1) {
$ret{$fix_keys->[0]} = shift @args if ((@args % 2) != 0);
} else {
for my $key (@{$fix_keys}) {
$ret{$key} = shift @args if (@args >= 1 && (!defined($args[0]) || !exists $def_args->{$args[0]}));
}
}
carp("Odd number of arguments") unless ((@args % 2) == 0);
%ret = (%{$def_args}, %ret, @args);
map { $ret{$_} //= $def_args->{$_} } keys(%{$def_args});
return %ret;
}
=head2 show_curl_progress_meter
Helper function to alter the curl command to show progress meter.
Progress meter is shown only when the server output is redirected.
This works only when uploading where the output is not lately used.
show_curl_progress_meter( $cmd )
A typical call would look like:
$cmd .= show_curl_progress_meter($cmd);
=cut
sub show_curl_progress_meter () { get_var('UPLOAD_METER') ? "-o /dev/$serialdev " : '' }
=head2 backend_get_wait_still_screen_on_here_doc_input
Function to query the backend if it has the known bug from
https://progress.opensuse.org/issues/60566 which is that typing too fast into
the here-document input can yield invalid script content.
This function returns the value to be used by C<wait_still_screen> before
starting to write the script into the here document.
=cut
sub backend_get_wait_still_screen_on_here_doc_input () {
state $ret;
$ret = query_isotovideo('backend_get_wait_still_screen_on_here_doc_input', {}) unless defined($ret);
return get_var(_WAIT_STILL_SCREEN_ON_HERE_DOC_INPUT => $ret);
}
1;
|