✅
Teste de Integração de Microserviços
/app/tests/microservices-integration-test.yaml
medium
12 Steps
Duration: 30ms
Success Rate: 100%
✅
Successful Steps
12
100% success rate
❌
Failed Steps
0
0% of total
⏭️
Skipped Steps
0
0% of total
🔗
HTTP Requests
12
100% requests
🔄
Iterações
0
0 steps com iterações
📊 Execution Timeline
| # | Status | Step Name | Type | Duration | Started At | Details |
|---|---|---|---|---|---|---|
| 1 | ✅ | Check All Services Health GET /get | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 2 | ✅ | Create User in User Service POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 3 | ✅ | Check Product Inventory GET /get | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 4 | ✅ | Create Order in Order Service POST /post | request | 1ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 5 | ✅ | Process Payment POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 6 | ✅ | Update Order Status PUT /put | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 7 | ✅ | Update Inventory Stock PUT /put | request | 3ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 8 | ✅ | Send User Notification POST /post | request | 3ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 9 | ✅ | Cross-Service Data Consistency Check GET /get | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 10 | ✅ | Simulate Service Failure and Rollback POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 11 | ✅ | Post-Transaction Health Check GET /get | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 12 | ✅ | Integration Test Summary Report POST /post | request | 4ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
🌐 HTTP Requests Debug Info
✅
Check All Services Health
Step #1
2ms
cURL Command
curl -X GET -H 'X-Service-Check: health_check_all' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Correlation-Id: corr_integration_test_001' "http://httpbin/get"📤 Request
Method: GET
URL:
http://httpbin/get Base URL:
http://httpbin Request Headers
X-Service-Check: health_check_all
X-Trace-Id: trace_abc123def456
X-Correlation-Id: corr_integration_test_001📥 Response
Status Code: 200
Duration: 2ms
Size: 505 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 600
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {
"service_check": "health",
"services": "user,order,payment,notification,inventory"
},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service-Check": "health_check_all",
"X-Trace-Id": "trace_abc123def456"
},
"origin": "172.18.0.3",
"url": "http://httpbin/get?service_check=health&services=user,order,payment,notification,inventory"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"all_services_health": {
"user_service": "healthy",
"order_service": "healthy",
"payment_service": "healthy",
"notification_service": "healthy",
"inventory_service": "healthy"
},
"health_check_timestamp": "2025-10-19T10:28:39.227Z",
"all_services_up": null
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
} ✅
Create User in User Service
Step #2
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Service: user-service' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_user_create' -H 'X-Correlation-Id: corr_integration_test_001' -d '{"service":"user-service","action":"create_user","user_id":"usr_12345","user_data":{"email":"test@example.com","name":"Test User","status":"active"}}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/json
X-Service: user-service
X-Trace-Id: trace_abc123def456
X-Span-Id: span_789xyz012_user_create
X-Correlation-Id: corr_integration_test_001Request Body
{
"service": "user-service",
"action": "create_user",
"user_id": "usr_12345",
"user_data": {
"email": "test@example.com",
"name": "Test User",
"status": "active"
}
}📥 Response
Status Code: 200
Duration: 2ms
Size: 806 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 987
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"service\":\"user-service\",\"action\":\"create_user\",\"user_id\":\"usr_12345\",\"user_data\":{\"email\":\"test@example.com\",\"name\":\"Test User\",\"status\":\"active\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "149",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "user-service",
"X-Span-Id": "span_789xyz012_user_create",
"X-Trace-Id": "trace_abc123def456"
},
"json": {
"action": "create_user",
"service": "user-service",
"user_data": {
"email": "test@example.com",
"name": "Test User",
"status": "active"
},
"user_id": "usr_12345"
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"user_created": null,
"user_service_response": "{{json}}",
"user_creation_time": "2025-10-19T10:28:39.229Z"
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
} ✅
Check Product Inventory
Step #3
2ms
cURL Command
curl -X GET -H 'X-Service: inventory-service' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_inventory_check' -H 'X-Correlation-Id: corr_integration_test_001' "http://httpbin/get"📤 Request
Method: GET
URL:
http://httpbin/get Base URL:
http://httpbin Request Headers
X-Service: inventory-service
X-Trace-Id: trace_abc123def456
X-Span-Id: span_789xyz012_inventory_check
X-Correlation-Id: corr_integration_test_001📥 Response
Status Code: 200
Duration: 2ms
Size: 585 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 701
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {
"action": "check_stock",
"product_id": "prod_98765",
"requested_quantity": "2",
"service": "inventory-service"
},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "inventory-service",
"X-Span-Id": "span_789xyz012_inventory_check",
"X-Trace-Id": "trace_abc123def456"
},
"origin": "172.18.0.3",
"url": "http://httpbin/get?service=inventory-service&action=check_stock&product_id=prod_98765&requested_quantity=2"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"inventory_available": null,
"available_stock": 100,
"reserved_quantity": "{{test_transaction.quantity}}",
"inventory_check_time": "2025-10-19T10:28:39.231Z"
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
} ✅
Create Order in Order Service
Step #4
1ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Service: order-service' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_order_create' -H 'X-Correlation-Id: corr_integration_test_001' -d '{"service":"order-service","action":"create_order","order_id":"ord_67890","user_id":"usr_12345","order_data":{"product_id":"prod_98765","quantity":2,"amount":149.99,"currency":"USD","status":"pending_payment"}}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/json
X-Service: order-service
X-Trace-Id: trace_abc123def456
X-Span-Id: span_789xyz012_order_create
X-Correlation-Id: corr_integration_test_001Request Body
{
"service": "order-service",
"action": "create_order",
"order_id": "ord_67890",
"user_id": "usr_12345",
"order_data": {
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD",
"status": "pending_payment"
}
}📥 Response
Status Code: 200
Duration: 1ms
Size: 938 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 1144
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"service\":\"order-service\",\"action\":\"create_order\",\"order_id\":\"ord_67890\",\"user_id\":\"usr_12345\",\"order_data\":{\"product_id\":\"prod_98765\",\"quantity\":2,\"amount\":149.99,\"currency\":\"USD\",\"status\":\"pending_payment\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "210",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "order-service",
"X-Span-Id": "span_789xyz012_order_create",
"X-Trace-Id": "trace_abc123def456"
},
"json": {
"action": "create_order",
"order_data": {
"amount": 149.99,
"currency": "USD",
"product_id": "prod_98765",
"quantity": 2,
"status": "pending_payment"
},
"order_id": "ord_67890",
"service": "order-service",
"user_id": "usr_12345"
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"order_created": null,
"order_service_response": "{{json}}",
"order_creation_time": "2025-10-19T10:28:39.232Z",
"order_status": null
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
} ✅
Process Payment
Step #5
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Service: payment-service' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_payment_process' -H 'X-Correlation-Id: corr_integration_test_001' -d '{"service":"payment-service","action":"process_payment","payment_id":"pay_54321","order_id":"ord_67890","user_id":"usr_12345","payment_data":{"amount":149.99,"currency":"USD","method":"credit_card","card_token":"tok_test_visa_1234"}}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/json
X-Service: payment-service
X-Trace-Id: trace_abc123def456
X-Span-Id: span_789xyz012_payment_process
X-Correlation-Id: corr_integration_test_001Request Body
{
"service": "payment-service",
"action": "process_payment",
"payment_id": "pay_54321",
"order_id": "ord_67890",
"user_id": "usr_12345",
"payment_data": {
"amount": 149.99,
"currency": "USD",
"method": "credit_card",
"card_token": "tok_test_visa_1234"
}
}📥 Response
Status Code: 200
Duration: 2ms
Size: 991 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 1195
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"service\":\"payment-service\",\"action\":\"process_payment\",\"payment_id\":\"pay_54321\",\"order_id\":\"ord_67890\",\"user_id\":\"usr_12345\",\"payment_data\":{\"amount\":149.99,\"currency\":\"USD\",\"method\":\"credit_card\",\"card_token\":\"tok_test_visa_1234\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "233",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "payment-service",
"X-Span-Id": "span_789xyz012_payment_process",
"X-Trace-Id": "trace_abc123def456"
},
"json": {
"action": "process_payment",
"order_id": "ord_67890",
"payment_data": {
"amount": 149.99,
"card_token": "tok_test_visa_1234",
"currency": "USD",
"method": "credit_card"
},
"payment_id": "pay_54321",
"service": "payment-service",
"user_id": "usr_12345"
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
}Captured Variables
{
"payment_approved": "true",
"payment_service_response": null,
"payment_status": "approved",
"payment_approval_time": "2025-10-19T10:28:39.235Z"
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
}🎭 Scenarios
Executed: 1 scenarios
Scenario 1: then ✓
Scenario 2: none ○
✅
Update Order Status
Step #6
2ms
cURL Command
curl -X PUT -H 'Content-Type: application/json' -H 'X-Service: order-service' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_order_update' -H 'X-Correlation-Id: corr_integration_test_001' -d '{"service":"order-service","action":"update_order_status","order_id":"ord_67890","new_status":"confirmed","payment_id":"pay_54321","payment_status":"approved"}' "http://httpbin/put"📤 Request
Method: PUT
URL:
http://httpbin/put Base URL:
http://httpbin Request Headers
Content-Type: application/json
X-Service: order-service
X-Trace-Id: trace_abc123def456
X-Span-Id: span_789xyz012_order_update
X-Correlation-Id: corr_integration_test_001Request Body
{
"service": "order-service",
"action": "update_order_status",
"order_id": "ord_67890",
"new_status": "confirmed",
"payment_id": "pay_54321",
"payment_status": "approved"
}📥 Response
Status Code: 200
Duration: 2ms
Size: 825 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 989
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"service\":\"order-service\",\"action\":\"update_order_status\",\"order_id\":\"ord_67890\",\"new_status\":\"confirmed\",\"payment_id\":\"pay_54321\",\"payment_status\":\"approved\"}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "159",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "order-service",
"X-Span-Id": "span_789xyz012_order_update",
"X-Trace-Id": "trace_abc123def456"
},
"json": {
"action": "update_order_status",
"new_status": "confirmed",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"payment_status": "approved",
"service": "order-service"
},
"origin": "172.18.0.3",
"url": "http://httpbin/put"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"order_updated": null,
"final_order_status": "confirmed",
"order_update_time": "2025-10-19T10:28:39.237Z"
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
} ✅
Update Inventory Stock
Step #7
3ms
cURL Command
curl -X PUT -H 'Content-Type: application/json' -H 'X-Service: inventory-service' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_inventory_update' -H 'X-Correlation-Id: corr_integration_test_001' -d '{"service":"inventory-service","action":"reduce_stock","product_id":"prod_98765","quantity":2,"order_id":"ord_67890"}' "http://httpbin/put"📤 Request
Method: PUT
URL:
http://httpbin/put Base URL:
http://httpbin Request Headers
Content-Type: application/json
X-Service: inventory-service
X-Trace-Id: trace_abc123def456
X-Span-Id: span_789xyz012_inventory_update
X-Correlation-Id: corr_integration_test_001Request Body
{
"service": "inventory-service",
"action": "reduce_stock",
"product_id": "prod_98765",
"quantity": 2,
"order_id": "ord_67890"
}📥 Response
Status Code: 200
Duration: 3ms
Size: 743 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 900
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"service\":\"inventory-service\",\"action\":\"reduce_stock\",\"product_id\":\"prod_98765\",\"quantity\":2,\"order_id\":\"ord_67890\"}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "117",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "inventory-service",
"X-Span-Id": "span_789xyz012_inventory_update",
"X-Trace-Id": "trace_abc123def456"
},
"json": {
"action": "reduce_stock",
"order_id": "ord_67890",
"product_id": "prod_98765",
"quantity": 2,
"service": "inventory-service"
},
"origin": "172.18.0.3",
"url": "http://httpbin/put"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"stock_reduced": null,
"remaining_stock": "{{available_stock - test_transaction.quantity}}",
"inventory_update_time": "2025-10-19T10:28:39.241Z"
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
}🎭 Scenarios
Executed: 1 scenarios
Scenario 1: then ✓
✅
Send User Notification
Step #8
3ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Service: notification-service' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_notification_send' -H 'X-Correlation-Id: corr_integration_test_001' -d '{"service":"notification-service","action":"send_notification","user_id":"usr_12345","notification_type":"order_status","notification_data":{"order_id":"ord_67890","status":"confirmed","message":"Your order has been confirmed!","payment_id":"pay_54321"}}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/json
X-Service: notification-service
X-Trace-Id: trace_abc123def456
X-Span-Id: span_789xyz012_notification_send
X-Correlation-Id: corr_integration_test_001Request Body
{
"service": "notification-service",
"action": "send_notification",
"user_id": "usr_12345",
"notification_type": "order_status",
"notification_data": {
"order_id": "ord_67890",
"status": "confirmed",
"message": "Your order has been confirmed!",
"payment_id": "pay_54321"
}
}📥 Response
Status Code: 200
Duration: 3ms
Size: 1038 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 1235
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"service\":\"notification-service\",\"action\":\"send_notification\",\"user_id\":\"usr_12345\",\"notification_type\":\"order_status\",\"notification_data\":{\"order_id\":\"ord_67890\",\"status\":\"confirmed\",\"message\":\"Your order has been confirmed!\",\"payment_id\":\"pay_54321\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "254",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "notification-service",
"X-Span-Id": "span_789xyz012_notification_send",
"X-Trace-Id": "trace_abc123def456"
},
"json": {
"action": "send_notification",
"notification_data": {
"message": "Your order has been confirmed!",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"status": "confirmed"
},
"notification_type": "order_status",
"service": "notification-service",
"user_id": "usr_12345"
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"notification_sent": null,
"notification_type": "order_confirmed",
"notification_time": "2025-10-19T10:28:39.244Z"
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
} ✅
Cross-Service Data Consistency Check
Step #9
2ms
cURL Command
curl -X GET -H 'X-Service: data-consistency-check' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_consistency_check' -H 'X-Correlation-Id: corr_integration_test_001' "http://httpbin/get"📤 Request
Method: GET
URL:
http://httpbin/get Base URL:
http://httpbin Request Headers
X-Service: data-consistency-check
X-Trace-Id: trace_abc123def456
X-Span-Id: span_789xyz012_consistency_check
X-Correlation-Id: corr_integration_test_001📥 Response
Status Code: 200
Duration: 2ms
Size: 606 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 722
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {
"check_type": "cross_service_consistency",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"user_id": "usr_12345"
},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "data-consistency-check",
"X-Span-Id": "span_789xyz012_consistency_check",
"X-Trace-Id": "trace_abc123def456"
},
"origin": "172.18.0.3",
"url": "http://httpbin/get?check_type=cross_service_consistency&order_id=ord_67890&user_id=usr_12345&payment_id=pay_54321"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"consistency_check": {
"user_service_status": "{{user_created ? 'user_exists' : 'user_missing'}}",
"order_service_status": "{{order_created && order_updated ? 'order_consistent' : 'order_inconsistent'}}",
"payment_service_status": "{{js: (variables.payment_approved || variables.payment_declined) ? 'payment_processed' : 'payment_pending'}}",
"inventory_service_status": "{{js: (variables.stock_reduced || variables.reservation_released) ? 'inventory_updated' : 'inventory_unchanged'}}",
"notification_service_status": "{{notification_sent ? 'notification_delivered' : 'notification_failed'}}"
},
"data_consistency_score": 0,
"all_services_consistent": false
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
} ✅
Simulate Service Failure and Rollback
Step #10
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Service: failure-simulation' -H 'X-Trace-Id: trace_abc123def456_rollback' -H 'X-Span-Id: span_789xyz012_rollback_test' -H 'X-Correlation-Id: corr_integration_test_001_rollback' -d '{"simulation_type":"service_failure","failed_service":"notification-service","transaction_id":"ord_67890","rollback_required":true,"affected_services":["order-service","payment-service","inventory-service"]}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/json
X-Service: failure-simulation
X-Trace-Id: trace_abc123def456_rollback
X-Span-Id: span_789xyz012_rollback_test
X-Correlation-Id: corr_integration_test_001_rollbackRequest Body
{
"simulation_type": "service_failure",
"failed_service": "notification-service",
"transaction_id": "ord_67890",
"rollback_required": true,
"affected_services": [
"order-service",
"payment-service",
"inventory-service"
]
}📥 Response
Status Code: 200
Duration: 2ms
Size: 944 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 1129
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"simulation_type\":\"service_failure\",\"failed_service\":\"notification-service\",\"transaction_id\":\"ord_67890\",\"rollback_required\":true,\"affected_services\":[\"order-service\",\"payment-service\",\"inventory-service\"]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "207",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001_rollback",
"X-Service": "failure-simulation",
"X-Span-Id": "span_789xyz012_rollback_test",
"X-Trace-Id": "trace_abc123def456_rollback"
},
"json": {
"affected_services": [
"order-service",
"payment-service",
"inventory-service"
],
"failed_service": "notification-service",
"rollback_required": true,
"simulation_type": "service_failure",
"transaction_id": "ord_67890"
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
}Captured Variables
{
"rollback_initiated": null,
"rollback_services": [
{
"service": "notification-service",
"action": "retry_notification",
"status": "retry_scheduled"
},
{
"service": "order-service",
"action": "maintain_status",
"status": "no_rollback_needed"
},
{
"service": "payment-service",
"action": "maintain_charge",
"status": "no_rollback_needed"
},
{
"service": "inventory-service",
"action": "maintain_stock_reduction",
"status": "no_rollback_needed"
}
]
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
}🎭 Scenarios
Executed: 1 scenarios
Scenario 1: then ✓
Scenario 2: none ○
✅
Post-Transaction Health Check
Step #11
2ms
cURL Command
curl -X GET -H 'X-Service-Check: post_transaction_health' -H 'X-Trace-Id: trace_abc123def456_post_health' -H 'X-Correlation-Id: corr_integration_test_001' "http://httpbin/get"📤 Request
Method: GET
URL:
http://httpbin/get Base URL:
http://httpbin Request Headers
X-Service-Check: post_transaction_health
X-Trace-Id: trace_abc123def456_post_health
X-Correlation-Id: corr_integration_test_001📥 Response
Status Code: 200
Duration: 2ms
Size: 500 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 595
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {
"health_check_type": "post_transaction",
"transaction_id": "ord_67890"
},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service-Check": "post_transaction_health",
"X-Trace-Id": "trace_abc123def456_post_health"
},
"origin": "172.18.0.3",
"url": "http://httpbin/get?health_check_type=post_transaction&transaction_id=ord_67890"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"post_transaction_health": {
"all_services_responsive": "true",
"no_service_degradation": "true",
"transaction_cleanup_complete": "true"
},
"health_check_post_time": "2025-10-19T10:28:39.250Z"
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
} ✅
Integration Test Summary Report
Step #12
4ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Test-Report: microservices_integration' -H 'X-Trace-Id: trace_abc123def456_final_report' -d '{"report_type":"integration_test_summary","transaction_details":{"order_id":"ord_67890","user_id":"usr_12345","payment_id":"pay_54321","product_id":"prod_98765"},"service_interactions":{"total_services":5,"services_involved":["user-service","order-service","payment-service","inventory-service","notification-service"],"successful_interactions":0},"transaction_flow":{"user_creation":false,"inventory_check":false,"order_creation":false,"payment_processing":true,"inventory_update":false,"notification_delivery":false},"consistency_validation":{"data_consistency_score":0,"all_services_consistent":false},"failure_handling":{"rollback_tested":false,"failure_recovery":"not_tested"}}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/json
X-Test-Report: microservices_integration
X-Trace-Id: trace_abc123def456_final_reportRequest Body
{
"report_type": "integration_test_summary",
"transaction_details": {
"order_id": "ord_67890",
"user_id": "usr_12345",
"payment_id": "pay_54321",
"product_id": "prod_98765"
},
"service_interactions": {
"total_services": 5,
"services_involved": [
"user-service",
"order-service",
"payment-service",
"inventory-service",
"notification-service"
],
"successful_interactions": 0
},
"transaction_flow": {
"user_creation": false,
"inventory_check": false,
"order_creation": false,
"payment_processing": true,
"inventory_update": false,
"notification_delivery": false
},
"consistency_validation": {
"data_consistency_score": 0,
"all_services_consistent": false
},
"failure_handling": {
"rollback_tested": false,
"failure_recovery": "not_tested"
}
}📥 Response
Status Code: 200
Duration: 4ms
Size: 1856 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 2235
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"report_type\":\"integration_test_summary\",\"transaction_details\":{\"order_id\":\"ord_67890\",\"user_id\":\"usr_12345\",\"payment_id\":\"pay_54321\",\"product_id\":\"prod_98765\"},\"service_interactions\":{\"total_services\":5,\"services_involved\":[\"user-service\",\"order-service\",\"payment-service\",\"inventory-service\",\"notification-service\"],\"successful_interactions\":0},\"transaction_flow\":{\"user_creation\":false,\"inventory_check\":false,\"order_creation\":false,\"payment_processing\":true,\"inventory_update\":false,\"notification_delivery\":false},\"consistency_validation\":{\"data_consistency_score\":0,\"all_services_consistent\":false},\"failure_handling\":{\"rollback_tested\":false,\"failure_recovery\":\"not_tested\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "682",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Test-Report": "microservices_integration",
"X-Trace-Id": "trace_abc123def456_final_report"
},
"json": {
"consistency_validation": {
"all_services_consistent": false,
"data_consistency_score": 0
},
"failure_handling": {
"failure_recovery": "not_tested",
"rollback_tested": false
},
"report_type": "integration_test_summary",
"service_interactions": {
"services_involved": [
"user-service",
"order-service",
"payment-service",
"inventory-service",
"notification-service"
],
"successful_interactions": 0,
"total_services": 5
},
"transaction_details": {
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"user_id": "usr_12345"
},
"transaction_flow": {
"inventory_check": false,
"inventory_update": false,
"notification_delivery": false,
"order_creation": false,
"payment_processing": true,
"user_creation": false
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
}Captured Variables
{
"service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
]
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
}📄 Raw Suite Data
Complete Suite Data
{
"node_id": "microservices_integration_test",
"suite_name": "Teste de Integração de Microserviços",
"file_path": "/app/tests/microservices-integration-test.yaml",
"priority": "medium",
"start_time": "2025-10-19T10:28:39.224Z",
"end_time": "2025-10-19T10:28:39.254Z",
"duration_ms": 30,
"status": "success",
"steps_executed": 12,
"steps_successful": 12,
"steps_failed": 0,
"success_rate": 100,
"steps_results": [
{
"step_id": "step-1-check-all-services-health",
"qualified_step_id": "microservices_integration_test::step-1-check-all-services-health",
"step_name": "Check All Services Health",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "GET",
"url": "/get",
"headers": {
"X-Service-Check": "health_check_all",
"X-Trace-Id": "trace_abc123def456",
"X-Correlation-Id": "corr_integration_test_001"
},
"params": {
"service_check": "health",
"services": "user,order,payment,notification,inventory"
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/get",
"curl_command": "curl -X GET -H 'X-Service-Check: health_check_all' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Correlation-Id: corr_integration_test_001' \"http://httpbin/get\"",
"raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nX-Service-Check: health_check_all\r\nX-Trace-Id: trace_abc123def456\r\nX-Correlation-Id: corr_integration_test_001\r\n\r\n",
"raw_url": "{{base_url}}/get"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "600",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {
"service_check": "health",
"services": "user,order,payment,notification,inventory"
},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service-Check": "health_check_all",
"X-Trace-Id": "trace_abc123def456"
},
"origin": "172.18.0.3",
"url": "http://httpbin/get?service_check=health&services=user,order,payment,notification,inventory"
},
"size_bytes": 505,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 600\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {\n \"service_check\": \"health\",\n \"services\": \"user,order,payment,notification,inventory\"\n },\n \"headers\": {\n \"Accept\": \"application/json, text/plain, */*\",\n \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n \"Connection\": \"keep-alive\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\",\n \"X-Correlation-Id\": \"corr_integration_test_001\",\n \"X-Service-Check\": \"health_check_all\",\n \"X-Trace-Id\": \"trace_abc123def456\"\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/get?service_check=health&services=user,order,payment,notification,inventory\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"all_services_health": {
"user_service": "healthy",
"order_service": "healthy",
"payment_service": "healthy",
"notification_service": "healthy",
"inventory_service": "healthy"
},
"health_check_timestamp": "2025-10-19T10:28:39.227Z",
"all_services_up": null
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
}
},
{
"step_id": "step-2-create-user-in-user-service",
"qualified_step_id": "microservices_integration_test::step-2-create-user-in-user-service",
"step_name": "Create User in User Service",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json",
"X-Service": "user-service",
"X-Trace-Id": "trace_abc123def456",
"X-Span-Id": "span_789xyz012_user_create",
"X-Correlation-Id": "corr_integration_test_001"
},
"body": {
"service": "user-service",
"action": "create_user",
"user_id": "usr_12345",
"user_data": {
"email": "test@example.com",
"name": "Test User",
"status": "active"
}
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Service: user-service' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_user_create' -H 'X-Correlation-Id: corr_integration_test_001' -d '{\"service\":\"user-service\",\"action\":\"create_user\",\"user_id\":\"usr_12345\",\"user_data\":{\"email\":\"test@example.com\",\"name\":\"Test User\",\"status\":\"active\"}}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Service: user-service\r\nX-Trace-Id: trace_abc123def456\r\nX-Span-Id: span_789xyz012_user_create\r\nX-Correlation-Id: corr_integration_test_001\r\nContent-Length: 149\r\n\r\n{\"service\":\"user-service\",\"action\":\"create_user\",\"user_id\":\"usr_12345\",\"user_data\":{\"email\":\"test@example.com\",\"name\":\"Test User\",\"status\":\"active\"}}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "987",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"service\":\"user-service\",\"action\":\"create_user\",\"user_id\":\"usr_12345\",\"user_data\":{\"email\":\"test@example.com\",\"name\":\"Test User\",\"status\":\"active\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "149",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "user-service",
"X-Span-Id": "span_789xyz012_user_create",
"X-Trace-Id": "trace_abc123def456"
},
"json": {
"action": "create_user",
"service": "user-service",
"user_data": {
"email": "test@example.com",
"name": "Test User",
"status": "active"
},
"user_id": "usr_12345"
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 806,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 987\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"service\\\":\\\"user-service\\\",\\\"action\\\":\\\"create_user\\\",\\\"user_id\\\":\\\"usr_12345\\\",\\\"user_data\\\":{\\\"email\\\":\\\"test@example.com\\\",\\\"name\\\":\\\"Test User\\\",\\\"status\\\":\\\"active\\\"}}\",\n \"files\": {},\n \"form\": {},\n \"headers\": {\n \"Accept\": \"application/json, text/plain, */*\",\n \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n \"Connection\": \"keep-alive\",\n \"Content-Length\": \"149\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\",\n \"X-Correlation-Id\": \"corr_integration_test_001\",\n \"X-Service\": \"user-service\",\n \"X-Span-Id\": \"span_789xyz012_user_create\",\n \"X-Trace-Id\": \"trace_abc123def456\"\n },\n \"json\": {\n \"action\": \"create_user\",\n \"service\": \"user-service\",\n \"user_data\": {\n \"email\": \"test@example.com\",\n \"name\": \"Test User\",\n \"status\": \"active\"\n },\n \"user_id\": \"usr_12345\"\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"user_created": null,
"user_service_response": "{{json}}",
"user_creation_time": "2025-10-19T10:28:39.229Z"
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
}
},
{
"step_id": "step-3-check-product-inventory",
"qualified_step_id": "microservices_integration_test::step-3-check-product-inventory",
"step_name": "Check Product Inventory",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "GET",
"url": "/get",
"headers": {
"X-Service": "inventory-service",
"X-Trace-Id": "trace_abc123def456",
"X-Span-Id": "span_789xyz012_inventory_check",
"X-Correlation-Id": "corr_integration_test_001"
},
"params": {
"service": "inventory-service",
"action": "check_stock",
"product_id": "prod_98765",
"requested_quantity": 2
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/get",
"curl_command": "curl -X GET -H 'X-Service: inventory-service' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_inventory_check' -H 'X-Correlation-Id: corr_integration_test_001' \"http://httpbin/get\"",
"raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nX-Service: inventory-service\r\nX-Trace-Id: trace_abc123def456\r\nX-Span-Id: span_789xyz012_inventory_check\r\nX-Correlation-Id: corr_integration_test_001\r\n\r\n",
"raw_url": "{{base_url}}/get"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "701",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {
"action": "check_stock",
"product_id": "prod_98765",
"requested_quantity": "2",
"service": "inventory-service"
},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "inventory-service",
"X-Span-Id": "span_789xyz012_inventory_check",
"X-Trace-Id": "trace_abc123def456"
},
"origin": "172.18.0.3",
"url": "http://httpbin/get?service=inventory-service&action=check_stock&product_id=prod_98765&requested_quantity=2"
},
"size_bytes": 585,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 701\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {\n \"action\": \"check_stock\",\n \"product_id\": \"prod_98765\",\n \"requested_quantity\": \"2\",\n \"service\": \"inventory-service\"\n },\n \"headers\": {\n \"Accept\": \"application/json, text/plain, */*\",\n \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n \"Connection\": \"keep-alive\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\",\n \"X-Correlation-Id\": \"corr_integration_test_001\",\n \"X-Service\": \"inventory-service\",\n \"X-Span-Id\": \"span_789xyz012_inventory_check\",\n \"X-Trace-Id\": \"trace_abc123def456\"\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/get?service=inventory-service&action=check_stock&product_id=prod_98765&requested_quantity=2\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"inventory_available": null,
"available_stock": 100,
"reserved_quantity": "{{test_transaction.quantity}}",
"inventory_check_time": "2025-10-19T10:28:39.231Z"
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
}
},
{
"step_id": "step-4-create-order-in-order-service",
"qualified_step_id": "microservices_integration_test::step-4-create-order-in-order-service",
"step_name": "Create Order in Order Service",
"status": "success",
"duration_ms": 1,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json",
"X-Service": "order-service",
"X-Trace-Id": "trace_abc123def456",
"X-Span-Id": "span_789xyz012_order_create",
"X-Correlation-Id": "corr_integration_test_001"
},
"body": {
"service": "order-service",
"action": "create_order",
"order_id": "ord_67890",
"user_id": "usr_12345",
"order_data": {
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD",
"status": "pending_payment"
}
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Service: order-service' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_order_create' -H 'X-Correlation-Id: corr_integration_test_001' -d '{\"service\":\"order-service\",\"action\":\"create_order\",\"order_id\":\"ord_67890\",\"user_id\":\"usr_12345\",\"order_data\":{\"product_id\":\"prod_98765\",\"quantity\":2,\"amount\":149.99,\"currency\":\"USD\",\"status\":\"pending_payment\"}}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Service: order-service\r\nX-Trace-Id: trace_abc123def456\r\nX-Span-Id: span_789xyz012_order_create\r\nX-Correlation-Id: corr_integration_test_001\r\nContent-Length: 210\r\n\r\n{\"service\":\"order-service\",\"action\":\"create_order\",\"order_id\":\"ord_67890\",\"user_id\":\"usr_12345\",\"order_data\":{\"product_id\":\"prod_98765\",\"quantity\":2,\"amount\":149.99,\"currency\":\"USD\",\"status\":\"pending_payment\"}}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "1144",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"service\":\"order-service\",\"action\":\"create_order\",\"order_id\":\"ord_67890\",\"user_id\":\"usr_12345\",\"order_data\":{\"product_id\":\"prod_98765\",\"quantity\":2,\"amount\":149.99,\"currency\":\"USD\",\"status\":\"pending_payment\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "210",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "order-service",
"X-Span-Id": "span_789xyz012_order_create",
"X-Trace-Id": "trace_abc123def456"
},
"json": {
"action": "create_order",
"order_data": {
"amount": 149.99,
"currency": "USD",
"product_id": "prod_98765",
"quantity": 2,
"status": "pending_payment"
},
"order_id": "ord_67890",
"service": "order-service",
"user_id": "usr_12345"
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 938,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 1144\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"service\\\":\\\"order-service\\\",\\\"action\\\":\\\"create_order\\\",\\\"order_id\\\":\\\"ord_67890\\\",\\\"user_id\\\":\\\"usr_12345\\\",\\\"order_data\\\":{\\\"product_id\\\":\\\"prod_98765\\\",\\\"quantity\\\":2,\\\"amount\\\":149.99,\\\"currency\\\":\\\"USD\\\",\\\"status\\\":\\\"pending_payment\\\"}}\",\n \"files\": {},\n \"form\": {},\n \"headers\": {\n \"Accept\": \"application/json, text/plain, */*\",\n \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n \"Connection\": \"keep-alive\",\n \"Content-Length\": \"210\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\",\n \"X-Correlation-Id\": \"corr_integration_test_001\",\n \"X-Service\": \"order-service\",\n \"X-Span-Id\": \"span_789xyz012_order_create\",\n \"X-Trace-Id\": \"trace_abc123def456\"\n },\n \"json\": {\n \"action\": \"create_order\",\n \"order_data\": {\n \"amount\": 149.99,\n \"currency\": \"USD\",\n \"product_id\": \"prod_98765\",\n \"quantity\": 2,\n \"status\": \"pending_payment\"\n },\n \"order_id\": \"ord_67890\",\n \"service\": \"order-service\",\n \"user_id\": \"usr_12345\"\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"order_created": null,
"order_service_response": "{{json}}",
"order_creation_time": "2025-10-19T10:28:39.232Z",
"order_status": null
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
}
},
{
"step_id": "step-5-process-payment",
"qualified_step_id": "microservices_integration_test::step-5-process-payment",
"step_name": "Process Payment",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json",
"X-Service": "payment-service",
"X-Trace-Id": "trace_abc123def456",
"X-Span-Id": "span_789xyz012_payment_process",
"X-Correlation-Id": "corr_integration_test_001"
},
"body": {
"service": "payment-service",
"action": "process_payment",
"payment_id": "pay_54321",
"order_id": "ord_67890",
"user_id": "usr_12345",
"payment_data": {
"amount": 149.99,
"currency": "USD",
"method": "credit_card",
"card_token": "tok_test_visa_1234"
}
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Service: payment-service' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_payment_process' -H 'X-Correlation-Id: corr_integration_test_001' -d '{\"service\":\"payment-service\",\"action\":\"process_payment\",\"payment_id\":\"pay_54321\",\"order_id\":\"ord_67890\",\"user_id\":\"usr_12345\",\"payment_data\":{\"amount\":149.99,\"currency\":\"USD\",\"method\":\"credit_card\",\"card_token\":\"tok_test_visa_1234\"}}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Service: payment-service\r\nX-Trace-Id: trace_abc123def456\r\nX-Span-Id: span_789xyz012_payment_process\r\nX-Correlation-Id: corr_integration_test_001\r\nContent-Length: 233\r\n\r\n{\"service\":\"payment-service\",\"action\":\"process_payment\",\"payment_id\":\"pay_54321\",\"order_id\":\"ord_67890\",\"user_id\":\"usr_12345\",\"payment_data\":{\"amount\":149.99,\"currency\":\"USD\",\"method\":\"credit_card\",\"card_token\":\"tok_test_visa_1234\"}}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "1195",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"service\":\"payment-service\",\"action\":\"process_payment\",\"payment_id\":\"pay_54321\",\"order_id\":\"ord_67890\",\"user_id\":\"usr_12345\",\"payment_data\":{\"amount\":149.99,\"currency\":\"USD\",\"method\":\"credit_card\",\"card_token\":\"tok_test_visa_1234\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "233",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "payment-service",
"X-Span-Id": "span_789xyz012_payment_process",
"X-Trace-Id": "trace_abc123def456"
},
"json": {
"action": "process_payment",
"order_id": "ord_67890",
"payment_data": {
"amount": 149.99,
"card_token": "tok_test_visa_1234",
"currency": "USD",
"method": "credit_card"
},
"payment_id": "pay_54321",
"service": "payment-service",
"user_id": "usr_12345"
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 991,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 1195\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"service\\\":\\\"payment-service\\\",\\\"action\\\":\\\"process_payment\\\",\\\"payment_id\\\":\\\"pay_54321\\\",\\\"order_id\\\":\\\"ord_67890\\\",\\\"user_id\\\":\\\"usr_12345\\\",\\\"payment_data\\\":{\\\"amount\\\":149.99,\\\"currency\\\":\\\"USD\\\",\\\"method\\\":\\\"credit_card\\\",\\\"card_token\\\":\\\"tok_test_visa_1234\\\"}}\",\n \"files\": {},\n \"form\": {},\n \"headers\": {\n \"Accept\": \"application/json, text/plain, */*\",\n \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n \"Connection\": \"keep-alive\",\n \"Content-Length\": \"233\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\",\n \"X-Correlation-Id\": \"corr_integration_test_001\",\n \"X-Service\": \"payment-service\",\n \"X-Span-Id\": \"span_789xyz012_payment_process\",\n \"X-Trace-Id\": \"trace_abc123def456\"\n },\n \"json\": {\n \"action\": \"process_payment\",\n \"order_id\": \"ord_67890\",\n \"payment_data\": {\n \"amount\": 149.99,\n \"card_token\": \"tok_test_visa_1234\",\n \"currency\": \"USD\",\n \"method\": \"credit_card\"\n },\n \"payment_id\": \"pay_54321\",\n \"service\": \"payment-service\",\n \"user_id\": \"usr_12345\"\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [],
"captured_variables": {
"payment_approved": "true",
"payment_service_response": null,
"payment_status": "approved",
"payment_approval_time": "2025-10-19T10:28:39.235Z"
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
},
"scenarios_meta": {
"has_scenarios": true,
"executed_count": 1,
"evaluations": [
{
"index": 1,
"condition": "status_code == 200",
"matched": true,
"executed": true,
"branch": "then",
"assertions_added": 1,
"captures_added": 0
},
{
"index": 2,
"condition": "status_code == 402",
"matched": false,
"executed": false,
"branch": "none",
"assertions_added": 0,
"captures_added": 0
}
]
}
},
{
"step_id": "step-6-update-order-status",
"qualified_step_id": "microservices_integration_test::step-6-update-order-status",
"step_name": "Update Order Status",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "PUT",
"url": "/put",
"headers": {
"Content-Type": "application/json",
"X-Service": "order-service",
"X-Trace-Id": "trace_abc123def456",
"X-Span-Id": "span_789xyz012_order_update",
"X-Correlation-Id": "corr_integration_test_001"
},
"body": {
"service": "order-service",
"action": "update_order_status",
"order_id": "ord_67890",
"new_status": "confirmed",
"payment_id": "pay_54321",
"payment_status": "approved"
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/put",
"curl_command": "curl -X PUT -H 'Content-Type: application/json' -H 'X-Service: order-service' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_order_update' -H 'X-Correlation-Id: corr_integration_test_001' -d '{\"service\":\"order-service\",\"action\":\"update_order_status\",\"order_id\":\"ord_67890\",\"new_status\":\"confirmed\",\"payment_id\":\"pay_54321\",\"payment_status\":\"approved\"}' \"http://httpbin/put\"",
"raw_request": "PUT /put HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Service: order-service\r\nX-Trace-Id: trace_abc123def456\r\nX-Span-Id: span_789xyz012_order_update\r\nX-Correlation-Id: corr_integration_test_001\r\nContent-Length: 159\r\n\r\n{\"service\":\"order-service\",\"action\":\"update_order_status\",\"order_id\":\"ord_67890\",\"new_status\":\"confirmed\",\"payment_id\":\"pay_54321\",\"payment_status\":\"approved\"}",
"raw_url": "{{base_url}}/put"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "989",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"service\":\"order-service\",\"action\":\"update_order_status\",\"order_id\":\"ord_67890\",\"new_status\":\"confirmed\",\"payment_id\":\"pay_54321\",\"payment_status\":\"approved\"}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "159",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "order-service",
"X-Span-Id": "span_789xyz012_order_update",
"X-Trace-Id": "trace_abc123def456"
},
"json": {
"action": "update_order_status",
"new_status": "confirmed",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"payment_status": "approved",
"service": "order-service"
},
"origin": "172.18.0.3",
"url": "http://httpbin/put"
},
"size_bytes": 825,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 989\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"service\\\":\\\"order-service\\\",\\\"action\\\":\\\"update_order_status\\\",\\\"order_id\\\":\\\"ord_67890\\\",\\\"new_status\\\":\\\"confirmed\\\",\\\"payment_id\\\":\\\"pay_54321\\\",\\\"payment_status\\\":\\\"approved\\\"}\",\n \"files\": {},\n \"form\": {},\n \"headers\": {\n \"Accept\": \"application/json, text/plain, */*\",\n \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n \"Connection\": \"keep-alive\",\n \"Content-Length\": \"159\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\",\n \"X-Correlation-Id\": \"corr_integration_test_001\",\n \"X-Service\": \"order-service\",\n \"X-Span-Id\": \"span_789xyz012_order_update\",\n \"X-Trace-Id\": \"trace_abc123def456\"\n },\n \"json\": {\n \"action\": \"update_order_status\",\n \"new_status\": \"confirmed\",\n \"order_id\": \"ord_67890\",\n \"payment_id\": \"pay_54321\",\n \"payment_status\": \"approved\",\n \"service\": \"order-service\"\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/put\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"order_updated": null,
"final_order_status": "confirmed",
"order_update_time": "2025-10-19T10:28:39.237Z"
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
}
},
{
"step_id": "step-7-update-inventory-stock",
"qualified_step_id": "microservices_integration_test::step-7-update-inventory-stock",
"step_name": "Update Inventory Stock",
"status": "success",
"duration_ms": 3,
"request_details": {
"method": "PUT",
"url": "/put",
"headers": {
"Content-Type": "application/json",
"X-Service": "inventory-service",
"X-Trace-Id": "trace_abc123def456",
"X-Span-Id": "span_789xyz012_inventory_update",
"X-Correlation-Id": "corr_integration_test_001"
},
"body": {
"service": "inventory-service",
"action": "reduce_stock",
"product_id": "prod_98765",
"quantity": 2,
"order_id": "ord_67890"
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/put",
"curl_command": "curl -X PUT -H 'Content-Type: application/json' -H 'X-Service: inventory-service' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_inventory_update' -H 'X-Correlation-Id: corr_integration_test_001' -d '{\"service\":\"inventory-service\",\"action\":\"reduce_stock\",\"product_id\":\"prod_98765\",\"quantity\":2,\"order_id\":\"ord_67890\"}' \"http://httpbin/put\"",
"raw_request": "PUT /put HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Service: inventory-service\r\nX-Trace-Id: trace_abc123def456\r\nX-Span-Id: span_789xyz012_inventory_update\r\nX-Correlation-Id: corr_integration_test_001\r\nContent-Length: 117\r\n\r\n{\"service\":\"inventory-service\",\"action\":\"reduce_stock\",\"product_id\":\"prod_98765\",\"quantity\":2,\"order_id\":\"ord_67890\"}",
"raw_url": "{{base_url}}/put"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "900",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"service\":\"inventory-service\",\"action\":\"reduce_stock\",\"product_id\":\"prod_98765\",\"quantity\":2,\"order_id\":\"ord_67890\"}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "117",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "inventory-service",
"X-Span-Id": "span_789xyz012_inventory_update",
"X-Trace-Id": "trace_abc123def456"
},
"json": {
"action": "reduce_stock",
"order_id": "ord_67890",
"product_id": "prod_98765",
"quantity": 2,
"service": "inventory-service"
},
"origin": "172.18.0.3",
"url": "http://httpbin/put"
},
"size_bytes": 743,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 900\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"service\\\":\\\"inventory-service\\\",\\\"action\\\":\\\"reduce_stock\\\",\\\"product_id\\\":\\\"prod_98765\\\",\\\"quantity\\\":2,\\\"order_id\\\":\\\"ord_67890\\\"}\",\n \"files\": {},\n \"form\": {},\n \"headers\": {\n \"Accept\": \"application/json, text/plain, */*\",\n \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n \"Connection\": \"keep-alive\",\n \"Content-Length\": \"117\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\",\n \"X-Correlation-Id\": \"corr_integration_test_001\",\n \"X-Service\": \"inventory-service\",\n \"X-Span-Id\": \"span_789xyz012_inventory_update\",\n \"X-Trace-Id\": \"trace_abc123def456\"\n },\n \"json\": {\n \"action\": \"reduce_stock\",\n \"order_id\": \"ord_67890\",\n \"product_id\": \"prod_98765\",\n \"quantity\": 2,\n \"service\": \"inventory-service\"\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/put\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"stock_reduced": null,
"remaining_stock": "{{available_stock - test_transaction.quantity}}",
"inventory_update_time": "2025-10-19T10:28:39.241Z"
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
},
"scenarios_meta": {
"has_scenarios": true,
"executed_count": 1,
"evaluations": [
{
"index": 1,
"condition": "payment_approved == 'true'",
"matched": true,
"executed": true,
"branch": "then",
"assertions_added": 1,
"captures_added": 3
}
]
}
},
{
"step_id": "step-8-send-user-notification",
"qualified_step_id": "microservices_integration_test::step-8-send-user-notification",
"step_name": "Send User Notification",
"status": "success",
"duration_ms": 3,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json",
"X-Service": "notification-service",
"X-Trace-Id": "trace_abc123def456",
"X-Span-Id": "span_789xyz012_notification_send",
"X-Correlation-Id": "corr_integration_test_001"
},
"body": {
"service": "notification-service",
"action": "send_notification",
"user_id": "usr_12345",
"notification_type": "order_status",
"notification_data": {
"order_id": "ord_67890",
"status": "confirmed",
"message": "Your order has been confirmed!",
"payment_id": "pay_54321"
}
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Service: notification-service' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_notification_send' -H 'X-Correlation-Id: corr_integration_test_001' -d '{\"service\":\"notification-service\",\"action\":\"send_notification\",\"user_id\":\"usr_12345\",\"notification_type\":\"order_status\",\"notification_data\":{\"order_id\":\"ord_67890\",\"status\":\"confirmed\",\"message\":\"Your order has been confirmed!\",\"payment_id\":\"pay_54321\"}}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Service: notification-service\r\nX-Trace-Id: trace_abc123def456\r\nX-Span-Id: span_789xyz012_notification_send\r\nX-Correlation-Id: corr_integration_test_001\r\nContent-Length: 254\r\n\r\n{\"service\":\"notification-service\",\"action\":\"send_notification\",\"user_id\":\"usr_12345\",\"notification_type\":\"order_status\",\"notification_data\":{\"order_id\":\"ord_67890\",\"status\":\"confirmed\",\"message\":\"Your order has been confirmed!\",\"payment_id\":\"pay_54321\"}}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "1235",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"service\":\"notification-service\",\"action\":\"send_notification\",\"user_id\":\"usr_12345\",\"notification_type\":\"order_status\",\"notification_data\":{\"order_id\":\"ord_67890\",\"status\":\"confirmed\",\"message\":\"Your order has been confirmed!\",\"payment_id\":\"pay_54321\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "254",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "notification-service",
"X-Span-Id": "span_789xyz012_notification_send",
"X-Trace-Id": "trace_abc123def456"
},
"json": {
"action": "send_notification",
"notification_data": {
"message": "Your order has been confirmed!",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"status": "confirmed"
},
"notification_type": "order_status",
"service": "notification-service",
"user_id": "usr_12345"
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 1038,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 1235\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"service\\\":\\\"notification-service\\\",\\\"action\\\":\\\"send_notification\\\",\\\"user_id\\\":\\\"usr_12345\\\",\\\"notification_type\\\":\\\"order_status\\\",\\\"notification_data\\\":{\\\"order_id\\\":\\\"ord_67890\\\",\\\"status\\\":\\\"confirmed\\\",\\\"message\\\":\\\"Your order has been confirmed!\\\",\\\"payment_id\\\":\\\"pay_54321\\\"}}\",\n \"files\": {},\n \"form\": {},\n \"headers\": {\n \"Accept\": \"application/json, text/plain, */*\",\n \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n \"Connection\": \"keep-alive\",\n \"Content-Length\": \"254\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\",\n \"X-Correlation-Id\": \"corr_integration_test_001\",\n \"X-Service\": \"notification-service\",\n \"X-Span-Id\": \"span_789xyz012_notification_send\",\n \"X-Trace-Id\": \"trace_abc123def456\"\n },\n \"json\": {\n \"action\": \"send_notification\",\n \"notification_data\": {\n \"message\": \"Your order has been confirmed!\",\n \"order_id\": \"ord_67890\",\n \"payment_id\": \"pay_54321\",\n \"status\": \"confirmed\"\n },\n \"notification_type\": \"order_status\",\n \"service\": \"notification-service\",\n \"user_id\": \"usr_12345\"\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"notification_sent": null,
"notification_type": "order_confirmed",
"notification_time": "2025-10-19T10:28:39.244Z"
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
}
},
{
"step_id": "step-9-cross-service-data-consistency-check",
"qualified_step_id": "microservices_integration_test::step-9-cross-service-data-consistency-check",
"step_name": "Cross-Service Data Consistency Check",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "GET",
"url": "/get",
"headers": {
"X-Service": "data-consistency-check",
"X-Trace-Id": "trace_abc123def456",
"X-Span-Id": "span_789xyz012_consistency_check",
"X-Correlation-Id": "corr_integration_test_001"
},
"params": {
"check_type": "cross_service_consistency",
"order_id": "ord_67890",
"user_id": "usr_12345",
"payment_id": "pay_54321"
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/get",
"curl_command": "curl -X GET -H 'X-Service: data-consistency-check' -H 'X-Trace-Id: trace_abc123def456' -H 'X-Span-Id: span_789xyz012_consistency_check' -H 'X-Correlation-Id: corr_integration_test_001' \"http://httpbin/get\"",
"raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nX-Service: data-consistency-check\r\nX-Trace-Id: trace_abc123def456\r\nX-Span-Id: span_789xyz012_consistency_check\r\nX-Correlation-Id: corr_integration_test_001\r\n\r\n",
"raw_url": "{{base_url}}/get"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "722",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {
"check_type": "cross_service_consistency",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"user_id": "usr_12345"
},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service": "data-consistency-check",
"X-Span-Id": "span_789xyz012_consistency_check",
"X-Trace-Id": "trace_abc123def456"
},
"origin": "172.18.0.3",
"url": "http://httpbin/get?check_type=cross_service_consistency&order_id=ord_67890&user_id=usr_12345&payment_id=pay_54321"
},
"size_bytes": 606,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 722\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {\n \"check_type\": \"cross_service_consistency\",\n \"order_id\": \"ord_67890\",\n \"payment_id\": \"pay_54321\",\n \"user_id\": \"usr_12345\"\n },\n \"headers\": {\n \"Accept\": \"application/json, text/plain, */*\",\n \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n \"Connection\": \"keep-alive\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\",\n \"X-Correlation-Id\": \"corr_integration_test_001\",\n \"X-Service\": \"data-consistency-check\",\n \"X-Span-Id\": \"span_789xyz012_consistency_check\",\n \"X-Trace-Id\": \"trace_abc123def456\"\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/get?check_type=cross_service_consistency&order_id=ord_67890&user_id=usr_12345&payment_id=pay_54321\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"consistency_check": {
"user_service_status": "{{user_created ? 'user_exists' : 'user_missing'}}",
"order_service_status": "{{order_created && order_updated ? 'order_consistent' : 'order_inconsistent'}}",
"payment_service_status": "{{js: (variables.payment_approved || variables.payment_declined) ? 'payment_processed' : 'payment_pending'}}",
"inventory_service_status": "{{js: (variables.stock_reduced || variables.reservation_released) ? 'inventory_updated' : 'inventory_unchanged'}}",
"notification_service_status": "{{notification_sent ? 'notification_delivered' : 'notification_failed'}}"
},
"data_consistency_score": 0,
"all_services_consistent": false
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
}
},
{
"step_id": "step-10-simulate-service-failure-and-rollback",
"qualified_step_id": "microservices_integration_test::step-10-simulate-service-failure-and-rollback",
"step_name": "Simulate Service Failure and Rollback",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json",
"X-Service": "failure-simulation",
"X-Trace-Id": "trace_abc123def456_rollback",
"X-Span-Id": "span_789xyz012_rollback_test",
"X-Correlation-Id": "corr_integration_test_001_rollback"
},
"body": {
"simulation_type": "service_failure",
"failed_service": "notification-service",
"transaction_id": "ord_67890",
"rollback_required": true,
"affected_services": [
"order-service",
"payment-service",
"inventory-service"
]
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Service: failure-simulation' -H 'X-Trace-Id: trace_abc123def456_rollback' -H 'X-Span-Id: span_789xyz012_rollback_test' -H 'X-Correlation-Id: corr_integration_test_001_rollback' -d '{\"simulation_type\":\"service_failure\",\"failed_service\":\"notification-service\",\"transaction_id\":\"ord_67890\",\"rollback_required\":true,\"affected_services\":[\"order-service\",\"payment-service\",\"inventory-service\"]}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Service: failure-simulation\r\nX-Trace-Id: trace_abc123def456_rollback\r\nX-Span-Id: span_789xyz012_rollback_test\r\nX-Correlation-Id: corr_integration_test_001_rollback\r\nContent-Length: 207\r\n\r\n{\"simulation_type\":\"service_failure\",\"failed_service\":\"notification-service\",\"transaction_id\":\"ord_67890\",\"rollback_required\":true,\"affected_services\":[\"order-service\",\"payment-service\",\"inventory-service\"]}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "1129",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"simulation_type\":\"service_failure\",\"failed_service\":\"notification-service\",\"transaction_id\":\"ord_67890\",\"rollback_required\":true,\"affected_services\":[\"order-service\",\"payment-service\",\"inventory-service\"]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "207",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001_rollback",
"X-Service": "failure-simulation",
"X-Span-Id": "span_789xyz012_rollback_test",
"X-Trace-Id": "trace_abc123def456_rollback"
},
"json": {
"affected_services": [
"order-service",
"payment-service",
"inventory-service"
],
"failed_service": "notification-service",
"rollback_required": true,
"simulation_type": "service_failure",
"transaction_id": "ord_67890"
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 944,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 1129\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"simulation_type\\\":\\\"service_failure\\\",\\\"failed_service\\\":\\\"notification-service\\\",\\\"transaction_id\\\":\\\"ord_67890\\\",\\\"rollback_required\\\":true,\\\"affected_services\\\":[\\\"order-service\\\",\\\"payment-service\\\",\\\"inventory-service\\\"]}\",\n \"files\": {},\n \"form\": {},\n \"headers\": {\n \"Accept\": \"application/json, text/plain, */*\",\n \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n \"Connection\": \"keep-alive\",\n \"Content-Length\": \"207\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\",\n \"X-Correlation-Id\": \"corr_integration_test_001_rollback\",\n \"X-Service\": \"failure-simulation\",\n \"X-Span-Id\": \"span_789xyz012_rollback_test\",\n \"X-Trace-Id\": \"trace_abc123def456_rollback\"\n },\n \"json\": {\n \"affected_services\": [\n \"order-service\",\n \"payment-service\",\n \"inventory-service\"\n ],\n \"failed_service\": \"notification-service\",\n \"rollback_required\": true,\n \"simulation_type\": \"service_failure\",\n \"transaction_id\": \"ord_67890\"\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [],
"captured_variables": {
"rollback_initiated": null,
"rollback_services": [
{
"service": "notification-service",
"action": "retry_notification",
"status": "retry_scheduled"
},
{
"service": "order-service",
"action": "maintain_status",
"status": "no_rollback_needed"
},
{
"service": "payment-service",
"action": "maintain_charge",
"status": "no_rollback_needed"
},
{
"service": "inventory-service",
"action": "maintain_stock_reduction",
"status": "no_rollback_needed"
}
]
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
},
"scenarios_meta": {
"has_scenarios": true,
"executed_count": 1,
"evaluations": [
{
"index": 1,
"condition": "status_code == `200`",
"matched": true,
"executed": true,
"branch": "then",
"assertions_added": 0,
"captures_added": 2
},
{
"index": 2,
"condition": "status_code >= `400`",
"matched": false,
"executed": false,
"branch": "none",
"assertions_added": 0,
"captures_added": 0
}
]
}
},
{
"step_id": "step-11-post-transaction-health-check",
"qualified_step_id": "microservices_integration_test::step-11-post-transaction-health-check",
"step_name": "Post-Transaction Health Check",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "GET",
"url": "/get",
"headers": {
"X-Service-Check": "post_transaction_health",
"X-Trace-Id": "trace_abc123def456_post_health",
"X-Correlation-Id": "corr_integration_test_001"
},
"params": {
"health_check_type": "post_transaction",
"transaction_id": "ord_67890"
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/get",
"curl_command": "curl -X GET -H 'X-Service-Check: post_transaction_health' -H 'X-Trace-Id: trace_abc123def456_post_health' -H 'X-Correlation-Id: corr_integration_test_001' \"http://httpbin/get\"",
"raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nX-Service-Check: post_transaction_health\r\nX-Trace-Id: trace_abc123def456_post_health\r\nX-Correlation-Id: corr_integration_test_001\r\n\r\n",
"raw_url": "{{base_url}}/get"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "595",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {
"health_check_type": "post_transaction",
"transaction_id": "ord_67890"
},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Correlation-Id": "corr_integration_test_001",
"X-Service-Check": "post_transaction_health",
"X-Trace-Id": "trace_abc123def456_post_health"
},
"origin": "172.18.0.3",
"url": "http://httpbin/get?health_check_type=post_transaction&transaction_id=ord_67890"
},
"size_bytes": 500,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 595\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {\n \"health_check_type\": \"post_transaction\",\n \"transaction_id\": \"ord_67890\"\n },\n \"headers\": {\n \"Accept\": \"application/json, text/plain, */*\",\n \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n \"Connection\": \"keep-alive\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\",\n \"X-Correlation-Id\": \"corr_integration_test_001\",\n \"X-Service-Check\": \"post_transaction_health\",\n \"X-Trace-Id\": \"trace_abc123def456_post_health\"\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/get?health_check_type=post_transaction&transaction_id=ord_67890\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"post_transaction_health": {
"all_services_responsive": "true",
"no_service_degradation": "true",
"transaction_cleanup_complete": "true"
},
"health_check_post_time": "2025-10-19T10:28:39.250Z"
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
}
},
{
"step_id": "step-12-integration-test-summary-report",
"qualified_step_id": "microservices_integration_test::step-12-integration-test-summary-report",
"step_name": "Integration Test Summary Report",
"status": "success",
"duration_ms": 4,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json",
"X-Test-Report": "microservices_integration",
"X-Trace-Id": "trace_abc123def456_final_report"
},
"body": {
"report_type": "integration_test_summary",
"transaction_details": {
"order_id": "ord_67890",
"user_id": "usr_12345",
"payment_id": "pay_54321",
"product_id": "prod_98765"
},
"service_interactions": {
"total_services": 5,
"services_involved": [
"user-service",
"order-service",
"payment-service",
"inventory-service",
"notification-service"
],
"successful_interactions": 0
},
"transaction_flow": {
"user_creation": false,
"inventory_check": false,
"order_creation": false,
"payment_processing": true,
"inventory_update": false,
"notification_delivery": false
},
"consistency_validation": {
"data_consistency_score": 0,
"all_services_consistent": false
},
"failure_handling": {
"rollback_tested": false,
"failure_recovery": "not_tested"
}
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Test-Report: microservices_integration' -H 'X-Trace-Id: trace_abc123def456_final_report' -d '{\"report_type\":\"integration_test_summary\",\"transaction_details\":{\"order_id\":\"ord_67890\",\"user_id\":\"usr_12345\",\"payment_id\":\"pay_54321\",\"product_id\":\"prod_98765\"},\"service_interactions\":{\"total_services\":5,\"services_involved\":[\"user-service\",\"order-service\",\"payment-service\",\"inventory-service\",\"notification-service\"],\"successful_interactions\":0},\"transaction_flow\":{\"user_creation\":false,\"inventory_check\":false,\"order_creation\":false,\"payment_processing\":true,\"inventory_update\":false,\"notification_delivery\":false},\"consistency_validation\":{\"data_consistency_score\":0,\"all_services_consistent\":false},\"failure_handling\":{\"rollback_tested\":false,\"failure_recovery\":\"not_tested\"}}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Test-Report: microservices_integration\r\nX-Trace-Id: trace_abc123def456_final_report\r\nContent-Length: 682\r\n\r\n{\"report_type\":\"integration_test_summary\",\"transaction_details\":{\"order_id\":\"ord_67890\",\"user_id\":\"usr_12345\",\"payment_id\":\"pay_54321\",\"product_id\":\"prod_98765\"},\"service_interactions\":{\"total_services\":5,\"services_involved\":[\"user-service\",\"order-service\",\"payment-service\",\"inventory-service\",\"notification-service\"],\"successful_interactions\":0},\"transaction_flow\":{\"user_creation\":false,\"inventory_check\":false,\"order_creation\":false,\"payment_processing\":true,\"inventory_update\":false,\"notification_delivery\":false},\"consistency_validation\":{\"data_consistency_score\":0,\"all_services_consistent\":false},\"failure_handling\":{\"rollback_tested\":false,\"failure_recovery\":\"not_tested\"}}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "2235",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"report_type\":\"integration_test_summary\",\"transaction_details\":{\"order_id\":\"ord_67890\",\"user_id\":\"usr_12345\",\"payment_id\":\"pay_54321\",\"product_id\":\"prod_98765\"},\"service_interactions\":{\"total_services\":5,\"services_involved\":[\"user-service\",\"order-service\",\"payment-service\",\"inventory-service\",\"notification-service\"],\"successful_interactions\":0},\"transaction_flow\":{\"user_creation\":false,\"inventory_check\":false,\"order_creation\":false,\"payment_processing\":true,\"inventory_update\":false,\"notification_delivery\":false},\"consistency_validation\":{\"data_consistency_score\":0,\"all_services_consistent\":false},\"failure_handling\":{\"rollback_tested\":false,\"failure_recovery\":\"not_tested\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "682",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1",
"X-Test-Report": "microservices_integration",
"X-Trace-Id": "trace_abc123def456_final_report"
},
"json": {
"consistency_validation": {
"all_services_consistent": false,
"data_consistency_score": 0
},
"failure_handling": {
"failure_recovery": "not_tested",
"rollback_tested": false
},
"report_type": "integration_test_summary",
"service_interactions": {
"services_involved": [
"user-service",
"order-service",
"payment-service",
"inventory-service",
"notification-service"
],
"successful_interactions": 0,
"total_services": 5
},
"transaction_details": {
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"user_id": "usr_12345"
},
"transaction_flow": {
"inventory_check": false,
"inventory_update": false,
"notification_delivery": false,
"order_creation": false,
"payment_processing": true,
"user_creation": false
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 1856,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 2235\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"report_type\\\":\\\"integration_test_summary\\\",\\\"transaction_details\\\":{\\\"order_id\\\":\\\"ord_67890\\\",\\\"user_id\\\":\\\"usr_12345\\\",\\\"payment_id\\\":\\\"pay_54321\\\",\\\"product_id\\\":\\\"prod_98765\\\"},\\\"service_interactions\\\":{\\\"total_services\\\":5,\\\"services_involved\\\":[\\\"user-service\\\",\\\"order-service\\\",\\\"payment-service\\\",\\\"inventory-service\\\",\\\"notification-service\\\"],\\\"successful_interactions\\\":0},\\\"transaction_flow\\\":{\\\"user_creation\\\":false,\\\"inventory_check\\\":false,\\\"order_creation\\\":false,\\\"payment_processing\\\":true,\\\"inventory_update\\\":false,\\\"notification_delivery\\\":false},\\\"consistency_validation\\\":{\\\"data_consistency_score\\\":0,\\\"all_services_consistent\\\":false},\\\"failure_handling\\\":{\\\"rollback_tested\\\":false,\\\"failure_recovery\\\":\\\"not_tested\\\"}}\",\n \"files\": {},\n \"form\": {},\n \"headers\": {\n \"Accept\": \"application/json, text/plain, */*\",\n \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n \"Connection\": \"keep-alive\",\n \"Content-Length\": \"682\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\",\n \"X-Test-Report\": \"microservices_integration\",\n \"X-Trace-Id\": \"trace_abc123def456_final_report\"\n },\n \"json\": {\n \"consistency_validation\": {\n \"all_services_consistent\": false,\n \"data_consistency_score\": 0\n },\n \"failure_handling\": {\n \"failure_recovery\": \"not_tested\",\n \"rollback_tested\": false\n },\n \"report_type\": \"integration_test_summary\",\n \"service_interactions\": {\n \"services_involved\": [\n \"user-service\",\n \"order-service\",\n \"payment-service\",\n \"inventory-service\",\n \"notification-service\"\n ],\n \"successful_interactions\": 0,\n \"total_services\": 5\n },\n \"transaction_details\": {\n \"order_id\": \"ord_67890\",\n \"payment_id\": \"pay_54321\",\n \"product_id\": \"prod_98765\",\n \"user_id\": \"usr_12345\"\n },\n \"transaction_flow\": {\n \"inventory_check\": false,\n \"inventory_update\": false,\n \"notification_delivery\": false,\n \"order_creation\": false,\n \"payment_processing\": true,\n \"user_creation\": false\n }\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [],
"captured_variables": {
"service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
]
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
}
}
],
"variables_captured": {},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_transaction": {
"user_id": "usr_12345",
"order_id": "ord_67890",
"payment_id": "pay_54321",
"product_id": "prod_98765",
"quantity": 2,
"amount": 149.99,
"currency": "USD"
},
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward"
},
"suite_yaml_content": "# Teste de Integração de Microserviços\n# Baseado no exemplo \"Microservices Integration\" do YAML_EXAMPLES.md\nsuite_name: \"Teste de Integração de Microserviços\"\nnode_id: \"microservices_integration_test\"\ndescription: \"Testa comunicação entre microserviços, propagação de dados, e coordenação de transações distribuídas\"\npriority: \"high\"\n\nbase_url: \"{{httpbin_url}}\"\n\nexports:\n - service_health_status\n - integration_results\n - transaction_trace\n - service_dependencies\n - payment_approved\n - payment_declined\n\nvariables:\n # Configuração dos microserviços simulados\n services:\n user_service:\n name: \"user-service\"\n port: 8001\n health_endpoint: \"/health\"\n base_path: \"/users\"\n\n order_service:\n name: \"order-service\"\n port: 8002\n health_endpoint: \"/health\"\n base_path: \"/orders\"\n\n payment_service:\n name: \"payment-service\"\n port: 8003\n health_endpoint: \"/health\"\n base_path: \"/payments\"\n\n notification_service:\n name: \"notification-service\"\n port: 8004\n health_endpoint: \"/health\"\n base_path: \"/notifications\"\n\n inventory_service:\n name: \"inventory-service\"\n port: 8005\n health_endpoint: \"/health\"\n base_path: \"/inventory\"\n\n # Dados de teste para transação distribuída\n test_transaction:\n user_id: \"usr_12345\"\n order_id: \"ord_67890\"\n payment_id: \"pay_54321\"\n product_id: \"prod_98765\"\n quantity: 2\n amount: 149.99\n currency: \"USD\"\n\n # Headers de rastreamento distribuído\n tracing_headers:\n trace_id: \"trace_abc123def456\"\n span_id: \"span_789xyz012\"\n correlation_id: \"corr_integration_test_001\"\n\nsteps:\n # Passo 1: Health Check de Todos os Serviços\n - name: \"Check All Services Health\"\n request:\n method: GET\n url: \"/get\"\n headers:\n X-Service-Check: \"health_check_all\"\n X-Trace-Id: \"{{tracing_headers.trace_id}}\"\n X-Correlation-Id: \"{{tracing_headers.correlation_id}}\"\n params:\n service_check: \"health\"\n services: \"user,order,payment,notification,inventory\"\n\n assert:\n status_code: 200\n args.service_check:\n equals: \"health\"\n\n capture:\n all_services_health:\n user_service: \"healthy\"\n order_service: \"healthy\"\n payment_service: \"healthy\"\n notification_service: \"healthy\"\n inventory_service: \"healthy\"\n health_check_timestamp: \"{{js: new Date().toISOString()}}\"\n all_services_up: \"true\"\n\n # Passo 2: Criar Usuário no User Service\n - name: \"Create User in User Service\"\n depends:\n - node_id: \"microservices_integration_test\"\n step: \"Check All Services Health\"\n\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n X-Service: \"user-service\"\n X-Trace-Id: \"{{tracing_headers.trace_id}}\"\n X-Span-Id: \"{{tracing_headers.span_id}}_user_create\"\n X-Correlation-Id: \"{{tracing_headers.correlation_id}}\"\n body:\n service: \"user-service\"\n action: \"create_user\"\n user_id: \"{{test_transaction.user_id}}\"\n user_data:\n email: \"test@example.com\"\n name: \"Test User\"\n status: \"active\"\n\n assert:\n status_code: 200\n json.service:\n equals: \"user-service\"\n json.action:\n equals: \"create_user\"\n\n capture:\n user_created: \"true\"\n user_service_response: \"{{json}}\"\n user_creation_time: \"{{js: new Date().toISOString()}}\"\n\n # Passo 3: Verificar Estoque no Inventory Service\n - name: \"Check Product Inventory\"\n depends:\n - node_id: \"microservices_integration_test\"\n step: \"Create User in User Service\"\n\n request:\n method: GET\n url: \"/get\"\n headers:\n X-Service: \"inventory-service\"\n X-Trace-Id: \"{{tracing_headers.trace_id}}\"\n X-Span-Id: \"{{tracing_headers.span_id}}_inventory_check\"\n X-Correlation-Id: \"{{tracing_headers.correlation_id}}\"\n params:\n service: \"inventory-service\"\n action: \"check_stock\"\n product_id: \"{{test_transaction.product_id}}\"\n requested_quantity: \"{{test_transaction.quantity}}\"\n\n assert:\n status_code: 200\n args.service:\n equals: \"inventory-service\"\n\n capture:\n inventory_available: \"true\"\n available_stock: 100\n reserved_quantity: \"{{test_transaction.quantity}}\"\n inventory_check_time: \"{{js: new Date().toISOString()}}\"\n\n # Passo 4: Criar Pedido no Order Service\n - name: \"Create Order in Order Service\"\n depends:\n - node_id: \"microservices_integration_test\"\n step: \"Check Product Inventory\"\n\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n X-Service: \"order-service\"\n X-Trace-Id: \"{{tracing_headers.trace_id}}\"\n X-Span-Id: \"{{tracing_headers.span_id}}_order_create\"\n X-Correlation-Id: \"{{tracing_headers.correlation_id}}\"\n body:\n service: \"order-service\"\n action: \"create_order\"\n order_id: \"{{test_transaction.order_id}}\"\n user_id: \"{{test_transaction.user_id}}\"\n order_data:\n product_id: \"{{test_transaction.product_id}}\"\n quantity: \"{{test_transaction.quantity}}\"\n amount: \"{{test_transaction.amount}}\"\n currency: \"{{test_transaction.currency}}\"\n status: \"pending_payment\"\n\n assert:\n status_code: 200\n json.action:\n equals: \"create_order\"\n json.order_id:\n equals: \"{{test_transaction.order_id}}\"\n\n capture:\n order_created: \"true\"\n order_service_response: \"{{json}}\"\n order_creation_time: \"{{js: new Date().toISOString()}}\"\n order_status: \"pending_payment\"\n\n # Passo 5: Processar Pagamento no Payment Service\n - name: \"Process Payment\"\n depends:\n - node_id: \"microservices_integration_test\"\n step: \"Create Order in Order Service\"\n\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n X-Service: \"payment-service\"\n X-Trace-Id: \"{{tracing_headers.trace_id}}\"\n X-Span-Id: \"{{tracing_headers.span_id}}_payment_process\"\n X-Correlation-Id: \"{{tracing_headers.correlation_id}}\"\n body:\n service: \"payment-service\"\n action: \"process_payment\"\n payment_id: \"{{test_transaction.payment_id}}\"\n order_id: \"{{test_transaction.order_id}}\"\n user_id: \"{{test_transaction.user_id}}\"\n payment_data:\n amount: \"{{test_transaction.amount}}\"\n currency: \"{{test_transaction.currency}}\"\n method: \"credit_card\"\n card_token: \"tok_test_visa_1234\"\n\n scenarios:\n # Cenário A: Pagamento aprovado\n - condition: \"status_code == 200\"\n then:\n assert:\n status_code: 200\n json.action:\n equals: \"process_payment\"\n json.payment_id:\n equals: \"{{test_transaction.payment_id}}\"\n\n # Cenário B: Pagamento recusado\n - condition: \"status_code == 402\"\n then:\n capture:\n payment_declined: \"true\"\n payment_status: \"declined\"\n payment_error: \"insufficient_funds\"\n\n capture:\n payment_approved: \"{{js: status_code == 200 ? 'true' : null}}\"\n payment_service_response: \"response_data\"\n payment_status: \"{{js: status_code == 200 ? 'approved' : (status_code == 402 ? 'declined' : 'unknown')}}\"\n payment_approval_time: \"{{js: status_code == 200 ? new Date().toISOString() : null}}\"\n\n # Passo 6: Atualizar Status do Pedido\n - name: \"Update Order Status\"\n depends:\n - node_id: \"microservices_integration_test\"\n step: \"Process Payment\"\n\n request:\n method: PUT\n url: \"/put\"\n headers:\n Content-Type: \"application/json\"\n X-Service: \"order-service\"\n X-Trace-Id: \"{{tracing_headers.trace_id}}\"\n X-Span-Id: \"{{tracing_headers.span_id}}_order_update\"\n X-Correlation-Id: \"{{tracing_headers.correlation_id}}\"\n body:\n service: \"order-service\"\n action: \"update_order_status\"\n order_id: \"{{test_transaction.order_id}}\"\n new_status: \"{{js: variables.payment_approved ? 'confirmed' : 'payment_failed'}}\"\n payment_id: \"{{test_transaction.payment_id}}\"\n payment_status: \"{{payment_status}}\"\n\n assert:\n status_code: 200\n json.action:\n equals: \"update_order_status\"\n\n capture:\n order_updated: \"true\"\n final_order_status: \"{{js: variables.payment_approved ? 'confirmed' : 'payment_failed'}}\"\n order_update_time: \"{{js: new Date().toISOString()}}\"\n\n # Passo 7: Atualizar Inventário (se pagamento aprovado)\n - name: \"Update Inventory Stock\"\n depends:\n - node_id: \"microservices_integration_test\"\n step: \"Update Order Status\"\n\n scenarios:\n # Cenário A: Reduzir estoque (pagamento aprovado)\n - condition: \"payment_approved == 'true'\"\n then:\n request:\n method: PUT\n url: \"/put\"\n headers:\n Content-Type: \"application/json\"\n X-Service: \"inventory-service\"\n X-Trace-Id: \"{{tracing_headers.trace_id}}\"\n X-Span-Id: \"{{tracing_headers.span_id}}_inventory_update\"\n X-Correlation-Id: \"{{tracing_headers.correlation_id}}\"\n body:\n service: \"inventory-service\"\n action: \"reduce_stock\"\n product_id: \"{{test_transaction.product_id}}\"\n quantity: \"{{test_transaction.quantity}}\"\n order_id: \"{{test_transaction.order_id}}\"\n\n assert:\n status_code: 200\n\n capture:\n stock_reduced: \"true\"\n remaining_stock: \"{{available_stock - test_transaction.quantity}}\"\n inventory_update_time: \"{{js: new Date().toISOString()}}\"\n\n # Cenário B: Liberar reserva (pagamento recusado)\n - condition: \"payment_declined == 'true'\"\n then:\n request:\n method: PUT\n url: \"/put\"\n headers:\n Content-Type: \"application/json\"\n X-Service: \"inventory-service\"\n X-Trace-Id: \"{{tracing_headers.trace_id}}\"\n X-Span-Id: \"{{tracing_headers.span_id}}_inventory_release\"\n X-Correlation-Id: \"{{tracing_headers.correlation_id}}\"\n body:\n service: \"inventory-service\"\n action: \"release_reservation\"\n product_id: \"{{test_transaction.product_id}}\"\n quantity: \"{{test_transaction.quantity}}\"\n order_id: \"{{test_transaction.order_id}}\"\n\n capture:\n reservation_released: \"true\"\n inventory_rollback_time: \"{{js: new Date().toISOString()}}\"\n\n # Cenário C: Nenhum processamento de pagamento (fallback)\n - condition: \"payment_approved != 'true' && payment_declined != 'true'\"\n then:\n capture:\n inventory_skipped: \"true\"\n skip_reason: \"'payment_not_processed'\"\n inventory_skip_time: \"{{js: new Date().toISOString()}}\"\n\n # Passo 8: Enviar Notificação\n - name: \"Send User Notification\"\n depends:\n - node_id: \"microservices_integration_test\"\n step: \"Update Inventory Stock\"\n\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n X-Service: \"notification-service\"\n X-Trace-Id: \"{{tracing_headers.trace_id}}\"\n X-Span-Id: \"{{tracing_headers.span_id}}_notification_send\"\n X-Correlation-Id: \"{{tracing_headers.correlation_id}}\"\n body:\n service: \"notification-service\"\n action: \"send_notification\"\n user_id: \"{{test_transaction.user_id}}\"\n notification_type: \"order_status\"\n notification_data:\n order_id: \"{{test_transaction.order_id}}\"\n status: \"{{final_order_status}}\"\n message: \"{{js: variables.payment_approved ? 'Your order has been confirmed!' : 'Payment failed for your order.'}}\"\n payment_id: \"{{test_transaction.payment_id}}\"\n\n assert:\n status_code: 200\n json.action:\n equals: \"send_notification\"\n\n capture:\n notification_sent: \"true\"\n notification_type: \"{{js: variables.payment_approved ? 'order_confirmed' : 'payment_failed'}}\"\n notification_time: \"{{js: new Date().toISOString()}}\"\n\n # Passo 9: Verificar Consistência dos Dados Entre Serviços\n - name: \"Cross-Service Data Consistency Check\"\n depends:\n - node_id: \"microservices_integration_test\"\n step: \"Send User Notification\"\n\n request:\n method: GET\n url: \"/get\"\n headers:\n X-Service: \"data-consistency-check\"\n X-Trace-Id: \"{{tracing_headers.trace_id}}\"\n X-Span-Id: \"{{tracing_headers.span_id}}_consistency_check\"\n X-Correlation-Id: \"{{tracing_headers.correlation_id}}\"\n params:\n check_type: \"cross_service_consistency\"\n order_id: \"{{test_transaction.order_id}}\"\n user_id: \"{{test_transaction.user_id}}\"\n payment_id: \"{{test_transaction.payment_id}}\"\n\n assert:\n status_code: 200\n\n capture:\n consistency_check:\n user_service_status: \"{{user_created ? 'user_exists' : 'user_missing'}}\"\n order_service_status: \"{{order_created && order_updated ? 'order_consistent' : 'order_inconsistent'}}\"\n payment_service_status: \"{{js: (variables.payment_approved || variables.payment_declined) ? 'payment_processed' : 'payment_pending'}}\"\n inventory_service_status: \"{{js: (variables.stock_reduced || variables.reservation_released) ? 'inventory_updated' : 'inventory_unchanged'}}\"\n notification_service_status: \"{{notification_sent ? 'notification_delivered' : 'notification_failed'}}\"\n\n data_consistency_score: \"{{js: 0}}\"\n all_services_consistent: false\n\n # Passo 10: Teste de Rollback (Simulação de Falha)\n - name: \"Simulate Service Failure and Rollback\"\n depends:\n - node_id: \"microservices_integration_test\"\n step: \"Cross-Service Data Consistency Check\"\n\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n X-Service: \"failure-simulation\"\n X-Trace-Id: \"{{tracing_headers.trace_id}}_rollback\"\n X-Span-Id: \"{{tracing_headers.span_id}}_rollback_test\"\n X-Correlation-Id: \"{{tracing_headers.correlation_id}}_rollback\"\n body:\n simulation_type: \"service_failure\"\n failed_service: \"notification-service\"\n transaction_id: \"{{test_transaction.order_id}}\"\n rollback_required: true\n affected_services: [\"order-service\", \"payment-service\", \"inventory-service\"]\n\n scenarios:\n # Cenário A: Rollback bem-sucedido\n - condition: \"status_code == `200`\"\n then:\n capture:\n rollback_initiated: \"true\"\n rollback_services:\n - service: \"notification-service\"\n action: \"retry_notification\"\n status: \"retry_scheduled\"\n - service: \"order-service\"\n action: \"maintain_status\"\n status: \"no_rollback_needed\"\n - service: \"payment-service\"\n action: \"maintain_charge\"\n status: \"no_rollback_needed\"\n - service: \"inventory-service\"\n action: \"maintain_stock_reduction\"\n status: \"no_rollback_needed\"\n\n # Cenário B: Rollback parcial ou falhado\n - condition: \"status_code >= `400`\"\n then:\n capture:\n rollback_failed: \"true\"\n manual_intervention_required: \"true\"\n\n # Passo 11: Health Check Pós-Transação\n - name: \"Post-Transaction Health Check\"\n depends:\n - node_id: \"microservices_integration_test\"\n step: \"Simulate Service Failure and Rollback\"\n\n request:\n method: GET\n url: \"/get\"\n headers:\n X-Service-Check: \"post_transaction_health\"\n X-Trace-Id: \"{{tracing_headers.trace_id}}_post_health\"\n X-Correlation-Id: \"{{tracing_headers.correlation_id}}\"\n params:\n health_check_type: \"post_transaction\"\n transaction_id: \"{{test_transaction.order_id}}\"\n\n assert:\n status_code: 200\n\n capture:\n post_transaction_health:\n all_services_responsive: \"true\"\n no_service_degradation: \"true\"\n transaction_cleanup_complete: \"true\"\n health_check_post_time: \"{{js: new Date().toISOString()}}\"\n\n # Passo 12: Relatório Final de Integração\n - name: \"Integration Test Summary Report\"\n depends:\n - node_id: \"microservices_integration_test\"\n step: \"Post-Transaction Health Check\"\n\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n X-Test-Report: \"microservices_integration\"\n X-Trace-Id: \"{{tracing_headers.trace_id}}_final_report\"\n body:\n report_type: \"integration_test_summary\"\n transaction_details:\n order_id: \"{{test_transaction.order_id}}\"\n user_id: \"{{test_transaction.user_id}}\"\n payment_id: \"{{test_transaction.payment_id}}\"\n product_id: \"{{test_transaction.product_id}}\"\n\n service_interactions:\n total_services: 5\n services_involved: [\"user-service\", \"order-service\", \"payment-service\", \"inventory-service\", \"notification-service\"]\n successful_interactions: \"{{data_consistency_score}}\"\n\n transaction_flow:\n user_creation: \"{{js: Boolean(variables.user_created)}}\"\n inventory_check: \"{{js: Boolean(variables.inventory_available)}}\"\n order_creation: \"{{js: Boolean(variables.order_created)}}\"\n payment_processing: \"{{js: Boolean(variables.payment_approved || variables.payment_declined)}}\"\n inventory_update: \"{{js: Boolean(variables.stock_reduced || variables.reservation_released)}}\"\n notification_delivery: \"{{js: Boolean(variables.notification_sent)}}\"\n\n consistency_validation:\n data_consistency_score: \"{{data_consistency_score}}\"\n all_services_consistent: \"{{all_services_consistent}}\"\n\n failure_handling:\n rollback_tested: \"{{js: Boolean(variables.rollback_initiated || variables.rollback_failed)}}\"\n failure_recovery: \"{{js: variables.rollback_initiated ? 'successful' : variables.rollback_failed ? 'failed' : 'not_tested'}}\"\n\n capture:\n service_health_status:\n pre_transaction: \"{{all_services_up}}\"\n post_transaction: \"{{post_transaction_health}}\"\n degradation_detected: \"false\"\n\n integration_results:\n transaction_success: \"{{payment_approved && order_updated && notification_sent}}\"\n services_coordination: \"successful\"\n data_propagation: \"{{all_services_consistent ? 'complete' : 'partial'}}\"\n error_handling: \"{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}\"\n\n transaction_trace:\n trace_id: \"{{tracing_headers.trace_id}}\"\n correlation_id: \"{{tracing_headers.correlation_id}}\"\n total_steps: 12\n execution_time: \"{{js: Math.floor(Math.random() * 5000) + 2000}}ms\" # Simula 2-7 segundos\n service_calls: 11\n cross_service_calls: 6\n\n service_dependencies:\n - service: \"user-service\"\n dependencies: []\n dependents: [\"order-service\", \"notification-service\"]\n - service: \"inventory-service\"\n dependencies: []\n dependents: [\"order-service\"]\n - service: \"order-service\"\n dependencies: [\"user-service\", \"inventory-service\"]\n dependents: [\"payment-service\", \"notification-service\"]\n - service: \"payment-service\"\n dependencies: [\"order-service\"]\n dependents: [\"order-service\", \"inventory-service\"]\n - service: \"notification-service\"\n dependencies: [\"user-service\", \"order-service\"]\n dependents: []\n"
}