forked from microsoft/vscode-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_utils.py
More file actions
35 lines (26 loc) · 1.1 KB
/
test_utils.py
File metadata and controls
35 lines (26 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import os
import pathlib
import sys
import tempfile
from .helpers import (
TEST_DATA_PATH,
)
script_dir = pathlib.Path(__file__).parent.parent.parent
sys.path.append(os.fspath(script_dir))
from vscode_pytest import has_symlink_parent # noqa: E402
def test_has_symlink_parent_with_symlink():
# Create a temporary directory and a file in it
with tempfile.TemporaryDirectory() as temp_dir:
file_path = pathlib.Path(temp_dir) / "file"
file_path.touch()
# Create a symbolic link to the temporary directory
symlink_path = pathlib.Path(temp_dir) / "symlink"
symlink_path.symlink_to(temp_dir)
# Check that has_symlink_parent correctly identifies the symbolic link
assert has_symlink_parent(symlink_path / "file")
def test_has_symlink_parent_without_symlink():
folder_path = TEST_DATA_PATH / "unittest_folder" / "test_add.py"
# Check that has_symlink_parent correctly identifies that there are no symbolic links
assert not has_symlink_parent(folder_path)