mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-12 22:28:03 +00:00
45 lines
1.5 KiB
Python
45 lines
1.5 KiB
Python
from typing import Any
|
|
|
|
import pytest
|
|
from langchain_tests.conftest import CustomPersister, CustomSerializer
|
|
from langchain_tests.conftest import _base_vcr_config as _base_vcr_config
|
|
from vcr import VCR # type: ignore[import-untyped]
|
|
|
|
_EXTRA_HEADERS = [
|
|
("openai-organization", "PLACEHOLDER"),
|
|
("user-agent", "PLACEHOLDER"),
|
|
("x-openai-client-user-agent", "PLACEHOLDER"),
|
|
]
|
|
|
|
|
|
def remove_request_headers(request: Any) -> Any:
|
|
"""Remove sensitive headers from the request."""
|
|
for k in request.headers:
|
|
request.headers[k] = "**REDACTED**"
|
|
request.uri = "**REDACTED**"
|
|
return request
|
|
|
|
|
|
def remove_response_headers(response: dict) -> dict:
|
|
"""Remove sensitive headers from the response."""
|
|
for k in response["headers"]:
|
|
response["headers"][k] = "**REDACTED**"
|
|
return response
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
def vcr_config(_base_vcr_config: dict) -> dict: # noqa: F811
|
|
"""Extend the default configuration coming from langchain_tests."""
|
|
config = _base_vcr_config.copy()
|
|
config.setdefault("filter_headers", []).extend(_EXTRA_HEADERS)
|
|
config["before_record_request"] = remove_request_headers
|
|
config["before_record_response"] = remove_response_headers
|
|
config["serializer"] = "yaml.gz"
|
|
config["path_transformer"] = VCR.ensure_suffix(".yaml.gz")
|
|
return config
|
|
|
|
|
|
def pytest_recording_configure(config: dict, vcr: VCR) -> None:
|
|
vcr.register_persister(CustomPersister())
|
|
vcr.register_serializer("yaml.gz", CustomSerializer())
|