mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-04-12 11:27:51 +02:00
auto-t: remove old 0 AP test
This commit is contained in:
parent
343c05d198
commit
ef6bef27d5
@ -1,9 +0,0 @@
|
|||||||
scanNetworkWithoutAPTest: This test checks that we do not find any AP to
|
|
||||||
connect to, if hostapd is not started.
|
|
||||||
|
|
||||||
Run tests (scanNetworkWithoutAPTest test):
|
|
||||||
1. Start iwd.
|
|
||||||
sudo iwd
|
|
||||||
2. Start scanNetworkWithoutAPTest test (inside autotests/test0AP directory).
|
|
||||||
cd <iwd>/autotests/test0AP
|
|
||||||
./scanNetworkWithoutAPTest.py
|
|
@ -1,2 +0,0 @@
|
|||||||
[SETUP]
|
|
||||||
num_radios=1
|
|
@ -1,31 +0,0 @@
|
|||||||
#!/usr/bin/python3
|
|
||||||
|
|
||||||
#built-in python libraries
|
|
||||||
import unittest
|
|
||||||
import dbus
|
|
||||||
import logging
|
|
||||||
import sys
|
|
||||||
sys.path.append('../utility') #needed to import all the utility modules
|
|
||||||
import utility
|
|
||||||
|
|
||||||
# start this test without hostapd
|
|
||||||
class TestScanNetworkWithoutAP(unittest.TestCase):
|
|
||||||
|
|
||||||
def test_scanNetworkWithoutAP(self):
|
|
||||||
logger.info(sys._getframe().f_code.co_name)
|
|
||||||
# scan and get network name
|
|
||||||
objectList = utility.getObjectList(bus)
|
|
||||||
networkName = utility.getNetworkName(objectList)
|
|
||||||
logger.info("Network Found: %s", networkName)
|
|
||||||
# should not find any network since hostapd is not running.
|
|
||||||
self.assertEqual(networkName, "")
|
|
||||||
|
|
||||||
@classmethod
|
|
||||||
def setUpClass(cls):
|
|
||||||
global logger, bus
|
|
||||||
utility.initLogger()
|
|
||||||
logger = logging.getLogger(__name__)
|
|
||||||
bus = dbus.SystemBus()
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
unittest.main(exit=True)
|
|
Loading…
x
Reference in New Issue
Block a user