From: James Prestwood <prestwoj at gmail.com>
To: iwd at lists.01.org
Subject: [PATCH 1/3] auto-t: iwd.py: remove StationDebug out of Device init
Date: Tue, 04 Jan 2022 09:37:34 -0800 [thread overview]
Message-ID: <20220104173736.93682-1-prestwoj@gmail.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 2626 bytes --]
Since a Device class can represent multiple modes (AP, AdHoc, station)
move StationDebug out of the init and only create this class when it
is used (presumably only when the device is in station mode).
The StationDebug class is now created in a property method consistent
with 'station_if'. If Device is not in station mode it is automatically
switched if the test tries any StationDebug methods.
If the Device mode is changed from 'station' the StationDebug class
instance is destroyed.
---
autotests/util/iwd.py | 24 +++++++++++++++++-------
1 file changed, 17 insertions(+), 7 deletions(-)
diff --git a/autotests/util/iwd.py b/autotests/util/iwd.py
index e95bd96d..7f511187 100755
--- a/autotests/util/iwd.py
+++ b/autotests/util/iwd.py
@@ -280,17 +280,13 @@ class Device(IWDDBusAbstract):
'''
_iface_name = IWD_DEVICE_INTERFACE
- def __init__(self, object_path = None, properties = None,
- service=IWD_SERVICE, namespace=ctx):
+ def __init__(self, *args, **kwargs):
self._wps_manager_if = None
self._station_if = None
self._station_props = None
+ self._station_debug_obj = None
- IWDDBusAbstract.__init__(self, object_path, properties, service,
- namespace)
-
- self._station_debug = StationDebug(object_path=object_path,
- namespace=namespace)
+ IWDDBusAbstract.__init__(self, *args, **kwargs)
@property
def _wps_manager(self):
@@ -309,6 +305,17 @@ class Device(IWDDBusAbstract):
IWD_STATION_INTERFACE)
return self._station_if
+ @property
+ def _station_debug(self):
+ if self._properties['Mode'] != 'station':
+ self._prop_proxy.Set(IWD_DEVICE_INTERFACE, 'Mode', 'station')
+
+ if self._station_debug_obj is None:
+ self._station_debug_obj = StationDebug(object_path=self._object_path,
+ namespace=self._namespace)
+
+ return self._station_debug_obj
+
def _station_properties(self):
if self._station_props is not None:
return self._station_props
@@ -335,6 +342,9 @@ class Device(IWDDBusAbstract):
for name, value in changed.items():
self._station_props[name] = value
+ if name == 'Mode' and value != 'station':
+ self._station_debug_obj = None
+
@property
def device_path(self):
'''
--
2.31.1
next reply other threads:[~2022-01-04 17:37 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-04 17:37 James Prestwood [this message]
-- strict thread matches above, loose matches on Subject: below --
2022-01-04 17:44 [PATCH 1/3] auto-t: iwd.py: remove StationDebug out of Device init Denis Kenzior
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220104173736.93682-1-prestwoj@gmail.com \
--to=iwd@lists.linux.dev \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox