spaCy/spacy/tests/test_symlink_windows.py

41 lines
914 B
Python
Raw Normal View History

2018-11-26 15:27:41 +03:00
# coding: utf-8
from __future__ import unicode_literals
import pytest
import os
from pathlib import Path
from ..compat import symlink_to, symlink_remove, path2str
def target_local_path():
2018-11-26 15:27:41 +03:00
return "./foo-target"
def link_local_path():
2018-11-26 15:27:41 +03:00
return "./foo-symlink"
2018-11-26 15:27:41 +03:00
@pytest.fixture(scope="function")
def setup_target(request):
2018-11-26 15:27:41 +03:00
target = Path(target_local_path())
if not target.exists():
os.mkdir(path2str(target))
2018-11-26 15:27:41 +03:00
# yield -- need to cleanup even if assertion fails
# https://github.com/pytest-dev/pytest/issues/2508#issuecomment-309934240
def cleanup():
symlink_remove(Path(link_local_path()))
os.rmdir(target_local_path())
2018-11-26 15:27:41 +03:00
request.addfinalizer(cleanup)
def test_create_symlink_windows(setup_target):
2018-11-26 15:27:41 +03:00
target = Path(target_local_path())
link = Path(link_local_path())
assert target.exists()
2018-11-26 15:27:41 +03:00
symlink_to(link, target)
assert link.exists()