Files
HAL9000 790eb6f001
CI / benchmark-publish (pull_request) Has been skipped
CI / push-validation (pull_request) Successful in 25s
CI / helm (pull_request) Successful in 31s
CI / build (pull_request) Successful in 53s
CI / lint (pull_request) Successful in 1m5s
CI / typecheck (pull_request) Successful in 1m24s
CI / security (pull_request) Successful in 1m53s
CI / quality (pull_request) Successful in 1m54s
CI / integration_tests (pull_request) Successful in 3m40s
CI / e2e_tests (pull_request) Successful in 4m28s
CI / unit_tests (pull_request) Successful in 5m6s
CI / docker (pull_request) Successful in 1m30s
CI / coverage (pull_request) Successful in 10m50s
CI / status-check (pull_request) Successful in 3s
CI / helm (push) Successful in 31s
CI / build (push) Successful in 52s
CI / lint (push) Successful in 1m1s
CI / typecheck (push) Successful in 1m26s
CI / quality (push) Successful in 1m26s
CI / security (push) Successful in 1m42s
CI / push-validation (push) Successful in 22s
CI / benchmark-publish (push) Failing after 43s
CI / integration_tests (push) Failing after 3m39s
CI / e2e_tests (push) Successful in 4m23s
CI / unit_tests (push) Successful in 4m38s
CI / docker (push) Successful in 1m38s
CI / coverage (push) Successful in 10m50s
CI / status-check (push) Failing after 3s
test(data): introduce dynamic data generation and externalize test data in Behave and Robot Framework suites
- Added Faker dependency to pyproject.toml for dynamic test data generation
- Created features/test_data_factory.py with TestDataGenerator and ContextFragmentFactory classes for Behave tests
- Created robot/helper_test_data_factory.py with RobotTestDataGenerator and factory classes for Robot Framework tests
- Created features/test_data_loader.py to load externalized test data from JSON files
- Created features/fixtures/test_data_samples.json with realistic test data samples
- Updated robot/helper_acms_fusion.py to use dynamic test data generation instead of hardcoded values like "alpha" and "beta"
- All quality gates passing: lint, typecheck, unit tests, integration tests, coverage ≥ 97%

ISSUES CLOSED: #9048
2026-04-27 07:33:18 +00:00

133 lines
3.3 KiB
JSON

{
"project_names": [
"data-pipeline",
"ml-framework",
"api-gateway",
"auth-service",
"cache-layer",
"event-stream",
"config-manager",
"logging-system",
"monitoring-tool",
"deployment-engine"
],
"skill_names": [
"text_analysis",
"code_generation",
"data_validation",
"error_handling",
"performance_tuning",
"security_audit",
"documentation_gen",
"test_generation",
"refactoring_assist",
"debugging_help"
],
"tool_names": [
"file-reader",
"api-caller",
"database-query",
"cache-store",
"message-queue",
"webhook-sender",
"log-aggregator",
"metric-collector",
"config-loader",
"secret-manager"
],
"python_code_samples": [
"def hello_world():\n return 'Hello, World!'",
"result = sum([1, 2, 3, 4, 5])",
"data = {'name': 'Alice', 'age': 30}",
"for i in range(10):\n print(i)",
"import json\ndata = json.loads('{}')",
"class Calculator:\n def add(self, a, b):\n return a + b",
"async def fetch_data():\n return await get_response()",
"try:\n result = risky_operation()\nexcept Exception as e:\n print(e)",
"list_comp = [x * 2 for x in range(5)]",
"lambda_func = lambda x: x ** 2"
],
"file_paths": [
"src/core/models.py",
"src/services/auth.py",
"src/handlers/api.py",
"src/utils/helpers.py",
"src/config/settings.py",
"tests/unit/test_models.py",
"tests/integration/test_api.py",
"docs/api_reference.md",
"scripts/migrate_db.py",
"examples/basic_usage.py"
],
"uko_node_uris": [
"p://src/models.py",
"p://src/services/auth.py",
"p://src/handlers/api.py",
"p://src/utils/helpers.py",
"p://src/config/settings.py",
"p://tests/unit/test_models.py",
"p://tests/integration/test_api.py",
"p://docs/api_reference.md",
"p://scripts/migrate_db.py",
"p://examples/basic_usage.py"
],
"resource_uris": [
"test://database-primary",
"test://cache-redis",
"test://message-queue",
"test://api-gateway",
"test://auth-service",
"test://logging-system",
"test://monitoring-tool",
"test://config-store",
"test://secret-vault",
"test://deployment-engine"
],
"prose_samples": [
"This function implements a robust error handling mechanism.",
"The API endpoint validates all incoming requests before processing.",
"Database queries are optimized for performance and scalability.",
"The authentication system uses industry-standard security practices.",
"Configuration management supports multiple environments seamlessly.",
"Logging is comprehensive and includes detailed diagnostic information.",
"Monitoring tools provide real-time visibility into system health.",
"The caching layer reduces database load significantly.",
"Message queues ensure reliable asynchronous communication.",
"Deployment automation minimizes manual intervention and errors."
],
"edge_case_names": [
"a",
"my-project",
"my_project",
"my project",
"project123",
"123project",
"My Project Name",
"UPPERCASE",
"lowercase",
"MixedCase"
],
"invalid_special_chars": [
"@",
"/",
"!",
"#",
"%",
"^",
"&",
"*",
"+",
"=",
"<",
">",
"?",
".",
":",
";",
"|",
"\\",
"`",
"~"
]
}