mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
22 lines
1.1 KiB
Python
22 lines
1.1 KiB
Python
from opendevin import config
|
|
from opendevin.action import fileop
|
|
from pathlib import Path
|
|
import pytest
|
|
|
|
|
|
def test_resolve_path():
|
|
assert fileop.resolve_path('test.txt') == Path(config.get('WORKSPACE_BASE')) / 'test.txt'
|
|
assert fileop.resolve_path('subdir/test.txt') == Path(config.get('WORKSPACE_BASE')) / 'subdir' / 'test.txt'
|
|
assert fileop.resolve_path(Path(fileop.SANDBOX_PATH_PREFIX) / 'test.txt') == \
|
|
Path(config.get('WORKSPACE_BASE')) / 'test.txt'
|
|
assert fileop.resolve_path(Path(fileop.SANDBOX_PATH_PREFIX) / 'subdir' / 'test.txt') == \
|
|
Path(config.get('WORKSPACE_BASE')) / 'subdir' / 'test.txt'
|
|
assert fileop.resolve_path(Path(fileop.SANDBOX_PATH_PREFIX) / 'subdir' / '..' / 'test.txt') == \
|
|
Path(config.get('WORKSPACE_BASE')) / 'test.txt'
|
|
with pytest.raises(PermissionError):
|
|
fileop.resolve_path(Path(fileop.SANDBOX_PATH_PREFIX) / '..' / 'test.txt')
|
|
with pytest.raises(PermissionError):
|
|
fileop.resolve_path(Path('..') / 'test.txt')
|
|
with pytest.raises(PermissionError):
|
|
fileop.resolve_path(Path('/') / 'test.txt')
|