All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] auto-t: return None with get_ordered_network(s)
@ 2019-10-28 19:51 James Prestwood
  2019-10-28 19:52 ` [PATCH 2/3] auto-t: fix random failures in testEAP-MSCHAPV2 James Prestwood
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: James Prestwood @ 2019-10-28 19:51 UTC (permalink / raw)
  To: iwd

[-- Attachment #1: Type: text/plain, Size: 1160 bytes --]

If no networks are found, return None rather than an empty
array. This is easier to check by the caller (and was assumed
in some cases). Also add an exception to get_ordered_network
if no network is found.
---
 autotests/util/iwd.py | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/autotests/util/iwd.py b/autotests/util/iwd.py
index 3ba5112c..35e5a693 100755
--- a/autotests/util/iwd.py
+++ b/autotests/util/iwd.py
@@ -376,6 +376,10 @@ class Device(IWDDBusAbstract):
         for bus_obj in self._station.GetOrderedNetworks():
             ordered_network = OrderedNetwork(bus_obj)
             ordered_networks.append(ordered_network)
+
+        if len(ordered_networks) == 0:
+            return None
+
         return ordered_networks
 
     def get_ordered_network(self, network):
@@ -385,6 +389,9 @@ class Device(IWDDBusAbstract):
         '''
         ordered_networks = self.get_ordered_networks()
 
+        if not ordered_networks:
+            raise Exception('Network %s not found' % network)
+
         for n in ordered_networks:
             if n.name == network:
                 return n
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-10-28 20:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-28 19:51 [PATCH 1/3] auto-t: return None with get_ordered_network(s) James Prestwood
2019-10-28 19:52 ` [PATCH 2/3] auto-t: fix random failures in testEAP-MSCHAPV2 James Prestwood
2019-10-28 19:52 ` [PATCH 3/3] auto-t: update testEAP-TLS to use HostapdCLI James Prestwood
2019-10-28 20:01 ` [PATCH 1/3] auto-t: return None with get_ordered_network(s) Denis Kenzior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.