-
Notifications
You must be signed in to change notification settings - Fork 23
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
Implement tests for #130. #132
Merged
Merged
Conversation
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
Imaniac230
requested review from
jbarry-bdai,
heuristicus,
amessing-bdai,
khughes-bdai and
tcappellari-bdai
as code owners
August 21, 2024 18:10
Imaniac230
changed the title
Implement tests for 72adf67551ff2dcb23887dac269821189d84d9a2.
Implement tests for https://github.com/bdaiinstitute/spot_wrapper/pull/130.
Aug 21, 2024
Imaniac230
changed the title
Implement tests for https://github.com/bdaiinstitute/spot_wrapper/pull/130.
Implement tests for #130.
Aug 21, 2024
khughes-bdai
approved these changes
Aug 22, 2024
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.
LGTM -- tested locally and tests are all passing. Thanks!
mhidalgo-bdai
approved these changes
Aug 23, 2024
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.
LGTM2
* checking correct handling of any non-PROCESSING mobility command status * checking handling of valid command transitions - from in-progress to finished * checking robot states after velocity movement commands
Co-authored-by: mhidalgo-bdai <[email protected]>
Imaniac230
force-pushed
the
regression-tests
branch
from
August 23, 2024 17:21
8391939
to
8950297
Compare
khughes-bdai
approved these changes
Aug 23, 2024
tcappellari-bdai
approved these changes
Aug 26, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Hi, I am creating a followup to #130 with added tests for the status handling and state changes. I wanted to test as many cases as possible, so I hope it's not too bloated.
The tests check the following new scenarios (these checks should be passing with the recent changes and would not be passing before the changes):
STATUS_PROCESSING
, whether thelast_sit_command
/last_stand_command
is correctly reset and theis_sitting
/is_standing
state remains unmodified.is_sitting
andis_standing
states are reflecting the change.The tests also check the already existing behavior when handling a valid sit/stand feedback status (
STATUS_IN_PROGRESS
,STATUS_IS_STANDING
,STATUS_IS_SITTING
).