Skip to content
Snippets Groups Projects
Commit 5e233fe2 authored by Michał Kudela's avatar Michał Kudela
Browse files

Handle `api mode` notification

parent 06c9f84a
No related branches found
No related tags found
1 merge request!238Adjust test_tools to working with a `queen` plugin.
...@@ -375,11 +375,13 @@ class Node(BaseNode, ScopedObject): ...@@ -375,11 +375,13 @@ class Node(BaseNode, ScopedObject):
self.__produced_files = True self.__produced_files = True
if not exit_before_synchronization and exit_at_block is None: if not exit_before_synchronization and exit_at_block is None:
self.__wait_for_synchronization(deadline, timeout, wait_for_live) self.__wait_for_synchronization(deadline, timeout, wait_for_live, stop_at_block)
self.__log_run_summary() self.__log_run_summary()
def __wait_for_synchronization(self, deadline: float, timeout: float, wait_for_live: bool) -> None: def __wait_for_synchronization(
self, deadline: float, timeout: float, wait_for_live: bool, stop_at_block: int | None
) -> None:
wait_for_event( wait_for_event(
self.__notifications.handler.synchronization_started_event, self.__notifications.handler.synchronization_started_event,
deadline=deadline, deadline=deadline,
...@@ -398,7 +400,9 @@ class Node(BaseNode, ScopedObject): ...@@ -398,7 +400,9 @@ class Node(BaseNode, ScopedObject):
exception_message="WS server didn't start listening on time.", exception_message="WS server didn't start listening on time.",
) )
if wait_for_live: if stop_at_block is not None or "queen" in self.config.plugin:
self.wait_for_api_mode(timeout=timeout)
elif wait_for_live:
self.wait_for_live_mode(timeout=timeout) self.wait_for_live_mode(timeout=timeout)
wait_for_event( wait_for_event(
...@@ -615,6 +619,15 @@ class Node(BaseNode, ScopedObject): ...@@ -615,6 +619,15 @@ class Node(BaseNode, ScopedObject):
exception_message=f"{self.get_name()}: Live mode not activated on time.", exception_message=f"{self.get_name()}: Live mode not activated on time.",
) )
def wait_for_api_mode(self, timeout: float = math.inf) -> None:
assert timeout >= 0
deadline = time.time() + timeout
wait_for_event(
self.__notifications.handler.api_mode_entered_event,
deadline=deadline,
exception_message=f"{self.get_name()}: API mode not activated on time.",
)
def get_number_of_forks(self) -> int: def get_number_of_forks(self) -> int:
return self.__notifications.handler.number_of_forks return self.__notifications.handler.number_of_forks
......
...@@ -44,6 +44,7 @@ class NodeNotificationHandler(HivedNotificationHandler): ...@@ -44,6 +44,7 @@ class NodeNotificationHandler(HivedNotificationHandler):
self.replay_finished_event = Event() self.replay_finished_event = Event()
self.snapshot_dumped_event = Event() self.snapshot_dumped_event = Event()
self.api_mode_entered_event = Event()
self.switch_fork_event = Event() self.switch_fork_event = Event()
self.number_of_forks = 0 self.number_of_forks = 0
...@@ -60,6 +61,8 @@ class NodeNotificationHandler(HivedNotificationHandler): ...@@ -60,6 +61,8 @@ class NodeNotificationHandler(HivedNotificationHandler):
self.live_mode_entered_event.set() self.live_mode_entered_event.set()
case "chain API ready": case "chain API ready":
self.chain_api_ready_event.set() self.chain_api_ready_event.set()
case "entering API mode":
self.api_mode_entered_event.set()
async def on_http_webserver_bind(self, notification: Notification[WebserverListening]) -> None: async def on_http_webserver_bind(self, notification: Notification[WebserverListening]) -> None:
self.http_endpoint = HttpUrl(self.__combine_url_string_from_notification(notification), protocol="http") self.http_endpoint = HttpUrl(self.__combine_url_string_from_notification(notification), protocol="http")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment