Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/e2e/features/steps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,6 @@ Implementation of common test steps.
## [llm_query_response.py](llm_query_response.py)
LLM query and response steps.

## [rbac.py](rbac.py)
Step definitions for RBAC E2E tests.

8 changes: 8 additions & 0 deletions tests/e2e/mock_jwks_server/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# List of source files stored in `tests/e2e/mock_jwks_server` directory

## [generate_tokens.py](generate_tokens.py)
One-time script to generate JWKS and test tokens.

## [server.py](server.py)
Simple mock JWKS server for E2E RBAC tests.

2 changes: 2 additions & 0 deletions tests/e2e/rag/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# List of source files stored in `tests/e2e/rag` directory

2 changes: 1 addition & 1 deletion tests/unit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Test configuration validation for unknown fields.
Unit tests for functions defined in src/lightspeed_stack.py.

## [test_llama_stack_configuration.py](test_llama_stack_configuration.py)
Unit tests for functions defined in src/llama_stack_configuration.py.
Unit tests for src/llama_stack_configuration.py.

## [test_log.py](test_log.py)
Unit tests for functions defined in src/log.py.
Expand Down
3 changes: 3 additions & 0 deletions tests/unit/app/endpoints/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ Unit tests for the /health REST API endpoint.
## [test_info.py](test_info.py)
Unit tests for the /info REST API endpoint.

## [test_mcp_auth.py](test_mcp_auth.py)
Unit tests for MCP auth endpoint.

## [test_metrics.py](test_metrics.py)
Unit tests for the /metrics REST API endpoint.

Expand Down
3 changes: 3 additions & 0 deletions tests/unit/authorization/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
## [__init__.py](__init__.py)
Unit tests for authorization module.

## [test_azure_token_manager.py](test_azure_token_manager.py)
Unit test for Authentication with Azure Entra ID Credentials.

## [test_middleware.py](test_middleware.py)
Unit tests for the authorization middleware.

Expand Down
3 changes: 3 additions & 0 deletions tests/unit/models/config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ Unit tests for QuotaSchedulerConfig model.
## [test_service_configuration.py](test_service_configuration.py)
Unit tests for ServiceConfiguration model.

## [test_splunk_configuration.py](test_splunk_configuration.py)
Unit tests for SplunkConfiguration model.

## [test_tls_configuration.py](test_tls_configuration.py)
Unit tests for TLSConfiguration model.

Expand Down
8 changes: 8 additions & 0 deletions tests/unit/observability/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# List of source files stored in `tests/unit/observability` directory

## [__init__.py](__init__.py)
Unit tests for observability module.

## [test_splunk.py](test_splunk.py)
Unit tests for Splunk HEC client.

8 changes: 8 additions & 0 deletions tests/unit/observability/formats/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# List of source files stored in `tests/unit/observability/formats` directory

## [__init__.py](__init__.py)
Unit tests for observability event format builders.

## [test_rlsapi.py](test_rlsapi.py)
Unit tests for rlsapi v1 event builders.

3 changes: 3 additions & 0 deletions tests/unit/utils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ Unit tests for endpoints utility functions.
## [test_llama_stack_version.py](test_llama_stack_version.py)
Unit tests for utility function to check Llama Stack version.

## [test_mcp_auth_headers.py](test_mcp_auth_headers.py)
Unit tests for MCP authorization headers utilities.

## [test_mcp_headers.py](test_mcp_headers.py)
Unit tests for MCP headers utility functions.

Expand Down
Loading