2023-10-27 15:32:43 +00:00
|
|
|
"""Test Aleph Alpha specific stuff."""
|
|
|
|
|
|
|
|
import pytest
|
2023-11-20 21:09:30 +00:00
|
|
|
from langchain_core.pydantic_v1 import SecretStr
|
2023-10-27 15:32:43 +00:00
|
|
|
from pytest import CaptureFixture, MonkeyPatch
|
|
|
|
|
2023-12-11 21:53:30 +00:00
|
|
|
from langchain_community.llms.aleph_alpha import AlephAlpha
|
2023-10-27 15:32:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.requires("aleph_alpha_client")
|
|
|
|
def test_api_key_is_secret_string() -> None:
|
|
|
|
llm = AlephAlpha(aleph_alpha_api_key="secret-api-key")
|
|
|
|
assert isinstance(llm.aleph_alpha_api_key, SecretStr)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.requires("aleph_alpha_client")
|
|
|
|
def test_api_key_masked_when_passed_via_constructor(
|
|
|
|
capsys: CaptureFixture,
|
|
|
|
) -> None:
|
|
|
|
llm = AlephAlpha(aleph_alpha_api_key="secret-api-key")
|
2024-02-10 00:13:30 +00:00
|
|
|
print(llm.aleph_alpha_api_key, end="") # noqa: T201
|
2023-10-27 15:32:43 +00:00
|
|
|
captured = capsys.readouterr()
|
|
|
|
|
|
|
|
assert captured.out == "**********"
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.requires("aleph_alpha_client")
|
|
|
|
def test_api_key_masked_when_passed_from_env(
|
|
|
|
monkeypatch: MonkeyPatch, capsys: CaptureFixture
|
|
|
|
) -> None:
|
|
|
|
monkeypatch.setenv("ALEPH_ALPHA_API_KEY", "secret-api-key")
|
|
|
|
llm = AlephAlpha()
|
2024-02-10 00:13:30 +00:00
|
|
|
print(llm.aleph_alpha_api_key, end="") # noqa: T201
|
2023-10-27 15:32:43 +00:00
|
|
|
captured = capsys.readouterr()
|
|
|
|
|
|
|
|
assert captured.out == "**********"
|