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
|
#!/usr/bin/python3
# This file is part of Cockpit.
#
# Copyright (C) 2017 Red Hat, Inc.
#
# Cockpit is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# Cockpit is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Cockpit; If not, see <http://www.gnu.org/licenses/>.
import os
import time
import parent
from packagelib import PackageCase
from testlib import *
WAIT_SCRIPT = """
set -ex
for x in $(seq 1 200); do
if curl --insecure -s https://%(addr)s:8443/candlepin; then
break
else
sleep 1
fi
done
"""
OSesWithoutTracer = ["debian-stable", "debian-testing", "ubuntu-2004", "ubuntu-stable", "ubuntu-testing",
"fedora-coreos", "centos-8-stream"]
class NoSubManCase(PackageCase):
def setUp(self):
super().setUp()
# Disable Subscription Manager on RHEL for these tests; subscriptions are tested in a separate class
# On other OSes (Fedora/CentOS) we expect sub-man to be disabled in yum, so it should not get in the way there
if self.machine.image.startswith("rhel") or self.machine.image.startswith("centos-8"):
self.machine.execute("mv /usr/libexec/rhsm-service /usr/libexec/rhsm-service.disabled; pkill -e rhsm-service || true")
self.addCleanup(self.machine.execute, "mv /usr/libexec/rhsm-service.disabled /usr/libexec/rhsm-service")
# expected journal messages from enabling/disabling auto upgrade services
self.allow_journal_messages("(Created symlink|Removed).*dnf-automatic-install.timer.*")
@skipImage("Image uses OSTree", "fedora-coreos")
@nondestructive
class TestUpdates(NoSubManCase):
def setUp(self):
super().setUp()
# only the yum backend properly recognizes "enhancement" severity; apt
# does not have that metadata and PackageKit-dnf does not parse it
if self.backend == "yum":
self.enhancement_severity = "enhancement"
else:
self.enhancement_severity = "bug"
self.update_icon = "#page_status_notification_updates span:first-child"
self.update_text = "#page_status_notification_updates"
self.update_text_action = "#page_status_notification_updates a"
def assertHistory(self, path, updates):
selector = path + " li:nth-child({0})"
for index, pkg in enumerate(updates, start=1):
self.browser.wait_in_text(selector.format(index), pkg)
# make sure we don't have any extra ones
self.assertFalse(self.browser.is_present(selector.format(len(updates) + 1)))
def check_nth_update(self, index, pkgname, version, severity="bug",
num_issues=None, desc_matches=[], cves=[], bugs=[], arch=None):
"""Check the contents of the package update table row at index
None properties will not be tested.
"""
b = self.browser
if arch is None:
arch = self.primary_arch
row = "#available-updates table[aria-label='Available updates'] > tbody:nth-of-type(%i) " % index
severity_to_icon = {"bug": "fa-bug", "enhancement": "pficon-enhancement", "security": "pficon-security"}
if isinstance(pkgname, list):
for idx, pkg in enumerate(pkgname, 1):
self.assertEqual(b.text(row + "tr:first-child [data-label=Name] > span:nth-of-type(%i)" % idx).split(', ', 1)[0], pkg)
else:
self.assertEqual(b.text(row + " tr:first-child [data-label=Name]"), pkgname)
b.mouse(row + "tr:first-child [data-label=Name] span", "mouseenter")
b.wait_text(".pf-c-tooltip", "dummy " + pkgname + " (" + arch + ")")
b.mouse(row + "tr:first-child [data-label=Name] span", "mouseleave")
b.wait_not_present(".pf-c-tooltip")
self.assertEqual(b.text(row + "[data-label=Version]"), version)
# verify type
self.assertTrue(b.is_present(row + "[data-label=Severity] span." + severity_to_icon[severity]))
self.assertEqual(b.text(row + "[data-label=Severity]").strip(),
num_issues is not None and str(num_issues) or "")
# should not be expanded by default
self.assertFalse("pf-m-expanded" in b.attr(row, "class"))
# expand
b.click(row + "td.pf-c-table__toggle button")
self.assertTrue("pf-m-expanded" in b.attr(row, "class"))
b.wait_in_text(row + "> tr.pf-m-expanded", "Packages")
desc = b.text(row + "> tr.pf-m-expanded")
# details should contain all description bits, CVEs and bug numbers
for m in desc_matches + cves + bugs:
self.assertIn(m, desc)
return row
def wait_checking_updates(self):
'''Wait until spinner is gone from updates icon for 3 s'''
good_count = 0
for retry in range(60):
classes = self.browser.attr(self.update_icon, "class")
if classes is None or "spinner" in classes:
good_count = 0
else:
good_count += 1
if good_count >= 3:
return
time.sleep(1)
else:
self.fail("Timed out waiting for updates spinner to go away")
def testBasic(self):
# no security updates, no changelogs
b = self.browser
m = self.machine
self.enable_preload("packagekit", "index")
m.start_cockpit()
b.login_and_go("/system")
# status on /system front page: no repos at all, thus no updates
self.wait_checking_updates()
b.wait_text(self.update_text, "System is up to date")
self.assertEqual(b.attr(self.update_icon, "class"), "fa fa-check-circle-o")
# no updates on the Software Updates page
b.go("/updates")
b.enter_page("/updates")
b.wait_not_present("#automatic-updates")
b.wait_in_text("#status #state", "System is up to date")
# PK starts from a blank state, thus should force refresh and set the "time since" to 0
b.wait_in_text("#status #last-checked", "Last checked: a few seconds ago")
install_lockfile = "/tmp/finish-pk"
# create two updates; force installing chocolate before vanilla
self.createPackage("vanilla", "1.0", "1", install=True)
self.createPackage("vanilla", "1.0", "2", depends="chocolate",
postinst="while [ ! -e {0} ]; do sleep 1; done; rm -f {0}".format(install_lockfile))
self.createPackage("chocolate", "2.0", "1", install=True, arch=self.secondary_arch)
self.createPackage("chocolate", "2.0", "2", arch=self.secondary_arch)
self.enableRepo()
# check again
b.click("#status button")
b.wait_in_text("#status #last-checked", "Last checked: a few seconds ago")
b.wait_visible("#available-updates")
self.assertEqual(b.text("#state"), "2 updates available")
b.wait_in_text("table[aria-label='Available updates']", "vanilla")
self.check_nth_update(1, "chocolate", "2.0-2", arch=self.secondary_arch)
self.check_nth_update(2, "vanilla", "1.0-2")
# updates are shown on system page
b.go("/system")
b.enter_page("/system")
self.wait_checking_updates()
b.wait_text(self.update_text, "Bug fix updates available")
self.assertIn("fa-bug", b.attr(self.update_icon, "class"))
# should be a link, click on it to go to /updates
b.click(self.update_text_action)
b.enter_page("/updates")
# old versions are still installed
m.execute("test -f /stamp-vanilla-1.0-1 && test -f /stamp-chocolate-2.0-1")
# no update history yet
self.assertFalse(b.is_present("table.updates-history"))
# should only have one button (no security updates)
self.assertEqual(b.text("#available-updates button#install-all"), "Install all updates")
b.click("#available-updates button#install-all")
# applying updates panel present
b.wait_visible("#app div.pf-c-progress__bar")
b.wait_in_text(".progress-main-view button.progress-cancel", "Cancel")
# Cancel button should eventually get disabled
b.wait_visible(".progress-main-view button.progress-cancel:disabled")
# update log only exists in the expander, collapsed by default
self.assertFalse(b.is_present("#update-log"))
# expand it
b.click(".expander-title button")
# should eventually show chocolate when vanilla starts installing
b.wait_in_text("#update-log", "chocolate")
# finish the package installation
m.execute("touch {0}".format(install_lockfile))
b.wait_visible(".pf-c-empty-state .pf-c-title:contains('Update was successful')")
# if tracer is not present, reboot is recommended
if m.image in OSesWithoutTracer:
b.wait_in_text("#app .pf-c-empty-state button.pf-m-primary", "Reboot system...")
b.click("#ignore")
# should go back to updates overview, nothing pending any more
b.wait_in_text("#state", "System is up to date")
b.wait_in_text("#status #last-checked", "Last checked")
# TODO make Packagekit GetUpdates work for tests properly
b.wait_not_present("#available-updates")
# new versions are now installed
m.execute("test -f /stamp-vanilla-1.0-2 && test -f /stamp-chocolate-2.0-2")
# history shows the two packages, expanded by default
b.wait_text("table.updates-history tbody.pf-m-expanded td.history-pkgcount", "2 packages")
b.wait_in_text("table.updates-history tr.pf-m-expanded", "chocolate")
b.wait_in_text("table.updates-history tr.pf-m-expanded", "vanilla")
# system page has current state as well
b.go("/system")
b.enter_page("/system")
self.wait_checking_updates()
self.assertEqual(b.attr(self.update_icon, "class"), "fa fa-check-circle-o")
b.wait_text(self.update_text, "System is up to date")
@skipImage("tracer not available", *OSesWithoutTracer)
def testTracer(self):
b = self.browser
m = self.machine
class Tracer(object):
def __init__(self, testObj, rebootRequired=False, testStatusCard=False, packageName="vanilla"):
self.testObj = testObj
self.rebootRequired = rebootRequired
self.testStatusCard = testStatusCard
self.packageName = packageName
def execute(self):
self.prepare()
self.test_frontend()
self.verify_backend()
self.cleanup()
def prepare(self):
if self.rebootRequired:
# setting app as static in tracer's helper file will cause it to require a reboot
m.execute("mkdir -p /etc/tracer")
self.testObj.write_file("/etc/tracer/applications.xml",
"""
<applications>
<app name="{0}" type="static" />
</applications>
""".format(self.packageName))
scriptContent = "#!/bin/sh\nsleep infinity"
unitContent = """
[Service]
ExecStart=/usr/local/bin/{0}
""".format(self.packageName)
self.testObj.createPackage(self.packageName, "1", "1", install=True, changes="initial package with service and run script",
content={ "/usr/local/bin/{0}".format(self.packageName): scriptContent, "/etc/systemd/system/{0}.service".format(self.packageName): unitContent },
postinst="chmod a+x /usr/local/bin/{0}; systemctl daemon-reload; systemctl start {0}.service".format(self.packageName))
self.testObj.createPackage(self.packageName, "1", "2",
content={ "/usr/local/bin/{0}".format(self.packageName): scriptContent, "/etc/systemd/system/{0}.service".format(self.packageName): unitContent },
postinst="chmod a+x /usr/local/bin/{0}".format(self.packageName))
self.serviceStartTime = m.execute("systemctl show {0}.service --property=ExecMainStartTimestamp".format(self.packageName))
self.testObj.enableRepo()
def test_frontend(self):
m.start_cockpit()
b.login_and_go("/updates")
# check update is present
b.wait_visible("#state")
b.wait_in_text("#state", "1 update available")
b.wait_in_text("#available-updates table", self.packageName)
# install updates
b.wait_visible("#install-all")
b.wait_in_text("#install-all", "Install all updates")
b.click("#install-all")
b.wait_visible(".pf-c-empty-state .pf-c-title:contains('Update was successful')")
b.wait_visible("#ignore")
b.wait_visible(".updates-success-table")
if self.rebootRequired:
rowId = "#reboot-row"
else:
rowId = "#service-row"
b.wait_visible("{0}".format(rowId))
b.click("{0} button".format(rowId))
b.wait_visible("{0} + tr".format(rowId))
b.wait_in_text("{0} + tr".format(rowId), self.packageName)
# test the tracer functionality works also in the Status Card
if self.testStatusCard:
b.click("#ignore")
if self.rebootRequired:
b.wait_in_text("#state", "1 package needs a system reboot")
b.click("#packages-need-reboot button")
b.wait_visible("#shutdown-dialog")
b.click("#delay")
b.click("button:contains('No delay')")
b.wait_text("#delay .pf-c-select__toggle-text", "No delay")
b.click("#shutdown-dialog button:contains('Reboot')")
b.switch_to_top()
b.wait_in_text(".curtains-ct h1", "Disconnected")
# ensure that rebooting actually worked
m.wait_reboot()
m.start_cockpit()
b.reload()
b.login_and_go("/updates")
else:
b.wait_in_text("#state", "1 service needs to be restarted")
b.click("#services-need-restart button")
b.wait_visible("#restart-services-modal")
b.wait_in_text(".restart-services-modal-body", self.packageName)
b.click("#restart-services-modal button:contains('Restart services')")
b.wait_not_present("#restart-services-modal")
# test the tracer functionality works in-page after sucessfull update
else:
if self.rebootRequired:
# update required a reboot
b.wait_not_present("#choose-service")
b.click("#reboot-system")
b.wait_visible("#shutdown-dialog")
b.click("#delay")
b.click("button:contains('No delay')")
b.wait_text("#delay .pf-c-select__toggle-text", "No delay")
b.click("#shutdown-dialog button:contains('Reboot')")
b.switch_to_top()
b.wait_in_text(".curtains-ct h1", "Disconnected")
# ensure that rebooting actually worked
m.wait_reboot()
m.start_cockpit()
b.reload()
b.login_and_go("/updates")
else:
# update required a service restart
b.wait_not_present("#reboot-system")
b.click("#choose-service")
b.wait_visible("#restart-services-modal")
b.wait_in_text(".restart-services-modal-body", self.packageName)
b.click("#restart-services-modal button:contains('Restart services')")
b.wait_not_present("#restart-services-modal")
# check no updates are present
b.wait_in_text("#state", "System is up to date")
# history on "up to date" page should show the recent update (expanded by default)
self.testObj.assertHistory("#expanded-content1 > div > ul", [self.packageName])
def verify_backend(self):
if not self.rebootRequired:
# Check the service was actually restarted
newServiceStartTime = m.execute("systemctl show {0}.service --property=ExecMainStartTimestamp".format(self.packageName))
self.testObj.assertGreater(newServiceStartTime, self.serviceStartTime)
# check no services/processes need reboot or service restart
# tracer returns non-zero exit code if any services/processes are affected
m.execute("tracer --all --root")
def cleanup(self):
if not self.rebootRequired:
m.execute("systemctl stop {0}".format(self.packageName))
m.execute("rpm -e {0}".format(self.packageName))
if self.rebootRequired:
m.execute("rm /etc/tracer/applications.xml")
Tracer(
testObj=self,
packageName="apple",
rebootRequired=True,
testStatusCard=False,
).execute()
Tracer(
testObj=self,
packageName="cherry",
rebootRequired=False,
testStatusCard=False,
).execute()
Tracer(
testObj=self,
packageName="pear",
rebootRequired=True,
testStatusCard=True,
).execute()
Tracer(
testObj=self,
packageName="banana",
rebootRequired=False,
testStatusCard=True,
).execute()
self.allow_restart_journal_messages()
@skipImage("tracer not available", *OSesWithoutTracer)
def testFailServiceRestart(self):
b = self.browser
m = self.machine
packageName = "apple"
scriptContent = "#!/bin/sh\nsleep infinity"
unitContent = """
[Service]
Type=simple
ExecStart=/usr/local/bin/{0}
""".format(packageName)
self.createPackage(packageName, "1", "1", install=True, changes="initial package with service and run script",
content={ "/usr/local/bin/{0}".format(packageName): scriptContent, "/etc/systemd/system/{0}.service".format(packageName): unitContent },
postinst="chmod a+x /usr/local/bin/{0}; systemctl daemon-reload; systemctl start {1}.service".format(packageName, packageName))
scriptContent = "#!/bin/sh\nfalse"
unitContent = """
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/usr/local/bin/{0}
""".format(packageName)
self.createPackage(packageName, "1", "2",
content={ "/usr/local/bin/{0}".format(packageName): scriptContent, "/etc/systemd/system/{0}.service".format(packageName): unitContent })
self.enableRepo()
m.start_cockpit()
b.login_and_go("/updates")
# check update is present
b.wait_visible("#state")
b.wait_in_text("#state", "1 update available")
b.wait_in_text("#available-updates table", packageName)
# install updates
b.wait_visible("#install-all")
b.wait_in_text("#install-all", "Install all updates")
b.click("#install-all")
b.wait_visible(".pf-c-empty-state .pf-c-title:contains('Update was successful')")
b.wait_visible("#ignore")
b.wait_visible(".updates-success-table")
b.wait_visible("#service-row")
b.click("#service-row button")
b.wait_visible("#service-row + tr")
b.wait_in_text("#service-row + tr", packageName)
# update required a service restart
b.wait_not_present("#reboot-system")
b.click("#choose-service")
b.wait_visible("#restart-services-modal")
b.wait_in_text(".restart-services-modal-body", packageName)
b.click("#restart-services-modal button:contains('Restart services')")
b.wait_visible("#restart-services-modal")
# tracer updated the list of services which need a restart, so our service is no longer present
b.wait_not_in_text("#restart-services-modal .pf-c-modal-box__body", packageName)
b.wait_visible("#restart-services-modal footer .pf-c-alert")
def testInfoSecurity(self):
b = self.browser
m = self.machine
# just changelog
self.createPackage("norefs-bin", "1", "1", install=True)
self.createPackage("norefs-bin", "2", "1", severity="enhancement",
changes="Now 10% *more* [unicorns](http://unicorn.example.com)")
# binary from same source
self.createPackage("norefs-doc", "1", "1", install=True)
self.createPackage("norefs-doc", "2", "1", severity="enhancement",
changes="Now 10% *more* [unicorns](http://unicorn.example.com)")
# bug fixes
self.createPackage("buggy", "2", "1", install=True)
self.createPackage("buggy", "2", "2", changes="* Fixit", bugs=[123, 456])
# security fix with proper CVE list and severity
self.createPackage("secdeclare", "3", "4.a1", install=True)
self.createPackage("secdeclare", "3", "4.b1", severity="security",
changes="Will crash your data center", cves=["CVE-2014-123456"])
# security fix with parsing from changes
self.createPackage("secparse", "4", "1", install=True)
self.createPackage("secparse", "4", "2", changes="Fix CVE-2014-54321 and CVE-2017-9999.")
# security fix with RHEL severity and errata
self.createPackage("sevcritical", "5", "1", install=True)
self.createPackage("sevcritical", "5", "2", cves=["CVE-2014-54321"], securitySeverity="critical",
errata=["RHSA-2000:0001", "RHSA-2000:0002"], changes="More broken stuff")
self.enableRepo()
m.execute("pkcon refresh")
m.start_cockpit()
b.login_and_go("/updates")
b.wait_visible("#available-updates")
self.assertEqual(b.text("#state"), "6 updates available, including 3 security fixes")
b.wait_in_text("table[aria-label='Available updates']", "sevcritical")
# security updates should get sorted on top and then alphabetically, so start with "secdeclare"
sel = self.check_nth_update(1, "secdeclare", "3-4.b1", "security", 1,
desc_matches=["Will crash your data center"], cves=["CVE-2014-123456"])
# should not have erratum label in details
self.assertNotIn("Errat", b.text(sel))
# secparse should also be considered a security update as the changelog mentions CVEs
self.check_nth_update(2, "secparse", "4-2", "security", 2,
desc_matches=["Fix CVE-2014-54321 and CVE-2017-9999."],
cves=["CVE-2014-54321", "CVE-2017-9999"])
sel = self.check_nth_update(3, "sevcritical", "5-2", "security", 1,
desc_matches=["More broken stuff"])
if self.backend == 'yum':
# sevcritical has a severity and errata
details = b.text(sel + " .pf-m-expanded")
self.assertIn("Severity", details)
self.assertIn("critical", details)
self.assertIn("Errata", details)
self.assertIn("RHSA-2000:0001", details)
self.assertIn("RHSA-2000:0002", details)
# icon has critical class
self.assertIn("severity-critical", b.attr(sel + " td.type span", "class"))
b.mouse(sel + " td.type span", "mouseenter")
b.wait_text(".pf-c-tooltip", "critical")
b.mouse(sel + " td.type span", "mouseleave")
b.wait_not_present(".pf-c-tooltip")
# details has link to severity definition
self.assertIn("access.redhat.com", b.attr(sel + " .pf-m-expanded dd.severity a:first-of-type", "href"))
# buggy: bug refs, no security
sel = self.check_nth_update(4, "buggy", "2-2", "bug", 2, bugs=["123", "456"], desc_matches=["Fixit"])
# should filter out enumeration in overview
ch = b.eval_js('document.querySelector("%s").innerHTML' % (sel + " td.changelog"))
self.assertNotIn("<li>", ch)
self.assertNotIn("*", ch)
# should show bug fix icon and pf-c-tooltip
self.assertIn("fa-bug", b.attr(sel + " td.type span", "class"))
b.mouse(sel + " td.type span", "mouseenter")
b.wait_text(".pf-c-tooltip", "bug fix")
b.mouse(sel + " td.type span", "mouseleave")
b.wait_not_present(".pf-c-tooltip")
# norefs: just changelog, show both binary packages
sel = self.check_nth_update(5, ["norefs-bin", "norefs-doc"], "2-1", self.enhancement_severity,
desc_matches=["Now 10% more unicorns"])
# verify Markdown formatting in table cell
self.assertEqual(b.text(sel + " td.changelog em"), "more") # *more*
self.assertEqual(b.attr(sel + " td.changelog a", "href"), "http://unicorn.example.com")
# verify Markdown formatting in details
self.assertEqual(b.text(sel + " .pf-m-expanded em"), "more") # *more*
self.assertEqual(b.attr(sel + " .pf-m-expanded a:first-of-type", "href"), "http://unicorn.example.com")
# updates are shown on system page
b.go("/system")
b.enter_page("/system")
self.wait_checking_updates()
b.wait_text(self.update_text, "Security updates available")
self.assertIn("security", b.attr(self.update_icon, "class"))
# should be a link, click on it to go to back to /updates
b.click(self.update_text_action)
b.enter_page("/updates")
# install only security updates
self.assertEqual(b.text("#available-updates button#install-security"), "Install security updates")
b.click("#available-updates button#install-security")
b.wait_visible(".pf-c-empty-state .pf-c-title:contains('Update was successful')")
# history on restart page should show the three security updates
b.click(".expander-title button")
self.assertHistory("ul", ["secdeclare", "secparse", "sevcritical"])
# ignore restarting
b.click("#ignore")
# should have succeeded; 3 non-security updates left
b.wait_in_text("#state", "3 updates available")
b.wait_in_text("#available-updates h2", "Available updates")
b.wait_in_text("#available-updates table", "norefs-doc")
self.assertIn("buggy", b.text("#available-updates table"))
self.assertNotIn("secdeclare", b.text("#available-updates table"))
self.assertNotIn("secparse", b.text("#available-updates table"))
# history should show the security updates
self.assertHistory("table.updates-history ul", ["secdeclare", "secparse", "sevcritical"])
# stop PackageKit (e. g. idle timeout) to make sure the page survives that
m.execute("systemctl stop packagekit; systemctl reset-failed packagekit || true")
# new security versions are now installed
m.execute("test -f /stamp-secdeclare-3-4.b1 && test -f /stamp-secparse-4-2 && test -f /stamp-sevcritical-5-2")
# but the three others are untouched
m.execute("test -f /stamp-buggy-2-1 && test -f /stamp-norefs-bin-1-1 && test -f /stamp-norefs-doc-1-1")
# should now only have one button (no security updates left)
self.assertEqual(b.text("#available-updates button#install-all"), "Install all updates")
b.click("#available-updates button#install-all")
# applying updates panel present
b.wait_visible("#app div.pf-c-progress__bar")
# should have succeeded and show restart
b.wait_visible(".pf-c-empty-state .pf-c-title:contains('Update was successful')")
b.wait_visible("#ignore")
# history on restart page should show the three non-security updates
b.click(".expander-title button")
self.assertHistory("ul", ["buggy", "norefs-bin", "norefs-doc"])
if m.image in OSesWithoutTracer:
# do the reboot; this will disconnect the web UI
b.click("#app .pf-c-empty-state button.pf-m-primary")
b.wait_visible("#shutdown-dialog")
b.click("#delay")
b.click("button:contains('No delay')")
b.wait_text("#delay .pf-c-select__toggle-text", "No delay")
b.click("#shutdown-dialog button:contains('Reboot')")
b.switch_to_top()
b.wait_in_text(".curtains-ct h1", "Disconnected")
# ensure that rebooting actually worked
m.wait_reboot()
m.start_cockpit()
b.reload()
b.login_and_go("/updates")
else:
b.click("#ignore")
# new versions are now installed
m.execute("test -f /stamp-norefs-bin-2-1 && test -f /stamp-norefs-doc-2-1")
# no further updates
b.wait_in_text("#state", "System is up to date")
# history on "up to date" page should show the recent update (expanded by default)
self.assertHistory("table.updates-history tbody.pf-m-expanded ul", ["buggy", "norefs-bin", "norefs-doc"])
# and the previous one, not expaned
b.wait_visible("table.updates-history tbody:not(.pf-m-expanded)")
self.allow_restart_journal_messages()
def testSecurityOnly(self):
b = self.browser
m = self.machine
# security fix with proper CVE list and severity
self.createPackage("secdeclare", "3", "4.a1", install=True)
self.createPackage("secdeclare", "3", "4.b1", severity="security",
changes="Will crash your data center", cves=['CVE-2014-123456'])
self.enableRepo()
m.execute("pkcon refresh")
m.start_cockpit()
b.login_and_go("/updates")
b.wait_visible("#available-updates")
self.assertEqual(b.text("#state"), "1 security fix available")
# should only have one button (only security updates)
b.wait_not_present("#available-updates button#install-all")
self.assertEqual(b.text("#available-updates button#install-security"), "Install security updates")
# security fix without CVE URLs
# PackageKit's dnf backend does not recognize this (https://bugs.freedesktop.org/show_bug.cgi?id=101070)
# and PackageKit's deb backend does not know about severity at all, so only test this on RPM
if self.backend == "yum":
self.createPackage("secnocve", "1", "1", install=True)
self.createPackage("secnocve", "1", "2", severity="security", changes="Fix leak")
self.enableRepo()
# check for updates
b.wait_in_text("#status button")
b.click("#status button")
b.wait_visible("#available-updates")
b.wait_in_text("#state", "2")
b.wait_in_text("table[aria-label='Available updates']", "secnocve")
# secnocve should be displayed properly
self.check_nth_update(2, "secnocve", "1-2", "security", desc_matches=["Fix leak"])
def testInfoTruncation(self):
b = self.browser
m = self.machine
# update with not too many binary packages
for i in range(4):
self.createPackage("coarse{:02}".format(i), "1", "1", install=True)
self.createPackage("coarse{:02}".format(i), "1", "2", changes="make it greener")
# update with lots of binary packages
for i in range(10):
self.createPackage("fine{:02}".format(i), "1", "1", install=True)
self.createPackage("fine{:02}".format(i), "1", "2", changes="make it better")
# update with long changelog
long_changelog = ""
for i in range(30):
long_changelog += " - Things change #{:02}\n".format(i)
self.createPackage("verbose", "1", "1", install=True)
self.createPackage("verbose", "1", "2", changes=long_changelog)
self.enableRepo()
m.start_cockpit()
b.login_and_go("/updates")
b.wait_in_text("table[aria-label='Available updates']", "Things change")
# "coarse" package list should be complete
t = b.text("#app .ct-table tbody:nth-of-type(1) tr:first-child [data-label=Name]")
self.assertIn("coarse00", t)
self.assertIn("coarse03", t)
self.assertNotIn(u"…", t)
# "fine" package list should be truncated
t = b.text("#app .ct-table tbody:nth-of-type(2) tr:first-child [data-label=Name]")
self.assertIn("fine00", t)
self.assertIn("fine03", t)
self.assertNotIn("fine09", t)
self.assertIn(u"…", t)
# but complete in the details
self.check_nth_update(2, ["fine00", "fine01", "fine02", "fine03"], "1-2",
desc_matches=["fine07", "fine09"])
# verbose changelog should be truncated
desc = b.text("#app .ct-table tbody:nth-of-type(3) [data-label=Details]")
self.assertIn("Things change #00", desc)
self.assertNotIn("#01", desc)
# but complete in the details
self.check_nth_update(3, "verbose", "1-2",
desc_matches=["Things change #00", "Things change #29"])
# seems we can't verify that the description has a scrollbar
def testUpdateError(self):
b = self.browser
m = self.machine
self.createPackage("vapor", "1", "1", install=True)
self.createPackage("vapor", "1", "2")
self.enableRepo()
m.execute("pkcon refresh")
# break the upgrade by removing the generated packages from the repo
m.execute("rm -f {0}/vapor*.deb {0}/vapor*.rpm".format(self.repo_dir))
m.start_cockpit()
b.login_and_go("/updates")
b.wait_visible("#available-updates")
self.assertEqual(b.text("#state"), "1 update available")
b.click("#available-updates button#install-all")
# error message visible
b.wait_visible("#app .pf-c-page .pf-c-empty-state__body")
self.assertRegex(b.text("#app .pf-c-page .pf-c-empty-state__body span:first-of-type"),
"missing|downloading|not.*available|No such file or directory")
# not expecting any buttons
self.assertFalse(b.is_present("#app button"))
def testPackageKitCrash(self):
b = self.browser
m = self.machine
# this tends to corrupt the rpm database, so do a backup/restore
if self.backend == 'dnf':
self.restore_dir("/var/lib/rpm")
# make sure we have enough time to crash PK
self.createPackage("slow", "1", "1", install=True)
# we don't want this installation to finish
self.createPackage("slow", "1", "2", postinst="sleep infinity")
self.enableRepo()
m.execute("pkcon refresh")
m.start_cockpit()
b.login_and_go("/updates")
b.click("#available-updates button#install-all")
# let updates start and zap PackageKit
b.wait_visible("#app div.pf-c-progress__bar")
m.execute("systemctl kill --signal=SEGV packagekit.service")
# error message visible
b.wait_in_text("#app .pf-c-page .pf-c-empty-state__body", "PackageKit crashed")
self.allow_journal_messages(".*org.freedesktop.PackageKit.*Error.NoReply.*")
self.allow_journal_messages("Process .* dumped core.*")
self.allow_journal_messages("Stack trace of thread.*")
self.allow_journal_messages("#[0-9].*")
def testNoPackageKit(self):
b = self.browser
m = self.machine
system_service = m.execute("systemctl show -p FragmentPath packagekit.service | cut -f2 -d=").strip()
m.execute('''mv {0} {0}.disabled
mv /usr/share/dbus-1/system-services/org.freedesktop.PackageKit.service /usr/share/dbus-1/system-services/org.freedesktop.PackageKit.service.disabled
systemctl daemon-reload'''.format(system_service))
self.addCleanup(m.execute,
'''mv {0}.disabled {0}
mv /usr/share/dbus-1/system-services/org.freedesktop.PackageKit.service.disabled /usr/share/dbus-1/system-services/org.freedesktop.PackageKit.service
systemctl daemon-reload'''.format(system_service))
m.start_cockpit()
b.login_and_go("/updates")
# error message present
b.wait_in_text(".pf-c-page__main-section .pf-c-empty-state__body", "PackageKit is not installed")
# update status on front page should be invisible
b.go("/system")
b.enter_page("/system")
b.wait_text(self.update_text, "Loading available updates failed")
self.assertIn("exclamation", b.attr(self.update_icon, "class"))
def testUnprivileged(self):
b = self.browser
m = self.machine
self.createPackage("vanilla", "1.0", "1", install=True)
self.createPackage("vanilla", "2.0", "2")
self.enableRepo()
m.execute("pkcon refresh")
# getting update info is allowed to all users
self.login_and_go("/updates", superuser=False)
b.wait_text("#state", "1 update available")
b.wait_visible("#available-updates")
# but applying updates is not; FIXME: this is a crappy UX
b.click("#available-updates button#install-all")
# error message visible
b.wait_in_text("#app .pf-c-empty-state__body", "authentication")
# become superuser
b.switch_to_top()
b.click("#super-user-indicator button")
if not self.system_before(231): # Changed in #14740
b.wait_in_text(".pf-c-modal-box:contains('Administrative access')", "Please authenticate")
b.set_input_text(".pf-c-modal-box:contains('Administrative access') input", "foobar")
b.click(".pf-c-modal-box button:contains('Authenticate')")
b.wait_not_present(".pf-c-modal-box:contains('Administrative access')")
else:
b.wait_in_text(".modal-dialog:contains('Administrative access')", "Please authenticate")
b.set_input_text(".modal-dialog:contains('Administrative access') input", "foobar")
b.click(".modal-dialog button:contains('Authenticate')")
b.wait_not_present(".modal-dialog:contains('Administrative access')")
b.wait_text("#super-user-indicator", "Administrative access")
# page adjusts automatically to privilege change
b.switch_to_frame("cockpit1:localhost/updates")
b.wait_text("#state", "1 update available")
b.wait_visible("#available-updates")
# applying updates works now
b.click("#available-updates button#install-all")
b.wait_visible(".pf-c-empty-state .pf-c-title:contains('Update was successful')")
b.click("#ignore")
# should go back to updates overview, nothing pending any more
# TODO make Packagekit GetUpdates work for tests properly
b.wait_not_present("#available-updates")
@skipImage("Image uses OSTree", "fedora-coreos")
class TestWsUpdate(NoSubManCase):
def testBasic(self):
# The main case for this is that cockpit-ws itself gets upgraded, which
# restarts the service and terminates the connection. As we can't
# (efficiently) build a newer working cockpit-ws package, test the two
# parts (reconnect and warning about disconnect) separately.
# This test is destructive and thus must run last.
# no security updates, no changelogs
b = self.browser
m = self.machine
install_lockfile = "/tmp/finish-pk"
# updating this package takes longer than a cockpit start and building the page
self.createPackage("slow", "1", "1", install=True)
self.createPackage(
"slow", "1", "2", postinst="while [ ! -e {0} ]; do sleep 1; done; rm -f {0}".format(install_lockfile))
self.enableRepo()
m.execute("pkcon refresh")
m.start_cockpit()
b.login_and_go("/updates")
b.click("#available-updates button#install-all")
# applying updates panel present
b.wait_in_text("#app div.progress-description", "slow")
# restarting should pick up that install progress
m.restart_cockpit()
b.login_and_go("/updates")
b.wait_in_text(".pf-c-empty-state .pf-c-title", "Initializing")
# finish the package installation
m.execute("touch {0}".format(install_lockfile))
# should have succeeded and show restart page; cancel
b.wait_visible(".pf-c-empty-state .pf-c-title:contains('Update was successful')")
b.click("#ignore")
b.wait_in_text("#state", "System is up to date")
# now pretend that there is a newer cockpit-ws available, warn about disconnect
self.createPackage("cockpit-ws", "999", "1")
# these have strict version dependencies to cockpit-ws, don't get in the way
self.createPackage("cockpit", "999", "1")
m.execute("if type apt; then dpkg -P cockpit-ws-dbgsym; fi")
self.enableRepo()
b.wait_visible("#status button")
b.click("#status button")
b.wait_visible("#available-updates")
self.assertEqual(b.text("#state"), "2 updates available")
b.wait_in_text("table[aria-label='Available updates']", "cockpit-ws")
b.wait_visible(".cockpit-update-warning")
b.wait_in_text(".cockpit-update-warning-text", "Web Console will restart")
self.allow_restart_journal_messages()
@skipImage("Image uses OSTree", "fedora-coreos")
@skipImage("No subscriptions", "debian-stable", "debian-testing", "centos-8-stream",
"fedora-32", "fedora-33", "fedora-testing", "ubuntu-2004", "ubuntu-stable")
class TestUpdatesSubscriptions(PackageCase):
provision = {
"0": {"address": "10.111.112.1/20", "dns": "10.111.112.1"},
"services": {"image": "services"}
}
def register(self):
# this fails with "Unable to find available subscriptions for all your installed products", but works anyway
self.machine.execute(
"LC_ALL=C.UTF-8 subscription-manager register --insecure --serverurl https://10.111.112.100:8443/candlepin --org=admin --activationkey=awesome_os_pool || true")
self.machine.execute("LC_ALL=C.UTF-8 subscription-manager attach --auto")
def setUp(self):
super().setUp()
self.candlepin = self.machines['services']
m = self.machine
# wait for candlepin to be active and verify
self.candlepin.execute("systemctl start tomcat")
# remove all existing products (RHEL server), as we can't control them
m.execute("rm -f /etc/pki/product-default/*.pem /etc/pki/product/*.pem")
# download product info from the candlepin machine and install it
product_file = os.path.join(self.tmpdir, "88888.pem")
self.candlepin.download("/home/admin/candlepin/generated_certs/88888.pem", product_file)
# # upload product info to the test machine
m.execute("mkdir -p /etc/pki/product")
m.upload([product_file], "/etc/pki/product")
# make sure that rhsm skips certificate checks for the server
self.sed_file("s/insecure = 0/insecure = 1/g", "/etc/rhsm/rhsm.conf")
# Wait for the web service to be accessible
m.execute(script=WAIT_SCRIPT % {"addr": "10.111.112.100"})
self.update_icon = "#page_status_notification_updates span:first-child"
self.update_text = "#page_status_notification_updates"
self.update_text_action = "#page_status_notification_updates a"
def testNoUpdates(self):
m = self.machine
b = self.browser
# fresh machine, no updates available; by default our rhel-* images are not registered
m.start_cockpit()
b.login_and_go("/system")
# show unregistered status on system front page
b.wait_in_text(self.update_text, "Not registered")
self.assertIn("triangle", b.attr(self.update_icon, "class"))
# software updates page also shows unregistered
b.go("/updates")
b.enter_page("/updates")
# empty state visible in main area
b.wait_visible(".pf-c-empty-state button")
b.wait_in_text(".pf-c-empty-state", "This system is not registered")
# test the button to switch to Subscriptions
b.click(".pf-c-empty-state button")
b.switch_to_top()
b.wait_js_cond('window.location.pathname === "/subscriptions"')
# after registration it should show the usual "system is up to date", through the "status changed" signal
self.register()
b.go("/updates")
b.enter_page("/updates")
# check updates
b.wait_visible("#status button")
b.wait_in_text("#state", "System is up to date")
# same on system page
b.go("/system")
b.enter_page("/system")
self.assertEqual(b.attr(self.update_icon, "class"), "fa fa-check-circle-o")
b.wait_text(self.update_text, "System is up to date")
def testAvailableUpdates(self):
m = self.machine
b = self.browser
# one available update
self.createPackage("vanilla", "1.0", "1", install=True)
self.createPackage("vanilla", "1.0", "2")
self.enableRepo()
m.start_cockpit()
b.login_and_go("/system")
# by default our rhel-* images are not registered; show warning on system page
b.wait_in_text(self.update_text, "Not registered")
self.assertIn("triangle", b.attr(self.update_icon, "class"))
# should be a link leading to subscriptions page
b.click(self.update_text_action)
b.enter_page("/subscriptions")
# software updates page also shows unregistered
b.go("/updates")
b.enter_page("/updates")
# empty state visible in main area
b.wait_visible(".pf-c-empty-state button")
b.wait_in_text(".pf-c-empty-state", "This system is not registered")
# after registration it should show available updates
self.register()
b.go("/updates")
b.enter_page("/updates")
b.wait_not_present(".pf-c-empty-state")
b.wait_visible("#available-updates")
# no update history yet
self.assertFalse(b.is_present("table.updates-history"))
# has action buttons
b.wait_visible("#status button")
self.assertEqual(b.text("#available-updates button#install-all"), "Install all updates")
# show available updates on system page too
b.go("/system")
b.enter_page("/system")
b.wait_text(self.update_text, "Bug fix updates available")
self.assertIn("fa-bug", b.attr(self.update_icon, "class"))
@skipImage("Image uses OSTree", "fedora-coreos")
@nondestructive
class TestAutoUpdates(NoSubManCase):
def setUp(self):
super().setUp()
# not implemented for yum and apt yet, only dnf
self.supported_backend = self.backend in ["dnf"]
self.addCleanup(self.machine.execute, "systemctl disable --now dnf-automatic-install.timer 2>/dev/null; rm -rf /etc/systemd/system/dnf-automatic-*")
def testBasic(self):
b = self.browser
m = self.machine
m.start_cockpit()
b.login_and_go("/updates")
if not self.supported_backend:
self.assertFalse(b.is_present("#automatic"))
self.assertFalse(b.is_present("#auto-update-type"))
return
def assertTimerDnf(hour, dow):
out = m.execute("systemctl --no-legend list-timers dnf-automatic-install.timer")
if hour:
# don't test the minutes, due to RandomizedDelaySec=60m
self.assertRegex(out, " %s:" % hour)
else:
self.assertEqual(out, "")
if dow:
self.assertRegex(out, "^%s\s" % dow)
else:
# "every day" should not have a "LEFT" time > 1 day
self.assertNotIn(" day", out)
# service should not run right away
self.assertEqual(m.execute("systemctl is-active dnf-automatic-install.service || true").strip(), "inactive")
# automatic reboots should be enabled whenever timer is enabled
out = m.execute("systemctl cat dnf-automatic-install.service")
if hour:
self.assertRegex(out, "ExecStartPost=/.*shutdown")
else:
self.assertNotIn("ExecStartPost", out)
def assertTimer(hour, dow=None):
if self.backend == "dnf":
assertTimerDnf(hour, dow)
else:
raise NotImplementedError(self.backend)
def assertTypeDnf(_type):
if _type == "all":
match = '= default'
elif _type == "security":
match = '= security'
else:
raise ValueError(_type)
self.assertIn(match, m.execute("grep upgrade_type /etc/dnf/automatic.conf"))
def assertType(_type):
if self.backend == "dnf":
assertTypeDnf(_type)
else:
raise NotImplementedError(self.backend)
# automatic updates are supported, but off
b.wait_visible("#automatic-updates")
b.wait_in_text("#automatic-updates p", "Automatic updates are not set up")
self.assertFalse(b.is_present("#auto-update-type"))
assertTimer(None)
# enable
b.click("#automatic-updates button")
b.wait_visible("#automatic-updates-dialog")
b.click("#all-updates")
b.wait_in_text("#auto-update-time", "06:00")
b.wait_in_text("#auto-update-day", "every day")
b.click("#automatic-updates-dialog button:contains('Save changes')")
b.wait_in_text("#automatic-updates p", "Updates will be applied")
assertTimer("06")
assertType("all")
# change type to security
b.click("#automatic-updates button")
b.wait_visible("#automatic-updates-dialog")
b.click("#security-updates")
b.click("#automatic-updates-dialog button:contains('Save changes')")
b.wait_in_text("#automatic-updates", "Security updates will be applied")
assertType("security")
assertTimer("06")
# change it back
b.click("#automatic-updates button")
b.wait_visible("#automatic-updates-dialog")
b.click("#all-updates")
b.click("#automatic-updates-dialog button:contains('Save changes')")
b.wait_in_text("#automatic-updates", "Updates will be applied")
assertType("all")
assertTimer("06")
# change day
b.click("#automatic-updates button")
b.wait_visible("#automatic-updates-dialog")
b.select_from_dropdown("#auto-update-day", "thu")
b.click("#automatic-updates-dialog button:contains('Save changes')")
b.wait_in_text("#automatic-updates", "Updates will be applied every Thursday")
assertType("all")
assertTimer("06", "Thu")
# change time
b.click("#automatic-updates button")
b.wait_visible("#automatic-updates-dialog")
b.select_from_dropdown("#auto-update-time", "21:00")
b.click("#automatic-updates-dialog button:contains('Save changes')")
b.wait_in_text("#automatic-updates", "Updates will be applied every Thursday at 21:00")
assertType("all")
assertTimer("21", "Thu")
# page should parse it correctly from the timer
b.logout()
b.login_and_go("/updates")
b.wait_in_text("#automatic-updates p", "Updates will be applied every Thursday at 21:00")
# change back to daily
b.click("#automatic-updates button")
b.wait_visible("#automatic-updates-dialog")
b.select_from_dropdown("#auto-update-day", "everyday")
b.click("#automatic-updates-dialog button:contains('Save changes')")
b.wait_in_text("#automatic-updates", "Updates will be applied every day at 21:00")
assertType("all")
assertTimer("21")
# disable
b.click("#automatic-updates button")
b.wait_visible("#automatic-updates-dialog")
b.click("#no-updates")
b.click("#automatic-updates-dialog button:contains('Save changes')")
b.wait_in_text("#automatic-updates p", "Automatic updates are not set up")
assertTimer(None)
if self.backend == "dnf":
b.click("#automatic-updates button")
b.wait_visible("#automatic-updates-dialog")
b.click("#all-updates")
b.click("#automatic-updates-dialog button:contains('Save changes')")
b.wait_not_present("#automatic-updates-dialog")
# OnCalendar= parsing: only time
m.execute("mkdir -p /etc/systemd/system/dnf-automatic.timer.d")
m.execute(r'printf "[Timer]\nOnUnitInactiveSec=\nOnCalendar=08:00\n" > '
r'/etc/systemd/system/dnf-automatic-install.timer.d/time.conf; systemctl daemon-reload')
b.reload()
b.enter_page("/updates")
b.wait_in_text("#automatic-updates", "Updates will be applied every day at 8:00")
# OnCalendar= parsing: weekday and time
m.execute(r'printf "[Timer]\nOnUnitInactiveSec=\nOnCalendar=Tue 20:00\n" > '
r'/etc/systemd/system/dnf-automatic-install.timer.d/time.conf; systemctl daemon-reload')
b.reload()
b.enter_page("/updates")
b.wait_in_text("#automatic-updates", "Updates will be applied every Tuesday at 20:00")
# OnCalendar= parsing: "every day" calendar and time
m.execute(r'printf "[Timer]\nOnUnitInactiveSec=\nOnCalendar=*-*-* 07:00\n" > '
r'/etc/systemd/system/dnf-automatic-install.timer.d/time.conf; systemctl daemon-reload')
b.reload()
b.enter_page("/updates")
b.wait_in_text("#automatic-updates", "Updates will be applied every day at 7:00")
# OnCalendar= parsing: unsupported
m.execute(r'printf "[Timer]\nOnUnitInactiveSec=\nOnCalendar=*-02-* 11:00\n" > '
r'/etc/systemd/system/dnf-automatic-install.timer.d/time.conf; systemctl daemon-reload')
b.reload()
b.enter_page("/updates")
b.wait_in_text("#status #state", "System is up to date")
b.wait_in_text("#automatic-updates", "Automatic updates are not set up")
def testWithAvailableUpdates(self):
b = self.browser
m = self.machine
self.createPackage("vanilla", "1.0", "1", install=True)
self.createPackage("vanilla", "1.0", "2")
self.enableRepo()
m.start_cockpit()
b.login_and_go("/updates")
b.wait_visible("#available-updates")
if not self.supported_backend:
b.wait_in_text("#automatic-updates", "Automatic updates are not set up")
return
b.wait_in_text("#automatic-updates", "Automatic updates are not set up")
# enable
b.click("#automatic-updates button")
b.wait_visible("#automatic-updates-dialog")
b.click("#all-updates")
b.click("#automatic-updates-dialog button:contains('Save changes')")
b.wait_in_text("#automatic-updates p", "Updates will be applied")
if self.backend == 'dnf':
self.checkUpgradeRebootDnf()
else:
raise NotImplementedError(self.backend)
def testPrivilegeChange(self):
b = self.browser
m = self.machine
m.execute("pkcon refresh")
self.login_and_go("/updates", superuser=False)
if not self.supported_backend:
self.assertFalse(b.is_present("#automatic-updates"))
return
# detecting auto updates configuration works unprivileged, but changing does not
b.wait_visible("#automatic-updates button:disabled")
# become superuser
b.switch_to_top()
b.click("#super-user-indicator button")
if not self.system_before(231): # Changed in #14740
b.wait_in_text(".pf-c-modal-box:contains('Administrative access')", "Please authenticate")
b.set_input_text(".pf-c-modal-box:contains('Administrative access') input", "foobar")
b.click(".pf-c-modal-box button:contains('Authenticate')")
b.wait_not_present(".pf-c-modal-box:contains('Administrative access')")
else:
b.wait_in_text(".modal-dialog:contains('Administrative access')", "Please authenticate")
b.set_input_text(".modal-dialog:contains('Administrative access') input", "foobar")
b.click(".modal-dialog button:contains('Authenticate')")
b.wait_not_present(".modal-dialog:contains('Administrative access')")
b.wait_text("#super-user-indicator", "Administrative access")
b.switch_to_frame("cockpit1:localhost/updates")
# enable auto-updates
b.wait_in_text("#automatic-updates", "Automatic updates are not set up")
b.click("#automatic-updates button")
b.wait_visible("#automatic-updates-dialog")
b.click("#all-updates")
b.click("#automatic-updates-dialog button:contains('Save changes')")
b.wait_in_text("#automatic-updates", "Updates will be applied")
# Drop privileges
b.switch_to_top()
b.click("#super-user-indicator button")
if not self.system_before(231): # Changed in #14740
b.click(".pf-c-modal-box:contains('Switch to limited access') button:contains('Limit access')")
b.wait_not_present(".pf-c-modal-box:contains('Switch to limited access')")
else:
b.click(".modal-dialog:contains('Switch to limited access') button:contains('Limit access')")
b.wait_not_present(".modal-dialog:contains('Switch to limited access')")
b.wait_text("#super-user-indicator", "Limited access")
b.switch_to_frame("cockpit1:localhost/updates")
# auto-update status still visible, but disabled
b.wait_in_text("#automatic-updates p", "will be applied")
b.wait_visible("#automatic-updates button:disabled")
def checkUpgradeRebootDnf(self):
"""part of testWithAvailableUpdates() for dnf backend"""
m = self.machine
# dial down the random sleep to avoid the test having to wait 5 mins
self.sed_file("/random_sleep/ s/=.*$/= 3/", "/etc/dnf/automatic.conf")
# then manually start the upgrade job like the timer would
m.execute("systemctl start dnf-automatic-install.service")
# new vanilla package got installed, and triggered reboot; cancel that
m.execute("test -f /stamp-vanilla-1.0-2")
m.execute("until test -f /run/nologin; do sleep 1; done")
m.execute("set -e; shutdown -c; test ! -f /run/nologin")
# service should show vanilla upgrade and scheduling shutdown
out = m.execute(
"if systemctl status dnf-automatic-install.service; then echo 'expected service to be stopped'; exit 1; fi")
self.assertIn("vanilla", out)
# systemd 245.7 correctly says "reboot", older version say "shutdown"
self.assertRegex(out, "(Shutdown|Reboot) scheduled")
# run it again, now there are no available updates → no reboot
m.execute("systemctl start dnf-automatic-install.service")
m.execute("set -e; test -f /stamp-vanilla-1.0-2; test ! -f /run/nologin")
# service should not do much
out = m.execute(
"if systemctl status dnf-automatic-install.service; then echo 'expected service to be stopped'; exit 1; fi")
self.assertNotIn("vanilla", out)
self.assertNotIn("Shutdown", out)
@skipImage("Image uses OSTree", "fedora-coreos")
class TestAutoUpdatesInstall(NoSubManCase):
def testUnsupported(self):
b = self.browser
m = self.machine
m.execute("if type dnf; then dnf remove -y dnf-automatic; elif type apt; then dpkg -P unattended-upgrades; fi")
# first test with available upgrades
self.createPackage("vanilla", "1.0", "1", install=True)
self.createPackage("vanilla", "1.0", "2")
self.enableRepo()
m.start_cockpit()
b.login_and_go("/updates")
b.wait_visible("#available-updates")
if self.backend == 'dnf':
b.wait_in_text("#automatic-updates p", "Automatic updates are not set up")
else:
# on-demand installation isn't supported, switch to enable it isn't visible
b.wait_in_text("#automatic-updates", "Automatic updates are not set up")
# apply updates
b.click("#available-updates button#install-all")
# wait until installation is finished
b.wait_visible(".pf-c-empty-state .pf-c-title:contains('Update was successful')")
b.click("#ignore")
if self.backend == 'dnf':
b.is_present('#automatic-updates')
else:
# on-demand installation isn't supported
self.assertFalse(b.is_present('#automatic-updates'))
@skipImage("No supported auto update backend", "debian-stable", "debian-testing", "ubuntu-2004", "ubuntu-stable")
def testInstall(self):
b = self.browser
m = self.machine
m.execute('dnf remove -y dnf-automatic')
# provide minimal content in order for the backend to be seen as supported
timerContent = '''
[Unit]
Description=dnf-automatic timer
# See comment in dnf-makecache.service
ConditionPathExists=!/run/ostree-booted
[Timer]
OnBootSec=1h
OnUnitInactiveSec=1d
Unit=-.mount
[Install]
WantedBy=basic.target
'''
self.createPackage('dnf-automatic', '1', '1', content={
'/etc/dnf/automatic.conf': '',
'/usr/lib/systemd/system/dnf-automatic.timer': timerContent,
'/usr/lib/systemd/system/dnf-automatic-install.timer': timerContent
})
self.enableRepo()
m.start_cockpit()
b.login_and_go('/updates')
# click through install dialog
b.click("#automatic-updates button")
b.wait_popup('dialog')
b.wait_visible('#dialog button.apply')
b.wait_not_attr('#dialog button.apply', 'disabled', '')
b.click('#dialog button.apply')
# as dnf-automatic isn't actually installed DnfImpl.setConfig will fail,
# but we can check that the backend is now enabled
b.wait_visible("#automatic-updates-dialog")
if __name__ == '__main__':
test_main()
|