* feat: Implement multi-tenant architecture with tenant and knowledge base models - Added data models for tenants, knowledge bases, and related configurations. - Introduced role and permission management for users in the multi-tenant system. - Created a service layer for managing tenants and knowledge bases, including CRUD operations. - Developed a tenant-aware instance manager for LightRAG with caching and isolation features. - Added a migration script to transition existing workspace-based deployments to the new multi-tenant architecture. * chore: ignore lightrag/api/webui/assets/ directory * chore: stop tracking lightrag/api/webui/assets (ignore in .gitignore) * feat: Initialize LightRAG Multi-Tenant Stack with PostgreSQL - Added README.md for project overview, setup instructions, and architecture details. - Created docker-compose.yml to define services: PostgreSQL, Redis, LightRAG API, and Web UI. - Introduced env.example for environment variable configuration. - Implemented init-postgres.sql for PostgreSQL schema initialization with multi-tenant support. - Added reproduce_issue.py for testing default tenant access via API. * feat: Enhance TenantSelector and update related components for improved multi-tenant support * feat: Enhance testing capabilities and update documentation - Updated Makefile to include new test commands for various modes (compatibility, isolation, multi-tenant, security, coverage, and dry-run). - Modified API health check endpoint in Makefile to reflect new port configuration. - Updated QUICK_START.md and README.md to reflect changes in service URLs and ports. - Added environment variables for testing modes in env.example. - Introduced run_all_tests.sh script to automate testing across different modes. - Created conftest.py for pytest configuration, including database fixtures and mock services. - Implemented database helper functions for streamlined database operations in tests. - Added test collection hooks to skip tests based on the current MULTITENANT_MODE. * feat: Implement multi-tenant support with demo mode enabled by default - Added multi-tenant configuration to the environment and Docker setup. - Created pre-configured demo tenants (acme-corp and techstart) for testing. - Updated API endpoints to support tenant-specific data access. - Enhanced Makefile commands for better service management and database operations. - Introduced user-tenant membership system with role-based access control. - Added comprehensive documentation for multi-tenant setup and usage. - Fixed issues with document visibility in multi-tenant environments. - Implemented necessary database migrations for user memberships and legacy support. * feat(audit): Add final audit report for multi-tenant implementation - Documented overall assessment, architecture overview, test results, security findings, and recommendations. - Included detailed findings on critical security issues and architectural concerns. fix(security): Implement security fixes based on audit findings - Removed global RAG fallback and enforced strict tenant context. - Configured super-admin access and required user authentication for tenant access. - Cleared localStorage on logout and improved error handling in WebUI. chore(logs): Create task logs for audit and security fixes implementation - Documented actions, decisions, and next steps for both audit and security fixes. - Summarized test results and remaining recommendations. chore(scripts): Enhance development stack management scripts - Added scripts for cleaning, starting, and stopping the development stack. - Improved output messages and ensured graceful shutdown of services. feat(starter): Initialize PostgreSQL with AGE extension support - Created initialization scripts for PostgreSQL extensions including uuid-ossp, vector, and AGE. - Ensured successful installation and verification of extensions. * feat: Implement auto-select for first tenant and KB on initial load in WebUI - Removed WEBUI_INITIAL_STATE_FIX.md as the issue is resolved. - Added useTenantInitialization hook to automatically select the first available tenant and KB on app load. - Integrated the new hook into the Root component of the WebUI. - Updated RetrievalTesting component to ensure a KB is selected before allowing user interaction. - Created end-to-end tests for multi-tenant isolation and real service interactions. - Added scripts for starting, stopping, and cleaning the development stack. - Enhanced API and tenant routes to support tenant-specific pipeline status initialization. - Updated constants for backend URL to reflect the correct port. - Improved error handling and logging in various components. * feat: Add multi-tenant support with enhanced E2E testing scripts and client functionality * update client * Add integration and unit tests for multi-tenant API, models, security, and storage - Implement integration tests for tenant and knowledge base management endpoints in `test_tenant_api_routes.py`. - Create unit tests for tenant isolation, model validation, and role permissions in `test_tenant_models.py`. - Add security tests to enforce role-based permissions and context validation in `test_tenant_security.py`. - Develop tests for tenant-aware storage operations and context isolation in `test_tenant_storage_phase3.py`. * feat(e2e): Implement OpenAI model support and database reset functionality * Add comprehensive test suite for gpt-5-nano compatibility - Introduced tests for parameter normalization, embeddings, and entity extraction. - Implemented direct API testing for gpt-5-nano. - Validated .env configuration loading and OpenAI API connectivity. - Analyzed reasoning token overhead with various token limits. - Documented test procedures and expected outcomes in README files. - Ensured all tests pass for production readiness. * kg(postgres_impl): ensure AGE extension is loaded in session and configure graph initialization * dev: add hybrid dev helper scripts, Makefile, docker-compose.dev-db and local development docs * feat(dev): add dev helper scripts and local development documentation for hybrid setup * feat(multi-tenant): add detailed specifications and logs for multi-tenant improvements, including UX, backend handling, and ingestion pipeline * feat(migration): add generated tenant/kb columns, indexes, triggers; drop unused tables; update schema and docs * test(backward-compat): adapt tests to new StorageNameSpace/TenantService APIs (use concrete dummy storages) * chore: multi-tenant and UX updates — docs, webui, storage, tenant service adjustments * tests: stabilize integration tests + skip external services; fix multi-tenant API behavior and idempotency - gpt5_nano_compatibility: add pytest-asyncio markers, skip when OPENAI key missing, prevent module-level asyncio.run collection, add conftest - Ollama tests: add server availability check and skip markers; avoid pytest collection warnings by renaming helper classes - Graph storage tests: rename interactive test functions to avoid pytest collection - Document & Tenant routes: support external_ids for idempotency; ensure HTTPExceptions are re-raised - LightRAG core: support external_ids in apipeline_enqueue_documents and idempotent logic - Tests updated to match API changes (tenant routes & document routes) - Add logs and scripts for inspection and audit
8.5 KiB
8.5 KiB
Multi-Tenant Test Protocol
Date: November 29, 2025
Test Environment Setup
Prerequisites
-
macOS System Requirements
- Python 3.12+ installed
- Node.js 18+ installed
- Docker Desktop installed and running
-
Repository Setup
cd /Users/raphaelmansuy/Github/03-working/LightRAG git checkout feat/multi-tenannt
Step 1: Start Database Services (Docker)
Create a docker-compose file specifically for testing databases:
# docker-compose.test-db.yml
services:
postgres:
image: pgvector/pgvector:pg16
container_name: lightrag-test-postgres
environment:
POSTGRES_USER: lightrag
POSTGRES_PASSWORD: lightrag123
POSTGRES_DB: lightrag_test
ports:
- "5432:5432"
volumes:
- postgres_test_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U lightrag -d lightrag_test"]
interval: 5s
timeout: 5s
retries: 5
redis:
image: redis:7-alpine
container_name: lightrag-test-redis
ports:
- "6379:6379"
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 5s
retries: 5
volumes:
postgres_test_data:
Start databases:
docker-compose -f docker-compose.test-db.yml up -d
Step 2: Configure Environment
Create .env.test file:
# Database configuration
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_USER=lightrag
POSTGRES_PASSWORD=lightrag123
POSTGRES_DATABASE=lightrag_test
# Redis configuration
REDIS_HOST=localhost
REDIS_PORT=6379
# Multi-tenant configuration
MULTITENANT_MODE=demo
INIT_DEMO_TENANTS=true
# LightRAG configuration
LIGHTRAG_WORKING_DIR=./data/rag_storage
LIGHTRAG_INPUT_DIR=./data/inputs
# LLM Configuration (for testing)
LLM_PROVIDER=openai
LLM_MODEL=gpt-4o-mini
OPENAI_API_KEY=your-key-here
# Embedding Configuration
EMBEDDING_PROVIDER=openai
EMBEDDING_MODEL=text-embedding-3-small
EMBEDDING_DIM=1536
# API Configuration
LIGHTRAG_API_KEY=test-api-key-123
AUTH_USER=admin
AUTH_PASS=admin123
Step 3: Initialize Python Environment
# Create virtual environment
python -m venv .venv-test
source .venv-test/bin/activate
# Install dependencies
pip install -e ".[dev,postgres,redis]"
Step 4: Start REST API Server (Local)
# Set environment variables
export $(cat .env.test | xargs)
# Start the API server
python -m lightrag.api.lightrag_server --host 0.0.0.0 --port 9621
Step 5: Start Web UI (Local)
cd lightrag_webui
# Install dependencies
npm install
# Create .env.local
cat > .env.local << EOF
VITE_API_URL=http://localhost:9621
VITE_ENABLE_AUTH=true
EOF
# Start development server
npm run dev
Test Protocol
Phase 1: Tenant Isolation Tests
Test 1.1: Create Two Tenants via API
# Create Tenant A
curl -X POST http://localhost:9621/api/v1/tenants \
-H "Content-Type: application/json" \
-H "X-API-Key: test-api-key-123" \
-d '{"name": "Tenant Alpha", "description": "Test tenant A"}'
# Create Tenant B
curl -X POST http://localhost:9621/api/v1/tenants \
-H "Content-Type: application/json" \
-H "X-API-Key: test-api-key-123" \
-d '{"name": "Tenant Beta", "description": "Test tenant B"}'
Expected Result: Two distinct tenant IDs returned
Test 1.2: Create KBs per Tenant
# Create KB for Tenant A
curl -X POST http://localhost:9621/api/v1/knowledge-bases \
-H "Content-Type: application/json" \
-H "X-API-Key: test-api-key-123" \
-H "X-Tenant-ID: <tenant_a_id>" \
-d '{"name": "KB Alpha-1", "description": "Knowledge base for Tenant A"}'
# Create KB for Tenant B
curl -X POST http://localhost:9621/api/v1/knowledge-bases \
-H "Content-Type: application/json" \
-H "X-API-Key: test-api-key-123" \
-H "X-Tenant-ID: <tenant_b_id>" \
-d '{"name": "KB Beta-1", "description": "Knowledge base for Tenant B"}'
Expected Result: Each KB associated with correct tenant
Test 1.3: Verify KB Isolation
# List KBs for Tenant A (should only see KB Alpha-1)
curl http://localhost:9621/api/v1/knowledge-bases \
-H "X-API-Key: test-api-key-123" \
-H "X-Tenant-ID: <tenant_a_id>"
# List KBs for Tenant B (should only see KB Beta-1)
curl http://localhost:9621/api/v1/knowledge-bases \
-H "X-API-Key: test-api-key-123" \
-H "X-Tenant-ID: <tenant_b_id>"
Expected Result: Each tenant only sees their own KBs
Phase 2: Document Isolation Tests
Test 2.1: Upload Document to Tenant A
# Upload document
curl -X POST http://localhost:9621/documents/upload \
-H "X-API-Key: test-api-key-123" \
-H "X-Tenant-ID: <tenant_a_id>" \
-H "X-KB-ID: <kb_a_id>" \
-F "file=@test_doc_a.txt"
Test 2.2: Upload Document to Tenant B
curl -X POST http://localhost:9621/documents/upload \
-H "X-API-Key: test-api-key-123" \
-H "X-Tenant-ID: <tenant_b_id>" \
-H "X-KB-ID: <kb_b_id>" \
-F "file=@test_doc_b.txt"
Test 2.3: Verify Document Isolation
# List docs for Tenant A (should only see doc A)
curl http://localhost:9621/documents \
-H "X-API-Key: test-api-key-123" \
-H "X-Tenant-ID: <tenant_a_id>" \
-H "X-KB-ID: <kb_a_id>"
# List docs for Tenant B (should only see doc B)
curl http://localhost:9621/documents \
-H "X-API-Key: test-api-key-123" \
-H "X-Tenant-ID: <tenant_b_id>" \
-H "X-KB-ID: <kb_b_id>"
Phase 3: Query Isolation Tests
Test 3.1: Query in Tenant A Context
curl -X POST http://localhost:9621/query \
-H "Content-Type: application/json" \
-H "X-API-Key: test-api-key-123" \
-H "X-Tenant-ID: <tenant_a_id>" \
-H "X-KB-ID: <kb_a_id>" \
-d '{"query": "What is in the document?", "mode": "hybrid"}'
Expected Result: Response based only on Tenant A's documents
Test 3.2: Query in Tenant B Context
curl -X POST http://localhost:9621/query \
-H "Content-Type: application/json" \
-H "X-API-Key: test-api-key-123" \
-H "X-Tenant-ID: <tenant_b_id>" \
-H "X-KB-ID: <kb_b_id>" \
-d '{"query": "What is in the document?", "mode": "hybrid"}'
Expected Result: Response based only on Tenant B's documents
Phase 4: Web UI Tests
Test 4.1: Tenant Selection
- Open Web UI at http://localhost:5173
- Login with admin/admin123
- Verify tenant selector shows available tenants
- Select Tenant A
- Verify X-Tenant-ID header is sent with requests
Test 4.2: KB Selection
- After selecting Tenant A, verify KB list shows only Tenant A's KBs
- Select a KB
- Verify X-KB-ID header is sent with requests
Test 4.3: Document Visibility
- Select Tenant A / KB Alpha-1
- Go to Documents tab
- Verify only documents for this KB are shown
- Switch to Tenant B / KB Beta-1
- Verify documents list changes to show only Tenant B's documents
Test 4.4: Query Scope
- Select Tenant A / KB Alpha-1
- Enter a query in the chat
- Verify response is based on Tenant A's data
- Switch to Tenant B
- Enter same query
- Verify response is different (based on Tenant B's data)
Phase 5: Storage Layer Verification
Test 5.1: Verify PostgreSQL Data Isolation
-- Connect to database
psql -h localhost -U lightrag -d lightrag_test
-- Check tenant_id and kb_id in document tables
SELECT tenant_id, kb_id, id, content_summary
FROM lightrag_doc_status
ORDER BY tenant_id, kb_id;
-- Verify no cross-tenant data
SELECT COUNT(*) FROM lightrag_doc_status
WHERE tenant_id = 'tenant_a' AND kb_id IN (
SELECT kb_id FROM lightrag_doc_status WHERE tenant_id = 'tenant_b'
);
-- Expected: 0
Test 5.2: Verify Redis Namespace Isolation
redis-cli
# List keys for tenant A
KEYS "tenant_a:*"
# List keys for tenant B
KEYS "tenant_b:*"
# Verify no overlap
Test Execution Checklist
| Phase | Test | Status | Notes |
|---|---|---|---|
| 1.1 | Create tenants | ⬜ | |
| 1.2 | Create KBs | ⬜ | |
| 1.3 | Verify KB isolation | ⬜ | |
| 2.1 | Upload doc to A | ⬜ | |
| 2.2 | Upload doc to B | ⬜ | |
| 2.3 | Verify doc isolation | ⬜ | |
| 3.1 | Query in A context | ⬜ | |
| 3.2 | Query in B context | ⬜ | |
| 4.1 | Tenant selection UI | ⬜ | |
| 4.2 | KB selection UI | ⬜ | |
| 4.3 | Document visibility | ⬜ | |
| 4.4 | Query scope | ⬜ | |
| 5.1 | PostgreSQL isolation | ⬜ | |
| 5.2 | Redis isolation | ⬜ |
Failure Criteria
A test fails if:
- Data from one tenant is visible to another tenant
- Query results include information from wrong tenant/KB
- Headers are not propagated correctly
- Database records show incorrect tenant_id/kb_id associations
- Redis keys do not include proper namespace prefixes