Files
fil/e2e/python/tests/test_embed_async_pending.py
Henrik Jess Nielsen b4c07d3693
All checks were successful
Deploy fil (kreuzberg) / deploy (push) Successful in 49s
Nomad changes
2026-06-01 23:40:55 +02:00

60 lines
1.8 KiB
Python
Generated

# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:4e15143f4af1ae8bafbdb1506ef057da924484c66a19483966333558ad437e75
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
# Issues & docs: https://github.com/kreuzberg-dev/alef
"""E2e tests for category: embed_async_pending."""
import pytest # noqa: F401
from kreuzberg import embed_texts_async, ExtractionConfig
def _alef_e2e_text(value: object) -> str:
return "" if value is None else str(value)
def _alef_e2e_item_texts(item: object) -> tuple[str, ...]:
raw_items = getattr(item, "items", None)
items_text = " ".join(str(value) for value in raw_items) if isinstance(raw_items, list) else ""
return (
_alef_e2e_text(item),
_alef_e2e_text(getattr(item, "kind", None)),
_alef_e2e_text(getattr(item, "name", None)),
_alef_e2e_text(getattr(item, "source", None)),
_alef_e2e_text(getattr(item, "alias", None)),
_alef_e2e_text(getattr(item, "text", None)),
_alef_e2e_text(getattr(item, "signature", None)),
items_text,
)
@pytest.mark.asyncio
async def test_embed_texts_async_empty_input() -> None:
"""embed_texts_async: empty text list."""
texts = []
result = await embed_texts_async(texts, None)
assert len(result) == 0 # noqa: S101
@pytest.mark.asyncio
async def test_embed_texts_async_happy() -> None:
"""embed_texts_async: basic async embedding."""
texts = ["First", "Second"]
result = await embed_texts_async(texts, None)
assert len(result) >= 2 # noqa: S101
@pytest.mark.asyncio
async def test_embed_texts_async_preset_switch() -> None:
"""embed_texts_async: preset override."""
texts = ["Text"]
config = ExtractionConfig(model={"name": "balanced", "type": "preset"})
_ = await embed_texts_async(texts, config)