-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TC-IDM-4.2 Step 8 delay adjust #31773
Closed
raul-marquez-csa
wants to merge
11
commits into
project-chip:master
from
raul-marquez-csa:idm-4.2-troubleshoot
Closed
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
6338e61
test
raul-marquez-csa 6472b8c
Adds 1/2 second to delay in step 8
raul-marquez-csa 3f26dc8
Merge branch 'master' into idm-4.2-troubleshoot
raul-marquez-csa 4c5df4c
Merge branch 'master' into idm-4.2-troubleshoot
raul-marquez-csa bbc0409
Adds loop in 0.1s cheks for 10s for reading updated attribute
raul-marquez-csa 5750461
Merge branch 'idm-4.2-troubleshoot' of https://github.com/raul-marque…
raul-marquez-csa 53c1002
Merge branch 'master' into idm-4.2-troubleshoot
raul-marquez-csa 67b1635
Merge remote-tracking branch 'upstream/master' into idm-4.2-troubleshoot
raul-marquez-csa 73f9801
Merge branch 'master' into idm-4.2-troubleshoot
raul-marquez-csa 1d09862
Merge branch 'idm-4.2-troubleshoot' of https://github.com/raul-marque…
raul-marquez-csa f4fa9dd
Merge branch 'master' into idm-4.2-troubleshoot
raul-marquez-csa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -67,6 +67,29 @@ async def get_idle_mode_duration_sec(self, ctrl, ep=ROOT_NODE_ENDPOINT_ID): | |||||
attribute=Clusters.IcdManagement.Attributes.IdleModeDuration | ||||||
) | ||||||
|
||||||
def get_attribute_value_wait(self, sub, typed_attr_path): | ||||||
start_time = time.time() | ||||||
timeout = 10 | ||||||
increment = 0.1 | ||||||
loop = True | ||||||
attribute_value = None | ||||||
while loop: | ||||||
# Get the attribute value | ||||||
attribute_value = sub.GetAttribute(typed_attr_path) | ||||||
|
||||||
# Check if the value is not an empty string | ||||||
if attribute_value != "": | ||||||
loop = False # Exit the loop | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Then you can get rid of the loop var and just loop on time.time() < end_time and throw the error at the end |
||||||
else: | ||||||
# Check if the timeout has been reached | ||||||
if time.time() - start_time > timeout: | ||||||
error_msg = f"Timeout: Value for '{typed_attr_path.AttributeName}' attribute not found within {timeout} seconds." | ||||||
raise TimeoutError(error_msg) | ||||||
else: | ||||||
time.sleep(increment) | ||||||
|
||||||
return attribute_value | ||||||
|
||||||
@staticmethod | ||||||
def verify_attribute_exists(sub, cluster, attribute, ep=ROOT_NODE_ENDPOINT_ID): | ||||||
sub_attrs = sub | ||||||
|
@@ -409,8 +432,8 @@ async def test_TC_IDM_4_2(self): | |||||
) | ||||||
|
||||||
# Wait MinIntervalFloor seconds before reading updated attribute value | ||||||
time.sleep(same_min_max_interval_sec) | ||||||
new_node_label_read = sub_cr1_update_value.GetAttribute(node_label_attr_typed_path) | ||||||
# TODO: Fix subscription ranges https://github.com/CHIP-Specifications/chip-test-plans/issues/3948 | ||||||
new_node_label_read = self.get_attribute_value_wait(sub_cr1_update_value, node_label_attr_typed_path) | ||||||
|
||||||
# Verify new attribute value after MinIntervalFloor time | ||||||
asserts.assert_equal(new_node_label_read, new_node_label_write, "Attribute value not updated after write operation.") | ||||||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we may have a few of these sprinkled in the code. How about adding a retry library in the testing requirements like https://tenacity.readthedocs.io/en/latest/ or maybe there are others, so we can read code like
@retry(stop=stop_after_delay(10), wait=wait_fixed(0.1), retry=retry_if_result(is_empty)))
or something like that.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ugh...I hope we don't. If we do, that seems like a test red flag.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I put up a PR to disable this test in the CI. The test plan has been updated so we don't have to do this. I'm hoping we can just skip this retry at this point and fix the test properly. This was meant to be a quick fix-forward to get this to stop flaking.
#32378