improved tests
test code waits for selenium to be available screenshots get named more precisely
This commit is contained in:
parent
cc414092a3
commit
3f8f30f5d1
|
@ -1,4 +1,5 @@
|
||||||
import unittest
|
import unittest
|
||||||
|
import inspect
|
||||||
from selenium import webdriver
|
from selenium import webdriver
|
||||||
from selenium.webdriver.common.keys import Keys
|
from selenium.webdriver.common.keys import Keys
|
||||||
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
|
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
|
||||||
|
@ -6,10 +7,52 @@ from selenium.webdriver.common.by import By
|
||||||
from selenium.webdriver.support.ui import WebDriverWait
|
from selenium.webdriver.support.ui import WebDriverWait
|
||||||
from selenium.webdriver.support import expected_conditions
|
from selenium.webdriver.support import expected_conditions
|
||||||
|
|
||||||
|
|
||||||
|
def wait_net_service(server, port, timeout=None):
|
||||||
|
""" Wait for network service to appear
|
||||||
|
@param timeout: in seconds, if None or 0 wait forever
|
||||||
|
@return: True of False, if timeout is None may return only True or
|
||||||
|
throw unhandled network exception
|
||||||
|
"""
|
||||||
|
import socket
|
||||||
|
import errno
|
||||||
|
|
||||||
|
s = socket.socket()
|
||||||
|
if timeout:
|
||||||
|
from time import time as now
|
||||||
|
# time module is needed to calc timeout shared between two exceptions
|
||||||
|
end = now() + timeout
|
||||||
|
|
||||||
|
while True:
|
||||||
|
try:
|
||||||
|
if timeout:
|
||||||
|
next_timeout = end - now()
|
||||||
|
if next_timeout < 0:
|
||||||
|
return False
|
||||||
|
else:
|
||||||
|
s.settimeout(next_timeout)
|
||||||
|
|
||||||
|
s.connect((server, port))
|
||||||
|
|
||||||
|
except socket.timeout as err:
|
||||||
|
# this exception occurs only if timeout is set
|
||||||
|
if timeout:
|
||||||
|
return False
|
||||||
|
|
||||||
|
except socket.error as err:
|
||||||
|
# catch timeout exception from underlying network library
|
||||||
|
# this one is different from socket.timeout
|
||||||
|
if type(err.args) != tuple or err[0] != errno.ETIMEDOUT:
|
||||||
|
raise
|
||||||
|
else:
|
||||||
|
s.close()
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
class PythonOrgSearch(unittest.TestCase):
|
class PythonOrgSearch(unittest.TestCase):
|
||||||
screen_shot_counter=0
|
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
self.screen_shot_counter = 0
|
||||||
self.driver = webdriver.Remote(
|
self.driver = webdriver.Remote(
|
||||||
command_executor='http://selenium:4444/wd/hub',
|
command_executor='http://selenium:4444/wd/hub',
|
||||||
desired_capabilities=DesiredCapabilities.FIREFOX)
|
desired_capabilities=DesiredCapabilities.FIREFOX)
|
||||||
|
@ -50,11 +93,14 @@ class PythonOrgSearch(unittest.TestCase):
|
||||||
assert error is not None
|
assert error is not None
|
||||||
|
|
||||||
def create_screenshot(self):
|
def create_screenshot(self):
|
||||||
self.driver.get_screenshot_as_file('/results/screenshot_%s.png' % (str(self.screen_shot_counter)))
|
print(self.__class__.__name__, inspect.stack()[1][3])
|
||||||
|
self.driver.get_screenshot_as_file('/results/%s_%s_%s.png' % (self.__class__.__name__, inspect.stack()[1][3], str(self.screen_shot_counter)))
|
||||||
self.screen_shot_counter += 1
|
self.screen_shot_counter += 1
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
self.driver.close()
|
self.driver.close()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
wait_net_service('selenium', 4444)
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|
Loading…
Reference in New Issue