2dd5a3fbfd
- iscsi: CHAP auth algorithm selection fixes (#2188991) - tests: Use stronger passphrases for LUKS tests - lvm2: Improve uevent processing (#2039772) Resolves: #2188991,#2039772
38 lines
1.9 KiB
Diff
38 lines
1.9 KiB
Diff
commit 1bf172603e4cc77da70d8fd13b6ba6c8b8c91600
|
|
Author: Tomas Bzatek <tbzatek@redhat.com>
|
|
Date: Thu Oct 20 17:53:20 2022 +0200
|
|
|
|
tests: Test iscsi noauth in test_login_chap_auth
|
|
|
|
The other way is already tested in test_login_noauth_badauth.
|
|
|
|
diff --git a/src/tests/dbus-tests/test_30_iscsi.py b/src/tests/dbus-tests/test_30_iscsi.py
|
|
index 2b75462a..f2594d99 100644
|
|
--- a/src/tests/dbus-tests/test_30_iscsi.py
|
|
+++ b/src/tests/dbus-tests/test_30_iscsi.py
|
|
@@ -151,8 +151,14 @@ class UdisksISCSITest(udiskstestcase.UdisksTestCase):
|
|
options = dbus.Dictionary(signature='sv')
|
|
options['username'] = self.initiator
|
|
|
|
+ msg = 'Login failed: initiator reported error \(24 - iSCSI login failed due to authorization failure\)'
|
|
+ # missing auth info
|
|
+ with six.assertRaisesRegex(self, dbus.exceptions.DBusException, msg):
|
|
+ manager.Login(iqn, tpg, host, port, iface, self.no_options,
|
|
+ dbus_interface=self.iface_prefix + '.Manager.ISCSI.Initiator',
|
|
+ timeout=self.iscsi_timeout)
|
|
+
|
|
# wrong password
|
|
- msg = 'Login failed: initiator reported error'
|
|
with six.assertRaisesRegex(self, dbus.exceptions.DBusException, msg):
|
|
options['password'] = '12345'
|
|
manager.Login(iqn, tpg, host, port, iface, options,
|
|
@@ -318,7 +324,7 @@ class UdisksISCSITest(udiskstestcase.UdisksTestCase):
|
|
# first attempt - wrong password
|
|
options = dbus.Dictionary(signature='sv')
|
|
options['username'] = self.initiator
|
|
- msg = 'Login failed: initiator reported error'
|
|
+ msg = r'Login failed: initiator reported error \((19 - encountered non-retryable iSCSI login failure|24 - iSCSI login failed due to authorization failure)\)'
|
|
with six.assertRaisesRegex(self, dbus.exceptions.DBusException, msg):
|
|
options['password'] = '12345'
|
|
manager.Login(iqn, tpg, host, port, iface, options,
|