mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-08-09 04:40:57 +00:00
e1ac5e0fc8
* Document multi-tenant workspace architecture * Add OSS and commercial workspace boundaries * docs: redesign multi-tenant workspace architecture * feat(tenancy): implement workspace isolation * docs(tenancy): record verification evidence * docs(tenancy): revise single-instance SaaS topology * docs(tenancy): refine architecture options * docs: finalize cloud v2 multi-tenant decisions * feat(tenancy): establish cloud isolation foundations * feat(tenancy): harden shared cloud runtime boundaries * docs(tenancy): record final isolation verification * fix(tenancy): close isolation and permission gaps * docs(tenancy): record final isolation verification * feat(tenancy): connect cloud workspace control plane * fix(build): install git for pinned SDK * docs(cloud): update control plane verification * chore: update multi-tenant SDK pin * fix(cloud): skip legacy model sync during startup * test(cloud): preserve minimal model manager fixtures * fix(cloud): preserve authenticated account context * fix(cloud): reuse authenticated account for user info * feat(cloud): complete Workspace settings navigation * test(web): cover Workspace dropdown menu * feat(web): place workspace controls in sidebar * refactor(web): streamline workspace controls * style(web): format workspace layout test * fix(cloud): surface runtime and workspace plan status * fix(plugin): keep runtime identity stable across restarts * fix(ui): widen and center workspace switcher * fix(ui): hide roles from workspace switcher * fix(ui): align workspace switcher with sidebar entries * feat(workspace): add in-product collaboration and direct Cloud launch * style: format collaboration changes * fix(workspace): bind collaboration APIs to tenant UoW * fix(cloud): preserve Core-owned collaboration state * test(cloud): require Space identity for invite registration * feat(cloud): complete secure invitation experience * style(web): format invitation flows * fix(cloud): recover box runtime without unscoped skill reload * feat(oss): enforce invitation account and owner billing flows * style: format OSS account service * test(oss): cover invitation logout handoff * fix(oss): resolve workspace owner in scoped session * feat(cloud): harden multi-tenant runtime resources * fix(cloud): bound runtime restart storms * fix(cloud): eliminate periodic runtime CPU spikes * fix(cloud): enforce instance capacity ceilings * fix(cloud): scope public login capability discovery * fix(cloud): bound tenant maintenance and monitoring work * fix(runtime): bound tenant resource amplification * fix(deps): pin green multi-tenant plugin SDK * fix(cloud): handle unavailable skill capability * fix(security): require authentication for image file endpoint (H-2) - Changed /api/v1/files/image from AuthType.NONE to USER_TOKEN_OR_API_KEY - Added Permission.RESOURCE_VIEW requirement - Prevents unauthenticated cross-tenant file access via leaked keys - Fixes HIGH severity finding from multi-tenant security review docs: add comprehensive database migration guide - Complete migration steps for OSS → multi-tenant - Backup, execution, verification procedures - Rollback scenarios and recovery plans - Performance tuning recommendations * test: add comprehensive cross-tenant isolation tests Added 7 critical test scenarios for multi-tenant boundaries: - Cross-tenant bot access prevention - Viewer role read-only enforcement - Removed member immediate access revocation - Model provider credential isolation - WebSocket message isolation - Invitation token workspace scoping - Multi-workspace context validation These tests address P0-2 coverage gaps for: - workspaces.py (membership & invitation flows) - user.py (authentication & authorization) - websocket_chat.py (real-time isolation) - plugins.py (resource access control) docs: finalize database migration guide * fix(security): resolve M-1, M-2, M-3 security findings M-1: WebSocket authorization TOCTOU race (FIXED) - Changed _revalidate_websocket_authorization to return RequestContext - Ensures validated context is used immediately without race window - Prevents removed members from sending messages during revalidation gap M-2: Model Manager cache workspace isolation (VERIFIED) - Confirmed _CacheKey already uses 4-tuple: (instance, workspace, generation, resource) - Cache is properly scoped per workspace, no cross-tenant leakage possible - No code change needed, documented as working correctly M-3: Invitation lock workspace scoping (FIXED) - Changed lock key from token_digest to workspace_uuid:token_digest - Prevents DoS where attacker locks token in Workspace A to block Workspace B - Locks now isolated per workspace All MEDIUM severity findings from security review now resolved. * fix(cloud): unblock tenant CI and enforce knowledge quotas * fix(tenancy): scope rerank model sync --------- Co-authored-by: dadachann <185672915+dadachann@users.noreply.github.com>
362 lines
13 KiB
Python
362 lines
13 KiB
Python
"""
|
|
RateLimit stage unit tests
|
|
|
|
Tests the actual RateLimit implementation from pkg.pipeline.ratelimit
|
|
"""
|
|
|
|
import pytest
|
|
import asyncio
|
|
import time
|
|
from unittest.mock import AsyncMock, Mock, patch
|
|
from importlib import import_module
|
|
import langbot_plugin.api.entities.builtin.provider.session as provider_session
|
|
|
|
|
|
def get_modules():
|
|
"""Lazy import to ensure proper initialization order"""
|
|
# Import pipelinemgr first to trigger proper stage registration
|
|
ratelimit = import_module('langbot.pkg.pipeline.ratelimit.ratelimit')
|
|
entities = import_module('langbot.pkg.pipeline.entities')
|
|
algo_module = import_module('langbot.pkg.pipeline.ratelimit.algo')
|
|
return ratelimit, entities, algo_module
|
|
|
|
|
|
def get_fixedwin_module():
|
|
"""Lazy import of FixedWindowAlgo"""
|
|
return import_module('langbot.pkg.pipeline.ratelimit.algos.fixedwin')
|
|
|
|
|
|
class TestFixedWindowAlgo:
|
|
"""Tests for the actual FixedWindowAlgo implementation.
|
|
|
|
IMPORTANT: These tests verify the real algorithm logic, not mocks.
|
|
"""
|
|
|
|
@pytest.fixture
|
|
def mock_app_for_algo(self):
|
|
"""Create mock app for algorithm initialization."""
|
|
mock_app = Mock()
|
|
mock_app.logger = Mock()
|
|
return mock_app
|
|
|
|
@pytest.fixture
|
|
def sample_query_with_rate_limit(self, sample_query):
|
|
"""Create query with rate limit configuration."""
|
|
sample_query.pipeline_config = {
|
|
'safety': {
|
|
'rate-limit': {
|
|
'window-length': 60, # 60 seconds window
|
|
'limitation': 10, # 10 requests per window
|
|
'strategy': 'drop',
|
|
}
|
|
}
|
|
}
|
|
return sample_query
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_fixedwin_algo_initialization(self, mock_app_for_algo):
|
|
"""Test that FixedWindowAlgo initializes correctly."""
|
|
fixedwin = get_fixedwin_module()
|
|
|
|
algo = fixedwin.FixedWindowAlgo(mock_app_for_algo)
|
|
await algo.initialize()
|
|
|
|
assert algo.containers_lock is not None
|
|
assert algo.containers == {}
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_fixedwin_within_limit_returns_true(self, mock_app_for_algo, sample_query_with_rate_limit):
|
|
"""Test that requests within limit are allowed."""
|
|
fixedwin = get_fixedwin_module()
|
|
|
|
algo = fixedwin.FixedWindowAlgo(mock_app_for_algo)
|
|
await algo.initialize()
|
|
|
|
# Make requests within limit
|
|
for i in range(10):
|
|
result = await algo.require_access(
|
|
sample_query_with_rate_limit, provider_session.LauncherTypes.PERSON, '12345'
|
|
)
|
|
assert result is True, f'Request {i + 1} should be allowed'
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_fixedwin_exceeds_limit_drop_strategy(self, mock_app_for_algo, sample_query_with_rate_limit):
|
|
"""Test that exceeding limit with 'drop' strategy returns False."""
|
|
fixedwin = get_fixedwin_module()
|
|
|
|
algo = fixedwin.FixedWindowAlgo(mock_app_for_algo)
|
|
await algo.initialize()
|
|
|
|
# Exhaust the limit
|
|
for i in range(10):
|
|
await algo.require_access(sample_query_with_rate_limit, provider_session.LauncherTypes.PERSON, '12345')
|
|
|
|
# Next request should be denied
|
|
result = await algo.require_access(sample_query_with_rate_limit, provider_session.LauncherTypes.PERSON, '12345')
|
|
|
|
assert result is False, 'Request exceeding limit should be denied'
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_fixedwin_different_sessions_isolated(self, mock_app_for_algo, sample_query_with_rate_limit):
|
|
"""Test that different sessions have independent rate limits."""
|
|
fixedwin = get_fixedwin_module()
|
|
|
|
algo = fixedwin.FixedWindowAlgo(mock_app_for_algo)
|
|
await algo.initialize()
|
|
|
|
# Exhaust limit for session 1
|
|
for i in range(10):
|
|
await algo.require_access(sample_query_with_rate_limit, provider_session.LauncherTypes.PERSON, 'session1')
|
|
|
|
# Session 2 should still have its own limit
|
|
result = await algo.require_access(
|
|
sample_query_with_rate_limit, provider_session.LauncherTypes.PERSON, 'session2'
|
|
)
|
|
|
|
assert result is True, 'Different session should have independent limit'
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_fixedwin_limit_one_request(self, mock_app_for_algo, sample_query):
|
|
"""Test with limitation=1 allows only one request."""
|
|
fixedwin = get_fixedwin_module()
|
|
|
|
sample_query.pipeline_config = {
|
|
'safety': {
|
|
'rate-limit': {
|
|
'window-length': 60,
|
|
'limitation': 1, # Only 1 request allowed
|
|
'strategy': 'drop',
|
|
}
|
|
}
|
|
}
|
|
|
|
algo = fixedwin.FixedWindowAlgo(mock_app_for_algo)
|
|
await algo.initialize()
|
|
|
|
# First request allowed
|
|
result1 = await algo.require_access(sample_query, provider_session.LauncherTypes.PERSON, '12345')
|
|
assert result1 is True
|
|
|
|
# Second request denied
|
|
result2 = await algo.require_access(sample_query, provider_session.LauncherTypes.PERSON, '12345')
|
|
assert result2 is False
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_fixedwin_container_persists(self, mock_app_for_algo, sample_query_with_rate_limit):
|
|
"""Test that container is created and persists across requests."""
|
|
fixedwin = get_fixedwin_module()
|
|
|
|
algo = fixedwin.FixedWindowAlgo(mock_app_for_algo)
|
|
await algo.initialize()
|
|
|
|
# First request creates container
|
|
await algo.require_access(sample_query_with_rate_limit, provider_session.LauncherTypes.PERSON, '12345')
|
|
|
|
context = sample_query_with_rate_limit._execution_context
|
|
expected_key = ':'.join(
|
|
(
|
|
context.instance_uuid,
|
|
context.workspace_uuid,
|
|
str(context.placement_generation),
|
|
str(sample_query_with_rate_limit.bot_uuid),
|
|
str(sample_query_with_rate_limit.pipeline_uuid),
|
|
str(provider_session.LauncherTypes.PERSON),
|
|
'12345',
|
|
)
|
|
)
|
|
assert expected_key in algo.containers
|
|
container = algo.containers[expected_key]
|
|
|
|
# Container should have records
|
|
assert len(container.records) > 0
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_fixedwin_new_window_clears_records(self, mock_app_for_algo, sample_query):
|
|
"""Test that a new time window starts fresh records.
|
|
|
|
This test verifies the window calculation logic:
|
|
- Records are keyed by window start timestamp
|
|
- When window advances, new key is created
|
|
"""
|
|
fixedwin = get_fixedwin_module()
|
|
|
|
# Use a very short window for testing
|
|
sample_query.pipeline_config = {
|
|
'safety': {
|
|
'rate-limit': {
|
|
'window-length': 1, # 1 second window for fast test
|
|
'limitation': 5,
|
|
'strategy': 'drop',
|
|
}
|
|
}
|
|
}
|
|
|
|
algo = fixedwin.FixedWindowAlgo(mock_app_for_algo)
|
|
await algo.initialize()
|
|
|
|
# Make requests in current window
|
|
now = int(time.time())
|
|
window_start = now - now % 1
|
|
|
|
for i in range(5):
|
|
await algo.require_access(sample_query, provider_session.LauncherTypes.PERSON, 'test')
|
|
|
|
context = sample_query._execution_context
|
|
expected_key = ':'.join(
|
|
(
|
|
context.instance_uuid,
|
|
context.workspace_uuid,
|
|
str(context.placement_generation),
|
|
str(sample_query.bot_uuid),
|
|
str(sample_query.pipeline_uuid),
|
|
str(provider_session.LauncherTypes.PERSON),
|
|
'test',
|
|
)
|
|
)
|
|
container = algo.containers[expected_key]
|
|
assert window_start in container.records
|
|
assert container.records[window_start] == 5
|
|
|
|
# Wait for next window (1 second)
|
|
await asyncio.sleep(1.1)
|
|
|
|
# New request should be allowed (new window)
|
|
result = await algo.require_access(sample_query, provider_session.LauncherTypes.PERSON, 'test')
|
|
assert result is True, 'New window should allow new requests'
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_fixedwin_wait_strategy_blocks_until_next_window(self, mock_app_for_algo, sample_query):
|
|
"""Test that 'wait' strategy blocks until next window.
|
|
|
|
NOTE: This test is timing-sensitive and may take ~1 second.
|
|
"""
|
|
fixedwin = get_fixedwin_module()
|
|
|
|
# Use 1-second window for testability
|
|
sample_query.pipeline_config = {
|
|
'safety': {
|
|
'rate-limit': {
|
|
'window-length': 1,
|
|
'limitation': 1, # Only 1 request per second
|
|
'strategy': 'wait',
|
|
}
|
|
}
|
|
}
|
|
|
|
algo = fixedwin.FixedWindowAlgo(mock_app_for_algo)
|
|
await algo.initialize()
|
|
|
|
# First request allowed
|
|
start_time = time.time()
|
|
result1 = await algo.require_access(sample_query, provider_session.LauncherTypes.PERSON, 'wait_test')
|
|
assert result1 is True
|
|
|
|
# Exhaust limit
|
|
await algo.require_access(sample_query, provider_session.LauncherTypes.PERSON, 'wait_test')
|
|
|
|
# Third request should wait and then succeed
|
|
result3 = await algo.require_access(sample_query, provider_session.LauncherTypes.PERSON, 'wait_test')
|
|
elapsed = time.time() - start_time
|
|
|
|
assert result3 is True, 'After wait, request should succeed'
|
|
# Should have waited approximately until next window
|
|
# With 1-second window, elapsed should be > 0.5 second (allowing for timing variance)
|
|
# Note: This is a timing-sensitive test, so we use a generous tolerance
|
|
assert elapsed >= 0.5, f'Should have waited for next window, elapsed={elapsed:.2f}s'
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_fixedwin_release_access(self, mock_app_for_algo, sample_query_with_rate_limit):
|
|
"""Test that release_access does nothing (current implementation)."""
|
|
fixedwin = get_fixedwin_module()
|
|
|
|
algo = fixedwin.FixedWindowAlgo(mock_app_for_algo)
|
|
await algo.initialize()
|
|
|
|
# release_access is empty in current implementation
|
|
await algo.release_access(sample_query_with_rate_limit, provider_session.LauncherTypes.PERSON, '12345')
|
|
|
|
# Should not raise or change state
|
|
assert 'person_12345' not in algo.containers
|
|
|
|
|
|
# Original mock-based tests for RateLimit stage integration
|
|
@pytest.mark.asyncio
|
|
async def test_require_access_allowed(mock_app, sample_query):
|
|
"""Test RequireRateLimitOccupancy allows access when rate limit is not exceeded"""
|
|
ratelimit, entities, algo_module = get_modules()
|
|
|
|
sample_query.launcher_type = provider_session.LauncherTypes.PERSON
|
|
sample_query.launcher_id = '12345'
|
|
sample_query.pipeline_config = {}
|
|
|
|
# Create mock algorithm that allows access
|
|
mock_algo = Mock(spec=algo_module.ReteLimitAlgo)
|
|
mock_algo.require_access = AsyncMock(return_value=True)
|
|
mock_algo.initialize = AsyncMock()
|
|
|
|
stage = ratelimit.RateLimit(mock_app)
|
|
|
|
# Patch the algorithm selection to use our mock
|
|
with patch.object(algo_module, 'preregistered_algos', []):
|
|
stage.algo = mock_algo
|
|
|
|
result = await stage.process(sample_query, 'RequireRateLimitOccupancy')
|
|
|
|
assert result.result_type == entities.ResultType.CONTINUE
|
|
assert result.new_query == sample_query
|
|
mock_algo.require_access.assert_called_once_with(sample_query, 'person', '12345')
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_require_access_denied(mock_app, sample_query):
|
|
"""Test RequireRateLimitOccupancy denies access when rate limit is exceeded"""
|
|
ratelimit, entities, algo_module = get_modules()
|
|
|
|
sample_query.launcher_type = provider_session.LauncherTypes.PERSON
|
|
sample_query.launcher_id = '12345'
|
|
sample_query.pipeline_config = {}
|
|
|
|
# Create mock algorithm that denies access
|
|
mock_algo = Mock(spec=algo_module.ReteLimitAlgo)
|
|
mock_algo.require_access = AsyncMock(return_value=False)
|
|
mock_algo.initialize = AsyncMock()
|
|
|
|
stage = ratelimit.RateLimit(mock_app)
|
|
|
|
# Patch the algorithm selection to use our mock
|
|
with patch.object(algo_module, 'preregistered_algos', []):
|
|
stage.algo = mock_algo
|
|
|
|
result = await stage.process(sample_query, 'RequireRateLimitOccupancy')
|
|
|
|
assert result.result_type == entities.ResultType.INTERRUPT
|
|
assert result.user_notice != ''
|
|
mock_algo.require_access.assert_called_once()
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_release_access(mock_app, sample_query):
|
|
"""Test ReleaseRateLimitOccupancy releases rate limit occupancy"""
|
|
ratelimit, entities, algo_module = get_modules()
|
|
|
|
sample_query.launcher_type = provider_session.LauncherTypes.PERSON
|
|
sample_query.launcher_id = '12345'
|
|
sample_query.pipeline_config = {}
|
|
|
|
# Create mock algorithm
|
|
mock_algo = Mock(spec=algo_module.ReteLimitAlgo)
|
|
mock_algo.release_access = AsyncMock()
|
|
mock_algo.initialize = AsyncMock()
|
|
|
|
stage = ratelimit.RateLimit(mock_app)
|
|
|
|
# Patch the algorithm selection to use our mock
|
|
with patch.object(algo_module, 'preregistered_algos', []):
|
|
stage.algo = mock_algo
|
|
|
|
result = await stage.process(sample_query, 'ReleaseRateLimitOccupancy')
|
|
|
|
assert result.result_type == entities.ResultType.CONTINUE
|
|
assert result.new_query == sample_query
|
|
mock_algo.release_access.assert_called_once_with(sample_query, 'person', '12345')
|