βœ…

Error Handling Comprehensive Testing

/app/tests/error-handling-comprehensive-test.yaml

high
21 Steps
Duration: 43ms
Success Rate: 100%
βœ…
Successful Steps
21
100% success rate
❌
Failed Steps
0
0% of total
⏭️
Skipped Steps
0
0% of total
πŸ”—
HTTP Requests
21
100% requests
πŸ”„
IteraΓ§Γ΅es
0
0 steps com iteraΓ§Γ΅es

πŸ“Š Execution Timeline

# Status Step Name Type Duration Started At Details
1 βœ…
Test step that will fail but should continue
GET /status/500
request
1ms 19/10/2025, 10:28:38
βœ… Request completed successfully
2 βœ…
Step after failure - should execute
GET /get
request
2ms 19/10/2025, 10:28:38
βœ… Request completed successfully
3 βœ…
Handle 400 Bad Request
GET /status/400
request
2ms 19/10/2025, 10:28:38
βœ… Request completed successfully
4 βœ…
Handle 401 Unauthorized
GET /status/401
request
1ms 19/10/2025, 10:28:38
βœ… Request completed successfully
5 βœ…
Handle 403 Forbidden
GET /status/403
request
2ms 19/10/2025, 10:28:38
βœ… Request completed successfully
6 βœ…
Handle 404 Not Found
GET /status/404
request
1ms 19/10/2025, 10:28:38
βœ… Request completed successfully
7 βœ…
Handle 429 Too Many Requests
GET /status/429
request
1ms 19/10/2025, 10:28:38
βœ… Request completed successfully
8 βœ…
Handle 500 Internal Server Error
GET /status/500
request
2ms 19/10/2025, 10:28:38
βœ… Request completed successfully
9 βœ…
Handle 502 Bad Gateway
GET /status/502
request
1ms 19/10/2025, 10:28:38
βœ… Request completed successfully
10 βœ…
Handle 503 Service Unavailable
GET /status/503
request
1ms 19/10/2025, 10:28:38
βœ… Request completed successfully
11 βœ…
Primary service call (may fail)
GET /status/500
request
2ms 19/10/2025, 10:28:38
βœ… Request completed successfully
12 βœ…
Fallback service call
GET /get
request
2ms 19/10/2025, 10:28:38
βœ… Request completed successfully
13 βœ…
Enhanced service with degradation
GET /status/503
request
3ms 19/10/2025, 10:28:38
βœ… Request completed successfully
14 βœ…
Basic service (degraded mode)
GET /get
request
2ms 19/10/2025, 10:28:38
βœ… Request completed successfully
15 βœ…
Step 1 of chain
POST /post
request
2ms 19/10/2025, 10:28:38
βœ… Request completed successfully
16 βœ…
Step 2 of chain (may fail)
GET /status/200
request
3ms 19/10/2025, 10:28:38
βœ… Request completed successfully
17 βœ…
Step 3 with conditional logic
POST /post
request
2ms 19/10/2025, 10:28:38
βœ… Request completed successfully
18 βœ…
Service with detailed error info
GET /status/422
request
1ms 19/10/2025, 10:28:38
βœ… Request completed successfully
19 βœ…
Setup that might fail
POST /status/201
request
1ms 19/10/2025, 10:28:38
βœ… Request completed successfully
20 βœ…
Cleanup resources
DELETE /delete
request
1ms 19/10/2025, 10:28:38
βœ… Request completed successfully
21 βœ…
Collect error handling test results
POST /post
request
2ms 19/10/2025, 10:28:38
βœ… Request completed successfully

🌐 HTTP Requests Debug Info

βœ…

Test step that will fail but should continue

Step #1

1ms
cURL Command
curl -X GET -H 'X-Error-Test: continue_on_failure' -H 'X-Expected-Failure: true' "http://httpbin/status/500"

πŸ“€ Request

Method: GET
URL: http://httpbin/status/500
Base URL: http://httpbin
Request Headers
X-Error-Test: continue_on_failure
X-Expected-Failure: true

πŸ“₯ Response

Status Code: 500
Duration: 1ms
Size: 0 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: text/html; charset=utf-8
access-control-allow-origin: *
access-control-allow-credentials: true
content-length: 0
Captured Variables
{
  "failure_step_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
βœ…

Step after failure - should execute

Step #2

2ms
cURL Command
curl -X GET -H 'X-Error-Test: after_failure' -H 'X-Previous-Failed: true' "http://httpbin/get"

πŸ“€ Request

Method: GET
URL: http://httpbin/get
Base URL: http://httpbin
Request Headers
X-Error-Test: after_failure
X-Previous-Failed: true

πŸ“₯ Response

Status Code: 200
Duration: 2ms
Size: 377 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 465
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {
    "after_failure": "true",
    "recovery_test": "true"
  },
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Error-Test": "after_failure",
    "X-Previous-Failed": "true"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/get?recovery_test=true&after_failure=true"
}
πŸ“Š
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.args.recovery_test.equals

