mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-21 03:22:51 +01:00
autotests: test1AP - added new tests and config files
APShutdownTest - shutdown the AP after network connection. This will be replaced when hwsim supports signal strength modification InvalidPassphraseTest - Provide an invalid passphrase.
This commit is contained in:
parent
b5e06633dc
commit
67dc10707a
95
autotests/test1AP/APShutdownTest.py
Executable file
95
autotests/test1AP/APShutdownTest.py
Executable file
@ -0,0 +1,95 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
#built-in python libraries
|
||||||
|
import unittest
|
||||||
|
from gi.repository import GLib
|
||||||
|
import dbus
|
||||||
|
import time
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
from subprocess import Popen, PIPE, STDOUT, call, check_output
|
||||||
|
import sys
|
||||||
|
sys.path.append('../utility') #needed to import all the utility modules
|
||||||
|
import utility
|
||||||
|
import pty
|
||||||
|
import signal
|
||||||
|
|
||||||
|
class TestAPShutdown(unittest.TestCase):
|
||||||
|
def doConnectDisconnect(self):
|
||||||
|
objectList = utility.getObjectList(bus)
|
||||||
|
|
||||||
|
# start simpleAgent
|
||||||
|
master, slave = pty.openpty()
|
||||||
|
proc = Popen([sys.executable, '../utility/simpleAgent.py'],
|
||||||
|
stdin=PIPE, stdout=slave, close_fds=True)
|
||||||
|
stdout_handle = os.fdopen(master)
|
||||||
|
if stdout_handle.readline().rstrip() == "AGENT_REGISTERED":
|
||||||
|
logger.debug("Agent Registered")
|
||||||
|
else:
|
||||||
|
logger.debug("Agent failed to register")
|
||||||
|
|
||||||
|
# close the handles
|
||||||
|
stdout_handle.close()
|
||||||
|
os.close(slave)
|
||||||
|
|
||||||
|
networkToConnect = utility.getNetworkToConnectTo(objectList)
|
||||||
|
# check if networkToConnect is not null. If yes, restart program
|
||||||
|
# so that the network list is updated. Alternatively, we can scan
|
||||||
|
# for networks.
|
||||||
|
if (networkToConnect == ""):
|
||||||
|
time.sleep(2)
|
||||||
|
logger.debug("RESTART PROGRAM")
|
||||||
|
os.execl(sys.executable, sys.executable, * sys.argv)
|
||||||
|
|
||||||
|
self.assertNotEqual(networkToConnect, "")
|
||||||
|
network = dbus.Interface(bus.get_object(utility.IWD_SERVICE,
|
||||||
|
networkToConnect),
|
||||||
|
utility.IWD_NETWORK_INTERFACE)
|
||||||
|
|
||||||
|
status = utility.connect(networkToConnect, self, mainloop, bus)
|
||||||
|
|
||||||
|
if status == False:
|
||||||
|
#terminate proc
|
||||||
|
proc.terminate()
|
||||||
|
return
|
||||||
|
logger.info("Currently connected to: %s",
|
||||||
|
utility.getCurrentlyConnectedNetworkName())
|
||||||
|
self.assertEqual(utility.getCurrentlyConnectedNetworkName(),
|
||||||
|
"IntelWIFI")
|
||||||
|
|
||||||
|
#kill AP
|
||||||
|
pid_bytes = check_output("pgrep hostapd", shell=True)
|
||||||
|
pid = pid_bytes.decode('utf-8')
|
||||||
|
logger.debug("shutting down AP with pid: %s", pid)
|
||||||
|
os.system("kill %d"%int(pid))
|
||||||
|
|
||||||
|
#should not be connected to any network after AP shutdown
|
||||||
|
logger.info("After AP shutdown, connected to: %s",
|
||||||
|
utility.getCurrentlyConnectedNetworkName())
|
||||||
|
self.assertEqual(utility.getCurrentlyConnectedNetworkName(),
|
||||||
|
"")
|
||||||
|
#terminate proc
|
||||||
|
proc.terminate()
|
||||||
|
|
||||||
|
# connect to network A. Wait for 2 seconds. Disconnect.
|
||||||
|
def test_APShutdown(self):
|
||||||
|
logger.info(sys._getframe().f_code.co_name)
|
||||||
|
while (True):
|
||||||
|
if bus.name_has_owner(utility.IWD_SERVICE) == True:
|
||||||
|
break
|
||||||
|
self.doConnectDisconnect()
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def setUpClass(cls):
|
||||||
|
global logger, bus, mainloop
|
||||||
|
utility.initLogger()
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
bus = dbus.SystemBus()
|
||||||
|
mainloop = GLib.MainLoop()
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def tearDownClass(cls):
|
||||||
|
mainloop.quit()
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main(exit=True)
|
11
autotests/test1AP/IntelWIFI_CCMP.conf
Executable file
11
autotests/test1AP/IntelWIFI_CCMP.conf
Executable file
@ -0,0 +1,11 @@
|
|||||||
|
interface=wln0
|
||||||
|
driver=nl80211
|
||||||
|
|
||||||
|
hw_mode=g
|
||||||
|
channel=1
|
||||||
|
ssid=IntelWIFI
|
||||||
|
|
||||||
|
wpa=2
|
||||||
|
wpa_key_mgmt=WPA-PSK
|
||||||
|
wpa_pairwise=CCMP
|
||||||
|
wpa_passphrase=EasilyGuessedPassword
|
@ -1,8 +1,21 @@
|
|||||||
scanNetworkTest: This test checks that we find the right AP, as
|
scanNetworkTest: This test checks that we find the right AP, as
|
||||||
specified in the hostapd conf file.
|
specified in the hostapd conf file.
|
||||||
|
conf file: IntelWIFI_CCMP.conf, IntelWIFI_TKIP.conf
|
||||||
|
|
||||||
connectDisconnectTest: Connect and disconnect from a network
|
connectDisconnectTest: Connect and disconnect from a network
|
||||||
as specified in the hostapd conf file.
|
as specified in the hostapd conf file.
|
||||||
|
conf file: IntelWIFI_CCMP.conf, IntelWIFI_TKIP.conf
|
||||||
|
|
||||||
|
invalidPassphraseTest: Try to connect to a network with an
|
||||||
|
invalid passphrase. The connection is
|
||||||
|
unsuccessful.
|
||||||
|
conf file: invalidPassphrase.conf
|
||||||
|
|
||||||
|
APShutdownTest: Connect to a network. Shutdown the AP. The
|
||||||
|
connection is lost.
|
||||||
|
conf file: IntelWIFI_CCMP.conf, IntelWIFI_TKIP.conf
|
||||||
|
NOTE: Test will be removed once hwsim supports
|
||||||
|
the ability to modify signal strength.
|
||||||
|
|
||||||
Pre-requisites:
|
Pre-requisites:
|
||||||
1. Ensure you have hostapd installed.
|
1. Ensure you have hostapd installed.
|
||||||
|
10
autotests/test1AP/invalidPassphrase.conf
Executable file
10
autotests/test1AP/invalidPassphrase.conf
Executable file
@ -0,0 +1,10 @@
|
|||||||
|
interface=wln0
|
||||||
|
driver=nl80211
|
||||||
|
|
||||||
|
hw_mode=g
|
||||||
|
channel=1
|
||||||
|
ssid=IntelWIFI
|
||||||
|
|
||||||
|
wpa=1
|
||||||
|
wpa_pairwise=TKIP
|
||||||
|
wpa_passphrase=WrongPassword
|
79
autotests/test1AP/invalidPassphraseTest.py
Executable file
79
autotests/test1AP/invalidPassphraseTest.py
Executable file
@ -0,0 +1,79 @@
|
|||||||
|
#!/usr/bin/python3
|
||||||
|
|
||||||
|
#built-in python libraries
|
||||||
|
import unittest
|
||||||
|
from gi.repository import GLib
|
||||||
|
import dbus
|
||||||
|
import time
|
||||||
|
import logging
|
||||||
|
import os
|
||||||
|
from subprocess import Popen, PIPE, STDOUT
|
||||||
|
import sys
|
||||||
|
sys.path.append('../utility') #needed to import all the utility modules
|
||||||
|
import utility
|
||||||
|
import pty
|
||||||
|
|
||||||
|
class TestInvalidPassphrase(unittest.TestCase):
|
||||||
|
def doConnectDisconnect(self):
|
||||||
|
objectList = utility.getObjectList(bus)
|
||||||
|
|
||||||
|
# start simpleAgent
|
||||||
|
master, slave = pty.openpty()
|
||||||
|
proc = Popen([sys.executable, '../utility/simpleAgent.py'],
|
||||||
|
stdin=PIPE, stdout=slave, close_fds=True)
|
||||||
|
stdout_handle = os.fdopen(master)
|
||||||
|
if stdout_handle.readline().rstrip() == "AGENT_REGISTERED":
|
||||||
|
logger.debug("Agent Registered")
|
||||||
|
else:
|
||||||
|
logger.debug("Agent failed to register")
|
||||||
|
|
||||||
|
# close the handles
|
||||||
|
stdout_handle.close()
|
||||||
|
os.close(slave)
|
||||||
|
|
||||||
|
networkToConnect = utility.getNetworkToConnectTo(objectList)
|
||||||
|
# check if networkToConnect is not null. If yes, restart program
|
||||||
|
# so that the network list is updated. Alternatively, we can scan
|
||||||
|
# for networks.
|
||||||
|
if (networkToConnect == ""):
|
||||||
|
time.sleep(2)
|
||||||
|
logger.debug("RESTART PROGRAM")
|
||||||
|
os.execl(sys.executable, sys.executable, * sys.argv)
|
||||||
|
|
||||||
|
self.assertNotEqual(networkToConnect, "")
|
||||||
|
network = dbus.Interface(bus.get_object(utility.IWD_SERVICE,
|
||||||
|
networkToConnect),
|
||||||
|
utility.IWD_NETWORK_INTERFACE)
|
||||||
|
try:
|
||||||
|
network.Connect()
|
||||||
|
except:
|
||||||
|
errorMsg = "Could not connect to network %s", networkToConnect
|
||||||
|
logger.debug(errorMsg)
|
||||||
|
|
||||||
|
self.assertEqual(utility.getCurrentlyConnectedNetworkName(),
|
||||||
|
"")
|
||||||
|
#terminate proc
|
||||||
|
proc.terminate()
|
||||||
|
|
||||||
|
# connect to network A. Wait for 2 seconds. Disconnect.
|
||||||
|
def test_invalidPassphrase(self):
|
||||||
|
logger.info(sys._getframe().f_code.co_name)
|
||||||
|
while (True):
|
||||||
|
if bus.name_has_owner(utility.IWD_SERVICE) == True:
|
||||||
|
break
|
||||||
|
self.doConnectDisconnect()
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def setUpClass(cls):
|
||||||
|
global logger, bus, mainloop
|
||||||
|
utility.initLogger()
|
||||||
|
logger = logging.getLogger(__name__)
|
||||||
|
bus = dbus.SystemBus()
|
||||||
|
mainloop = GLib.MainLoop()
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def tearDownClass(cls):
|
||||||
|
mainloop.quit()
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main(exit=True)
|
Loading…
Reference in New Issue
Block a user