| |
| |
| from collections.abc import Sequence |
| from unittest.mock import MagicMock, patch |
|
|
| import pytest |
|
|
| from vllm.config import VllmConfig |
| from vllm.inputs import PromptType |
| from vllm.outputs import PoolingRequestOutput |
| from vllm.plugins.io_processors import get_io_processor |
| from vllm.plugins.io_processors.interface import IOProcessor |
| from vllm.renderers import BaseRenderer |
|
|
|
|
| class DummyIOProcessor(IOProcessor): |
| """Minimal IOProcessor used as the target of the mocked plugin entry point.""" |
|
|
| def pre_process( |
| self, |
| prompt: object, |
| request_id: str | None = None, |
| **kwargs, |
| ) -> PromptType | Sequence[PromptType]: |
| raise NotImplementedError |
|
|
| def post_process( |
| self, |
| model_output: Sequence[PoolingRequestOutput], |
| request_id: str | None = None, |
| **kwargs, |
| ) -> object: |
| raise NotImplementedError |
|
|
|
|
| @pytest.fixture |
| def my_plugin_entry_points(): |
| """Patch importlib.metadata.entry_points to expose a single 'my_plugin' |
| entry point backed by DummyIOProcessor, exercising the full plugin-loading |
| code path: entry_points → plugin.load() → func() → |
| resolve_obj_by_qualname → IOProcessor.__init__.""" |
| qualname = f"{DummyIOProcessor.__module__}.{DummyIOProcessor.__qualname__}" |
| ep = MagicMock() |
| ep.name = "my_plugin" |
| ep.value = qualname |
| ep.load.return_value = lambda: qualname |
| with patch("importlib.metadata.entry_points", return_value=[ep]): |
| yield |
|
|
|
|
| def test_loading_missing_plugin(): |
| vllm_config = VllmConfig() |
| renderer = MagicMock(spec=BaseRenderer) |
| with pytest.raises(ValueError): |
| get_io_processor( |
| vllm_config, renderer=renderer, plugin_from_init="wrong_plugin" |
| ) |
|
|
|
|
| def test_loading_plugin(my_plugin_entry_points): |
| |
| vllm_config = MagicMock(spec=VllmConfig) |
| renderer = MagicMock(spec=BaseRenderer) |
|
|
| result = get_io_processor( |
| vllm_config, renderer=renderer, plugin_from_init="my_plugin" |
| ) |
|
|
| assert isinstance(result, DummyIOProcessor) |
|
|
|
|
| def test_loading_missing_plugin_from_model_config(): |
| |
| |
| mock_hf_config = MagicMock() |
| mock_hf_config.to_dict.return_value = {"io_processor_plugin": "wrong_plugin"} |
|
|
| vllm_config = MagicMock(spec=VllmConfig) |
| vllm_config.model_config.hf_config = mock_hf_config |
|
|
| renderer = MagicMock(spec=BaseRenderer) |
| with pytest.raises(ValueError): |
| get_io_processor(vllm_config, renderer=renderer) |
|
|
|
|
| def test_loading_plugin_from_model_config(my_plugin_entry_points): |
| |
| mock_hf_config = MagicMock() |
| mock_hf_config.to_dict.return_value = {"io_processor_plugin": "my_plugin"} |
|
|
| vllm_config = MagicMock(spec=VllmConfig) |
| vllm_config.model_config.hf_config = mock_hf_config |
|
|
| renderer = MagicMock(spec=BaseRenderer) |
|
|
| result = get_io_processor(vllm_config, renderer=renderer) |
|
|
| assert isinstance(result, DummyIOProcessor) |
|
|