-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest_workspace_path_validation.py
More file actions
201 lines (162 loc) · 8.07 KB
/
Copy pathtest_workspace_path_validation.py
File metadata and controls
201 lines (162 loc) · 8.07 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
"""
Regression tests for issue #15 — /api/set-workspace path validation.
Exercises validate_workspace_path() directly. Imports from utils/ to avoid
pulling Flask into scope (tests/test_cli_args.py convention).
Run:
python -m unittest tests.test_workspace_path_validation -v
"""
from __future__ import annotations
import os
import shutil
import sys
import tempfile
import unittest
REPO_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
sys.path.insert(0, REPO_ROOT)
from utils.path_validation import WorkspacePathError, validate_workspace_path
def _make_cursor_workspace_dir(parent: str, name: str = "real-storage") -> str:
"""Create a directory that looks like a Cursor workspaceStorage dir.
Layout:
<parent>/<name>/
ws-001/state.vscdb ← marker file the validator looks for
"""
storage = os.path.join(parent, name)
ws = os.path.join(storage, "ws-001")
os.makedirs(ws)
with open(os.path.join(ws, "state.vscdb"), "wb") as f:
f.write(b"")
return storage
class TestValidateWorkspacePath(unittest.TestCase):
def setUp(self):
self.tmp = tempfile.mkdtemp(prefix="cursor-validate-test-")
self.addCleanup(shutil.rmtree, self.tmp, ignore_errors=True)
# ─── Happy path ────────────────────────────────────────────────
def test_accepts_directory_with_cursor_marker(self):
storage = _make_cursor_workspace_dir(self.tmp)
result = validate_workspace_path(storage)
self.assertEqual(result, os.path.realpath(storage))
def test_returns_canonical_path_collapsing_dotdot(self):
# /tmp/<x>/real-storage/../real-storage → /tmp/<x>/real-storage
storage = _make_cursor_workspace_dir(self.tmp)
traversal_input = os.path.join(storage, "..", os.path.basename(storage))
result = validate_workspace_path(traversal_input)
self.assertEqual(result, os.path.realpath(storage))
self.assertNotIn("..", result)
# ─── Hard rejects ──────────────────────────────────────────────
def test_rejects_empty_string(self):
with self.assertRaises(WorkspacePathError) as ctx:
validate_workspace_path("")
self.assertIn("required", str(ctx.exception))
def test_rejects_whitespace_only(self):
with self.assertRaises(WorkspacePathError):
validate_workspace_path(" \t ")
def test_rejects_non_string(self):
with self.assertRaises(WorkspacePathError):
validate_workspace_path(None) # type: ignore[arg-type]
def test_rejects_non_existent_path(self):
bogus = os.path.join(self.tmp, "does-not-exist", "anywhere")
with self.assertRaises(WorkspacePathError) as ctx:
validate_workspace_path(bogus)
self.assertIn("does not exist", str(ctx.exception))
def test_rejects_file_not_directory(self):
f = os.path.join(self.tmp, "regular-file")
with open(f, "w") as h:
h.write("not a directory")
with self.assertRaises(WorkspacePathError) as ctx:
validate_workspace_path(f)
self.assertIn("not a directory", str(ctx.exception))
def test_rejects_directory_without_cursor_markers(self):
# Existing directory but no state.vscdb anywhere — common case for
# a user pointing at /tmp, /etc, /, ~/.ssh, etc.
plain = os.path.join(self.tmp, "plain-dir")
os.makedirs(os.path.join(plain, "subdir"))
with self.assertRaises(WorkspacePathError) as ctx:
validate_workspace_path(plain)
self.assertIn("Cursor workspaceStorage", str(ctx.exception))
# ─── Path-traversal class ──────────────────────────────────────
def test_traversal_into_non_workspace_is_rejected(self):
# Keep traversal target inside this test's own temp tree — escaping
# to /tmp itself would be non-deterministic (any other test or
# process creating a `state.vscdb` under /tmp/<dir>/state.vscdb
# would flip this test's outcome).
#
# <self.tmp>/isolated-root/storage/../.. → <self.tmp>/isolated-root
# which contains no state.vscdb under any subdir → reject on markers.
isolated_root = os.path.join(self.tmp, "isolated-root")
os.makedirs(isolated_root)
storage = _make_cursor_workspace_dir(isolated_root)
escape = os.path.join(storage, "..", "..")
with self.assertRaises(WorkspacePathError):
validate_workspace_path(escape)
# ─── Symlink-escape class ──────────────────────────────────────
@unittest.skipIf(sys.platform == "win32", "POSIX symlinks only")
def test_symlink_to_non_workspace_is_rejected(self):
# A symlink that points to / (no Cursor markers) is rejected because
# realpath() resolves to the real target before the marker check.
link = os.path.join(self.tmp, "evil-link")
os.symlink("/", link)
with self.assertRaises(WorkspacePathError) as ctx:
validate_workspace_path(link)
self.assertIn("Cursor workspaceStorage", str(ctx.exception))
@unittest.skipIf(sys.platform == "win32", "POSIX symlinks only")
def test_symlink_to_real_workspace_is_canonicalised_and_accepted(self):
# Symlink → real Cursor storage. Accepted, but the canonical path
# returned is the realpath (the storage dir), NOT the symlink path.
storage = _make_cursor_workspace_dir(self.tmp)
link = os.path.join(self.tmp, "good-link")
os.symlink(storage, link)
result = validate_workspace_path(link)
self.assertEqual(result, os.path.realpath(storage))
self.assertNotEqual(result, link)
class TestSetWorkspaceApi(unittest.TestCase):
"""API-layer regressions for POST /api/set-workspace.
The validator helper has its own coverage above; these cases exist to
pin behaviour the API handler owns (request body shape handling,
HTTP status mapping). Notably the non-dict-body case which used to
surface as a 500 instead of a 400 — see CodeRabbit on PR #16.
"""
def setUp(self):
from flask import Flask
from api.config_api import bp as config_bp
self.tmp = tempfile.mkdtemp(prefix="cursor-validate-api-test-")
self.addCleanup(shutil.rmtree, self.tmp, ignore_errors=True)
app = Flask(__name__)
app.config["TESTING"] = True
app.register_blueprint(config_bp)
self.client = app.test_client()
def test_non_dict_json_array_returns_400_not_500(self):
# Regression: a JSON array body (truthy, non-dict) used to trip
# AttributeError on body.get(...) and surface as a 500.
resp = self.client.post(
"/api/set-workspace",
data="[]",
content_type="application/json",
)
self.assertEqual(resp.status_code, 400)
self.assertIn("error", resp.get_json())
def test_non_dict_json_string_returns_400(self):
resp = self.client.post(
"/api/set-workspace",
data='"some string"',
content_type="application/json",
)
self.assertEqual(resp.status_code, 400)
def test_non_dict_json_number_returns_400(self):
resp = self.client.post(
"/api/set-workspace",
data="42",
content_type="application/json",
)
self.assertEqual(resp.status_code, 400)
def test_dict_with_valid_path_returns_200_with_canonical(self):
storage = _make_cursor_workspace_dir(self.tmp)
resp = self.client.post(
"/api/set-workspace",
json={"path": storage},
)
self.assertEqual(resp.status_code, 200)
body = resp.get_json()
self.assertTrue(body["success"])
self.assertEqual(body["path"], os.path.realpath(storage))
if __name__ == "__main__":
unittest.main()