6b7e6b44f1
Python Build and Type Check / python-ci (ubuntu-latest, 3.11) (push) Has been cancelled
Python Build and Type Check / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Build and Type Check / python-ci (windows-latest, 3.11) (push) Has been cancelled
Python Build and Type Check / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Integration Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Integration Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Notebook Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Notebook Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Smoke Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Smoke Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
Python Unit Tests / python-ci (ubuntu-latest, 3.13) (push) Has been cancelled
Python Unit Tests / python-ci (windows-latest, 3.13) (push) Has been cancelled
gh-pages / build (push) Has been cancelled
Python Publish (pypi) / Upload release to PyPI (push) Has been cancelled
Spellcheck / spellcheck (push) Has been cancelled
67 lines
1.9 KiB
Python
67 lines
1.9 KiB
Python
# Copyright (c) 2024 Microsoft Corporation.
|
|
# Licensed under the MIT License
|
|
|
|
"""Test rate limit configuration loading."""
|
|
|
|
import pytest
|
|
from graphrag_llm.config import RateLimitConfig, RateLimitType
|
|
|
|
|
|
def test_sliding_window_validation() -> None:
|
|
"""Test that missing required parameters raise validation errors."""
|
|
|
|
with pytest.raises(
|
|
ValueError,
|
|
match="period_in_seconds must be a positive integer for Sliding Window rate limit\\.",
|
|
):
|
|
_ = RateLimitConfig(
|
|
type=RateLimitType.SlidingWindow,
|
|
period_in_seconds=0,
|
|
requests_per_period=100,
|
|
tokens_per_period=1000,
|
|
)
|
|
|
|
with pytest.raises(
|
|
ValueError,
|
|
match="At least one of requests_per_period or tokens_per_period must be specified for Sliding Window rate limit\\.",
|
|
):
|
|
_ = RateLimitConfig(
|
|
type=RateLimitType.SlidingWindow,
|
|
)
|
|
|
|
with pytest.raises(
|
|
ValueError,
|
|
match="requests_per_period must be a positive integer for Sliding Window rate limit\\.",
|
|
):
|
|
_ = RateLimitConfig(
|
|
type=RateLimitType.SlidingWindow,
|
|
period_in_seconds=60,
|
|
requests_per_period=-10,
|
|
)
|
|
|
|
with pytest.raises(
|
|
ValueError,
|
|
match="tokens_per_period must be a positive integer for Sliding Window rate limit\\.",
|
|
):
|
|
_ = RateLimitConfig(
|
|
type=RateLimitType.SlidingWindow,
|
|
period_in_seconds=60,
|
|
tokens_per_period=-10,
|
|
)
|
|
|
|
# passes validation
|
|
_ = RateLimitConfig(
|
|
type=RateLimitType.SlidingWindow,
|
|
requests_per_period=100,
|
|
)
|
|
_ = RateLimitConfig(
|
|
type=RateLimitType.SlidingWindow,
|
|
tokens_per_period=1000,
|
|
)
|
|
_ = RateLimitConfig(
|
|
type=RateLimitType.SlidingWindow,
|
|
period_in_seconds=60,
|
|
requests_per_period=100,
|
|
tokens_per_period=1000,
|
|
)
|