Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
test-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
test-tools
Commits
5e233fe2
Commit
5e233fe2
authored
4 months ago
by
Michał Kudela
Browse files
Options
Downloads
Patches
Plain Diff
Handle `api mode` notification
parent
06c9f84a
No related branches found
No related tags found
1 merge request
!238
Adjust test_tools to working with a `queen` plugin.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
package/test_tools/__private/node.py
+16
-3
16 additions, 3 deletions
package/test_tools/__private/node.py
package/test_tools/__private/notifications/node_notification_handler.py
+3
-0
3 additions, 0 deletions
...ools/__private/notifications/node_notification_handler.py
with
19 additions
and
3 deletions
package/test_tools/__private/node.py
+
16
−
3
View file @
5e233fe2
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
package/test_tools/__private/notifications/node_notification_handler.py
+
3
−
0
View file @
5e233fe2
...
@@ -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
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment