mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 13:52:43 +08:00
* Replace OpenDevin with OpenHands * Update CONTRIBUTING.md * Update README.md * Update README.md * update poetry lock; move opendevin folder to openhands * fix env var * revert image references in docs * revert permissions * revert permissions --------- Co-authored-by: Xingyao Wang <xingyao6@illinois.edu>
46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from openhands.runtime.utils import files
|
|
|
|
SANDBOX_PATH_PREFIX = '/workspace'
|
|
WORKSPACE_BASE = 'workspace'
|
|
|
|
|
|
def test_resolve_path():
|
|
assert (
|
|
files.resolve_path('test.txt', '/workspace')
|
|
== Path(WORKSPACE_BASE) / 'test.txt'
|
|
)
|
|
assert (
|
|
files.resolve_path('subdir/test.txt', '/workspace')
|
|
== Path(WORKSPACE_BASE) / 'subdir' / 'test.txt'
|
|
)
|
|
assert (
|
|
files.resolve_path(Path(SANDBOX_PATH_PREFIX) / 'test.txt', '/workspace')
|
|
== Path(WORKSPACE_BASE) / 'test.txt'
|
|
)
|
|
assert (
|
|
files.resolve_path(
|
|
Path(SANDBOX_PATH_PREFIX) / 'subdir' / 'test.txt', '/workspace'
|
|
)
|
|
== Path(WORKSPACE_BASE) / 'subdir' / 'test.txt'
|
|
)
|
|
assert (
|
|
files.resolve_path(
|
|
Path(SANDBOX_PATH_PREFIX) / 'subdir' / '..' / 'test.txt', '/workspace'
|
|
)
|
|
== Path(WORKSPACE_BASE) / 'test.txt'
|
|
)
|
|
with pytest.raises(PermissionError):
|
|
files.resolve_path(Path(SANDBOX_PATH_PREFIX) / '..' / 'test.txt', '/workspace')
|
|
with pytest.raises(PermissionError):
|
|
files.resolve_path(Path('..') / 'test.txt', '/workspace')
|
|
with pytest.raises(PermissionError):
|
|
files.resolve_path(Path('/') / 'test.txt', '/workspace')
|
|
assert (
|
|
files.resolve_path('test.txt', '/workspace/test')
|
|
== Path(WORKSPACE_BASE) / 'test' / 'test.txt'
|
|
)
|