diff mbox series

[RESEND,1/3] Revert "tests: D-Bus Get/Set Pmf"

Message ID 20181007145940.55836-1-lkundrak@v3.sk
State Accepted
Headers show
Series [RESEND,1/3] Revert "tests: D-Bus Get/Set Pmf" | expand

Commit Message

Lubomir Rintel Oct. 7, 2018, 2:59 p.m. UTC
This is wrong. The Pmf property has a "s" signature.

This reverts commit 76055b4c6115620421313038b6128f3b93d5160e.

Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
---
 tests/hwsim/test_dbus.py | 43 ----------------------------------------
 1 file changed, 43 deletions(-)

Comments

Jouni Malinen Nov. 24, 2018, 5:20 p.m. UTC | #1
On Sun, Oct 07, 2018 at 04:59:38PM +0200, Lubomir Rintel wrote:
> This is wrong. The Pmf property has a "s" signature.

Thanks, all three patches applied.
diff mbox series

Patch

diff --git a/tests/hwsim/test_dbus.py b/tests/hwsim/test_dbus.py
index 486cdc7cf..b79e24ae9 100644
--- a/tests/hwsim/test_dbus.py
+++ b/tests/hwsim/test_dbus.py
@@ -2367,49 +2367,6 @@  def _test_dbus_apscan(dev, apdev):
     if_obj.Set(WPAS_DBUS_IFACE, "ApScan", dbus.UInt32(1),
                dbus_interface=dbus.PROPERTIES_IFACE)
 
-def test_dbus_pmf(dev, apdev):
-    """D-Bus Get/Set Pmf"""
-    try:
-        _test_dbus_pmf(dev, apdev)
-    finally:
-        dev[0].request("SET pmf 0")
-
-def _test_dbus_pmf(dev, apdev):
-    (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])
-
-    dev[0].set("pmf", "0")
-    res = if_obj.Get(WPAS_DBUS_IFACE, "Pmf",
-                     dbus_interface=dbus.PROPERTIES_IFACE)
-    if res != 0:
-        raise Exception("Unexpected initial Pmf value: %d" % res)
-
-    for i in range(3):
-        if_obj.Set(WPAS_DBUS_IFACE, "Pmf", dbus.UInt32(i),
-                     dbus_interface=dbus.PROPERTIES_IFACE)
-        res = if_obj.Get(WPAS_DBUS_IFACE, "Pmf",
-                         dbus_interface=dbus.PROPERTIES_IFACE)
-        if res != i:
-            raise Exception("Unexpected Pmf value %d (expected %d)" % (res, i))
-
-    try:
-        if_obj.Set(WPAS_DBUS_IFACE, "Pmf", dbus.Int16(-1),
-                   dbus_interface=dbus.PROPERTIES_IFACE)
-        raise Exception("Invalid Set(Pmf,-1) accepted")
-    except dbus.exceptions.DBusException, e:
-        if "Error.Failed: wrong property type" not in str(e):
-            raise Exception("Unexpected error message for invalid Set(Pmf,-1): " + str(e))
-
-    try:
-        if_obj.Set(WPAS_DBUS_IFACE, "Pmf", dbus.UInt32(123),
-                   dbus_interface=dbus.PROPERTIES_IFACE)
-        raise Exception("Invalid Set(Pmf,123) accepted")
-    except dbus.exceptions.DBusException, e:
-        if "Error.Failed: Pmf must be 0, 1, or 2" not in str(e):
-            raise Exception("Unexpected error message for invalid Set(Pmf,123): " + str(e))
-
-    if_obj.Set(WPAS_DBUS_IFACE, "Pmf", dbus.UInt32(1),
-               dbus_interface=dbus.PROPERTIES_IFACE)
-
 def test_dbus_fastreauth(dev, apdev):
     """D-Bus Get/Set FastReauth"""
     (bus,wpas_obj,path,if_obj) = prepare_dbus(dev[0])