✅
Advanced Faker.js Integration Test Suite
/app/tests/faker-advanced-integration-test.yaml
medium
7 Steps
Duration: 14ms
Success Rate: 100%
✅
Successful Steps
7
100% success rate
❌
Failed Steps
0
0% of total
⏭️
Skipped Steps
0
0% of total
🔗
HTTP Requests
7
100% requests
🔄
Iterações
0
0 steps com iterações
📊 Execution Timeline
| # | Status | Step Name | Type | Duration | Started At | Details |
|---|---|---|---|---|---|---|
| 1 | ✅ | Test person data generation POST /post | request | 3ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 2 | ✅ | Test address and location data POST /post | request | 1ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 3 | ✅ | Test business and finance data POST /post | request | 1ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 4 | ✅ | Test internet and technology data POST /post | request | 1ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 5 | ✅ | Test date and time variations POST /post | request | 1ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 6 | ✅ | Test arrays and complex selections POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 7 | ✅ | Test locale-specific generation POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
🌐 HTTP Requests Debug Info
✅
Test person data generation
Step #1
3ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"person":{"full_name":"Jeffery Romaguera","first_name":"Lupe","last_name":"Welch","email":"Kylie.Hayes39@gmail.com","phone":"1-527-360-8784 x3717","birth_date":"1956-01-14T10:24:26.412Z","gender":"Omnigender","job_title":"Senior Web Agent","bio":"Vulgaris accommodo tolero carcer talus tristis."}}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"person": {
"full_name": "Jeffery Romaguera",
"first_name": "Lupe",
"last_name": "Welch",
"email": "Kylie.Hayes39@gmail.com",
"phone": "1-527-360-8784 x3717",
"birth_date": "1956-01-14T10:24:26.412Z",
"gender": "Omnigender",
"job_title": "Senior Web Agent",
"bio": "Vulgaris accommodo tolero carcer talus tristis."
}
}📥 Response
Status Code: 200
Duration: 3ms
Size: 967 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: 1153
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"person\":{\"full_name\":\"Jeffery Romaguera\",\"first_name\":\"Lupe\",\"last_name\":\"Welch\",\"email\":\"Kylie.Hayes39@gmail.com\",\"phone\":\"1-527-360-8784 x3717\",\"birth_date\":\"1956-01-14T10:24:26.412Z\",\"gender\":\"Omnigender\",\"job_title\":\"Senior Web Agent\",\"bio\":\"Vulgaris accommodo tolero carcer talus tristis.\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "298",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"person": {
"bio": "Vulgaris accommodo tolero carcer talus tristis.",
"birth_date": "1956-01-14T10:24:26.412Z",
"email": "Kylie.Hayes39@gmail.com",
"first_name": "Lupe",
"full_name": "Jeffery Romaguera",
"gender": "Omnigender",
"job_title": "Senior Web Agent",
"last_name": "Welch",
"phone": "1-527-360-8784 x3717"
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
3
assertions
✅
Passed
3
assertions
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
✓
body.json.person.email.contains
PASSED
Condição
body.json.person.email.contains equals @
Comparação de Valores
Esperado expected
@
Recebido actual
Kylie.Hayes39@gmail.com
✓
body.json.person.phone.exists
PASSED
✓ Match
Condição
body.json.person.phone.exists equals true
Assertion passou conforme esperado
Valor recebido: true
Captured Variables
{
"generated_email": "Kylie.Hayes39@gmail.com",
"generated_name": "Jeffery Romaguera"
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
} ✅
Test address and location data
Step #2
1ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"address":{"street":"346 Castle Lane","city":"Coral Springs","state":"Kentucky","country":"Iceland","zip_code":"09956-2969","latitude":29.8942,"longitude":-139.1941,"timezone":"EST"}}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"address": {
"street": "346 Castle Lane",
"city": "Coral Springs",
"state": "Kentucky",
"country": "Iceland",
"zip_code": "09956-2969",
"latitude": 29.8942,
"longitude": -139.1941,
"timezone": "EST"
}
}📥 Response
Status Code: 200
Duration: 1ms
Size: 731 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: 908
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"address\":{\"street\":\"346 Castle Lane\",\"city\":\"Coral Springs\",\"state\":\"Kentucky\",\"country\":\"Iceland\",\"zip_code\":\"09956-2969\",\"latitude\":29.8942,\"longitude\":-139.1941,\"timezone\":\"EST\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "184",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"address": {
"city": "Coral Springs",
"country": "Iceland",
"latitude": 29.8942,
"longitude": -139.1941,
"state": "Kentucky",
"street": "346 Castle Lane",
"timezone": "EST",
"zip_code": "09956-2969"
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
2
assertions
✅
Passed
2
assertions
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
✓
body.json.address.country.exists
PASSED
✓ Match
Condição
body.json.address.country.exists equals true
Assertion passou conforme esperado
Valor recebido: true
Captured Variables
{
"generated_city": "Coral Springs"
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
} ✅
Test business and finance data
Step #3
1ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"business":{"company":"Emmerich, Wolf and Little","department":"Kids","product":"Licensed Cotton Computer","price":"683.00","currency":"NOK","account":"20511366","amount":"7.37","transaction_type":"transfer","credit_card":"4042206164368","iban":"GB82 WEST 1234 5698 7654 32"}}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"business": {
"company": "Emmerich, Wolf and Little",
"department": "Kids",
"product": "Licensed Cotton Computer",
"price": "683.00",
"currency": "NOK",
"account": "20511366",
"amount": "7.37",
"transaction_type": "transfer",
"credit_card": "4042206164368",
"iban": "GB82 WEST 1234 5698 7654 32"
}
}📥 Response
Status Code: 200
Duration: 1ms
Size: 929 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: 1124
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"business\":{\"company\":\"Emmerich, Wolf and Little\",\"department\":\"Kids\",\"product\":\"Licensed Cotton Computer\",\"price\":\"683.00\",\"currency\":\"NOK\",\"account\":\"20511366\",\"amount\":\"7.37\",\"transaction_type\":\"transfer\",\"credit_card\":\"4042206164368\",\"iban\":\"GB82 WEST 1234 5698 7654 32\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "277",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"business": {
"account": "20511366",
"amount": "7.37",
"company": "Emmerich, Wolf and Little",
"credit_card": "4042206164368",
"currency": "NOK",
"department": "Kids",
"iban": "GB82 WEST 1234 5698 7654 32",
"price": "683.00",
"product": "Licensed Cotton Computer",
"transaction_type": "transfer"
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
3
assertions
✅
Passed
3
assertions
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
✓
body.json.business.price.type
PASSED
✓ Match
Condição
body.json.business.price.type equals string
Assertion passou conforme esperado
Valor recebido: string
✓
body.json.business.currency.exists
PASSED
✓ Match
Condição
body.json.business.currency.exists equals true
Assertion passou conforme esperado
Valor recebido: true
Captured Variables
{
"generated_company": "Emmerich, Wolf and Little"
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
} ✅
Test internet and technology data
Step #4
1ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"tech":{"domain":"perky-double.biz","url":"https://svelte-chance.biz/","ip_v4":"152.255.65.8","ip_v6":"146.124.167.16","mac_address":"d7:6a:fd:21:0c:b9","user_agent":"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/3.1)","username":"Fiona_Beier10","password":"7","emoji":"😀","color":"#FF0000"}}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"tech": {
"domain": "perky-double.biz",
"url": "https://svelte-chance.biz/",
"ip_v4": "152.255.65.8",
"ip_v6": "146.124.167.16",
"mac_address": "d7:6a:fd:21:0c:b9",
"user_agent": "Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/3.1)",
"username": "Fiona_Beier10",
"password": "7",
"emoji": "😀",
"color": "#FF0000"
}
}📥 Response
Status Code: 200
Duration: 1ms
Size: 993 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: 1204
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"tech\":{\"domain\":\"perky-double.biz\",\"url\":\"https://svelte-chance.biz/\",\"ip_v4\":\"152.255.65.8\",\"ip_v6\":\"146.124.167.16\",\"mac_address\":\"d7:6a:fd:21:0c:b9\",\"user_agent\":\"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/3.1)\",\"username\":\"Fiona_Beier10\",\"password\":\"7\",\"emoji\":\"😀\",\"color\":\"#FF0000\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "309",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"tech": {
"color": "#FF0000",
"domain": "perky-double.biz",
"emoji": "😀",
"ip_v4": "152.255.65.8",
"ip_v6": "146.124.167.16",
"mac_address": "d7:6a:fd:21:0c:b9",
"password": "7",
"url": "https://svelte-chance.biz/",
"user_agent": "Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/3.1)",
"username": "Fiona_Beier10"
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
2
assertions
✅
Passed
2
assertions
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
✓
body.data.contains
PASSED
Condição
body.data.contains equals tech
Comparação de Valores
Esperado expected
tech
Recebido actual
{"tech":{"domain":"perky-double.biz","url":"https://svelte-chance.biz/","ip_v4":"152.255.65.8","ip_v6":"146.124.167.16","mac_address":"d7:6a:fd:21:0c:b9","user_agent":"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/3.1)","username":"Fiona_Beier10","password":"7","emoji":"😀","color":"#FF0000"}}
Available Variables
{
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
} ✅
Test date and time variations
Step #5
1ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"dates":{"past_date":"2025-10-01T00:45:53.642Z","future_date":"2026-04-12T13:31:25.265Z","recent_date":"2025-10-19T04:43:15.274Z","soon_date":"2025-10-20T08:07:16.930Z","weekday":"Monday","month":"January","time_zone":"UTC"}}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"dates": {
"past_date": "2025-10-01T00:45:53.642Z",
"future_date": "2026-04-12T13:31:25.265Z",
"recent_date": "2025-10-19T04:43:15.274Z",
"soon_date": "2025-10-20T08:07:16.930Z",
"weekday": "Monday",
"month": "January",
"time_zone": "UTC"
}
}📥 Response
Status Code: 200
Duration: 1ms
Size: 815 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: 983
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"dates\":{\"past_date\":\"2025-10-01T00:45:53.642Z\",\"future_date\":\"2026-04-12T13:31:25.265Z\",\"recent_date\":\"2025-10-19T04:43:15.274Z\",\"soon_date\":\"2025-10-20T08:07:16.930Z\",\"weekday\":\"Monday\",\"month\":\"January\",\"time_zone\":\"UTC\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "226",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"dates": {
"future_date": "2026-04-12T13:31:25.265Z",
"month": "January",
"past_date": "2025-10-01T00:45:53.642Z",
"recent_date": "2025-10-19T04:43:15.274Z",
"soon_date": "2025-10-20T08:07:16.930Z",
"time_zone": "UTC",
"weekday": "Monday"
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
2
assertions
✅
Passed
2
assertions
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
✓
body.json.dates.weekday.exists
PASSED
✓ Match
Condição
body.json.dates.weekday.exists equals true
Assertion passou conforme esperado
Valor recebido: true
Available Variables
{
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
} ✅
Test arrays and complex selections
Step #6
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"selections":{"random_word":"canonicus","random_words":"omnis statim corrigo","paragraph":"Dapifer canis sordeo crur. Vinum autem vis. Vulgivagus cimentarius ab audax curis tonsor cuius.","array_element":"green","random_number":1193481311617024,"float_number":0.4584721182473004,"boolean_value":false,"uuid":"8de5e4ec-b800-40b7-bb65-6610f62b48a8","hex_color":"#FF0000"}}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"selections": {
"random_word": "canonicus",
"random_words": "omnis statim corrigo",
"paragraph": "Dapifer canis sordeo crur. Vinum autem vis. Vulgivagus cimentarius ab audax curis tonsor cuius.",
"array_element": "green",
"random_number": 1193481311617024,
"float_number": 0.4584721182473004,
"boolean_value": false,
"uuid": "8de5e4ec-b800-40b7-bb65-6610f62b48a8",
"hex_color": "#FF0000"
}
}📥 Response
Status Code: 200
Duration: 2ms
Size: 1107 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: 1293
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"selections\":{\"random_word\":\"canonicus\",\"random_words\":\"omnis statim corrigo\",\"paragraph\":\"Dapifer canis sordeo crur. Vinum autem vis. Vulgivagus cimentarius ab audax curis tonsor cuius.\",\"array_element\":\"green\",\"random_number\":1193481311617024,\"float_number\":0.4584721182473004,\"boolean_value\":false,\"uuid\":\"8de5e4ec-b800-40b7-bb65-6610f62b48a8\",\"hex_color\":\"#FF0000\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "371",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"selections": {
"array_element": "green",
"boolean_value": false,
"float_number": 0.4584721182473004,
"hex_color": "#FF0000",
"paragraph": "Dapifer canis sordeo crur. Vinum autem vis. Vulgivagus cimentarius ab audax curis tonsor cuius.",
"random_number": 1193481311617024,
"random_word": "canonicus",
"random_words": "omnis statim corrigo",
"uuid": "8de5e4ec-b800-40b7-bb65-6610f62b48a8"
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
2
assertions
✅
Passed
2
assertions
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
✓
body.data.contains
PASSED
Condição
body.data.contains equals selections
Comparação de Valores
Esperado expected
selections
Recebido actual
{"selections":{"random_word":"canonicus","random_words":"omnis statim corrigo","paragraph":"Dapifer canis sordeo crur. Vinum autem vis. Vulgivagus cimentarius ab audax curis tonsor cuius.","array_element":"green","random_number":1193481311617024,"float_number":0.4584721182473004,"boolean_value":false,"uuid":"8de5e4ec-b800-40b7-bb65-6610f62b48a8","hex_color":"#FF0000"}}
Available Variables
{
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
} ✅
Test locale-specific generation
Step #7
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"localized":{"name_pt":"Gail Ward","address_local":"New Myrlchester","phone_local":"(555) 535-0242"}}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"localized": {
"name_pt": "Gail Ward",
"address_local": "New Myrlchester",
"phone_local": "(555) 535-0242"
}
}📥 Response
Status Code: 200
Duration: 2ms
Size: 551 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: 683
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"localized\":{\"name_pt\":\"Gail Ward\",\"address_local\":\"New Myrlchester\",\"phone_local\":\"(555) 535-0242\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "102",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"localized": {
"address_local": "New Myrlchester",
"name_pt": "Gail Ward",
"phone_local": "(555) 535-0242"
}
},
"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
{
"locale_name": "Gail Ward"
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
}📄 Raw Suite Data
Complete Suite Data
{
"node_id": "faker-advanced-integration",
"suite_name": "Advanced Faker.js Integration Test Suite",
"file_path": "/app/tests/faker-advanced-integration-test.yaml",
"priority": "medium",
"start_time": "2025-10-19T10:28:39.209Z",
"end_time": "2025-10-19T10:28:39.223Z",
"duration_ms": 14,
"status": "success",
"steps_executed": 7,
"steps_successful": 7,
"steps_failed": 0,
"success_rate": 100,
"steps_results": [
{
"step_id": "step-1-test-person-data-generation",
"qualified_step_id": "faker-advanced-integration::step-1-test-person-data-generation",
"step_name": "Test person data generation",
"status": "success",
"duration_ms": 3,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"person": {
"full_name": "Jeffery Romaguera",
"first_name": "Lupe",
"last_name": "Welch",
"email": "Kylie.Hayes39@gmail.com",
"phone": "1-527-360-8784 x3717",
"birth_date": "1956-01-14T10:24:26.412Z",
"gender": "Omnigender",
"job_title": "Senior Web Agent",
"bio": "Vulgaris accommodo tolero carcer talus tristis."
}
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"person\":{\"full_name\":\"Jeffery Romaguera\",\"first_name\":\"Lupe\",\"last_name\":\"Welch\",\"email\":\"Kylie.Hayes39@gmail.com\",\"phone\":\"1-527-360-8784 x3717\",\"birth_date\":\"1956-01-14T10:24:26.412Z\",\"gender\":\"Omnigender\",\"job_title\":\"Senior Web Agent\",\"bio\":\"Vulgaris accommodo tolero carcer talus tristis.\"}}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 298\r\n\r\n{\"person\":{\"full_name\":\"Jeffery Romaguera\",\"first_name\":\"Lupe\",\"last_name\":\"Welch\",\"email\":\"Kylie.Hayes39@gmail.com\",\"phone\":\"1-527-360-8784 x3717\",\"birth_date\":\"1956-01-14T10:24:26.412Z\",\"gender\":\"Omnigender\",\"job_title\":\"Senior Web Agent\",\"bio\":\"Vulgaris accommodo tolero carcer talus tristis.\"}}",
"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": "1153",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"person\":{\"full_name\":\"Jeffery Romaguera\",\"first_name\":\"Lupe\",\"last_name\":\"Welch\",\"email\":\"Kylie.Hayes39@gmail.com\",\"phone\":\"1-527-360-8784 x3717\",\"birth_date\":\"1956-01-14T10:24:26.412Z\",\"gender\":\"Omnigender\",\"job_title\":\"Senior Web Agent\",\"bio\":\"Vulgaris accommodo tolero carcer talus tristis.\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "298",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"person": {
"bio": "Vulgaris accommodo tolero carcer talus tristis.",
"birth_date": "1956-01-14T10:24:26.412Z",
"email": "Kylie.Hayes39@gmail.com",
"first_name": "Lupe",
"full_name": "Jeffery Romaguera",
"gender": "Omnigender",
"job_title": "Senior Web Agent",
"last_name": "Welch",
"phone": "1-527-360-8784 x3717"
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 967,
"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: 1153\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"person\\\":{\\\"full_name\\\":\\\"Jeffery Romaguera\\\",\\\"first_name\\\":\\\"Lupe\\\",\\\"last_name\\\":\\\"Welch\\\",\\\"email\\\":\\\"Kylie.Hayes39@gmail.com\\\",\\\"phone\\\":\\\"1-527-360-8784 x3717\\\",\\\"birth_date\\\":\\\"1956-01-14T10:24:26.412Z\\\",\\\"gender\\\":\\\"Omnigender\\\",\\\"job_title\\\":\\\"Senior Web Agent\\\",\\\"bio\\\":\\\"Vulgaris accommodo tolero carcer talus tristis.\\\"}}\",\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\": \"298\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"person\": {\n \"bio\": \"Vulgaris accommodo tolero carcer talus tristis.\",\n \"birth_date\": \"1956-01-14T10:24:26.412Z\",\n \"email\": \"Kylie.Hayes39@gmail.com\",\n \"first_name\": \"Lupe\",\n \"full_name\": \"Jeffery Romaguera\",\n \"gender\": \"Omnigender\",\n \"job_title\": \"Senior Web Agent\",\n \"last_name\": \"Welch\",\n \"phone\": \"1-527-360-8784 x3717\"\n }\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"
},
{
"field": "body.json.person.email.contains",
"expected": "@",
"actual": "Kylie.Hayes39@gmail.com",
"passed": true,
"message": "OK"
},
{
"field": "body.json.person.phone.exists",
"expected": true,
"actual": true,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"generated_email": "Kylie.Hayes39@gmail.com",
"generated_name": "Jeffery Romaguera"
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
}
},
{
"step_id": "step-2-test-address-and-location-data",
"qualified_step_id": "faker-advanced-integration::step-2-test-address-and-location-data",
"step_name": "Test address and location data",
"status": "success",
"duration_ms": 1,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"address": {
"street": "346 Castle Lane",
"city": "Coral Springs",
"state": "Kentucky",
"country": "Iceland",
"zip_code": "09956-2969",
"latitude": 29.8942,
"longitude": -139.1941,
"timezone": "EST"
}
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"address\":{\"street\":\"346 Castle Lane\",\"city\":\"Coral Springs\",\"state\":\"Kentucky\",\"country\":\"Iceland\",\"zip_code\":\"09956-2969\",\"latitude\":29.8942,\"longitude\":-139.1941,\"timezone\":\"EST\"}}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 184\r\n\r\n{\"address\":{\"street\":\"346 Castle Lane\",\"city\":\"Coral Springs\",\"state\":\"Kentucky\",\"country\":\"Iceland\",\"zip_code\":\"09956-2969\",\"latitude\":29.8942,\"longitude\":-139.1941,\"timezone\":\"EST\"}}",
"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": "908",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"address\":{\"street\":\"346 Castle Lane\",\"city\":\"Coral Springs\",\"state\":\"Kentucky\",\"country\":\"Iceland\",\"zip_code\":\"09956-2969\",\"latitude\":29.8942,\"longitude\":-139.1941,\"timezone\":\"EST\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "184",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"address": {
"city": "Coral Springs",
"country": "Iceland",
"latitude": 29.8942,
"longitude": -139.1941,
"state": "Kentucky",
"street": "346 Castle Lane",
"timezone": "EST",
"zip_code": "09956-2969"
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 731,
"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: 908\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"address\\\":{\\\"street\\\":\\\"346 Castle Lane\\\",\\\"city\\\":\\\"Coral Springs\\\",\\\"state\\\":\\\"Kentucky\\\",\\\"country\\\":\\\"Iceland\\\",\\\"zip_code\\\":\\\"09956-2969\\\",\\\"latitude\\\":29.8942,\\\"longitude\\\":-139.1941,\\\"timezone\\\":\\\"EST\\\"}}\",\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\": \"184\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"address\": {\n \"city\": \"Coral Springs\",\n \"country\": \"Iceland\",\n \"latitude\": 29.8942,\n \"longitude\": -139.1941,\n \"state\": \"Kentucky\",\n \"street\": \"346 Castle Lane\",\n \"timezone\": \"EST\",\n \"zip_code\": \"09956-2969\"\n }\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"
},
{
"field": "body.json.address.country.exists",
"expected": true,
"actual": true,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"generated_city": "Coral Springs"
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
}
},
{
"step_id": "step-3-test-business-and-finance-data",
"qualified_step_id": "faker-advanced-integration::step-3-test-business-and-finance-data",
"step_name": "Test business and finance data",
"status": "success",
"duration_ms": 1,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"business": {
"company": "Emmerich, Wolf and Little",
"department": "Kids",
"product": "Licensed Cotton Computer",
"price": "683.00",
"currency": "NOK",
"account": "20511366",
"amount": "7.37",
"transaction_type": "transfer",
"credit_card": "4042206164368",
"iban": "GB82 WEST 1234 5698 7654 32"
}
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"business\":{\"company\":\"Emmerich, Wolf and Little\",\"department\":\"Kids\",\"product\":\"Licensed Cotton Computer\",\"price\":\"683.00\",\"currency\":\"NOK\",\"account\":\"20511366\",\"amount\":\"7.37\",\"transaction_type\":\"transfer\",\"credit_card\":\"4042206164368\",\"iban\":\"GB82 WEST 1234 5698 7654 32\"}}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 277\r\n\r\n{\"business\":{\"company\":\"Emmerich, Wolf and Little\",\"department\":\"Kids\",\"product\":\"Licensed Cotton Computer\",\"price\":\"683.00\",\"currency\":\"NOK\",\"account\":\"20511366\",\"amount\":\"7.37\",\"transaction_type\":\"transfer\",\"credit_card\":\"4042206164368\",\"iban\":\"GB82 WEST 1234 5698 7654 32\"}}",
"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": "1124",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"business\":{\"company\":\"Emmerich, Wolf and Little\",\"department\":\"Kids\",\"product\":\"Licensed Cotton Computer\",\"price\":\"683.00\",\"currency\":\"NOK\",\"account\":\"20511366\",\"amount\":\"7.37\",\"transaction_type\":\"transfer\",\"credit_card\":\"4042206164368\",\"iban\":\"GB82 WEST 1234 5698 7654 32\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "277",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"business": {
"account": "20511366",
"amount": "7.37",
"company": "Emmerich, Wolf and Little",
"credit_card": "4042206164368",
"currency": "NOK",
"department": "Kids",
"iban": "GB82 WEST 1234 5698 7654 32",
"price": "683.00",
"product": "Licensed Cotton Computer",
"transaction_type": "transfer"
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 929,
"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: 1124\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"business\\\":{\\\"company\\\":\\\"Emmerich, Wolf and Little\\\",\\\"department\\\":\\\"Kids\\\",\\\"product\\\":\\\"Licensed Cotton Computer\\\",\\\"price\\\":\\\"683.00\\\",\\\"currency\\\":\\\"NOK\\\",\\\"account\\\":\\\"20511366\\\",\\\"amount\\\":\\\"7.37\\\",\\\"transaction_type\\\":\\\"transfer\\\",\\\"credit_card\\\":\\\"4042206164368\\\",\\\"iban\\\":\\\"GB82 WEST 1234 5698 7654 32\\\"}}\",\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\": \"277\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"business\": {\n \"account\": \"20511366\",\n \"amount\": \"7.37\",\n \"company\": \"Emmerich, Wolf and Little\",\n \"credit_card\": \"4042206164368\",\n \"currency\": \"NOK\",\n \"department\": \"Kids\",\n \"iban\": \"GB82 WEST 1234 5698 7654 32\",\n \"price\": \"683.00\",\n \"product\": \"Licensed Cotton Computer\",\n \"transaction_type\": \"transfer\"\n }\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"
},
{
"field": "body.json.business.price.type",
"expected": "string",
"actual": "string",
"passed": true,
"message": "OK"
},
{
"field": "body.json.business.currency.exists",
"expected": true,
"actual": true,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"generated_company": "Emmerich, Wolf and Little"
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
}
},
{
"step_id": "step-4-test-internet-and-technology-data",
"qualified_step_id": "faker-advanced-integration::step-4-test-internet-and-technology-data",
"step_name": "Test internet and technology data",
"status": "success",
"duration_ms": 1,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"tech": {
"domain": "perky-double.biz",
"url": "https://svelte-chance.biz/",
"ip_v4": "152.255.65.8",
"ip_v6": "146.124.167.16",
"mac_address": "d7:6a:fd:21:0c:b9",
"user_agent": "Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/3.1)",
"username": "Fiona_Beier10",
"password": "7",
"emoji": "😀",
"color": "#FF0000"
}
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"tech\":{\"domain\":\"perky-double.biz\",\"url\":\"https://svelte-chance.biz/\",\"ip_v4\":\"152.255.65.8\",\"ip_v6\":\"146.124.167.16\",\"mac_address\":\"d7:6a:fd:21:0c:b9\",\"user_agent\":\"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/3.1)\",\"username\":\"Fiona_Beier10\",\"password\":\"7\",\"emoji\":\"😀\",\"color\":\"#FF0000\"}}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 309\r\n\r\n{\"tech\":{\"domain\":\"perky-double.biz\",\"url\":\"https://svelte-chance.biz/\",\"ip_v4\":\"152.255.65.8\",\"ip_v6\":\"146.124.167.16\",\"mac_address\":\"d7:6a:fd:21:0c:b9\",\"user_agent\":\"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/3.1)\",\"username\":\"Fiona_Beier10\",\"password\":\"7\",\"emoji\":\"😀\",\"color\":\"#FF0000\"}}",
"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": "1204",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"tech\":{\"domain\":\"perky-double.biz\",\"url\":\"https://svelte-chance.biz/\",\"ip_v4\":\"152.255.65.8\",\"ip_v6\":\"146.124.167.16\",\"mac_address\":\"d7:6a:fd:21:0c:b9\",\"user_agent\":\"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/3.1)\",\"username\":\"Fiona_Beier10\",\"password\":\"7\",\"emoji\":\"😀\",\"color\":\"#FF0000\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "309",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"tech": {
"color": "#FF0000",
"domain": "perky-double.biz",
"emoji": "😀",
"ip_v4": "152.255.65.8",
"ip_v6": "146.124.167.16",
"mac_address": "d7:6a:fd:21:0c:b9",
"password": "7",
"url": "https://svelte-chance.biz/",
"user_agent": "Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/3.1)",
"username": "Fiona_Beier10"
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 993,
"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: 1204\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"tech\\\":{\\\"domain\\\":\\\"perky-double.biz\\\",\\\"url\\\":\\\"https://svelte-chance.biz/\\\",\\\"ip_v4\\\":\\\"152.255.65.8\\\",\\\"ip_v6\\\":\\\"146.124.167.16\\\",\\\"mac_address\\\":\\\"d7:6a:fd:21:0c:b9\\\",\\\"user_agent\\\":\\\"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/3.1)\\\",\\\"username\\\":\\\"Fiona_Beier10\\\",\\\"password\\\":\\\"7\\\",\\\"emoji\\\":\\\"😀\\\",\\\"color\\\":\\\"#FF0000\\\"}}\",\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\": \"309\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"tech\": {\n \"color\": \"#FF0000\",\n \"domain\": \"perky-double.biz\",\n \"emoji\": \"😀\",\n \"ip_v4\": \"152.255.65.8\",\n \"ip_v6\": \"146.124.167.16\",\n \"mac_address\": \"d7:6a:fd:21:0c:b9\",\n \"password\": \"7\",\n \"url\": \"https://svelte-chance.biz/\",\n \"user_agent\": \"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/3.1)\",\n \"username\": \"Fiona_Beier10\"\n }\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"
},
{
"field": "body.data.contains",
"expected": "tech",
"actual": "{\"tech\":{\"domain\":\"perky-double.biz\",\"url\":\"https://svelte-chance.biz/\",\"ip_v4\":\"152.255.65.8\",\"ip_v6\":\"146.124.167.16\",\"mac_address\":\"d7:6a:fd:21:0c:b9\",\"user_agent\":\"Mozilla/5.0 (compatible; MSIE 7.0; Windows NT 6.3; Trident/3.1)\",\"username\":\"Fiona_Beier10\",\"password\":\"7\",\"emoji\":\"😀\",\"color\":\"#FF0000\"}}",
"passed": true,
"message": "OK"
}
],
"captured_variables": {},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
}
},
{
"step_id": "step-5-test-date-and-time-variations",
"qualified_step_id": "faker-advanced-integration::step-5-test-date-and-time-variations",
"step_name": "Test date and time variations",
"status": "success",
"duration_ms": 1,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"dates": {
"past_date": "2025-10-01T00:45:53.642Z",
"future_date": "2026-04-12T13:31:25.265Z",
"recent_date": "2025-10-19T04:43:15.274Z",
"soon_date": "2025-10-20T08:07:16.930Z",
"weekday": "Monday",
"month": "January",
"time_zone": "UTC"
}
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"dates\":{\"past_date\":\"2025-10-01T00:45:53.642Z\",\"future_date\":\"2026-04-12T13:31:25.265Z\",\"recent_date\":\"2025-10-19T04:43:15.274Z\",\"soon_date\":\"2025-10-20T08:07:16.930Z\",\"weekday\":\"Monday\",\"month\":\"January\",\"time_zone\":\"UTC\"}}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 226\r\n\r\n{\"dates\":{\"past_date\":\"2025-10-01T00:45:53.642Z\",\"future_date\":\"2026-04-12T13:31:25.265Z\",\"recent_date\":\"2025-10-19T04:43:15.274Z\",\"soon_date\":\"2025-10-20T08:07:16.930Z\",\"weekday\":\"Monday\",\"month\":\"January\",\"time_zone\":\"UTC\"}}",
"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": "983",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"dates\":{\"past_date\":\"2025-10-01T00:45:53.642Z\",\"future_date\":\"2026-04-12T13:31:25.265Z\",\"recent_date\":\"2025-10-19T04:43:15.274Z\",\"soon_date\":\"2025-10-20T08:07:16.930Z\",\"weekday\":\"Monday\",\"month\":\"January\",\"time_zone\":\"UTC\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "226",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"dates": {
"future_date": "2026-04-12T13:31:25.265Z",
"month": "January",
"past_date": "2025-10-01T00:45:53.642Z",
"recent_date": "2025-10-19T04:43:15.274Z",
"soon_date": "2025-10-20T08:07:16.930Z",
"time_zone": "UTC",
"weekday": "Monday"
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 815,
"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: 983\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"dates\\\":{\\\"past_date\\\":\\\"2025-10-01T00:45:53.642Z\\\",\\\"future_date\\\":\\\"2026-04-12T13:31:25.265Z\\\",\\\"recent_date\\\":\\\"2025-10-19T04:43:15.274Z\\\",\\\"soon_date\\\":\\\"2025-10-20T08:07:16.930Z\\\",\\\"weekday\\\":\\\"Monday\\\",\\\"month\\\":\\\"January\\\",\\\"time_zone\\\":\\\"UTC\\\"}}\",\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\": \"226\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"dates\": {\n \"future_date\": \"2026-04-12T13:31:25.265Z\",\n \"month\": \"January\",\n \"past_date\": \"2025-10-01T00:45:53.642Z\",\n \"recent_date\": \"2025-10-19T04:43:15.274Z\",\n \"soon_date\": \"2025-10-20T08:07:16.930Z\",\n \"time_zone\": \"UTC\",\n \"weekday\": \"Monday\"\n }\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"
},
{
"field": "body.json.dates.weekday.exists",
"expected": true,
"actual": true,
"passed": true,
"message": "OK"
}
],
"captured_variables": {},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
}
},
{
"step_id": "step-6-test-arrays-and-complex-selections",
"qualified_step_id": "faker-advanced-integration::step-6-test-arrays-and-complex-selections",
"step_name": "Test arrays and complex selections",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"selections": {
"random_word": "canonicus",
"random_words": "omnis statim corrigo",
"paragraph": "Dapifer canis sordeo crur. Vinum autem vis. Vulgivagus cimentarius ab audax curis tonsor cuius.",
"array_element": "green",
"random_number": 1193481311617024,
"float_number": 0.4584721182473004,
"boolean_value": false,
"uuid": "8de5e4ec-b800-40b7-bb65-6610f62b48a8",
"hex_color": "#FF0000"
}
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"selections\":{\"random_word\":\"canonicus\",\"random_words\":\"omnis statim corrigo\",\"paragraph\":\"Dapifer canis sordeo crur. Vinum autem vis. Vulgivagus cimentarius ab audax curis tonsor cuius.\",\"array_element\":\"green\",\"random_number\":1193481311617024,\"float_number\":0.4584721182473004,\"boolean_value\":false,\"uuid\":\"8de5e4ec-b800-40b7-bb65-6610f62b48a8\",\"hex_color\":\"#FF0000\"}}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 371\r\n\r\n{\"selections\":{\"random_word\":\"canonicus\",\"random_words\":\"omnis statim corrigo\",\"paragraph\":\"Dapifer canis sordeo crur. Vinum autem vis. Vulgivagus cimentarius ab audax curis tonsor cuius.\",\"array_element\":\"green\",\"random_number\":1193481311617024,\"float_number\":0.4584721182473004,\"boolean_value\":false,\"uuid\":\"8de5e4ec-b800-40b7-bb65-6610f62b48a8\",\"hex_color\":\"#FF0000\"}}",
"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": "1293",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"selections\":{\"random_word\":\"canonicus\",\"random_words\":\"omnis statim corrigo\",\"paragraph\":\"Dapifer canis sordeo crur. Vinum autem vis. Vulgivagus cimentarius ab audax curis tonsor cuius.\",\"array_element\":\"green\",\"random_number\":1193481311617024,\"float_number\":0.4584721182473004,\"boolean_value\":false,\"uuid\":\"8de5e4ec-b800-40b7-bb65-6610f62b48a8\",\"hex_color\":\"#FF0000\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "371",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"selections": {
"array_element": "green",
"boolean_value": false,
"float_number": 0.4584721182473004,
"hex_color": "#FF0000",
"paragraph": "Dapifer canis sordeo crur. Vinum autem vis. Vulgivagus cimentarius ab audax curis tonsor cuius.",
"random_number": 1193481311617024,
"random_word": "canonicus",
"random_words": "omnis statim corrigo",
"uuid": "8de5e4ec-b800-40b7-bb65-6610f62b48a8"
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 1107,
"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: 1293\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"selections\\\":{\\\"random_word\\\":\\\"canonicus\\\",\\\"random_words\\\":\\\"omnis statim corrigo\\\",\\\"paragraph\\\":\\\"Dapifer canis sordeo crur. Vinum autem vis. Vulgivagus cimentarius ab audax curis tonsor cuius.\\\",\\\"array_element\\\":\\\"green\\\",\\\"random_number\\\":1193481311617024,\\\"float_number\\\":0.4584721182473004,\\\"boolean_value\\\":false,\\\"uuid\\\":\\\"8de5e4ec-b800-40b7-bb65-6610f62b48a8\\\",\\\"hex_color\\\":\\\"#FF0000\\\"}}\",\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\": \"371\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"selections\": {\n \"array_element\": \"green\",\n \"boolean_value\": false,\n \"float_number\": 0.4584721182473004,\n \"hex_color\": \"#FF0000\",\n \"paragraph\": \"Dapifer canis sordeo crur. Vinum autem vis. Vulgivagus cimentarius ab audax curis tonsor cuius.\",\n \"random_number\": 1193481311617024,\n \"random_word\": \"canonicus\",\n \"random_words\": \"omnis statim corrigo\",\n \"uuid\": \"8de5e4ec-b800-40b7-bb65-6610f62b48a8\"\n }\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"
},
{
"field": "body.data.contains",
"expected": "selections",
"actual": "{\"selections\":{\"random_word\":\"canonicus\",\"random_words\":\"omnis statim corrigo\",\"paragraph\":\"Dapifer canis sordeo crur. Vinum autem vis. Vulgivagus cimentarius ab audax curis tonsor cuius.\",\"array_element\":\"green\",\"random_number\":1193481311617024,\"float_number\":0.4584721182473004,\"boolean_value\":false,\"uuid\":\"8de5e4ec-b800-40b7-bb65-6610f62b48a8\",\"hex_color\":\"#FF0000\"}}",
"passed": true,
"message": "OK"
}
],
"captured_variables": {},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
}
},
{
"step_id": "step-7-test-locale-specific-generation",
"qualified_step_id": "faker-advanced-integration::step-7-test-locale-specific-generation",
"step_name": "Test locale-specific generation",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"localized": {
"name_pt": "Gail Ward",
"address_local": "New Myrlchester",
"phone_local": "(555) 535-0242"
}
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"localized\":{\"name_pt\":\"Gail Ward\",\"address_local\":\"New Myrlchester\",\"phone_local\":\"(555) 535-0242\"}}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 102\r\n\r\n{\"localized\":{\"name_pt\":\"Gail Ward\",\"address_local\":\"New Myrlchester\",\"phone_local\":\"(555) 535-0242\"}}",
"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": "683",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"localized\":{\"name_pt\":\"Gail Ward\",\"address_local\":\"New Myrlchester\",\"phone_local\":\"(555) 535-0242\"}}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "102",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"localized": {
"address_local": "New Myrlchester",
"name_pt": "Gail Ward",
"phone_local": "(555) 535-0242"
}
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 551,
"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: 683\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"localized\\\":{\\\"name_pt\\\":\\\"Gail Ward\\\",\\\"address_local\\\":\\\"New Myrlchester\\\",\\\"phone_local\\\":\\\"(555) 535-0242\\\"}}\",\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\": \"102\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"localized\": {\n \"address_local\": \"New Myrlchester\",\n \"name_pt\": \"Gail Ward\",\n \"phone_local\": \"(555) 535-0242\"\n }\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": {
"locale_name": "Gail Ward"
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
}
}
],
"variables_captured": {},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_seed": 12345,
"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"
}
},
"suite_yaml_content": "node_id: \"faker-advanced-integration\"\nsuite_name: \"Advanced Faker.js Integration Test Suite\"\ndescription: \"Comprehensive coverage of Faker.js capabilities for realistic test data generation\"\nbase_url: \"{{httpbin_url}}\"\n\nmetadata:\n priority: \"medium\"\n tags: [\"faker\", \"data-generation\", \"realistic-data\", \"comprehensive\"]\n estimated_duration_ms: 6000\n\nvariables:\n test_seed: 12345\n\nsteps:\n - name: \"Test person data generation\"\n request:\n method: \"POST\"\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n person:\n full_name: \"{{$faker.person.fullName}}\"\n first_name: \"{{$faker.person.firstName}}\"\n last_name: \"{{$faker.person.lastName}}\"\n email: \"{{$faker.internet.email}}\"\n phone: \"{{$faker.phone.number}}\"\n birth_date: \"{{$faker.date.birthdate}}\"\n gender: \"{{$faker.person.gender}}\"\n job_title: \"{{$faker.person.jobTitle}}\"\n bio: \"{{$faker.lorem.sentence}}\"\n assert:\n status_code: 200\n body:\n json:\n person:\n email:\n contains: \"@\"\n phone:\n exists: true\n capture:\n generated_email: \"body.json.person.email\"\n generated_name: \"body.json.person.full_name\"\n\n - name: \"Test address and location data\"\n request:\n method: \"POST\"\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n address:\n street: \"{{$faker.location.streetAddress}}\"\n city: \"{{$faker.location.city}}\"\n state: \"{{$faker.location.state}}\"\n country: \"{{$faker.location.country}}\"\n zip_code: \"{{$faker.location.zipCode}}\"\n latitude: \"{{$faker.location.latitude}}\"\n longitude: \"{{$faker.location.longitude}}\"\n timezone: \"EST\"\n assert:\n status_code: 200\n body:\n json:\n address:\n country:\n exists: true\n capture:\n generated_city: \"body.json.address.city\"\n\n - name: \"Test business and finance data\"\n request:\n method: \"POST\"\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n business:\n company: \"{{$faker.company.name}}\"\n department: \"{{$faker.commerce.department}}\"\n product: \"{{$faker.commerce.productName}}\"\n price: \"{{$faker.commerce.price}}\"\n currency: \"{{$faker.finance.currencyCode}}\"\n account: \"{{$faker.finance.accountNumber}}\"\n amount: \"{{$faker.finance.amount}}\"\n transaction_type: \"transfer\"\n credit_card: \"{{$faker.finance.creditCardNumber}}\"\n iban: \"GB82 WEST 1234 5698 7654 32\"\n assert:\n status_code: 200\n body:\n json:\n business:\n price:\n type: string\n currency:\n exists: true\n capture:\n generated_company: \"body.json.business.company\"\n\n - name: \"Test internet and technology data\"\n request:\n method: \"POST\"\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n tech:\n domain: \"{{$faker.internet.domainName}}\"\n url: \"{{$faker.internet.url}}\"\n ip_v4: \"{{$faker.internet.ip}}\"\n ip_v6: \"{{$faker.internet.ipv4}}\"\n mac_address: \"{{$faker.internet.mac}}\"\n user_agent: \"{{$faker.internet.userAgent}}\"\n username: \"{{$faker.internet.userName}}\"\n password: \"{{$faker.string.alphanumeric}}\"\n emoji: \"😀\"\n color: \"#FF0000\"\n assert:\n status_code: 200\n body:\n data:\n contains: \"tech\"\n\n - name: \"Test date and time variations\"\n request:\n method: \"POST\"\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n dates:\n past_date: \"{{$faker.date.past}}\"\n future_date: \"{{$faker.date.future}}\"\n recent_date: \"{{$faker.date.recent}}\"\n soon_date: \"{{$faker.date.soon}}\"\n weekday: \"Monday\"\n month: \"January\"\n time_zone: \"UTC\"\n assert:\n status_code: 200\n body:\n json:\n dates:\n weekday:\n exists: true\n\n - name: \"Test arrays and complex selections\"\n request:\n method: \"POST\"\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n selections:\n random_word: \"{{$faker.lorem.word}}\"\n random_words: \"{{$faker.lorem.words}}\"\n paragraph: \"{{$faker.lorem.paragraph}}\"\n array_element: \"{{$faker.helpers.arrayElement(['red', 'green', 'blue', 'yellow'])}}\"\n random_number: \"{{$faker.number.int}}\"\n float_number: \"{{$faker.number.float}}\"\n boolean_value: \"{{$faker.datatype.boolean}}\"\n uuid: \"{{$faker.string.uuid}}\"\n hex_color: \"#FF0000\"\n assert:\n status_code: 200\n body:\n data:\n contains: \"selections\"\n\n - name: \"Test locale-specific generation\"\n request:\n method: \"POST\"\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n localized:\n # Assuming faker supports locale switching\n name_pt: \"{{$faker.person.fullName}}\"\n address_local: \"{{$faker.location.city}}\"\n phone_local: \"{{$faker.phone.number}}\"\n assert:\n status_code: 200\n capture:\n locale_name: \"body.json.localized.name_pt\"\n\nexports:\n - generated_email\n - generated_name\n - generated_city\n - generated_company\n - locale_name"
}