| """Configuration loading utilities for AutoRestTest.""" |
|
|
| import os |
| import re |
| from functools import lru_cache |
| from pathlib import Path |
| from typing import Any, Dict |
|
|
| import tomli as tomllib |
| from dotenv import load_dotenv |
| from pydantic import BaseModel, ConfigDict |
|
|
| |
| load_dotenv() |
|
|
|
|
| CONFIG_FILE_NAME = "configurations.toml" |
| CONFIG_DIR = Path(__file__).resolve().parent |
| AUTORESTTEST_DIR = CONFIG_DIR.parent |
| PROJECT_ROOT = AUTORESTTEST_DIR.parent.parent |
| CONFIG_PATH = PROJECT_ROOT / CONFIG_FILE_NAME |
|
|
|
|
| class SpecConfig(BaseModel): |
| location: str |
| recursion_limit: int = 50 |
| strict_validation: bool = True |
|
|
|
|
| class LLMConfig(BaseModel): |
| engine: str |
| creative_temperature: float |
| strict_temperature: float |
| api_base: str = "https://api.openai.com/v1" |
| max_tokens: int = 20000 |
|
|
|
|
| class HeaderAgentConfig(BaseModel): |
| enabled: bool |
|
|
|
|
| class AgentsConfig(BaseModel): |
| header: HeaderAgentConfig |
|
|
|
|
| class ValueAgentConfig(BaseModel): |
| parallelize: bool = True |
| max_workers: int = 4 |
|
|
|
|
| class AgentCombinationConfig(BaseModel): |
| max_combinations: int = 12 |
| max_total_combinations: int = 3000 |
| base_samples_per_size: int = 200 |
| combination_seed: int = 42 |
| value: ValueAgentConfig = ValueAgentConfig() |
|
|
|
|
| class CacheConfig(BaseModel): |
| use_cached_graph: bool |
| use_cached_table: bool |
|
|
|
|
| class QLearningConfig(BaseModel): |
| learning_rate: float |
| discount_factor: float |
| max_exploration: float |
|
|
|
|
| class RequestGenerationConfig(BaseModel): |
| time_duration: int |
| mutation_rate: float |
|
|
|
|
| class ApiConfig(BaseModel): |
| """API URL configuration. Override the spec URL with custom host/port.""" |
| override_url: bool = False |
| host: str = "localhost" |
| port: int = 8080 |
|
|
|
|
| class CustomHeadersConfig(BaseModel): |
| """Custom static headers. Supports ${VAR_NAME} env var interpolation.""" |
|
|
| model_config = ConfigDict(extra="allow") |
|
|
| def get_headers(self) -> Dict[str, str]: |
| headers = {} |
| for key, value in (self.model_extra or {}).items(): |
| if isinstance(value, str): |
| headers[key] = re.sub( |
| r"\$\{([^}]+)\}", lambda m: os.getenv(m.group(1), ""), value |
| ) |
| else: |
| headers[key] = str(value) |
| return headers |
|
|
|
|
| class Config(BaseModel): |
| spec: SpecConfig |
| llm: LLMConfig |
| agents: AgentsConfig |
| agent: AgentCombinationConfig |
| cache: CacheConfig |
| q_learning: QLearningConfig |
| request_generation: RequestGenerationConfig |
| api: ApiConfig = ApiConfig() |
| custom_headers: CustomHeadersConfig = CustomHeadersConfig() |
|
|
| model_config = ConfigDict(frozen=True) |
|
|
| @property |
| def specification_location(self) -> str: |
| return self.spec.location |
|
|
| @property |
| def recursion_limit(self) -> int: |
| return self.spec.recursion_limit |
|
|
| @property |
| def strict_validation(self) -> bool: |
| return self.spec.strict_validation |
|
|
| @property |
| def openai_llm_engine(self) -> str: |
| return self.llm.engine |
|
|
| @property |
| def creative_temperature(self) -> float: |
| return self.llm.creative_temperature |
|
|
| @property |
| def strict_temperature(self) -> float: |
| return self.llm.strict_temperature |
|
|
| @property |
| def llm_api_base(self) -> str: |
| """Return LLM API base URL.""" |
| return self.llm.api_base |
|
|
| @property |
| def llm_max_tokens(self) -> int: |
| """Return LLM max tokens. -1 means omit from API call.""" |
| return self.llm.max_tokens |
|
|
| @property |
| def enable_header_agent(self) -> bool: |
| return self.agents.header.enabled |
|
|
| @property |
| def max_combinations(self) -> int: |
| return self.agent.max_combinations |
|
|
| @property |
| def max_total_combinations(self) -> int: |
| return self.agent.max_total_combinations |
|
|
| @property |
| def base_samples_per_size(self) -> int: |
| return self.agent.base_samples_per_size |
|
|
| @property |
| def combination_seed(self) -> int: |
| return self.agent.combination_seed |
|
|
| @property |
| def parallelize_value_generation(self) -> bool: |
| return self.agent.value.parallelize |
|
|
| @property |
| def value_generation_workers(self) -> int: |
| return self.agent.value.max_workers |
|
|
| @property |
| def static_headers(self) -> Dict[str, str]: |
| """Return custom headers with env var interpolation applied.""" |
| return self.custom_headers.get_headers() |
|
|
| @property |
| def custom_api_url(self) -> str: |
| """Construct API URL from host and port.""" |
| return f"http://{self.api.host}:{self.api.port}/" |
|
|
|
|
| def _load_raw_config() -> Dict[str, Any]: |
| if not CONFIG_PATH.exists(): |
| raise FileNotFoundError(f"Configuration file not found: {CONFIG_PATH}") |
| with CONFIG_PATH.open("rb") as fh: |
| return tomllib.load(fh) |
|
|
|
|
| @lru_cache(maxsize=1) |
| def get_config() -> Config: |
| """Return the cached configuration values.""" |
| return Config.model_validate(_load_raw_config()) |
|
|
|
|
| __all__ = [ |
| "Config", |
| "CONFIG_PATH", |
| "PROJECT_ROOT", |
| "get_config", |
| ] |
|
|