Skip to content
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
merged 380 commits into from
Nov 1, 2023

Conversation

bpkroth
Copy link
Contributor

@bpkroth bpkroth commented Oct 26, 2023

Adds tests for RemoteEnv setup, run, teardown using SshServices

Fixes some associated bugs:

  • convert certain SFTPError exceptions to FileNotFound in SshFileShareService
    This is important for LocalFileShareEnv integration especially since it always calls download during calls to status, but only handles FileNotFound exceptions when ignore_missing=True
  • Fixups to Add params support to upload/download ops for fileshare service types #517 for download, upload to connect via self._params (loaded from the required_args) instead of self.config

Also included:

  • basic configs for SshServices and LocalExec for easy inclusion

Closes #521

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]>
Copy link
Member

@motus motus left a 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

@bpkroth bpkroth enabled auto-merge (squash) November 1, 2023 23:12
@bpkroth bpkroth mentioned this pull request Nov 1, 2023
@bpkroth bpkroth merged commit b4b5f93 into microsoft:main Nov 1, 2023
@bpkroth bpkroth deleted the additional-remote-env-tests branch November 1, 2023 23:25
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
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add RemoteEnv and LocalEnv exec tests using SSH test infra
2 participants