-
Notifications
You must be signed in to change notification settings - Fork 71
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
Add RemoteEnv tests using SshService testing infrastructure #557
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
FIXME: broken and incomplete
…vm ops into host ops, adding os ops
This was referenced Oct 27, 2023
Merged
motus
pushed a commit
that referenced
this pull request
Oct 27, 2023
Split out from #557 - [ ] Add test case
bpkroth
added a commit
that referenced
this pull request
Oct 27, 2023
Splitting out some work from #557 --------- Co-authored-by: Sergiy Matusevych <[email protected]>
bpkroth
added a commit
that referenced
this pull request
Oct 27, 2023
Split out from #557 - [x] Add a test for this --------- Co-authored-by: Sergiy Matusevych <[email protected]>
motus
approved these changes
Oct 27, 2023
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.
left a few minor comments
mlos_bench/mlos_bench/environments/local/local_fileshare_env.py
Outdated
Show resolved
Hide resolved
Co-authored-by: Sergiy Matusevych <[email protected]>
Co-authored-by: Sergiy Matusevych <[email protected]>
Merged
motus
added a commit
that referenced
this pull request
Nov 2, 2023
Note: current includes changes from #557 as well. Closes #563 Removes reliance on `--dist=loadgroup` and `@pytest.mark.xdist_group(...)` to run SSH tests in a single worker by implementing a portable file-lock based serialization method for test service setup/teardown and separating out services that might interact between tests. In my local testing, this seems to solve both the "successful but non-reported tests" issue, limited discoverability of tests in vscode upon failure, and lack of parallel execution in all dev environments (Windows, WSL Devcontainer, Linux). On occassion in Windows I have seen the following error, but it is after tests have passed, so seems to be part of pytest cleanup: ``` ... [gw4] [100%] PASSED mlos_bench/mlos_bench/tests/services/remote/ssh/test_ssh_host_service.py::test_ssh_service_reboot =================================================================================================================================== warnings summary ==================================================================================================================================== mlos_bench/mlos_bench/tests/services/remote/ssh/test_ssh_fileshare.py::test_ssh_fileshare_upload_file_dne C:\Users\bpkroth\.conda\envs\mlos\lib\site-packages\_pytest\threadexception.py:73: PytestUnhandledThreadExceptionWarning: Exception in thread Thread-9 (_run_event_loop) Traceback (most recent call last): File "C:\Users\bpkroth\.conda\envs\mlos\lib\asyncio\windows_events.py", line 494, in finish_recv return ov.getresult() OSError: [WinError 995] The I/O operation has been aborted because of either a thread exit or an application request During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Users\bpkroth\.conda\envs\mlos\lib\asyncio\windows_events.py", line 826, in _poll value = callback(transferred, key, ov) File "C:\Users\bpkroth\.conda\envs\mlos\lib\asyncio\windows_events.py", line 498, in finish_recv raise ConnectionResetError(*exc.args) ConnectionResetError: [WinError 995] The I/O operation has been aborted because of either a thread exit or an application request During handling of the above exception, another exception occurred: Traceback (most recent call last): File "C:\Users\bpkroth\.conda\envs\mlos\lib\threading.py", line 1016, in _bootstrap_inner self.run() File "C:\Users\bpkroth\.conda\envs\mlos\lib\threading.py", line 953, in run self._target(*self._args, **self._kwargs) File "C:\Users\bpkroth\src\MLOS\mlos_bench\mlos_bench\event_loop_context.py", line 48, in _run_event_loop self._event_loop.run_forever() File "C:\Users\bpkroth\.conda\envs\mlos\lib\asyncio\windows_events.py", line 321, in run_forever super().run_forever() File "C:\Users\bpkroth\.conda\envs\mlos\lib\asyncio\base_events.py", line 603, in run_forever self._run_once() File "C:\Users\bpkroth\.conda\envs\mlos\lib\asyncio\base_events.py", line 1871, in _run_once event_list = self._selector.select(timeout) File "C:\Users\bpkroth\.conda\envs\mlos\lib\asyncio\windows_events.py", line 444, in select self._poll(timeout) File "C:\Users\bpkroth\.conda\envs\mlos\lib\asyncio\windows_events.py", line 828, in _poll f.set_exception(e) File "C:\Users\bpkroth\.conda\envs\mlos\lib\asyncio\windows_events.py", line 88, in set_exception super().set_exception(exception) asyncio.exceptions.InvalidStateError: invalid state warnings.warn(pytest.PytestUnhandledThreadExceptionWarning(msg)) ``` --------- Co-authored-by: Sergiy Matusevych <[email protected]> Co-authored-by: Sergiy Matusevych <[email protected]>
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.
Adds tests for RemoteEnv
setup
,run
,teardown
using SshServicesFixes some associated bugs:
SFTPError
exceptions toFileNotFound
inSshFileShareService
This is important for
LocalFileShareEnv
integration especially since it always callsdownload
during calls tostatus
, but only handlesFileNotFound
exceptions whenignore_missing=True
download
,upload
to connect viaself._params
(loaded from therequired_args
) instead ofself.config
Also included:
Closes #521