BigGo MCP Server

Official
import pytest from biggo_mcp_server.services.spec_search import SpecMappingRet, SpecSearchService from biggo_mcp_server.types.setting import BigGoMCPSetting from .helper import * # noqa: F403 @pytest.mark.asyncio async def test_spec_search_service_indexes(setting: BigGoMCPSetting): service = SpecSearchService(setting) async with service.session(): indexes = await service.spec_indexes() assert isinstance(indexes, list) @pytest.mark.asyncio async def test_spec_search_service_mapping(setting: BigGoMCPSetting): service = SpecSearchService(setting) async with service.session(): indexes = await service.spec_indexes() mapping = await service.spec_mapping(indexes[0]) assert isinstance(mapping, SpecMappingRet) @pytest.mark.asyncio async def test_spec_search_service_search(setting: BigGoMCPSetting): service = SpecSearchService(setting) async with service.session(): indexes = await service.spec_indexes() hits = await service.search(indexes[0], {"query": {"match_all": {}}}) assert isinstance(hits, list) with pytest.raises(ValueError): await service.search(indexes[0], {"query": {"match_all": {}}, "size": 11})