PASSED
βœ“ Match
CondiΓ§Γ£o
body.args.recovery_test.equals equals true
Assertion passou conforme esperado
Valor recebido: true
Captured Variables
{
  "recovery_step_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}
βœ…

Handle 400 Bad Request

Step #3

2ms
cURL Command
curl -X GET -H 'X-Error-Test: bad_request' -H 'X-Client-Error: 400' "http://httpbin/status/400"

πŸ“€ Request

Method: GET
URL: http://httpbin/status/400
Base URL: http://httpbin
Request Headers
X-Error-Test: bad_request
X-Client-Error: 400

πŸ“₯ Response

Status Code: 400
Duration: 2ms
Size: 0 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: text/html; charset=utf-8
access-control-allow-origin: *
access-control-allow-credentials: true
content-length: 0
Captured Variables
{
  "bad_request_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
βœ…

Handle 401 Unauthorized

Step #4

1ms
cURL Command
curl -X GET -H 'X-Error-Test: unauthorized' -H 'X-Auth-Error: 401' "http://httpbin/status/401"

πŸ“€ Request

Method: GET
URL: http://httpbin/status/401
Base URL: http://httpbin
Request Headers
X-Error-Test: unauthorized
X-Auth-Error: 401

πŸ“₯ Response

Status Code: 401
Duration: 1ms
Size: 0 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
www-authenticate: Basic realm="Fake Realm"
access-control-allow-origin: *
access-control-allow-credentials: true
content-length: 0
Captured Variables
{
  "unauthorized_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
βœ…

Handle 403 Forbidden

Step #5

2ms
cURL Command
curl -X GET -H 'X-Error-Test: forbidden' -H 'X-Permission-Error: 403' "http://httpbin/status/403"

πŸ“€ Request

Method: GET
URL: http://httpbin/status/403
Base URL: http://httpbin
Request Headers
X-Error-Test: forbidden
X-Permission-Error: 403

πŸ“₯ Response

Status Code: 403
Duration: 2ms
Size: 0 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: text/html; charset=utf-8
access-control-allow-origin: *
access-control-allow-credentials: true
content-length: 0
Captured Variables
{
  "forbidden_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
βœ…

Handle 404 Not Found

Step #6

1ms
cURL Command
curl -X GET -H 'X-Error-Test: not_found' -H 'X-Resource-Error: 404' "http://httpbin/status/404"

πŸ“€ Request

Method: GET
URL: http://httpbin/status/404
Base URL: http://httpbin
Request Headers
X-Error-Test: not_found
X-Resource-Error: 404

πŸ“₯ Response

Status Code: 404
Duration: 1ms
Size: 0 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: text/html; charset=utf-8
access-control-allow-origin: *
access-control-allow-credentials: true
content-length: 0
Captured Variables
{
  "not_found_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
βœ…

Handle 429 Too Many Requests

Step #7

1ms
cURL Command
curl -X GET -H 'X-Error-Test: rate_limit' -H 'X-Rate-Limit-Error: 429' "http://httpbin/status/429"

πŸ“€ Request

Method: GET
URL: http://httpbin/status/429
Base URL: http://httpbin
Request Headers
X-Error-Test: rate_limit
X-Rate-Limit-Error: 429

πŸ“₯ Response

Status Code: 429
Duration: 1ms
Size: 0 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: text/html; charset=utf-8
access-control-allow-origin: *
access-control-allow-credentials: true
content-length: 0
Captured Variables
{
  "rate_limit_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
βœ…

Handle 500 Internal Server Error

Step #8

2ms
cURL Command
curl -X GET -H 'X-Error-Test: server_error' -H 'X-Server-Error: 500' "http://httpbin/status/500"

πŸ“€ Request

Method: GET
URL: http://httpbin/status/500
Base URL: http://httpbin
Request Headers
X-Error-Test: server_error
X-Server-Error: 500

πŸ“₯ Response

Status Code: 500
Duration: 2ms
Size: 0 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: text/html; charset=utf-8
access-control-allow-origin: *
access-control-allow-credentials: true
content-length: 0
Captured Variables
{
  "server_error_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
βœ…

Handle 502 Bad Gateway

Step #9

1ms
cURL Command
curl -X GET -H 'X-Error-Test: bad_gateway' -H 'X-Gateway-Error: 502' "http://httpbin/status/502"

πŸ“€ Request

Method: GET
URL: http://httpbin/status/502
Base URL: http://httpbin
Request Headers
X-Error-Test: bad_gateway
X-Gateway-Error: 502

πŸ“₯ Response

Status Code: 502
Duration: 1ms
Size: 0 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: text/html; charset=utf-8
access-control-allow-origin: *
access-control-allow-credentials: true
content-length: 0
Captured Variables
{
  "bad_gateway_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
βœ…

Handle 503 Service Unavailable

Step #10

1ms
cURL Command
curl -X GET -H 'X-Error-Test: service_unavailable' -H 'X-Availability-Error: 503' "http://httpbin/status/503"

πŸ“€ Request

Method: GET
URL: http://httpbin/status/503
Base URL: http://httpbin
Request Headers
X-Error-Test: service_unavailable
X-Availability-Error: 503

πŸ“₯ Response

Status Code: 503
Duration: 1ms
Size: 0 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: text/html; charset=utf-8
access-control-allow-origin: *
access-control-allow-credentials: true
content-length: 0
Captured Variables
{
  "service_unavailable_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
βœ…

Primary service call (may fail)

Step #11

2ms
cURL Command
curl -X GET -H 'X-Error-Test: primary_service' -H 'X-Fallback-Available: true' "http://httpbin/status/500"

πŸ“€ Request

Method: GET
URL: http://httpbin/status/500
Base URL: http://httpbin
Request Headers
X-Error-Test: primary_service
X-Fallback-Available: true

πŸ“₯ Response

Status Code: 500
Duration: 2ms
Size: 0 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: text/html; charset=utf-8
access-control-allow-origin: *
access-control-allow-credentials: true
content-length: 0
Captured Variables
{
  "primary_service_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: none β—‹
Scenario 2: then βœ“
βœ…

Fallback service call

Step #12

2ms
cURL Command
curl -X GET -H 'X-Error-Test: fallback_service' -H 'X-Primary-Failed: true' "http://httpbin/get"

πŸ“€ Request

Method: GET
URL: http://httpbin/get
Base URL: http://httpbin
Request Headers
X-Error-Test: fallback_service
X-Primary-Failed: true

πŸ“₯ Response

Status Code: 200
Duration: 2ms
Size: 327 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 408
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {
    "fallback": "true"
  },
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Error-Test": "fallback_service",
    "X-Primary-Failed": "true"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/get?fallback=true"
}
Captured Variables
{
  "fallback_service_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
βœ…

Enhanced service with degradation

Step #13

3ms
cURL Command
curl -X GET -H 'X-Error-Test: enhanced_service' -H 'X-Degradation-Mode: available' "http://httpbin/status/503"

πŸ“€ Request

Method: GET
URL: http://httpbin/status/503
Base URL: http://httpbin
Request Headers
X-Error-Test: enhanced_service
X-Degradation-Mode: available

πŸ“₯ Response

Status Code: 503
Duration: 3ms
Size: 0 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: text/html; charset=utf-8
access-control-allow-origin: *
access-control-allow-credentials: true
content-length: 0
Captured Variables
{
  "service_mode": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: none β—‹
Scenario 2: then βœ“
βœ…

Basic service (degraded mode)

Step #14

2ms
cURL Command
curl -X GET -H 'X-Error-Test: basic_service' -H 'X-Mode: degraded' "http://httpbin/get"

πŸ“€ Request

Method: GET
URL: http://httpbin/get
Base URL: http://httpbin
Request Headers
X-Error-Test: basic_service
X-Mode: degraded

πŸ“₯ Response

Status Code: 200
Duration: 2ms
Size: 360 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 448
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {
    "basic_mode": "true",
    "features": "limited"
  },
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Error-Test": "basic_service",
    "X-Mode": "degraded"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/get?basic_mode=true&features=limited"
}
Captured Variables
{
  "degraded_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
βœ…

Step 1 of chain

Step #15

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Error-Test: chain_step_1' -d '{"step":1,"chain_id":"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248","operation":"initialize"}' "http://httpbin/post"

πŸ“€ Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Error-Test: chain_step_1
Request Body
{
  "step": 1,
  "chain_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
  "operation": "initialize"
}

πŸ“₯ Response

Status Code: 200
Duration: 2ms
Size: 554 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 676
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"step\":1,\"chain_id\":\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\"operation\":\"initialize\"}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "91",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Error-Test": "chain_step_1"
  },
  "json": {
    "chain_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "operation": "initialize",
    "step": 1
  },
  "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
{
  "chain_step_1_data": 1
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}
βœ…

Step 2 of chain (may fail)

Step #16

3ms
cURL Command
curl -X GET -H 'X-Error-Test: chain_step_2' -H 'X-Depends-On: 1' "http://httpbin/status/200"

πŸ“€ Request

Method: GET
URL: http://httpbin/status/200
Base URL: http://httpbin
Request Headers
X-Error-Test: chain_step_2
X-Depends-On: 1

πŸ“₯ Response

Status Code: 200
Duration: 3ms
Size: 0 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: text/html; charset=utf-8
access-control-allow-origin: *
access-control-allow-credentials: true
content-length: 0
Captured Variables
{
  "chain_step_2_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
Scenario 2: none β—‹
βœ…

Step 3 with conditional logic

Step #17

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Error-Test: chain_step_3' -d '{"step":3,"chain_id":"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248","previous_step_result":null,"operation":"error_recovery"}' "http://httpbin/post"

πŸ“€ Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Error-Test: chain_step_3
X-Previous-Result: null
Request Body
{
  "step": 3,
  "chain_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
  "previous_step_result": null,
  "operation": "error_recovery"
}

πŸ“₯ Response

Status Code: 200
Duration: 2ms
Size: 621 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 750
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"step\":3,\"chain_id\":\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\"previous_step_result\":null,\"operation\":\"error_recovery\"}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "123",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Error-Test": "chain_step_3"
  },
  "json": {
    "chain_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "operation": "error_recovery",
    "previous_step_result": null,
    "step": 3
  },
  "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.previous_step_result.equals

PASSED
βœ“ Match
CondiΓ§Γ£o
body.json.previous_step_result.equals equals null
Assertion passou conforme esperado
Valor recebido: Objeto/Array
Captured Variables
{
  "chain_step_3_result": "error_recovery"
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}
βœ…

Service with detailed error info

Step #18

1ms
cURL Command
curl -X GET -H 'X-Error-Test: detailed_error' -H 'X-Error-Details: validation_failed' "http://httpbin/status/422"

πŸ“€ Request

Method: GET
URL: http://httpbin/status/422
Base URL: http://httpbin
Request Headers
X-Error-Test: detailed_error
X-Error-Details: validation_failed

πŸ“₯ Response

Status Code: 422
Duration: 1ms
Size: 0 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: text/html; charset=utf-8
access-control-allow-origin: *
access-control-allow-credentials: true
content-length: 0
Captured Variables
{
  "error_code": 422,
  "error_type": null,
  "error_message": "Unprocessable Entity",
  "error_details": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
βœ…

Setup that might fail

Step #19

1ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Error-Test: setup_operation' -d '{"operation":"setup","resource_id":"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248"}' "http://httpbin/status/201"

πŸ“€ Request

Method: POST
URL: http://httpbin/status/201
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Error-Test: setup_operation
Request Body
{
  "operation": "setup",
  "resource_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248"
}

πŸ“₯ Response

Status Code: 201
Duration: 1ms
Size: 0 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: text/html; charset=utf-8
access-control-allow-origin: *
access-control-allow-credentials: true
content-length: 0
Captured Variables
{
  "setup_result": null,
  "cleanup_needed": true
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
Scenario 2: none β—‹
βœ…

Cleanup resources

Step #20

1ms
cURL Command
curl -X DELETE -H 'X-Error-Test: cleanup' -H 'X-Cleanup-Required: true' -H 'X-Resource-ID: error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248' "http://httpbin/delete"

πŸ“€ Request

Method: DELETE
URL: http://httpbin/delete
Base URL: http://httpbin
Request Headers
X-Error-Test: cleanup
X-Cleanup-Required: true
X-Resource-ID: error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248

πŸ“₯ Response

Status Code: 200
Duration: 1ms
Size: 396 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 495
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Cleanup-Required": "true",
    "X-Error-Test": "cleanup",
    "X-Resource-Id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248"
  },
  "json": null,
  "origin": "172.18.0.3",
  "url": "http://httpbin/delete"
}
Captured Variables
{
  "cleanup_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then βœ“
Scenario 2: none β—‹
βœ…

Collect error handling test results

Step #21

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Summary: error_handling_complete' -d '{"test_summary":"error_handling_comprehensive","test_id":"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248","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],"error_handling_results":{"continue_after_failure":null,"timeout_handling":"{{timeout_result}}","bad_request":null,"unauthorized":null,"forbidden":null,"not_found":null,"rate_limit":null,"server_error":null,"bad_gateway":null,"service_unavailable":null,"primary_service":null,"fallback_service":null,"degradation_mode":null,"chain_recovery":"error_recovery","cleanup_status":null},"recovery_patterns":["fallback_services","graceful_degradation","error_chain_recovery","resource_cleanup"],"total_error_tests":10}' "http://httpbin/post"

πŸ“€ Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Summary: error_handling_complete
Request Body
{
  "test_summary": "error_handling_comprehensive",
  "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
  "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
  ],
  "error_handling_results": {
    "continue_after_failure": null,
    "timeout_handling": "{{timeout_result}}",
    "bad_request": null,
    "unauthorized": null,
    "forbidden": null,
    "not_found": null,
    "rate_limit": null,
    "server_error": null,
    "bad_gateway": null,
    "service_unavailable": null,
    "primary_service": null,
    "fallback_service": null,
    "degradation_mode": null,
    "chain_recovery": "error_recovery",
    "cleanup_status": null
  },
  "recovery_patterns": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "total_error_tests": 10
}

πŸ“₯ Response

Status Code: 200
Duration: 2ms
Size: 2249 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 2726
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"test_summary\":\"error_handling_comprehensive\",\"test_id\":\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\"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],\"error_handling_results\":{\"continue_after_failure\":null,\"timeout_handling\":\"{{timeout_result}}\",\"bad_request\":null,\"unauthorized\":null,\"forbidden\":null,\"not_found\":null,\"rate_limit\":null,\"server_error\":null,\"bad_gateway\":null,\"service_unavailable\":null,\"primary_service\":null,\"fallback_service\":null,\"degradation_mode\":null,\"chain_recovery\":\"error_recovery\",\"cleanup_status\":null},\"recovery_patterns\":[\"fallback_services\",\"graceful_degradation\",\"error_chain_recovery\",\"resource_cleanup\"],\"total_error_tests\":10}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "900",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Summary": "error_handling_complete"
  },
  "json": {
    "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
  },
  "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.test_summary.equals

PASSED
βœ“ Match
CondiΓ§Γ£o
body.json.test_summary.equals equals error_handling_comprehensive
Assertion passou conforme esperado
Valor recebido: error_handling_comprehensive
βœ“

body.json.total_error_tests.equals

PASSED
βœ“ Match
CondiΓ§Γ£o
body.json.total_error_tests.equals equals 10
Assertion passou conforme esperado
Valor recebido: 10
Captured Variables
{
  "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
  },
  "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"
  ],
  "recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ]
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "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
    }
  }
}

πŸ“„ Raw Suite Data

Complete Suite Data
{
  "node_id": "error-handling-test",
  "suite_name": "Error Handling Comprehensive Testing",
  "file_path": "/app/tests/error-handling-comprehensive-test.yaml",
  "priority": "high",
  "start_time": "2025-10-19T10:28:38.935Z",
  "end_time": "2025-10-19T10:28:38.978Z",
  "duration_ms": 43,
  "status": "success",
  "steps_executed": 21,
  "steps_successful": 21,
  "steps_failed": 0,
  "success_rate": 100,
  "steps_results": [
    {
      "step_id": "step-1-test-step-that-will-fail-but-should-continue",
      "qualified_step_id": "error-handling-test::step-1-test-step-that-will-fail-but-should-continue",
      "step_name": "Test step that will fail but should continue",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "GET",
        "url": "/status/500",
        "headers": {
          "X-Error-Test": "continue_on_failure",
          "X-Expected-Failure": "true"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/status/500",
        "curl_command": "curl -X GET -H 'X-Error-Test: continue_on_failure' -H 'X-Expected-Failure: true' \"http://httpbin/status/500\"",
        "raw_request": "GET /status/500 HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: continue_on_failure\r\nX-Expected-Failure: true\r\n\r\n",
        "raw_url": "{{base_url}}/status/500"
      },
      "response_details": {
        "status_code": 500,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "text/html; charset=utf-8",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true",
          "content-length": "0"
        },
        "body": "",
        "size_bytes": 0,
        "raw_response": "HTTP/1.1 500 INTERNAL SERVER ERROR\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: text/html; charset=utf-8\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\ncontent-length: 0\r\n\r\n"
      },
      "assertions_results": [],
      "captured_variables": {
        "failure_step_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `500`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-2-step-after-failure-should-execute",
      "qualified_step_id": "error-handling-test::step-2-step-after-failure-should-execute",
      "step_name": "Step after failure - should execute",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "GET",
        "url": "/get",
        "headers": {
          "X-Error-Test": "after_failure",
          "X-Previous-Failed": "true"
        },
        "params": {
          "recovery_test": "true",
          "after_failure": "true"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/get",
        "curl_command": "curl -X GET -H 'X-Error-Test: after_failure' -H 'X-Previous-Failed: true' \"http://httpbin/get\"",
        "raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: after_failure\r\nX-Previous-Failed: true\r\n\r\n",
        "raw_url": "{{base_url}}/get"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "465",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {
            "after_failure": "true",
            "recovery_test": "true"
          },
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Error-Test": "after_failure",
            "X-Previous-Failed": "true"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/get?recovery_test=true&after_failure=true"
        },
        "size_bytes": 377,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 465\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {\n    \"after_failure\": \"true\",\n    \"recovery_test\": \"true\"\n  },\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Error-Test\": \"after_failure\",\n    \"X-Previous-Failed\": \"true\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/get?recovery_test=true&after_failure=true\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        },
        {
          "field": "body.args.recovery_test.equals",
          "expected": "true",
          "actual": "true",
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "recovery_step_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      }
    },
    {
      "step_id": "step-3-handle-400-bad-request",
      "qualified_step_id": "error-handling-test::step-3-handle-400-bad-request",
      "step_name": "Handle 400 Bad Request",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "GET",
        "url": "/status/400",
        "headers": {
          "X-Error-Test": "bad_request",
          "X-Client-Error": "400"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/status/400",
        "curl_command": "curl -X GET -H 'X-Error-Test: bad_request' -H 'X-Client-Error: 400' \"http://httpbin/status/400\"",
        "raw_request": "GET /status/400 HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: bad_request\r\nX-Client-Error: 400\r\n\r\n",
        "raw_url": "{{base_url}}/status/400"
      },
      "response_details": {
        "status_code": 400,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "text/html; charset=utf-8",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true",
          "content-length": "0"
        },
        "body": "",
        "size_bytes": 0,
        "raw_response": "HTTP/1.1 400 BAD REQUEST\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: text/html; charset=utf-8\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\ncontent-length: 0\r\n\r\n"
      },
      "assertions_results": [],
      "captured_variables": {
        "bad_request_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `400`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-4-handle-401-unauthorized",
      "qualified_step_id": "error-handling-test::step-4-handle-401-unauthorized",
      "step_name": "Handle 401 Unauthorized",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "GET",
        "url": "/status/401",
        "headers": {
          "X-Error-Test": "unauthorized",
          "X-Auth-Error": "401"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/status/401",
        "curl_command": "curl -X GET -H 'X-Error-Test: unauthorized' -H 'X-Auth-Error: 401' \"http://httpbin/status/401\"",
        "raw_request": "GET /status/401 HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: unauthorized\r\nX-Auth-Error: 401\r\n\r\n",
        "raw_url": "{{base_url}}/status/401"
      },
      "response_details": {
        "status_code": 401,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "www-authenticate": "Basic realm=\"Fake Realm\"",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true",
          "content-length": "0"
        },
        "body": "",
        "size_bytes": 0,
        "raw_response": "HTTP/1.1 401 UNAUTHORIZED\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\nwww-authenticate: Basic realm=\"Fake Realm\"\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\ncontent-length: 0\r\n\r\n"
      },
      "assertions_results": [],
      "captured_variables": {
        "unauthorized_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `401`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-5-handle-403-forbidden",
      "qualified_step_id": "error-handling-test::step-5-handle-403-forbidden",
      "step_name": "Handle 403 Forbidden",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "GET",
        "url": "/status/403",
        "headers": {
          "X-Error-Test": "forbidden",
          "X-Permission-Error": "403"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/status/403",
        "curl_command": "curl -X GET -H 'X-Error-Test: forbidden' -H 'X-Permission-Error: 403' \"http://httpbin/status/403\"",
        "raw_request": "GET /status/403 HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: forbidden\r\nX-Permission-Error: 403\r\n\r\n",
        "raw_url": "{{base_url}}/status/403"
      },
      "response_details": {
        "status_code": 403,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "text/html; charset=utf-8",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true",
          "content-length": "0"
        },
        "body": "",
        "size_bytes": 0,
        "raw_response": "HTTP/1.1 403 FORBIDDEN\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: text/html; charset=utf-8\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\ncontent-length: 0\r\n\r\n"
      },
      "assertions_results": [],
      "captured_variables": {
        "forbidden_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `403`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-6-handle-404-not-found",
      "qualified_step_id": "error-handling-test::step-6-handle-404-not-found",
      "step_name": "Handle 404 Not Found",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "GET",
        "url": "/status/404",
        "headers": {
          "X-Error-Test": "not_found",
          "X-Resource-Error": "404"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/status/404",
        "curl_command": "curl -X GET -H 'X-Error-Test: not_found' -H 'X-Resource-Error: 404' \"http://httpbin/status/404\"",
        "raw_request": "GET /status/404 HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: not_found\r\nX-Resource-Error: 404\r\n\r\n",
        "raw_url": "{{base_url}}/status/404"
      },
      "response_details": {
        "status_code": 404,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "text/html; charset=utf-8",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true",
          "content-length": "0"
        },
        "body": "",
        "size_bytes": 0,
        "raw_response": "HTTP/1.1 404 NOT FOUND\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: text/html; charset=utf-8\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\ncontent-length: 0\r\n\r\n"
      },
      "assertions_results": [],
      "captured_variables": {
        "not_found_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `404`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-7-handle-429-too-many-requests",
      "qualified_step_id": "error-handling-test::step-7-handle-429-too-many-requests",
      "step_name": "Handle 429 Too Many Requests",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "GET",
        "url": "/status/429",
        "headers": {
          "X-Error-Test": "rate_limit",
          "X-Rate-Limit-Error": "429"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/status/429",
        "curl_command": "curl -X GET -H 'X-Error-Test: rate_limit' -H 'X-Rate-Limit-Error: 429' \"http://httpbin/status/429\"",
        "raw_request": "GET /status/429 HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: rate_limit\r\nX-Rate-Limit-Error: 429\r\n\r\n",
        "raw_url": "{{base_url}}/status/429"
      },
      "response_details": {
        "status_code": 429,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "text/html; charset=utf-8",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true",
          "content-length": "0"
        },
        "body": "",
        "size_bytes": 0,
        "raw_response": "HTTP/1.1 429 TOO MANY REQUESTS\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: text/html; charset=utf-8\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\ncontent-length: 0\r\n\r\n"
      },
      "assertions_results": [],
      "captured_variables": {
        "rate_limit_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `429`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-8-handle-500-internal-server-error",
      "qualified_step_id": "error-handling-test::step-8-handle-500-internal-server-error",
      "step_name": "Handle 500 Internal Server Error",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "GET",
        "url": "/status/500",
        "headers": {
          "X-Error-Test": "server_error",
          "X-Server-Error": "500"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/status/500",
        "curl_command": "curl -X GET -H 'X-Error-Test: server_error' -H 'X-Server-Error: 500' \"http://httpbin/status/500\"",
        "raw_request": "GET /status/500 HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: server_error\r\nX-Server-Error: 500\r\n\r\n",
        "raw_url": "{{base_url}}/status/500"
      },
      "response_details": {
        "status_code": 500,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "text/html; charset=utf-8",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true",
          "content-length": "0"
        },
        "body": "",
        "size_bytes": 0,
        "raw_response": "HTTP/1.1 500 INTERNAL SERVER ERROR\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: text/html; charset=utf-8\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\ncontent-length: 0\r\n\r\n"
      },
      "assertions_results": [],
      "captured_variables": {
        "server_error_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `500`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-9-handle-502-bad-gateway",
      "qualified_step_id": "error-handling-test::step-9-handle-502-bad-gateway",
      "step_name": "Handle 502 Bad Gateway",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "GET",
        "url": "/status/502",
        "headers": {
          "X-Error-Test": "bad_gateway",
          "X-Gateway-Error": "502"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/status/502",
        "curl_command": "curl -X GET -H 'X-Error-Test: bad_gateway' -H 'X-Gateway-Error: 502' \"http://httpbin/status/502\"",
        "raw_request": "GET /status/502 HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: bad_gateway\r\nX-Gateway-Error: 502\r\n\r\n",
        "raw_url": "{{base_url}}/status/502"
      },
      "response_details": {
        "status_code": 502,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "text/html; charset=utf-8",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true",
          "content-length": "0"
        },
        "body": "",
        "size_bytes": 0,
        "raw_response": "HTTP/1.1 502 BAD GATEWAY\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: text/html; charset=utf-8\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\ncontent-length: 0\r\n\r\n"
      },
      "assertions_results": [],
      "captured_variables": {
        "bad_gateway_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `502`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-10-handle-503-service-unavailable",
      "qualified_step_id": "error-handling-test::step-10-handle-503-service-unavailable",
      "step_name": "Handle 503 Service Unavailable",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "GET",
        "url": "/status/503",
        "headers": {
          "X-Error-Test": "service_unavailable",
          "X-Availability-Error": "503"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/status/503",
        "curl_command": "curl -X GET -H 'X-Error-Test: service_unavailable' -H 'X-Availability-Error: 503' \"http://httpbin/status/503\"",
        "raw_request": "GET /status/503 HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: service_unavailable\r\nX-Availability-Error: 503\r\n\r\n",
        "raw_url": "{{base_url}}/status/503"
      },
      "response_details": {
        "status_code": 503,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "text/html; charset=utf-8",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true",
          "content-length": "0"
        },
        "body": "",
        "size_bytes": 0,
        "raw_response": "HTTP/1.1 503 SERVICE UNAVAILABLE\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: text/html; charset=utf-8\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\ncontent-length: 0\r\n\r\n"
      },
      "assertions_results": [],
      "captured_variables": {
        "service_unavailable_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `503`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-11-primary-service-call-may-fail",
      "qualified_step_id": "error-handling-test::step-11-primary-service-call-may-fail",
      "step_name": "Primary service call (may fail)",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "GET",
        "url": "/status/500",
        "headers": {
          "X-Error-Test": "primary_service",
          "X-Fallback-Available": "true"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/status/500",
        "curl_command": "curl -X GET -H 'X-Error-Test: primary_service' -H 'X-Fallback-Available: true' \"http://httpbin/status/500\"",
        "raw_request": "GET /status/500 HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: primary_service\r\nX-Fallback-Available: true\r\n\r\n",
        "raw_url": "{{base_url}}/status/{{$faker.helpers.arrayElement(['200', '500'])}}"
      },
      "response_details": {
        "status_code": 500,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "text/html; charset=utf-8",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true",
          "content-length": "0"
        },
        "body": "",
        "size_bytes": 0,
        "raw_response": "HTTP/1.1 500 INTERNAL SERVER ERROR\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: text/html; charset=utf-8\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\ncontent-length: 0\r\n\r\n"
      },
      "assertions_results": [],
      "captured_variables": {
        "primary_service_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          },
          {
            "index": 2,
            "condition": "status_code == `500`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-12-fallback-service-call",
      "qualified_step_id": "error-handling-test::step-12-fallback-service-call",
      "step_name": "Fallback service call",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "GET",
        "url": "/get",
        "headers": {
          "X-Error-Test": "fallback_service",
          "X-Primary-Failed": "true"
        },
        "params": {
          "fallback": "true",
          "primary_failed": null
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/get",
        "curl_command": "curl -X GET -H 'X-Error-Test: fallback_service' -H 'X-Primary-Failed: true' \"http://httpbin/get\"",
        "raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: fallback_service\r\nX-Primary-Failed: true\r\n\r\n",
        "raw_url": "{{base_url}}/get"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "408",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {
            "fallback": "true"
          },
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Error-Test": "fallback_service",
            "X-Primary-Failed": "true"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/get?fallback=true"
        },
        "size_bytes": 327,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 408\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {\n    \"fallback\": \"true\"\n  },\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Error-Test\": \"fallback_service\",\n    \"X-Primary-Failed\": \"true\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/get?fallback=true\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "fallback_service_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-13-enhanced-service-with-degradation",
      "qualified_step_id": "error-handling-test::step-13-enhanced-service-with-degradation",
      "step_name": "Enhanced service with degradation",
      "status": "success",
      "duration_ms": 3,
      "request_details": {
        "method": "GET",
        "url": "/status/503",
        "headers": {
          "X-Error-Test": "enhanced_service",
          "X-Degradation-Mode": "available"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/status/503",
        "curl_command": "curl -X GET -H 'X-Error-Test: enhanced_service' -H 'X-Degradation-Mode: available' \"http://httpbin/status/503\"",
        "raw_request": "GET /status/503 HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: enhanced_service\r\nX-Degradation-Mode: available\r\n\r\n",
        "raw_url": "{{base_url}}/status/{{$faker.helpers.arrayElement(['200', '503'])}}"
      },
      "response_details": {
        "status_code": 503,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "text/html; charset=utf-8",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true",
          "content-length": "0"
        },
        "body": "",
        "size_bytes": 0,
        "raw_response": "HTTP/1.1 503 SERVICE UNAVAILABLE\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: text/html; charset=utf-8\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\ncontent-length: 0\r\n\r\n"
      },
      "assertions_results": [],
      "captured_variables": {
        "service_mode": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          },
          {
            "index": 2,
            "condition": "status_code == `503`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-14-basic-service-degraded-mode",
      "qualified_step_id": "error-handling-test::step-14-basic-service-degraded-mode",
      "step_name": "Basic service (degraded mode)",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "GET",
        "url": "/get",
        "headers": {
          "X-Error-Test": "basic_service",
          "X-Mode": "degraded"
        },
        "params": {
          "basic_mode": "true",
          "features": "limited"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/get",
        "curl_command": "curl -X GET -H 'X-Error-Test: basic_service' -H 'X-Mode: degraded' \"http://httpbin/get\"",
        "raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: basic_service\r\nX-Mode: degraded\r\n\r\n",
        "raw_url": "{{base_url}}/get"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "448",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {
            "basic_mode": "true",
            "features": "limited"
          },
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Error-Test": "basic_service",
            "X-Mode": "degraded"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/get?basic_mode=true&features=limited"
        },
        "size_bytes": 360,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 448\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {\n    \"basic_mode\": \"true\",\n    \"features\": \"limited\"\n  },\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Error-Test\": \"basic_service\",\n    \"X-Mode\": \"degraded\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/get?basic_mode=true&features=limited\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "degraded_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-15-step-1-of-chain",
      "qualified_step_id": "error-handling-test::step-15-step-1-of-chain",
      "step_name": "Step 1 of chain",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json",
          "X-Error-Test": "chain_step_1"
        },
        "body": {
          "step": 1,
          "chain_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "operation": "initialize"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Error-Test: chain_step_1' -d '{\"step\":1,\"chain_id\":\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\"operation\":\"initialize\"}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Error-Test: chain_step_1\r\nContent-Length: 91\r\n\r\n{\"step\":1,\"chain_id\":\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\"operation\":\"initialize\"}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "676",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"step\":1,\"chain_id\":\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\"operation\":\"initialize\"}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "91",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Error-Test": "chain_step_1"
          },
          "json": {
            "chain_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
            "operation": "initialize",
            "step": 1
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 554,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 676\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"step\\\":1,\\\"chain_id\\\":\\\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\\\",\\\"operation\\\":\\\"initialize\\\"}\",\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\": \"91\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Error-Test\": \"chain_step_1\"\n  },\n  \"json\": {\n    \"chain_id\": \"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\n    \"operation\": \"initialize\",\n    \"step\": 1\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": {
        "chain_step_1_data": 1
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      }
    },
    {
      "step_id": "step-16-step-2-of-chain-may-fail",
      "qualified_step_id": "error-handling-test::step-16-step-2-of-chain-may-fail",
      "step_name": "Step 2 of chain (may fail)",
      "status": "success",
      "duration_ms": 3,
      "request_details": {
        "method": "GET",
        "url": "/status/200",
        "headers": {
          "X-Error-Test": "chain_step_2",
          "X-Depends-On": 1
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/status/200",
        "curl_command": "curl -X GET -H 'X-Error-Test: chain_step_2' -H 'X-Depends-On: 1' \"http://httpbin/status/200\"",
        "raw_request": "GET /status/200 HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: chain_step_2\r\nX-Depends-On: 1\r\n\r\n",
        "raw_url": "{{base_url}}/status/{{$faker.helpers.arrayElement(['200', '500'])}}"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "text/html; charset=utf-8",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true",
          "content-length": "0"
        },
        "body": "",
        "size_bytes": 0,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: text/html; charset=utf-8\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\ncontent-length: 0\r\n\r\n"
      },
      "assertions_results": [],
      "captured_variables": {
        "chain_step_2_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          },
          {
            "index": 2,
            "condition": "status_code == `500`",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          }
        ]
      }
    },
    {
      "step_id": "step-17-step-3-with-conditional-logic",
      "qualified_step_id": "error-handling-test::step-17-step-3-with-conditional-logic",
      "step_name": "Step 3 with conditional logic",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json",
          "X-Error-Test": "chain_step_3",
          "X-Previous-Result": null
        },
        "body": {
          "step": 3,
          "chain_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "previous_step_result": null,
          "operation": "error_recovery"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Error-Test: chain_step_3' -d '{\"step\":3,\"chain_id\":\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\"previous_step_result\":null,\"operation\":\"error_recovery\"}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Error-Test: chain_step_3\r\nContent-Length: 123\r\n\r\n{\"step\":3,\"chain_id\":\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\"previous_step_result\":null,\"operation\":\"error_recovery\"}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "750",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"step\":3,\"chain_id\":\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\"previous_step_result\":null,\"operation\":\"error_recovery\"}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "123",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Error-Test": "chain_step_3"
          },
          "json": {
            "chain_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
            "operation": "error_recovery",
            "previous_step_result": null,
            "step": 3
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 621,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 750\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"step\\\":3,\\\"chain_id\\\":\\\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\\\",\\\"previous_step_result\\\":null,\\\"operation\\\":\\\"error_recovery\\\"}\",\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\": \"123\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Error-Test\": \"chain_step_3\"\n  },\n  \"json\": {\n    \"chain_id\": \"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\n    \"operation\": \"error_recovery\",\n    \"previous_step_result\": null,\n    \"step\": 3\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.previous_step_result.equals",
          "expected": null,
          "actual": null,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "chain_step_3_result": "error_recovery"
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      }
    },
    {
      "step_id": "step-18-service-with-detailed-error-info",
      "qualified_step_id": "error-handling-test::step-18-service-with-detailed-error-info",
      "step_name": "Service with detailed error info",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "GET",
        "url": "/status/422",
        "headers": {
          "X-Error-Test": "detailed_error",
          "X-Error-Details": "validation_failed"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/status/422",
        "curl_command": "curl -X GET -H 'X-Error-Test: detailed_error' -H 'X-Error-Details: validation_failed' \"http://httpbin/status/422\"",
        "raw_request": "GET /status/422 HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: detailed_error\r\nX-Error-Details: validation_failed\r\n\r\n",
        "raw_url": "{{base_url}}/status/422"
      },
      "response_details": {
        "status_code": 422,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "text/html; charset=utf-8",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true",
          "content-length": "0"
        },
        "body": "",
        "size_bytes": 0,
        "raw_response": "HTTP/1.1 422 UNPROCESSABLE ENTITY\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: text/html; charset=utf-8\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\ncontent-length: 0\r\n\r\n"
      },
      "assertions_results": [],
      "captured_variables": {
        "error_code": 422,
        "error_type": null,
        "error_message": "Unprocessable Entity",
        "error_details": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `422`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 4
          }
        ]
      }
    },
    {
      "step_id": "step-19-setup-that-might-fail",
      "qualified_step_id": "error-handling-test::step-19-setup-that-might-fail",
      "step_name": "Setup that might fail",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "POST",
        "url": "/status/201",
        "headers": {
          "Content-Type": "application/json",
          "X-Error-Test": "setup_operation"
        },
        "body": {
          "operation": "setup",
          "resource_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/status/201",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Error-Test: setup_operation' -d '{\"operation\":\"setup\",\"resource_id\":\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\"}' \"http://httpbin/status/201\"",
        "raw_request": "POST /status/201 HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Error-Test: setup_operation\r\nContent-Length: 80\r\n\r\n{\"operation\":\"setup\",\"resource_id\":\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\"}",
        "raw_url": "{{base_url}}/status/{{$faker.helpers.arrayElement(['201', '500'])}}"
      },
      "response_details": {
        "status_code": 201,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "text/html; charset=utf-8",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true",
          "content-length": "0"
        },
        "body": "",
        "size_bytes": 0,
        "raw_response": "HTTP/1.1 201 CREATED\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: text/html; charset=utf-8\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\ncontent-length: 0\r\n\r\n"
      },
      "assertions_results": [],
      "captured_variables": {
        "setup_result": null,
        "cleanup_needed": true
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `201`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 2
          },
          {
            "index": 2,
            "condition": "status_code == `500`",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          }
        ]
      }
    },
    {
      "step_id": "step-20-cleanup-resources",
      "qualified_step_id": "error-handling-test::step-20-cleanup-resources",
      "step_name": "Cleanup resources",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "DELETE",
        "url": "/delete",
        "headers": {
          "X-Error-Test": "cleanup",
          "X-Cleanup-Required": true,
          "X-Resource-ID": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/delete",
        "curl_command": "curl -X DELETE -H 'X-Error-Test: cleanup' -H 'X-Cleanup-Required: true' -H 'X-Resource-ID: error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248' \"http://httpbin/delete\"",
        "raw_request": "DELETE /delete HTTP/1.1\r\nHost: httpbin\r\nX-Error-Test: cleanup\r\nX-Cleanup-Required: true\r\nX-Resource-ID: error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\r\n\r\n",
        "raw_url": "{{base_url}}/delete"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "495",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Cleanup-Required": "true",
            "X-Error-Test": "cleanup",
            "X-Resource-Id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248"
          },
          "json": null,
          "origin": "172.18.0.3",
          "url": "http://httpbin/delete"
        },
        "size_bytes": 396,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 495\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"\",\n  \"files\": {},\n  \"form\": {},\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Cleanup-Required\": \"true\",\n    \"X-Error-Test\": \"cleanup\",\n    \"X-Resource-Id\": \"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\"\n  },\n  \"json\": null,\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/delete\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "cleanup_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          },
          {
            "index": 2,
            "condition": "status_code != `200`",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          }
        ]
      }
    },
    {
      "step_id": "step-21-collect-error-handling-test-results",
      "qualified_step_id": "error-handling-test::step-21-collect-error-handling-test-results",
      "step_name": "Collect error handling test results",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json",
          "X-Summary": "error_handling_complete"
        },
        "body": {
          "test_summary": "error_handling_comprehensive",
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "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
          ],
          "error_handling_results": {
            "continue_after_failure": null,
            "timeout_handling": "{{timeout_result}}",
            "bad_request": null,
            "unauthorized": null,
            "forbidden": null,
            "not_found": null,
            "rate_limit": null,
            "server_error": null,
            "bad_gateway": null,
            "service_unavailable": null,
            "primary_service": null,
            "fallback_service": null,
            "degradation_mode": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null
          },
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "total_error_tests": 10
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Summary: error_handling_complete' -d '{\"test_summary\":\"error_handling_comprehensive\",\"test_id\":\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\"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],\"error_handling_results\":{\"continue_after_failure\":null,\"timeout_handling\":\"{{timeout_result}}\",\"bad_request\":null,\"unauthorized\":null,\"forbidden\":null,\"not_found\":null,\"rate_limit\":null,\"server_error\":null,\"bad_gateway\":null,\"service_unavailable\":null,\"primary_service\":null,\"fallback_service\":null,\"degradation_mode\":null,\"chain_recovery\":\"error_recovery\",\"cleanup_status\":null},\"recovery_patterns\":[\"fallback_services\",\"graceful_degradation\",\"error_chain_recovery\",\"resource_cleanup\"],\"total_error_tests\":10}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Summary: error_handling_complete\r\nContent-Length: 900\r\n\r\n{\"test_summary\":\"error_handling_comprehensive\",\"test_id\":\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\"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],\"error_handling_results\":{\"continue_after_failure\":null,\"timeout_handling\":\"{{timeout_result}}\",\"bad_request\":null,\"unauthorized\":null,\"forbidden\":null,\"not_found\":null,\"rate_limit\":null,\"server_error\":null,\"bad_gateway\":null,\"service_unavailable\":null,\"primary_service\":null,\"fallback_service\":null,\"degradation_mode\":null,\"chain_recovery\":\"error_recovery\",\"cleanup_status\":null},\"recovery_patterns\":[\"fallback_services\",\"graceful_degradation\",\"error_chain_recovery\",\"resource_cleanup\"],\"total_error_tests\":10}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "2726",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"test_summary\":\"error_handling_comprehensive\",\"test_id\":\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\"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],\"error_handling_results\":{\"continue_after_failure\":null,\"timeout_handling\":\"{{timeout_result}}\",\"bad_request\":null,\"unauthorized\":null,\"forbidden\":null,\"not_found\":null,\"rate_limit\":null,\"server_error\":null,\"bad_gateway\":null,\"service_unavailable\":null,\"primary_service\":null,\"fallback_service\":null,\"degradation_mode\":null,\"chain_recovery\":\"error_recovery\",\"cleanup_status\":null},\"recovery_patterns\":[\"fallback_services\",\"graceful_degradation\",\"error_chain_recovery\",\"resource_cleanup\"],\"total_error_tests\":10}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "900",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Summary": "error_handling_complete"
          },
          "json": {
            "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
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 2249,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 2726\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"test_summary\\\":\\\"error_handling_comprehensive\\\",\\\"test_id\\\":\\\"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\\\",\\\"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],\\\"error_handling_results\\\":{\\\"continue_after_failure\\\":null,\\\"timeout_handling\\\":\\\"{{timeout_result}}\\\",\\\"bad_request\\\":null,\\\"unauthorized\\\":null,\\\"forbidden\\\":null,\\\"not_found\\\":null,\\\"rate_limit\\\":null,\\\"server_error\\\":null,\\\"bad_gateway\\\":null,\\\"service_unavailable\\\":null,\\\"primary_service\\\":null,\\\"fallback_service\\\":null,\\\"degradation_mode\\\":null,\\\"chain_recovery\\\":\\\"error_recovery\\\",\\\"cleanup_status\\\":null},\\\"recovery_patterns\\\":[\\\"fallback_services\\\",\\\"graceful_degradation\\\",\\\"error_chain_recovery\\\",\\\"resource_cleanup\\\"],\\\"total_error_tests\\\":10}\",\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\": \"900\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Summary\": \"error_handling_complete\"\n  },\n  \"json\": {\n    \"error_handling_results\": {\n      \"bad_gateway\": null,\n      \"bad_request\": null,\n      \"chain_recovery\": \"error_recovery\",\n      \"cleanup_status\": null,\n      \"continue_after_failure\": null,\n      \"degradation_mode\": null,\n      \"fallback_service\": null,\n      \"forbidden\": null,\n      \"not_found\": null,\n      \"primary_service\": null,\n      \"rate_limit\": null,\n      \"server_error\": null,\n      \"service_unavailable\": null,\n      \"timeout_handling\": \"{{timeout_result}}\",\n      \"unauthorized\": null\n    },\n    \"error_scenarios_tested\": [\n      \"continue_on_failure\",\n      \"timeout_handling\",\n      \"http_error_codes\",\n      \"error_recovery_fallback\",\n      \"graceful_degradation\",\n      \"chain_failure_recovery\",\n      \"error_propagation\",\n      \"network_errors\",\n      \"cleanup_after_errors\"\n    ],\n    \"http_status_codes_handled\": [\n      400,\n      401,\n      403,\n      404,\n      422,\n      429,\n      500,\n      502,\n      503\n    ],\n    \"recovery_patterns\": [\n      \"fallback_services\",\n      \"graceful_degradation\",\n      \"error_chain_recovery\",\n      \"resource_cleanup\"\n    ],\n    \"test_id\": \"error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248\",\n    \"test_summary\": \"error_handling_comprehensive\",\n    \"total_error_tests\": 10\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.test_summary.equals",
          "expected": "error_handling_comprehensive",
          "actual": "error_handling_comprehensive",
          "passed": true,
          "message": "OK"
        },
        {
          "field": "body.json.total_error_tests.equals",
          "expected": 10,
          "actual": 10,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "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
        },
        "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"
        ],
        "recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ]
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "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
          }
        }
      }
    }
  ],
  "variables_captured": {},
  "available_variables": {
    "api_base_url": "http://localhost:8080",
    "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
      }
    }
  },
  "suite_yaml_content": "suite_name: \"Error Handling Comprehensive Testing\"\nnode_id: \"error-handling-test\"\ndescription: \"Comprehensive testing of error handling patterns including continue_on_failure, timeout handling, network errors, and graceful degradation\"\nbase_url: \"{{httpbin_url}}\"\n\nmetadata:\n  priority: \"high\"\n  tags: [\"error-handling\", \"timeouts\", \"failures\", \"resilience\", \"graceful-degradation\"]\n  estimated_duration_ms: 25000\n\nvariables:\n  error_test_id: \"error-{{$faker.string.uuid}}\"\n  timeout_threshold: 5000\n  retry_attempts: 3\n\nexports: [\"error_handling_results\", \"failure_scenarios\", \"recovery_data\"]\n\nsteps:\n  # 1. Continue on Failure Testing\n  - name: \"Test step that will fail but should continue\"\n    request:\n      method: \"GET\"\n      url: \"/status/500\"  # Internal Server Error\n      headers:\n        X-Error-Test: \"continue_on_failure\"\n        X-Expected-Failure: \"true\"\n    scenarios:\n      - condition: \"status_code == `500`\"\n        then:\n          assert:\n            status_code: 500\n          capture:\n            failure_step_result: \"expected_failure\"\n    metadata:\n      continue_on_failure: true\n      description: \"This step should fail but not stop the suite\"\n\n  - name: \"Step after failure - should execute\"\n    request:\n      method: \"GET\"\n      url: \"/get\"\n      headers:\n        X-Error-Test: \"after_failure\"\n        X-Previous-Failed: \"true\"\n      params:\n        recovery_test: \"true\"\n        after_failure: \"true\"\n    assert:\n      status_code: 200\n      body:\n        args:\n          recovery_test: { equals: \"true\" }\n    capture:\n      recovery_step_result: \"executed_after_failure\"\n\n\n  # 3. HTTP Error Code Handling\n  - name: \"Handle 400 Bad Request\"\n    request:\n      method: \"GET\"\n      url: \"/status/400\"\n      headers:\n        X-Error-Test: \"bad_request\"\n        X-Client-Error: \"400\"\n    scenarios:\n      - condition: \"status_code == `400`\"\n        then:\n          assert:\n            status_code: 400\n          capture:\n            bad_request_result: \"handled_400_error\"\n\n  - name: \"Handle 401 Unauthorized\"\n    request:\n      method: \"GET\"\n      url: \"/status/401\"\n      headers:\n        X-Error-Test: \"unauthorized\"\n        X-Auth-Error: \"401\"\n    scenarios:\n      - condition: \"status_code == `401`\"\n        then:\n          assert:\n            status_code: 401\n          capture:\n            unauthorized_result: \"handled_401_error\"\n\n  - name: \"Handle 403 Forbidden\"\n    request:\n      method: \"GET\"\n      url: \"/status/403\"\n      headers:\n        X-Error-Test: \"forbidden\"\n        X-Permission-Error: \"403\"\n    scenarios:\n      - condition: \"status_code == `403`\"\n        then:\n          assert:\n            status_code: 403\n          capture:\n            forbidden_result: \"handled_403_error\"\n\n  - name: \"Handle 404 Not Found\"\n    request:\n      method: \"GET\"\n      url: \"/status/404\"\n      headers:\n        X-Error-Test: \"not_found\"\n        X-Resource-Error: \"404\"\n    scenarios:\n      - condition: \"status_code == `404`\"\n        then:\n          assert:\n            status_code: 404\n          capture:\n            not_found_result: \"handled_404_error\"\n\n  - name: \"Handle 429 Too Many Requests\"\n    request:\n      method: \"GET\"\n      url: \"/status/429\"\n      headers:\n        X-Error-Test: \"rate_limit\"\n        X-Rate-Limit-Error: \"429\"\n    scenarios:\n      - condition: \"status_code == `429`\"\n        then:\n          assert:\n            status_code: 429\n          capture:\n            rate_limit_result: \"handled_429_error\"\n\n  - name: \"Handle 500 Internal Server Error\"\n    request:\n      method: \"GET\"\n      url: \"/status/500\"\n      headers:\n        X-Error-Test: \"server_error\"\n        X-Server-Error: \"500\"\n    scenarios:\n      - condition: \"status_code == `500`\"\n        then:\n          assert:\n            status_code: 500\n          capture:\n            server_error_result: \"handled_500_error\"\n\n  - name: \"Handle 502 Bad Gateway\"\n    request:\n      method: \"GET\"\n      url: \"/status/502\"\n      headers:\n        X-Error-Test: \"bad_gateway\"\n        X-Gateway-Error: \"502\"\n    scenarios:\n      - condition: \"status_code == `502`\"\n        then:\n          assert:\n            status_code: 502\n          capture:\n            bad_gateway_result: \"handled_502_error\"\n\n  - name: \"Handle 503 Service Unavailable\"\n    request:\n      method: \"GET\"\n      url: \"/status/503\"\n      headers:\n        X-Error-Test: \"service_unavailable\"\n        X-Availability-Error: \"503\"\n    scenarios:\n      - condition: \"status_code == `503`\"\n        then:\n          assert:\n            status_code: 503\n          capture:\n            service_unavailable_result: \"handled_503_error\"\n\n  # 4. Error Recovery and Fallback\n  - name: \"Primary service call (may fail)\"\n    request:\n      method: \"GET\"\n      url: \"/status/{{$faker.helpers.arrayElement(['200', '500'])}}\"  # Random success/failure\n      headers:\n        X-Error-Test: \"primary_service\"\n        X-Fallback-Available: \"true\"\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n          capture:\n            primary_service_result: \"success\"\n\n      - condition: \"status_code == `500`\"\n        then:\n          assert:\n            status_code: 500\n          capture:\n            primary_service_result: \"failed\"\n    metadata:\n      continue_on_failure: true\n\n  - name: \"Fallback service call\"\n    metadata:\n      skip: \"{{primary_service_result}} === 'success'\"\n      description: \"Only run fallback if primary service failed\"\n    request:\n      method: \"GET\"\n      url: \"/get\"  # Always succeeds\n      headers:\n        X-Error-Test: \"fallback_service\"\n        X-Primary-Failed: \"true\"\n      params:\n        fallback: \"true\"\n        primary_failed: \"{{primary_service_result}}\"\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n          capture:\n            fallback_service_result: \"fallback_success\"\n\n  # 5. Graceful Degradation Testing\n  - name: \"Enhanced service with degradation\"\n    request:\n      method: \"GET\"\n      url: \"/status/{{$faker.helpers.arrayElement(['200', '503'])}}\"\n      headers:\n        X-Error-Test: \"enhanced_service\"\n        X-Degradation-Mode: \"available\"\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n          capture:\n            service_mode: \"full_features\"\n\n      - condition: \"status_code == `503`\"\n        then:\n          assert:\n            status_code: 503\n          capture:\n            service_mode: \"degraded\"\n    metadata:\n      continue_on_failure: true\n\n  - name: \"Basic service (degraded mode)\"\n    metadata:\n      skip: \"{{service_mode}} === 'full_features'\"\n    request:\n      method: \"GET\"\n      url: \"/get\"\n      headers:\n        X-Error-Test: \"basic_service\"\n        X-Mode: \"degraded\"\n      params:\n        basic_mode: \"true\"\n        features: \"limited\"\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n          capture:\n            degraded_result: \"basic_service_available\"\n\n  # 6. Chain Failure Recovery\n  - name: \"Step 1 of chain\"\n    request:\n      method: \"POST\"\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Error-Test: \"chain_step_1\"\n      body:\n        step: 1\n        chain_id: \"{{error_test_id}}\"\n        operation: \"initialize\"\n    assert:\n      status_code: 200\n    capture:\n      chain_step_1_data: \"body.json.step\"\n\n  - name: \"Step 2 of chain (may fail)\"\n    request:\n      method: \"GET\"\n      url: \"/status/{{$faker.helpers.arrayElement(['200', '500'])}}\"\n      headers:\n        X-Error-Test: \"chain_step_2\"\n        X-Depends-On: \"{{chain_step_1_data}}\"\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n          capture:\n            chain_step_2_result: \"success\"\n\n      - condition: \"status_code == `500`\"\n        then:\n          assert:\n            status_code: 500\n          capture:\n            chain_step_2_result: \"failed\"\n    metadata:\n      continue_on_failure: true\n\n  - name: \"Step 3 with conditional logic\"\n    request:\n      method: \"POST\"\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Error-Test: \"chain_step_3\"\n        X-Previous-Result: \"{{chain_step_2_result}}\"\n      body:\n        step: 3\n        chain_id: \"{{error_test_id}}\"\n        previous_step_result: \"{{chain_step_2_result}}\"\n        operation: \"{{chain_step_2_result === 'success' ? 'normal_operation' : 'error_recovery'}}\"\n    assert:\n      status_code: 200\n      body:\n        json:\n          previous_step_result: { equals: \"{{chain_step_2_result}}\" }\n    capture:\n      chain_step_3_result: \"body.json.operation\"\n\n  # 7. Error Propagation and Capture\n  - name: \"Service with detailed error info\"\n    request:\n      method: \"GET\"\n      url: \"/status/422\"  # Unprocessable Entity\n      headers:\n        X-Error-Test: \"detailed_error\"\n        X-Error-Details: \"validation_failed\"\n    scenarios:\n      - condition: \"status_code == `422`\"\n        then:\n          assert:\n            status_code: 422\n          capture:\n            error_code: \"422\"\n            error_type: \"validation_error\"\n            error_message: \"`Unprocessable Entity`\"\n            error_details: \"validation_failed\"\n\n  # 9. Cleanup After Errors\n  - name: \"Setup that might fail\"\n    request:\n      method: \"POST\"\n      url: \"/status/{{$faker.helpers.arrayElement(['201', '500'])}}\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Error-Test: \"setup_operation\"\n      body:\n        operation: \"setup\"\n        resource_id: \"{{error_test_id}}\"\n    scenarios:\n      - condition: \"status_code == `201`\"\n        then:\n          assert:\n            status_code: 201\n          capture:\n            setup_result: \"success\"\n            cleanup_needed: true\n\n      - condition: \"status_code == `500`\"\n        then:\n          assert:\n            status_code: 500\n          capture:\n            setup_result: \"failed\"\n            cleanup_needed: false\n    metadata:\n      continue_on_failure: true\n\n  - name: \"Cleanup resources\"\n    metadata:\n      always_run: true\n      description: \"Always cleanup, regardless of previous failures\"\n    request:\n      method: \"DELETE\"\n      url: \"/delete\"\n      headers:\n        X-Error-Test: \"cleanup\"\n        X-Cleanup-Required: \"{{cleanup_needed}}\"\n        X-Resource-ID: \"{{error_test_id}}\"\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n          capture:\n            cleanup_result: \"completed\"\n\n      - condition: \"status_code != `200`\"\n        then:\n          capture:\n            cleanup_result: \"attempted\"\n\n  # 10. Final Error Handling Summary\n  - name: \"Collect error handling test results\"\n    request:\n      method: \"POST\"\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Summary: \"error_handling_complete\"\n      body:\n        test_summary: \"error_handling_comprehensive\"\n        test_id: \"{{error_test_id}}\"\n        error_scenarios_tested:\n          - \"continue_on_failure\"\n          - \"timeout_handling\"\n          - \"http_error_codes\"\n          - \"error_recovery_fallback\"\n          - \"graceful_degradation\"\n          - \"chain_failure_recovery\"\n          - \"error_propagation\"\n          - \"network_errors\"\n          - \"cleanup_after_errors\"\n        http_status_codes_handled:\n          - 400  # Bad Request\n          - 401  # Unauthorized\n          - 403  # Forbidden\n          - 404  # Not Found\n          - 422  # Unprocessable Entity\n          - 429  # Too Many Requests\n          - 500  # Internal Server Error\n          - 502  # Bad Gateway\n          - 503  # Service Unavailable\n        error_handling_results:\n          continue_after_failure: \"{{recovery_step_result}}\"\n          timeout_handling: \"{{timeout_result}}\"\n          bad_request: \"{{bad_request_result}}\"\n          unauthorized: \"{{unauthorized_result}}\"\n          forbidden: \"{{forbidden_result}}\"\n          not_found: \"{{not_found_result}}\"\n          rate_limit: \"{{rate_limit_result}}\"\n          server_error: \"{{server_error_result}}\"\n          bad_gateway: \"{{bad_gateway_result}}\"\n          service_unavailable: \"{{service_unavailable_result}}\"\n          primary_service: \"{{primary_service_result}}\"\n          fallback_service: \"{{fallback_service_result}}\"\n          degradation_mode: \"{{service_mode}}\"\n          chain_recovery: \"{{chain_step_3_result}}\"\n          cleanup_status: \"{{cleanup_result}}\"\n        recovery_patterns:\n          - \"fallback_services\"\n          - \"graceful_degradation\"\n          - \"error_chain_recovery\"\n          - \"resource_cleanup\"\n        total_error_tests: 10\n    assert:\n      status_code: 200\n      body:\n        json:\n          test_summary: { equals: \"error_handling_comprehensive\" }\n          total_error_tests: { equals: 10 }\n          error_scenarios_tested: { length: 9 }\n          http_status_codes_handled: { length: 9 }\n    capture:\n      error_handling_results: \"body.json\"\n      failure_scenarios: \"body.json.error_scenarios_tested\"\n      recovery_data: \"body.json.recovery_patterns\""
}
Flow Test Engine
Report generated on 10/19/2025, 10:28:45 AM
Β© 2025 Flow Test Engine. Dynamic Reporting System.