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:
Rahul Rahul 2016-07-21 16:18:05 -07:00 committed by Denis Kenzior
parent b5e06633dc
commit 67dc10707a
6 changed files with 208 additions and 0 deletions

View 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)

View 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

View File

@ -1,8 +1,21 @@
scanNetworkTest: This test checks that we find the right AP, as
specified in the hostapd conf file.
conf file: IntelWIFI_CCMP.conf, IntelWIFI_TKIP.conf
connectDisconnectTest: Connect and disconnect from a network
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:
1. Ensure you have hostapd installed.

View File

@ -0,0 +1,10 @@
interface=wln0
driver=nl80211
hw_mode=g
channel=1
ssid=IntelWIFI
wpa=1
wpa_pairwise=TKIP
wpa_passphrase=WrongPassword

View 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)