pytest-neon 2.3.0__tar.gz → 2.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/PKG-INFO +1 -1
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/pyproject.toml +1 -1
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/src/pytest_neon/__init__.py +1 -1
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/src/pytest_neon/plugin.py +68 -40
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/test_branch_name_prefix.py +6 -12
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/uv.lock +1 -1
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/.config/wt.toml +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/.env.example +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/.github/workflows/release.yml +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/.github/workflows/tests.yml +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/.gitignore +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/.neon +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/CLAUDE.md +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/LICENSE +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/README.md +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/src/pytest_neon/py.typed +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/conftest.py +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/test_branch_lifecycle.py +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/test_cli_options.py +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/test_default_branch_safety.py +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/test_dirty_isolated_fixtures.py +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/test_env_var.py +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/test_fixture_errors.py +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/test_integration.py +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/test_migrations.py +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/test_readwrite_readonly_fixtures.py +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/test_reset_behavior.py +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/test_service_classes.py +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/test_skip_behavior.py +0 -0
- {pytest_neon-2.3.0 → pytest_neon-2.3.2}/tests/test_xdist_worker_support.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pytest-neon
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.2
|
|
4
4
|
Summary: Pytest plugin for Neon database branch isolation in tests
|
|
5
5
|
Project-URL: Homepage, https://github.com/ZainRizvi/pytest-neon
|
|
6
6
|
Project-URL: Repository, https://github.com/ZainRizvi/pytest-neon
|
|
@@ -295,6 +295,48 @@ def _get_git_branch_name() -> str | None:
|
|
|
295
295
|
return None
|
|
296
296
|
|
|
297
297
|
|
|
298
|
+
def _extract_password_from_connection_string(connection_string: str) -> str:
|
|
299
|
+
"""Extract password from a PostgreSQL connection string."""
|
|
300
|
+
# Format: postgresql://user:password@host/db?params
|
|
301
|
+
from urllib.parse import urlparse
|
|
302
|
+
|
|
303
|
+
parsed = urlparse(connection_string)
|
|
304
|
+
if parsed.password:
|
|
305
|
+
return parsed.password
|
|
306
|
+
raise ValueError(f"No password found in connection string: {connection_string}")
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
def _reveal_role_password(
|
|
310
|
+
api_key: str, project_id: str, branch_id: str, role_name: str
|
|
311
|
+
) -> str:
|
|
312
|
+
"""
|
|
313
|
+
Get the password for a role WITHOUT resetting it.
|
|
314
|
+
|
|
315
|
+
Uses Neon's reveal_password API endpoint (GET request).
|
|
316
|
+
|
|
317
|
+
Note: The neon-api library has a bug where it uses POST instead of GET,
|
|
318
|
+
so we make the request directly.
|
|
319
|
+
"""
|
|
320
|
+
url = (
|
|
321
|
+
f"https://console.neon.tech/api/v2/projects/{project_id}"
|
|
322
|
+
f"/branches/{branch_id}/roles/{role_name}/reveal_password"
|
|
323
|
+
)
|
|
324
|
+
headers = {
|
|
325
|
+
"Authorization": f"Bearer {api_key}",
|
|
326
|
+
"Accept": "application/json",
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
response = requests.get(url, headers=headers, timeout=30)
|
|
330
|
+
try:
|
|
331
|
+
response.raise_for_status()
|
|
332
|
+
except requests.exceptions.HTTPError:
|
|
333
|
+
# Wrap in NeonAPIError for consistent error handling
|
|
334
|
+
raise NeonAPIError(response.text) from None
|
|
335
|
+
|
|
336
|
+
data = response.json()
|
|
337
|
+
return data["password"]
|
|
338
|
+
|
|
339
|
+
|
|
298
340
|
def _get_schema_fingerprint(connection_string: str) -> tuple[tuple[Any, ...], ...]:
|
|
299
341
|
"""
|
|
300
342
|
Get a fingerprint of the database schema for change detection.
|
|
@@ -497,7 +539,7 @@ class NeonBranchManager:
|
|
|
497
539
|
)
|
|
498
540
|
|
|
499
541
|
# Get password
|
|
500
|
-
connection_string = self.
|
|
542
|
+
connection_string = self._get_password_and_build_connection_string(
|
|
501
543
|
branch.id, host
|
|
502
544
|
)
|
|
503
545
|
|
|
@@ -537,9 +579,15 @@ class NeonBranchManager:
|
|
|
537
579
|
endpoint_id = result.endpoint.id
|
|
538
580
|
host = self._wait_for_endpoint(endpoint_id)
|
|
539
581
|
|
|
540
|
-
#
|
|
541
|
-
|
|
542
|
-
|
|
582
|
+
# Reuse the password from the parent branch's connection string.
|
|
583
|
+
# DO NOT call role_password_reset here - it would invalidate the
|
|
584
|
+
# password used by the parent branch's read_write endpoint, breaking
|
|
585
|
+
# any existing connections (especially in xdist where other workers
|
|
586
|
+
# may be using the cached connection string).
|
|
587
|
+
password = _extract_password_from_connection_string(branch.connection_string)
|
|
588
|
+
connection_string = (
|
|
589
|
+
f"postgresql://{self.config.role_name}:{password}@{host}/"
|
|
590
|
+
f"{self.config.database_name}?sslmode=require"
|
|
543
591
|
)
|
|
544
592
|
|
|
545
593
|
return NeonBranch(
|
|
@@ -615,19 +663,19 @@ class NeonBranchManager:
|
|
|
615
663
|
time.sleep(poll_interval)
|
|
616
664
|
waited += poll_interval
|
|
617
665
|
|
|
618
|
-
def
|
|
666
|
+
def _get_password_and_build_connection_string(
|
|
619
667
|
self, branch_id: str, host: str
|
|
620
668
|
) -> str:
|
|
621
|
-
"""
|
|
622
|
-
|
|
623
|
-
lambda:
|
|
669
|
+
"""Get role password (without resetting) and build connection string."""
|
|
670
|
+
password = _retry_on_rate_limit(
|
|
671
|
+
lambda: _reveal_role_password(
|
|
672
|
+
api_key=self.config.api_key,
|
|
624
673
|
project_id=self.config.project_id,
|
|
625
674
|
branch_id=branch_id,
|
|
626
675
|
role_name=self.config.role_name,
|
|
627
676
|
),
|
|
628
|
-
operation_name="
|
|
677
|
+
operation_name="role_password_reveal",
|
|
629
678
|
)
|
|
630
|
-
password = password_response.role.password
|
|
631
679
|
|
|
632
680
|
return (
|
|
633
681
|
f"postgresql://{self.config.role_name}:{password}@{host}/"
|
|
@@ -1030,31 +1078,17 @@ def _create_neon_branch(
|
|
|
1030
1078
|
|
|
1031
1079
|
host = endpoint.host
|
|
1032
1080
|
|
|
1033
|
-
#
|
|
1034
|
-
#
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
raise RuntimeError(
|
|
1039
|
-
f"SAFETY CHECK FAILED: Attempted to reset password on default branch "
|
|
1040
|
-
f"{branch.id}. This should never happen - the plugin creates new "
|
|
1041
|
-
f"branches and should never operate on the default branch. "
|
|
1042
|
-
f"Please report this bug at https://github.com/ZainRizvi/pytest-neon/issues"
|
|
1043
|
-
)
|
|
1044
|
-
|
|
1045
|
-
# Reset password to get the password value
|
|
1046
|
-
# (newly created branches don't expose password)
|
|
1047
|
-
# Wrap in retry logic to handle rate limits
|
|
1048
|
-
# See: https://api-docs.neon.tech/reference/api-rate-limiting
|
|
1049
|
-
password_response = _retry_on_rate_limit(
|
|
1050
|
-
lambda: neon.role_password_reset(
|
|
1081
|
+
# Get password using reveal (not reset) to avoid invalidating existing connections
|
|
1082
|
+
# See: https://api-docs.neon.tech/reference/getprojectbranchrolepassword
|
|
1083
|
+
password = _retry_on_rate_limit(
|
|
1084
|
+
lambda: _reveal_role_password(
|
|
1085
|
+
api_key=api_key,
|
|
1051
1086
|
project_id=project_id,
|
|
1052
1087
|
branch_id=branch.id,
|
|
1053
1088
|
role_name=role_name,
|
|
1054
1089
|
),
|
|
1055
|
-
operation_name="
|
|
1090
|
+
operation_name="role_password_reveal",
|
|
1056
1091
|
)
|
|
1057
|
-
password = password_response.role.password
|
|
1058
1092
|
|
|
1059
1093
|
# Build connection string
|
|
1060
1094
|
connection_string = (
|
|
@@ -1170,16 +1204,10 @@ def _create_readonly_endpoint(
|
|
|
1170
1204
|
|
|
1171
1205
|
host = endpoint.host
|
|
1172
1206
|
|
|
1173
|
-
#
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
branch_id=branch.branch_id,
|
|
1178
|
-
role_name=role_name,
|
|
1179
|
-
),
|
|
1180
|
-
operation_name="role_password_reset_readonly",
|
|
1181
|
-
)
|
|
1182
|
-
password = password_response.role.password
|
|
1207
|
+
# Reuse the password from the parent branch's connection string.
|
|
1208
|
+
# DO NOT call role_password_reset here - it would invalidate the
|
|
1209
|
+
# password used by the parent branch's read_write endpoint.
|
|
1210
|
+
password = _extract_password_from_connection_string(branch.connection_string)
|
|
1183
1211
|
|
|
1184
1212
|
# Build connection string for the read_only endpoint
|
|
1185
1213
|
connection_string = (
|
|
@@ -136,9 +136,11 @@ class TestBranchNameWithGitBranch:
|
|
|
136
136
|
with (
|
|
137
137
|
patch("pytest_neon.plugin.NeonAPI") as mock_neon_cls,
|
|
138
138
|
patch("pytest_neon.plugin._get_git_branch_name") as mock_git,
|
|
139
|
+
patch("pytest_neon.plugin._reveal_role_password") as mock_reveal,
|
|
139
140
|
):
|
|
140
141
|
# _get_git_branch_name returns sanitized value (slashes -> hyphens)
|
|
141
142
|
mock_git.return_value = "feature-my-branch"
|
|
143
|
+
mock_reveal.return_value = "testpass"
|
|
142
144
|
|
|
143
145
|
mock_api = MagicMock()
|
|
144
146
|
mock_neon_cls.return_value = mock_api
|
|
@@ -163,10 +165,6 @@ class TestBranchNameWithGitBranch:
|
|
|
163
165
|
mock_endpoint_response.endpoint.host = "test.neon.tech"
|
|
164
166
|
mock_api.endpoint.return_value = mock_endpoint_response
|
|
165
167
|
|
|
166
|
-
mock_password = MagicMock()
|
|
167
|
-
mock_password.role.password = "testpass"
|
|
168
|
-
mock_api.role_password_reset.return_value = mock_password
|
|
169
|
-
|
|
170
168
|
gen = _create_neon_branch(mock_request, branch_name_suffix="-migrated")
|
|
171
169
|
with contextlib.suppress(StopIteration):
|
|
172
170
|
next(gen)
|
|
@@ -210,9 +208,11 @@ class TestBranchNameWithGitBranch:
|
|
|
210
208
|
with (
|
|
211
209
|
patch("pytest_neon.plugin.NeonAPI") as mock_neon_cls,
|
|
212
210
|
patch("pytest_neon.plugin._get_git_branch_name") as mock_git,
|
|
211
|
+
patch("pytest_neon.plugin._reveal_role_password") as mock_reveal,
|
|
213
212
|
):
|
|
214
213
|
# _get_git_branch_name returns sanitized value
|
|
215
214
|
mock_git.return_value = "feature-very-long-branch-name-truncated"
|
|
215
|
+
mock_reveal.return_value = "testpass"
|
|
216
216
|
|
|
217
217
|
mock_api = MagicMock()
|
|
218
218
|
mock_neon_cls.return_value = mock_api
|
|
@@ -237,10 +237,6 @@ class TestBranchNameWithGitBranch:
|
|
|
237
237
|
mock_endpoint_response.endpoint.host = "test.neon.tech"
|
|
238
238
|
mock_api.endpoint.return_value = mock_endpoint_response
|
|
239
239
|
|
|
240
|
-
mock_password = MagicMock()
|
|
241
|
-
mock_password.role.password = "testpass"
|
|
242
|
-
mock_api.role_password_reset.return_value = mock_password
|
|
243
|
-
|
|
244
240
|
gen = _create_neon_branch(mock_request, branch_name_suffix="-migrated")
|
|
245
241
|
with contextlib.suppress(StopIteration):
|
|
246
242
|
next(gen)
|
|
@@ -284,8 +280,10 @@ class TestBranchNameWithGitBranch:
|
|
|
284
280
|
with (
|
|
285
281
|
patch("pytest_neon.plugin.NeonAPI") as mock_neon_cls,
|
|
286
282
|
patch("pytest_neon.plugin._get_git_branch_name") as mock_git,
|
|
283
|
+
patch("pytest_neon.plugin._reveal_role_password") as mock_reveal,
|
|
287
284
|
):
|
|
288
285
|
mock_git.return_value = None # Not in a git repo
|
|
286
|
+
mock_reveal.return_value = "testpass"
|
|
289
287
|
|
|
290
288
|
mock_api = MagicMock()
|
|
291
289
|
mock_neon_cls.return_value = mock_api
|
|
@@ -310,10 +308,6 @@ class TestBranchNameWithGitBranch:
|
|
|
310
308
|
mock_endpoint_response.endpoint.host = "test.neon.tech"
|
|
311
309
|
mock_api.endpoint.return_value = mock_endpoint_response
|
|
312
310
|
|
|
313
|
-
mock_password = MagicMock()
|
|
314
|
-
mock_password.role.password = "testpass"
|
|
315
|
-
mock_api.role_password_reset.return_value = mock_password
|
|
316
|
-
|
|
317
311
|
gen = _create_neon_branch(mock_request, branch_name_suffix="-migrated")
|
|
318
312
|
with contextlib.suppress(StopIteration):
|
|
319
313
|
next(gen)
|
|
@@ -1212,7 +1212,7 @@ wheels = [
|
|
|
1212
1212
|
|
|
1213
1213
|
[[package]]
|
|
1214
1214
|
name = "pytest-neon"
|
|
1215
|
-
version = "2.3.
|
|
1215
|
+
version = "2.3.2"
|
|
1216
1216
|
source = { editable = "." }
|
|
1217
1217
|
dependencies = [
|
|
1218
1218
|
{ name = "filelock", version = "3.19.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.10'" },
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|