Remnawave_python-sdk/tests/test_users_stats.py
Artem 950a7ffab3
Add Pydantic models for nodes usage history, subscriptions, and user management
- Implemented models for nodes usage history including NodeInfoDto, GetUserAccessibleNodesResponse, and usage statistics.
- Created subscription-related models such as UserSubscription, SubscriptionInfoData, and various response DTOs for subscription information.
- Developed models for subscription settings, templates, and system statistics, enhancing the API's capability to manage and retrieve subscription configurations.
- Introduced user management models including CreateUserRequestDto, UpdateUserRequestDto, and various response DTOs for user actions.
- Added bulk actions for user updates and statistics tracking, improving the efficiency of user management operations.
- Established a base controller for handling API requests and responses, along with decorators for HTTP methods to streamline API interactions.
- Included utility functions for serialization using orjson for better performance with Pydantic models.
2025-07-03 12:22:16 +02:00

14 lines
492 B
Python

import pytest
from remnawave.models import GetUserUsageByRangeResponseDto
from tests.conftest import REMNAWAVE_USER_UUID
from tests.utils import generate_isoformat_range
@pytest.mark.asyncio
async def test_users_stats(remnawave):
start, end = generate_isoformat_range()
user_usage_by_range = await remnawave.users_stats.get_user_usage_by_range(
uuid=REMNAWAVE_USER_UUID, start=start, end=end
)
assert isinstance(user_usage_by_range, GetUserUsageByRangeResponseDto)