chore: remove attempts to connect to non-existing context and remove useless cycles
This commit is contained in:
parent
568f0743a4
commit
66433841e8
|
@ -81,21 +81,13 @@ class AUT:
|
|||
self.pid = None
|
||||
|
||||
@allure.step('Attach Squish to Test Application')
|
||||
def attach(self):
|
||||
def attach(self, timeout_sec: int = configs.timeouts.PROCESS_TIMEOUT_SEC):
|
||||
LOG.info('Attaching to AUT: localhost:%d', self.port)
|
||||
for i in range(3):
|
||||
|
||||
try:
|
||||
SquishServer().add_attachable_aut(self.aut_id, self.port)
|
||||
if self.ctx is None:
|
||||
self.ctx = context.get_context(self.aut_id)
|
||||
else:
|
||||
if self.ctx is None:
|
||||
for j in range(3):
|
||||
try:
|
||||
context.get_context(self.aut_id)
|
||||
except AttributeError:
|
||||
continue
|
||||
|
||||
squish.setApplicationContext(self.ctx)
|
||||
assert squish.waitFor(lambda: self.ctx.isRunning, configs.timeouts.PROCESS_TIMEOUT_SEC)
|
||||
except Exception as err:
|
||||
|
@ -141,7 +133,7 @@ class AUT:
|
|||
return self
|
||||
|
||||
@allure.step('Waiting for port')
|
||||
def wait(self, timeout: int = 3, retries: int = 10):
|
||||
def wait(self, timeout: int = 1, retries: int = 10):
|
||||
LOG.info('Waiting for AUT port localhost:%d...', self.port)
|
||||
try:
|
||||
wait_for_port('localhost', self.port, timeout, retries)
|
||||
|
|
|
@ -12,16 +12,15 @@ LOG = logging.getLogger(__name__)
|
|||
|
||||
@allure.step('Get application context of "{0}"')
|
||||
def get_context(aut_id: str):
|
||||
for i in range(10):
|
||||
LOG.info('Attaching to: %s', aut_id)
|
||||
try:
|
||||
LOG.debug('Attaching to: %s', aut_id)
|
||||
context = squish.attachToApplication(aut_id, SquishServer().host, SquishServer().port)
|
||||
if context is not None:
|
||||
LOG.info('AUT %s context found', aut_id)
|
||||
return context
|
||||
except RuntimeError:
|
||||
time.sleep(10)
|
||||
continue
|
||||
except RuntimeError as error:
|
||||
LOG.error('AUT %s context has not been found', aut_id)
|
||||
raise error
|
||||
|
||||
|
||||
@allure.step('Detaching')
|
||||
|
|
Loading…
Reference in New Issue