Teste de Cenários Condicionais Avançados

/app/tests/complex-conditional-scenarios.yaml

medium
6 Steps
Duration: 27ms
Success Rate: 100%
Successful Steps
6
100% success rate
Failed Steps
0
0% of total
⏭️
Skipped Steps
0
0% of total
🔗
HTTP Requests
6
100% requests
🔄
Iterações
0
0 steps com iterações

📊 Execution Timeline

# Status Step Name Type Duration Started At Details
1
Test Guest User Access
GET /get
request
4ms 19/10/2025, 10:28:39
✅ Request completed successfully
2
Test Registered User Access
GET /get
request
3ms 19/10/2025, 10:28:39
✅ Request completed successfully
3
Test Premium User Features
POST /post
request
4ms 19/10/2025, 10:28:39
✅ Request completed successfully
4
Test Admin Capabilities
GET /get
request
2ms 19/10/2025, 10:28:39
✅ Request completed successfully
5
Cross-User-Type Validation
POST /post
request
6ms 19/10/2025, 10:28:39
✅ Request completed successfully
6
Complete Multi-Scenario Flow
POST /post
request
6ms 19/10/2025, 10:28:39
✅ Request completed successfully

🌐 HTTP Requests Debug Info

Test Guest User Access

Step #1

4ms
cURL Command
curl -X GET -H 'Accept: application/json' -H 'X-User-Type: guest' "http://httpbin/get"

📤 Request

Method: GET
URL: http://httpbin/get
Base URL: http://httpbin
Request Headers
Accept: application/json
X-User-Type: guest

📥 Response

Status Code: 200
Duration: 4ms
Size: 320 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 401
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {
    "action": "get_features",
    "user_type": "guest"
  },
  "headers": {
    "Accept": "application/json",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-User-Type": "guest"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/get?action=get_features&user_type=guest"
}
Captured Variables
{
  "guest_access_granted": null,
  "guest_features": [
    "basic_search"
  ],
  "guest_limits": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "test_matrix": [
    {
      "user_type": "guest",
      "token": "",
      "expected_features": [
        "basic_search"
      ],
      "expected_limits": {
        "requests_per_hour": 10,
        "data_export": false
      },
      "expected_status": 200
    },
    {
      "user_type": "registered",
      "token": "reg_token_abc123",
      "expected_features": [
        "basic_search",
        "save_searches"
      ],
      "expected_limits": {
        "requests_per_hour": 100,
        "data_export": false
      },
      "expected_status": 200
    },
    {
      "user_type": "premium",
      "token": "premium_token_xyz789",
      "expected_features": [
        "basic_search",
        "save_searches",
        "advanced_filters",
        "export_data"
      ],
      "expected_limits": {
        "requests_per_hour": 1000,
        "data_export": true
      },
      "expected_status": 200
    },
    {
      "user_type": "admin",
      "token": "admin_token_super456",
      "expected_features": [
        "all"
      ],
      "expected_limits": {
        "requests_per_hour": -1,
        "data_export": true,
        "admin_access": true
      },
      "expected_status": 200
    }
  ],
  "api_responses": {
    "guest_response": {
      "available_features": [
        "basic_search"
      ],
      "limits": {
        "requests_per_hour": 10,
        "premium_required": true
      }
    },
    "registered_response": {
      "available_features": [
        "basic_search",
        "save_searches"
      ],
      "limits": {
        "requests_per_hour": 100,
        "premium_upgrade_available": true
      }
    },
    "premium_response": {
      "available_features": [
        "basic_search",
        "save_searches",
        "advanced_filters",
        "export_data"
      ],
      "limits": {
        "requests_per_hour": 1000,
        "unlimited_features": false
      }
    },
    "admin_response": {
      "available_features": [
        "all"
      ],
      "limits": {
        "requests_per_hour": -1,
        "unlimited_features": true,
        "admin_panels": [
          "user_management",
          "system_monitoring"
        ]
      }
    }
  },
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then ✓
Scenario 2: none ○
Scenario 3: none ○

Test Registered User Access

Step #2

3ms
cURL Command
curl -X GET -H 'Authorization: Bearer {{test_matrix[1].token}}' -H 'Accept: application/json' -H 'X-User-Type: registered' "http://httpbin/get"

📤 Request

Method: GET
URL: http://httpbin/get
Base URL: http://httpbin
Request Headers
Authorization: Bearer {{test_matrix[1].token}}
Accept: application/json
X-User-Type: registered

📥 Response

Status Code: 200
Duration: 3ms
Size: 385 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 473
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {
    "action": "get_features",
    "user_type": "registered"
  },
  "headers": {
    "Accept": "application/json",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Authorization": "Bearer {{test_matrix[1].token}}",
    "Connection": "keep-alive",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-User-Type": "registered"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/get?action=get_features&user_type=registered"
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "test_matrix": [
    {
      "user_type": "guest",
      "token": "",
      "expected_features": [
        "basic_search"
      ],
      "expected_limits": {
        "requests_per_hour": 10,
        "data_export": false
      },
      "expected_status": 200
    },
    {
      "user_type": "registered",
      "token": "reg_token_abc123",
      "expected_features": [
        "basic_search",
        "save_searches"
      ],
      "expected_limits": {
        "requests_per_hour": 100,
        "data_export": false
      },
      "expected_status": 200
    },
    {
      "user_type": "premium",
      "token": "premium_token_xyz789",
      "expected_features": [
        "basic_search",
        "save_searches",
        "advanced_filters",
        "export_data"
      ],
      "expected_limits": {
        "requests_per_hour": 1000,
        "data_export": true
      },
      "expected_status": 200
    },
    {
      "user_type": "admin",
      "token": "admin_token_super456",
      "expected_features": [
        "all"
      ],
      "expected_limits": {
        "requests_per_hour": -1,
        "data_export": true,
        "admin_access": true
      },
      "expected_status": 200
    }
  ],
  "api_responses": {
    "guest_response": {
      "available_features": [
        "basic_search"
      ],
      "limits": {
        "requests_per_hour": 10,
        "premium_required": true
      }
    },
    "registered_response": {
      "available_features": [
        "basic_search",
        "save_searches"
      ],
      "limits": {
        "requests_per_hour": 100,
        "premium_upgrade_available": true
      }
    },
    "premium_response": {
      "available_features": [
        "basic_search",
        "save_searches",
        "advanced_filters",
        "export_data"
      ],
      "limits": {
        "requests_per_hour": 1000,
        "unlimited_features": false
      }
    },
    "admin_response": {
      "available_features": [
        "all"
      ],
      "limits": {
        "requests_per_hour": -1,
        "unlimited_features": true,
        "admin_panels": [
          "user_management",
          "system_monitoring"
        ]
      }
    }
  },
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null
}

🎭 Scenarios

Executed: 0 scenarios
Scenario 1: none ○
Scenario 2: none ○
Scenario 3: none ○

Test Premium User Features

Step #3

4ms
cURL Command
curl -X POST -H 'Authorization: Bearer {{test_matrix[2].token}}' -H 'Content-Type: application/json' -H 'X-User-Type: premium' -d '{"action":"test_premium_features","user_type":"premium","requested_features":["advanced_filters","export_data"]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Authorization: Bearer {{test_matrix[2].token}}
Content-Type: application/json
X-User-Type: premium
Request Body
{
  "action": "test_premium_features",
  "user_type": "premium",
  "requested_features": [
    "advanced_filters",
    "export_data"
  ]
}

📥 Response

Status Code: 200
Duration: 4ms
Size: 645 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 794
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"action\":\"test_premium_features\",\"user_type\":\"premium\",\"requested_features\":[\"advanced_filters\",\"export_data\"]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Authorization": "Bearer {{test_matrix[2].token}}",
    "Connection": "keep-alive",
    "Content-Length": "112",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-User-Type": "premium"
  },
  "json": {
    "action": "test_premium_features",
    "requested_features": [
      "advanced_filters",
      "export_data"
    ],
    "user_type": "premium"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
Captured Variables
{
  "premium_access": null,
  "premium_features": [
    "basic_search",
    "save_searches",
    "advanced_filters",
    "export_data"
  ],
  "export_enabled": "{{api_responses.premium_response.available_features | contains('export_data')}}",
  "advanced_filters": "{{api_responses.premium_response.available_features | contains('advanced_filters')}}"
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "test_matrix": [
    {
      "user_type": "guest",
      "token": "",
      "expected_features": [
        "basic_search"
      ],
      "expected_limits": {
        "requests_per_hour": 10,
        "data_export": false
      },
      "expected_status": 200
    },
    {
      "user_type": "registered",
      "token": "reg_token_abc123",
      "expected_features": [
        "basic_search",
        "save_searches"
      ],
      "expected_limits": {
        "requests_per_hour": 100,
        "data_export": false
      },
      "expected_status": 200
    },
    {
      "user_type": "premium",
      "token": "premium_token_xyz789",
      "expected_features": [
        "basic_search",
        "save_searches",
        "advanced_filters",
        "export_data"
      ],
      "expected_limits": {
        "requests_per_hour": 1000,
        "data_export": true
      },
      "expected_status": 200
    },
    {
      "user_type": "admin",
      "token": "admin_token_super456",
      "expected_features": [
        "all"
      ],
      "expected_limits": {
        "requests_per_hour": -1,
        "data_export": true,
        "admin_access": true
      },
      "expected_status": 200
    }
  ],
  "api_responses": {
    "guest_response": {
      "available_features": [
        "basic_search"
      ],
      "limits": {
        "requests_per_hour": 10,
        "premium_required": true
      }
    },
    "registered_response": {
      "available_features": [
        "basic_search",
        "save_searches"
      ],
      "limits": {
        "requests_per_hour": 100,
        "premium_upgrade_available": true
      }
    },
    "premium_response": {
      "available_features": [
        "basic_search",
        "save_searches",
        "advanced_filters",
        "export_data"
      ],
      "limits": {
        "requests_per_hour": 1000,
        "unlimited_features": false
      }
    },
    "admin_response": {
      "available_features": [
        "all"
      ],
      "limits": {
        "requests_per_hour": -1,
        "unlimited_features": true,
        "admin_panels": [
          "user_management",
          "system_monitoring"
        ]
      }
    }
  },
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then ✓
Scenario 2: none ○
Scenario 3: none ○

Test Admin Capabilities

Step #4

2ms
cURL Command
curl -X GET -H 'Authorization: Bearer {{test_matrix[3].token}}' -H 'Accept: application/json' -H 'X-User-Type: admin' -H 'X-Admin-Action: dashboard' "http://httpbin/get"

📤 Request

Method: GET
URL: http://httpbin/get
Base URL: http://httpbin
Request Headers
Authorization: Bearer {{test_matrix[3].token}}
Accept: application/json
X-User-Type: admin
X-Admin-Action: dashboard

📥 Response

Status Code: 200
Duration: 2ms
Size: 405 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 500
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {
    "action": "admin_dashboard",
    "permissions": "all"
  },
  "headers": {
    "Accept": "application/json",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Authorization": "Bearer {{test_matrix[3].token}}",
    "Connection": "keep-alive",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Admin-Action": "dashboard",
    "X-User-Type": "admin"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/get?action=admin_dashboard&permissions=all"
}
Captured Variables
{
  "admin_access": null,
  "admin_capabilities": [
    "user_management",
    "system_monitoring"
  ],
  "unlimited_access": true
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "test_matrix": [
    {
      "user_type": "guest",
      "token": "",
      "expected_features": [
        "basic_search"
      ],
      "expected_limits": {
        "requests_per_hour": 10,
        "data_export": false
      },
      "expected_status": 200
    },
    {
      "user_type": "registered",
      "token": "reg_token_abc123",
      "expected_features": [
        "basic_search",
        "save_searches"
      ],
      "expected_limits": {
        "requests_per_hour": 100,
        "data_export": false
      },
      "expected_status": 200
    },
    {
      "user_type": "premium",
      "token": "premium_token_xyz789",
      "expected_features": [
        "basic_search",
        "save_searches",
        "advanced_filters",
        "export_data"
      ],
      "expected_limits": {
        "requests_per_hour": 1000,
        "data_export": true
      },
      "expected_status": 200
    },
    {
      "user_type": "admin",
      "token": "admin_token_super456",
      "expected_features": [
        "all"
      ],
      "expected_limits": {
        "requests_per_hour": -1,
        "data_export": true,
        "admin_access": true
      },
      "expected_status": 200
    }
  ],
  "api_responses": {
    "guest_response": {
      "available_features": [
        "basic_search"
      ],
      "limits": {
        "requests_per_hour": 10,
        "premium_required": true
      }
    },
    "registered_response": {
      "available_features": [
        "basic_search",
        "save_searches"
      ],
      "limits": {
        "requests_per_hour": 100,
        "premium_upgrade_available": true
      }
    },
    "premium_response": {
      "available_features": [
        "basic_search",
        "save_searches",
        "advanced_filters",
        "export_data"
      ],
      "limits": {
        "requests_per_hour": 1000,
        "unlimited_features": false
      }
    },
    "admin_response": {
      "available_features": [
        "all"
      ],
      "limits": {
        "requests_per_hour": -1,
        "unlimited_features": true,
        "admin_panels": [
          "user_management",
          "system_monitoring"
        ]
      }
    }
  },
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then ✓
Scenario 2: none ○
Scenario 3: none ○

Cross-User-Type Validation

Step #5

6ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Test-Validation: cross_user_matrix' -d '{"validation_type":"cross_user_access","test_results":{"guest":{"access":false,"features":["basic_search"],"limits":null},"registered":{"access":false,"features":"{{registered_features}}","feature_count":0},"premium":{"access":false,"export_enabled":true,"advanced_filters":true},"admin":{"access":false,"unlimited":true,"capabilities":["user_management","system_monitoring"]}}}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Test-Validation: cross_user_matrix
Request Body
{
  "validation_type": "cross_user_access",
  "test_results": {
    "guest": {
      "access": false,
      "features": [
        "basic_search"
      ],
      "limits": null
    },
    "registered": {
      "access": false,
      "features": "{{registered_features}}",
      "feature_count": 0
    },
    "premium": {
      "access": false,
      "export_enabled": true,
      "advanced_filters": true
    },
    "admin": {
      "access": false,
      "unlimited": true,
      "capabilities": [
        "user_management",
        "system_monitoring"
      ]
    }
  }
}

📥 Response

Status Code: 200
Duration: 6ms
Size: 1175 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 1538
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"validation_type\":\"cross_user_access\",\"test_results\":{\"guest\":{\"access\":false,\"features\":[\"basic_search\"],\"limits\":null},\"registered\":{\"access\":false,\"features\":\"{{registered_features}}\",\"feature_count\":0},\"premium\":{\"access\":false,\"export_enabled\":true,\"advanced_filters\":true},\"admin\":{\"access\":false,\"unlimited\":true,\"capabilities\":[\"user_management\",\"system_monitoring\"]}}}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "378",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Test-Validation": "cross_user_matrix"
  },
  "json": {
    "test_results": {
      "admin": {
        "access": false,
        "capabilities": [
          "user_management",
          "system_monitoring"
        ],
        "unlimited": true
      },
      "guest": {
        "access": false,
        "features": [
          "basic_search"
        ],
        "limits": null
      },
      "premium": {
        "access": false,
        "advanced_filters": true,
        "export_enabled": true
      },
      "registered": {
        "access": false,
        "feature_count": 0,
        "features": "{{registered_features}}"
      }
    },
    "validation_type": "cross_user_access"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
Captured Variables
{
  "validation_passed": null,
  "access_matrix_valid": null,
  "user_access_matrix": {
    "guest_valid": false,
    "registered_valid": false,
    "premium_valid": false,
    "admin_valid": false
  },
  "hierarchy_respected": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "test_matrix": [
    {
      "user_type": "guest",
      "token": "",
      "expected_features": [
        "basic_search"
      ],
      "expected_limits": {
        "requests_per_hour": 10,
        "data_export": false
      },
      "expected_status": 200
    },
    {
      "user_type": "registered",
      "token": "reg_token_abc123",
      "expected_features": [
        "basic_search",
        "save_searches"
      ],
      "expected_limits": {
        "requests_per_hour": 100,
        "data_export": false
      },
      "expected_status": 200
    },
    {
      "user_type": "premium",
      "token": "premium_token_xyz789",
      "expected_features": [
        "basic_search",
        "save_searches",
        "advanced_filters",
        "export_data"
      ],
      "expected_limits": {
        "requests_per_hour": 1000,
        "data_export": true
      },
      "expected_status": 200
    },
    {
      "user_type": "admin",
      "token": "admin_token_super456",
      "expected_features": [
        "all"
      ],
      "expected_limits": {
        "requests_per_hour": -1,
        "data_export": true,
        "admin_access": true
      },
      "expected_status": 200
    }
  ],
  "api_responses": {
    "guest_response": {
      "available_features": [
        "basic_search"
      ],
      "limits": {
        "requests_per_hour": 10,
        "premium_required": true
      }
    },
    "registered_response": {
      "available_features": [
        "basic_search",
        "save_searches"
      ],
      "limits": {
        "requests_per_hour": 100,
        "premium_upgrade_available": true
      }
    },
    "premium_response": {
      "available_features": [
        "basic_search",
        "save_searches",
        "advanced_filters",
        "export_data"
      ],
      "limits": {
        "requests_per_hour": 1000,
        "unlimited_features": false
      }
    },
    "admin_response": {
      "available_features": [
        "all"
      ],
      "limits": {
        "requests_per_hour": -1,
        "unlimited_features": true,
        "admin_panels": [
          "user_management",
          "system_monitoring"
        ]
      }
    }
  },
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null
}

🎭 Scenarios

Executed: 2 scenarios
Scenario 1: then ✓
Scenario 2: then ✓

Complete Multi-Scenario Flow

Step #6

6ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"flow_test":"multi_scenario","scenarios_tested":[{"type":"guest","success":false,"features_count":1},{"type":"registered","success":false,"upgrade_available":false},{"type":"premium","success":false,"export_enabled":true},{"type":"admin","success":false,"unlimited":true}]}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
Request Body
{
  "flow_test": "multi_scenario",
  "scenarios_tested": [
    {
      "type": "guest",
      "success": false,
      "features_count": 1
    },
    {
      "type": "registered",
      "success": false,
      "upgrade_available": false
    },
    {
      "type": "premium",
      "success": false,
      "export_enabled": true
    },
    {
      "type": "admin",
      "success": false,
      "unlimited": true
    }
  ]
}

📥 Response

Status Code: 200
Duration: 6ms
Size: 919 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 1219
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"flow_test\":\"multi_scenario\",\"scenarios_tested\":[{\"type\":\"guest\",\"success\":false,\"features_count\":1},{\"type\":\"registered\",\"success\":false,\"upgrade_available\":false},{\"type\":\"premium\",\"success\":false,\"export_enabled\":true},{\"type\":\"admin\",\"success\":false,\"unlimited\":true}]}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "274",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1"
  },
  "json": {
    "flow_test": "multi_scenario",
    "scenarios_tested": [
      {
        "features_count": 1,
        "success": false,
        "type": "guest"
      },
      {
        "success": false,
        "type": "registered",
        "upgrade_available": false
      },
      {
        "export_enabled": true,
        "success": false,
        "type": "premium"
      },
      {
        "success": false,
        "type": "admin",
        "unlimited": true
      }
    ]
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
Captured Variables
{
  "all_scenarios_tested": null,
  "scenario_results": {
    "guest_scenario": "not_tested",
    "registered_scenario": "not_tested",
    "premium_scenario": "not_tested",
    "admin_scenario": "not_tested",
    "cross_validation": "not_tested"
  },
  "conditional_flow_summary": {
    "total_scenarios": 6,
    "conditions_tested": 12,
    "user_types_validated": 4,
    "matrix_validation": false,
    "test_complete": true
  }
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "test_matrix": [
    {
      "user_type": "guest",
      "token": "",
      "expected_features": [
        "basic_search"
      ],
      "expected_limits": {
        "requests_per_hour": 10,
        "data_export": false
      },
      "expected_status": 200
    },
    {
      "user_type": "registered",
      "token": "reg_token_abc123",
      "expected_features": [
        "basic_search",
        "save_searches"
      ],
      "expected_limits": {
        "requests_per_hour": 100,
        "data_export": false
      },
      "expected_status": 200
    },
    {
      "user_type": "premium",
      "token": "premium_token_xyz789",
      "expected_features": [
        "basic_search",
        "save_searches",
        "advanced_filters",
        "export_data"
      ],
      "expected_limits": {
        "requests_per_hour": 1000,
        "data_export": true
      },
      "expected_status": 200
    },
    {
      "user_type": "admin",
      "token": "admin_token_super456",
      "expected_features": [
        "all"
      ],
      "expected_limits": {
        "requests_per_hour": -1,
        "data_export": true,
        "admin_access": true
      },
      "expected_status": 200
    }
  ],
  "api_responses": {
    "guest_response": {
      "available_features": [
        "basic_search"
      ],
      "limits": {
        "requests_per_hour": 10,
        "premium_required": true
      }
    },
    "registered_response": {
      "available_features": [
        "basic_search",
        "save_searches"
      ],
      "limits": {
        "requests_per_hour": 100,
        "premium_upgrade_available": true
      }
    },
    "premium_response": {
      "available_features": [
        "basic_search",
        "save_searches",
        "advanced_filters",
        "export_data"
      ],
      "limits": {
        "requests_per_hour": 1000,
        "unlimited_features": false
      }
    },
    "admin_response": {
      "available_features": [
        "all"
      ],
      "limits": {
        "requests_per_hour": -1,
        "unlimited_features": true,
        "admin_panels": [
          "user_management",
          "system_monitoring"
        ]
      }
    }
  },
  "scenario_results": {
    "guest_scenario": "not_tested",
    "registered_scenario": "not_tested",
    "premium_scenario": "not_tested",
    "admin_scenario": "not_tested",
    "cross_validation": "not_tested"
  },
  "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
  "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
  "auth_flows_test.user_permissions": [
    "read",
    "write"
  ],
  "auth_flows_test.auth_flow_results": {
    "jwt_authentication": {
      "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
      "tokens_issued": 2,
      "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
    },
    "oauth2_authentication": {
      "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
      "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
      "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
    },
    "security_validation": {
      "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
      "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
      "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
    },
    "session_management": {
      "logout_success": "{{js: Boolean(variables.complete_logout)}}",
      "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
    }
  },
  "complex-workflows-test.workflow_results": {
    "api_contract_validations": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "business_outcomes": {
      "customer_id": "{{customer_id}}",
      "items_purchased": 3,
      "order_id": null,
      "total_revenue": 594.96,
      "transaction_id": null,
      "workflow_completion": null
    },
    "ecommerce_workflow_results": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "end_to_end_success": true,
    "microservices_communication": {
      "inventory_service": null,
      "notification_service": null
    },
    "test_summary": "complex_workflows_ecommerce_contracts",
    "total_complex_workflow_tests": 13,
    "workflow_patterns_tested": [
      "customer_lifecycle_management",
      "product_catalog_interaction",
      "cart_and_checkout_process",
      "payment_transaction_flow",
      "order_fulfillment_pipeline",
      "api_contract_validation",
      "microservices_integration",
      "end_to_end_business_process",
      "workflow_analytics_tracking"
    ],
    "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
  },
  "complex-workflows-test.ecommerce_data": {
    "cart_management": "success",
    "catalog_browsing": null,
    "customer_registration": null,
    "fulfillment_initiated": null,
    "order_created": null,
    "payment_processed": null,
    "product_details": null,
    "promotions_applied": null,
    "shipping_calculated": null
  },
  "complex-workflows-test.contract_validation_results": {
    "order_service": null,
    "payment_service": null,
    "user_service": null
  },
  "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
  "input-capture-test.normalized_email": "John.Doe@Example.COM",
  "input-capture-test.email_domain": "John.Doe@Example.COM",
  "input-capture-test.full_name": "John Michael Doe",
  "dependency-setup.auth_token": "test_user",
  "dependency-setup.session_id": "172.18.0.3",
  "dependency-setup.config_id": "v2",
  "dependency-setup.setup_timestamp": true,
  "comprehensive_basic.captured_echo_data": {
    "action": "create_resource",
    "metadata": {
      "api_version": "v2.1",
      "test_mode": true,
      "timestamp": "2024-01-01T00:00:00Z"
    },
    "user_id": 12345,
    "username": "flow_test_user"
  },
  "comprehensive_basic.generated_uuid": "httpbin",
  "comprehensive_basic.final_status": "completed",
  "javascript-expressions.js_calculated": 50,
  "javascript-expressions.js_timestamp": 1760869717656,
  "iteration-examples.users_tested": null,
  "iteration-examples.range_test_summary": null,
  "sensitive-data-security.security_test_passed": null,
  "sensitive-data-security.sensitive_data_masked": null,
  "sensitive-data-security.auth_tokens_secure": null,
  "webhooks-realtime.webhook_delivered": true,
  "webhooks-realtime.webhook_system_healthy": false,
  "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
  "webhooks-realtime.stream_event_count": 3,
  "retry-logic-comprehensive.retry_attempts": 1,
  "retry-logic-comprehensive.retry_system_functional": false,
  "retry-logic-comprehensive.jittered_response_time": null,
  "file-upload-multipart-test.upload_results": {
    "content_types_tested": [
      "text/plain",
      "application/json",
      "application/octet-stream",
      "image/jpeg",
      "application/pdf",
      "video/mp4",
      "multipart/form-data"
    ],
    "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
    "test_patterns": [
      "single_file_upload",
      "multiple_file_upload",
      "large_file_handling",
      "chunked_upload_process",
      "upload_validation",
      "error_handling",
      "resume_functionality"
    ],
    "test_summary": "file_upload_multipart_comprehensive",
    "total_upload_tests": 12,
    "upload_results": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "upload_scenarios_tested": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ]
  },
  "file-upload-multipart-test.multipart_data": {
    "binary_upload": null,
    "chunked_upload": null,
    "image_upload": null,
    "json_upload": null,
    "large_file": null,
    "mixed_form": null,
    "multiple_upload": null,
    "resume_upload": null,
    "text_upload": null,
    "validated_upload": null
  },
  "file-upload-multipart-test.file_handling_status": [
    "text_file_upload",
    "json_file_upload",
    "binary_file_upload",
    "image_file_upload",
    "multiple_files_upload",
    "mixed_form_data",
    "large_file_upload",
    "chunked_upload",
    "validated_upload",
    "error_scenarios",
    "resume_upload"
  ],
  "advanced-assertions-test.assertion_results": {
    "assertion_types_tested": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
    "test_patterns": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "test_summary": "advanced_assertions_comprehensive",
    "total_assertion_tests": 11
  },
  "advanced-assertions-test.validation_data": {
    "array_length": null,
    "complex_nested": null,
    "email_regex": null,
    "length_exact": null,
    "oneof_strings": null,
    "phone_regex": null,
    "type_validation": null,
    "url_regex": null,
    "uuid_regex": null
  },
  "advanced-assertions-test.regex_test_results": [
    "regex_matching",
    "length_validation",
    "type_checking",
    "oneof_validation",
    "numeric_ranges",
    "complex_nested",
    "array_elements",
    "conditional_exists",
    "error_structure",
    "performance_combined"
  ],
  "advanced-retry-patterns.retry_results": {
    "base_delay_ms": 1000,
    "max_retries_configured": 3,
    "patterns_tested": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
    "test_summary": "advanced_retry_patterns",
    "total_retry_tests": 12
  },
  "advanced-retry-patterns.backoff_measurements": [
    "exponential_backoff",
    "linear_backoff",
    "fixed_delay",
    "conditional_retry",
    "no_retry_4xx",
    "timeout_retry_combo",
    "high_frequency",
    "multi_condition",
    "performance_tracking",
    "retry_chain"
  ],
  "environment-feature-flags-test.environment_results": {
    "current_environment": null,
    "deployment_stage": null,
    "environment_configurations": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "environment_specific_tests": {
      "development": "skipped",
      "production": "skipped",
      "staging": "skipped",
      "test": "skipped"
    },
    "environment_urls": {
      "development": "http://localhost:3000",
      "production": "https://api.example.com",
      "staging": "https://staging-api.example.com",
      "test": "http://localhost:8080"
    },
    "feature_flag_results": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "feature_flags_tested": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "test_environment": null,
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
    "test_patterns": [
      "environment_detection",
      "environment_specific_operations",
      "feature_flag_conditional_execution",
      "multi_environment_configuration",
      "environment_based_data_handling",
      "feature_flag_combinations"
    ],
    "test_summary": "environment_feature_flags_comprehensive",
    "total_environment_tests": 13
  },
  "environment-feature-flags-test.feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "environment-feature-flags-test.multi_env_config": {
    "development": {
      "debug_logging": true,
      "retry_attempts": 3,
      "timeout": 30000
    },
    "production": {
      "debug_logging": false,
      "retry_attempts": 1,
      "timeout": 5000
    },
    "staging": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 15000
    },
    "test": {
      "debug_logging": false,
      "retry_attempts": 2,
      "timeout": 10000
    }
  },
  "error-handling-test.error_handling_results": {
    "error_handling_results": {
      "bad_gateway": null,
      "bad_request": null,
      "chain_recovery": "error_recovery",
      "cleanup_status": null,
      "continue_after_failure": null,
      "degradation_mode": null,
      "fallback_service": null,
      "forbidden": null,
      "not_found": null,
      "primary_service": null,
      "rate_limit": null,
      "server_error": null,
      "service_unavailable": null,
      "timeout_handling": "{{timeout_result}}",
      "unauthorized": null
    },
    "error_scenarios_tested": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "http_status_codes_handled": [
      400,
      401,
      403,
      404,
      422,
      429,
      500,
      502,
      503
    ],
    "recovery_patterns": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
    "test_summary": "error_handling_comprehensive",
    "total_error_tests": 10
  },
  "error-handling-test.failure_scenarios": [
    "continue_on_failure",
    "timeout_handling",
    "http_error_codes",
    "error_recovery_fallback",
    "graceful_degradation",
    "chain_failure_recovery",
    "error_propagation",
    "network_errors",
    "cleanup_after_errors"
  ],
  "error-handling-test.recovery_data": [
    "fallback_services",
    "graceful_degradation",
    "error_chain_recovery",
    "resource_cleanup"
  ],
  "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
  "faker_demo.generatedUserId": 8456786969362432,
  "httpbin-test.captured_username": "alpha_user",
  "httpbin-test.auth_token": "httpbin",
  "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
  "variable_cleanup_test.variable_state_before": null,
  "variable_cleanup_test.variable_state_after": null,
  "environment-variables.env_user": null,
  "environment-variables.env_home": null,
  "environment-variables.env_test_passed": true,
  "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
  "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
  "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
  "variable_interpolation.captured_user_data": null,
  "variable_interpolation.extracted_numbers": null,
  "variable_interpolation.processed_array": null,
  "variable_interpolation.nested_extraction": null,
  "variable_interpolation.final_computed_value": null
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then ✓
Scenario 2: none ○

📄 Raw Suite Data

Complete Suite Data
{
  "node_id": "complex_scenarios_test",
  "suite_name": "Teste de Cenários Condicionais Avançados",
  "file_path": "/app/tests/complex-conditional-scenarios.yaml",
  "priority": "medium",
  "start_time": "2025-10-19T10:28:39.071Z",
  "end_time": "2025-10-19T10:28:39.098Z",
  "duration_ms": 27,
  "status": "success",
  "steps_executed": 6,
  "steps_successful": 6,
  "steps_failed": 0,
  "success_rate": 100,
  "steps_results": [
    {
      "step_id": "step-1-test-guest-user-access",
      "qualified_step_id": "complex_scenarios_test::step-1-test-guest-user-access",
      "step_name": "Test Guest User Access",
      "status": "success",
      "duration_ms": 4,
      "request_details": {
        "method": "GET",
        "url": "/get",
        "headers": {
          "Accept": "application/json",
          "X-User-Type": "guest"
        },
        "params": {
          "action": "get_features",
          "user_type": "guest"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/get",
        "curl_command": "curl -X GET -H 'Accept: application/json' -H 'X-User-Type: guest' \"http://httpbin/get\"",
        "raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nAccept: application/json\r\nX-User-Type: guest\r\n\r\n",
        "raw_url": "{{base_url}}/get"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "401",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {
            "action": "get_features",
            "user_type": "guest"
          },
          "headers": {
            "Accept": "application/json",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-User-Type": "guest"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/get?action=get_features&user_type=guest"
        },
        "size_bytes": 320,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 401\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {\n    \"action\": \"get_features\",\n    \"user_type\": \"guest\"\n  },\n  \"headers\": {\n    \"Accept\": \"application/json\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-User-Type\": \"guest\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/get?action=get_features&user_type=guest\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "guest_access_granted": null,
        "guest_features": [
          "basic_search"
        ],
        "guest_limits": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "test_matrix": [
          {
            "user_type": "guest",
            "token": "",
            "expected_features": [
              "basic_search"
            ],
            "expected_limits": {
              "requests_per_hour": 10,
              "data_export": false
            },
            "expected_status": 200
          },
          {
            "user_type": "registered",
            "token": "reg_token_abc123",
            "expected_features": [
              "basic_search",
              "save_searches"
            ],
            "expected_limits": {
              "requests_per_hour": 100,
              "data_export": false
            },
            "expected_status": 200
          },
          {
            "user_type": "premium",
            "token": "premium_token_xyz789",
            "expected_features": [
              "basic_search",
              "save_searches",
              "advanced_filters",
              "export_data"
            ],
            "expected_limits": {
              "requests_per_hour": 1000,
              "data_export": true
            },
            "expected_status": 200
          },
          {
            "user_type": "admin",
            "token": "admin_token_super456",
            "expected_features": [
              "all"
            ],
            "expected_limits": {
              "requests_per_hour": -1,
              "data_export": true,
              "admin_access": true
            },
            "expected_status": 200
          }
        ],
        "api_responses": {
          "guest_response": {
            "available_features": [
              "basic_search"
            ],
            "limits": {
              "requests_per_hour": 10,
              "premium_required": true
            }
          },
          "registered_response": {
            "available_features": [
              "basic_search",
              "save_searches"
            ],
            "limits": {
              "requests_per_hour": 100,
              "premium_upgrade_available": true
            }
          },
          "premium_response": {
            "available_features": [
              "basic_search",
              "save_searches",
              "advanced_filters",
              "export_data"
            ],
            "limits": {
              "requests_per_hour": 1000,
              "unlimited_features": false
            }
          },
          "admin_response": {
            "available_features": [
              "all"
            ],
            "limits": {
              "requests_per_hour": -1,
              "unlimited_features": true,
              "admin_panels": [
                "user_management",
                "system_monitoring"
              ]
            }
          }
        },
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null
      },
      "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": 3
          },
          {
            "index": 2,
            "condition": "status_code == `401`",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          },
          {
            "index": 3,
            "condition": "status_code == `429`",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          }
        ]
      }
    },
    {
      "step_id": "step-2-test-registered-user-access",
      "qualified_step_id": "complex_scenarios_test::step-2-test-registered-user-access",
      "step_name": "Test Registered User Access",
      "status": "success",
      "duration_ms": 3,
      "request_details": {
        "method": "GET",
        "url": "/get",
        "headers": {
          "Authorization": "Bearer {{test_matrix[1].token}}",
          "Accept": "application/json",
          "X-User-Type": "registered"
        },
        "params": {
          "action": "get_features",
          "user_type": "registered"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/get",
        "curl_command": "curl -X GET -H 'Authorization: Bearer {{test_matrix[1].token}}' -H 'Accept: application/json' -H 'X-User-Type: registered' \"http://httpbin/get\"",
        "raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nAuthorization: Bearer {{test_matrix[1].token}}\r\nAccept: application/json\r\nX-User-Type: registered\r\n\r\n",
        "raw_url": "{{base_url}}/get"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "473",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {
            "action": "get_features",
            "user_type": "registered"
          },
          "headers": {
            "Accept": "application/json",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Authorization": "Bearer {{test_matrix[1].token}}",
            "Connection": "keep-alive",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-User-Type": "registered"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/get?action=get_features&user_type=registered"
        },
        "size_bytes": 385,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 473\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {\n    \"action\": \"get_features\",\n    \"user_type\": \"registered\"\n  },\n  \"headers\": {\n    \"Accept\": \"application/json\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Authorization\": \"Bearer {{test_matrix[1].token}}\",\n    \"Connection\": \"keep-alive\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-User-Type\": \"registered\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/get?action=get_features&user_type=registered\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {},
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "test_matrix": [
          {
            "user_type": "guest",
            "token": "",
            "expected_features": [
              "basic_search"
            ],
            "expected_limits": {
              "requests_per_hour": 10,
              "data_export": false
            },
            "expected_status": 200
          },
          {
            "user_type": "registered",
            "token": "reg_token_abc123",
            "expected_features": [
              "basic_search",
              "save_searches"
            ],
            "expected_limits": {
              "requests_per_hour": 100,
              "data_export": false
            },
            "expected_status": 200
          },
          {
            "user_type": "premium",
            "token": "premium_token_xyz789",
            "expected_features": [
              "basic_search",
              "save_searches",
              "advanced_filters",
              "export_data"
            ],
            "expected_limits": {
              "requests_per_hour": 1000,
              "data_export": true
            },
            "expected_status": 200
          },
          {
            "user_type": "admin",
            "token": "admin_token_super456",
            "expected_features": [
              "all"
            ],
            "expected_limits": {
              "requests_per_hour": -1,
              "data_export": true,
              "admin_access": true
            },
            "expected_status": 200
          }
        ],
        "api_responses": {
          "guest_response": {
            "available_features": [
              "basic_search"
            ],
            "limits": {
              "requests_per_hour": 10,
              "premium_required": true
            }
          },
          "registered_response": {
            "available_features": [
              "basic_search",
              "save_searches"
            ],
            "limits": {
              "requests_per_hour": 100,
              "premium_upgrade_available": true
            }
          },
          "premium_response": {
            "available_features": [
              "basic_search",
              "save_searches",
              "advanced_filters",
              "export_data"
            ],
            "limits": {
              "requests_per_hour": 1000,
              "unlimited_features": false
            }
          },
          "admin_response": {
            "available_features": [
              "all"
            ],
            "limits": {
              "requests_per_hour": -1,
              "unlimited_features": true,
              "admin_panels": [
                "user_management",
                "system_monitoring"
              ]
            }
          }
        },
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 0,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200` && headers['x-user-type'] == 'registered'",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          },
          {
            "index": 2,
            "condition": "status_code == `401`",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          },
          {
            "index": 3,
            "condition": "status_code == `200` && args.action == 'get_features'",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          }
        ]
      }
    },
    {
      "step_id": "step-3-test-premium-user-features",
      "qualified_step_id": "complex_scenarios_test::step-3-test-premium-user-features",
      "step_name": "Test Premium User Features",
      "status": "success",
      "duration_ms": 4,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Authorization": "Bearer {{test_matrix[2].token}}",
          "Content-Type": "application/json",
          "X-User-Type": "premium"
        },
        "body": {
          "action": "test_premium_features",
          "user_type": "premium",
          "requested_features": [
            "advanced_filters",
            "export_data"
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Authorization: Bearer {{test_matrix[2].token}}' -H 'Content-Type: application/json' -H 'X-User-Type: premium' -d '{\"action\":\"test_premium_features\",\"user_type\":\"premium\",\"requested_features\":[\"advanced_filters\",\"export_data\"]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nAuthorization: Bearer {{test_matrix[2].token}}\r\nContent-Type: application/json\r\nX-User-Type: premium\r\nContent-Length: 112\r\n\r\n{\"action\":\"test_premium_features\",\"user_type\":\"premium\",\"requested_features\":[\"advanced_filters\",\"export_data\"]}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "794",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"action\":\"test_premium_features\",\"user_type\":\"premium\",\"requested_features\":[\"advanced_filters\",\"export_data\"]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Authorization": "Bearer {{test_matrix[2].token}}",
            "Connection": "keep-alive",
            "Content-Length": "112",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-User-Type": "premium"
          },
          "json": {
            "action": "test_premium_features",
            "requested_features": [
              "advanced_filters",
              "export_data"
            ],
            "user_type": "premium"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 645,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 794\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"action\\\":\\\"test_premium_features\\\",\\\"user_type\\\":\\\"premium\\\",\\\"requested_features\\\":[\\\"advanced_filters\\\",\\\"export_data\\\"]}\",\n  \"files\": {},\n  \"form\": {},\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Authorization\": \"Bearer {{test_matrix[2].token}}\",\n    \"Connection\": \"keep-alive\",\n    \"Content-Length\": \"112\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-User-Type\": \"premium\"\n  },\n  \"json\": {\n    \"action\": \"test_premium_features\",\n    \"requested_features\": [\n      \"advanced_filters\",\n      \"export_data\"\n    ],\n    \"user_type\": \"premium\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "premium_access": null,
        "premium_features": [
          "basic_search",
          "save_searches",
          "advanced_filters",
          "export_data"
        ],
        "export_enabled": "{{api_responses.premium_response.available_features | contains('export_data')}}",
        "advanced_filters": "{{api_responses.premium_response.available_features | contains('advanced_filters')}}"
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "test_matrix": [
          {
            "user_type": "guest",
            "token": "",
            "expected_features": [
              "basic_search"
            ],
            "expected_limits": {
              "requests_per_hour": 10,
              "data_export": false
            },
            "expected_status": 200
          },
          {
            "user_type": "registered",
            "token": "reg_token_abc123",
            "expected_features": [
              "basic_search",
              "save_searches"
            ],
            "expected_limits": {
              "requests_per_hour": 100,
              "data_export": false
            },
            "expected_status": 200
          },
          {
            "user_type": "premium",
            "token": "premium_token_xyz789",
            "expected_features": [
              "basic_search",
              "save_searches",
              "advanced_filters",
              "export_data"
            ],
            "expected_limits": {
              "requests_per_hour": 1000,
              "data_export": true
            },
            "expected_status": 200
          },
          {
            "user_type": "admin",
            "token": "admin_token_super456",
            "expected_features": [
              "all"
            ],
            "expected_limits": {
              "requests_per_hour": -1,
              "data_export": true,
              "admin_access": true
            },
            "expected_status": 200
          }
        ],
        "api_responses": {
          "guest_response": {
            "available_features": [
              "basic_search"
            ],
            "limits": {
              "requests_per_hour": 10,
              "premium_required": true
            }
          },
          "registered_response": {
            "available_features": [
              "basic_search",
              "save_searches"
            ],
            "limits": {
              "requests_per_hour": 100,
              "premium_upgrade_available": true
            }
          },
          "premium_response": {
            "available_features": [
              "basic_search",
              "save_searches",
              "advanced_filters",
              "export_data"
            ],
            "limits": {
              "requests_per_hour": 1000,
              "unlimited_features": false
            }
          },
          "admin_response": {
            "available_features": [
              "all"
            ],
            "limits": {
              "requests_per_hour": -1,
              "unlimited_features": true,
              "admin_panels": [
                "user_management",
                "system_monitoring"
              ]
            }
          }
        },
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null
      },
      "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": 4
          },
          {
            "index": 2,
            "condition": "status_code == `403`",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          },
          {
            "index": 3,
            "condition": "status_code == `429`",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          }
        ]
      }
    },
    {
      "step_id": "step-4-test-admin-capabilities",
      "qualified_step_id": "complex_scenarios_test::step-4-test-admin-capabilities",
      "step_name": "Test Admin Capabilities",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "GET",
        "url": "/get",
        "headers": {
          "Authorization": "Bearer {{test_matrix[3].token}}",
          "Accept": "application/json",
          "X-User-Type": "admin",
          "X-Admin-Action": "dashboard"
        },
        "params": {
          "action": "admin_dashboard",
          "permissions": "all"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/get",
        "curl_command": "curl -X GET -H 'Authorization: Bearer {{test_matrix[3].token}}' -H 'Accept: application/json' -H 'X-User-Type: admin' -H 'X-Admin-Action: dashboard' \"http://httpbin/get\"",
        "raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nAuthorization: Bearer {{test_matrix[3].token}}\r\nAccept: application/json\r\nX-User-Type: admin\r\nX-Admin-Action: dashboard\r\n\r\n",
        "raw_url": "{{base_url}}/get"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "500",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {
            "action": "admin_dashboard",
            "permissions": "all"
          },
          "headers": {
            "Accept": "application/json",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Authorization": "Bearer {{test_matrix[3].token}}",
            "Connection": "keep-alive",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Admin-Action": "dashboard",
            "X-User-Type": "admin"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/get?action=admin_dashboard&permissions=all"
        },
        "size_bytes": 405,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 500\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {\n    \"action\": \"admin_dashboard\",\n    \"permissions\": \"all\"\n  },\n  \"headers\": {\n    \"Accept\": \"application/json\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Authorization\": \"Bearer {{test_matrix[3].token}}\",\n    \"Connection\": \"keep-alive\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Admin-Action\": \"dashboard\",\n    \"X-User-Type\": \"admin\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/get?action=admin_dashboard&permissions=all\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "admin_access": null,
        "admin_capabilities": [
          "user_management",
          "system_monitoring"
        ],
        "unlimited_access": true
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "test_matrix": [
          {
            "user_type": "guest",
            "token": "",
            "expected_features": [
              "basic_search"
            ],
            "expected_limits": {
              "requests_per_hour": 10,
              "data_export": false
            },
            "expected_status": 200
          },
          {
            "user_type": "registered",
            "token": "reg_token_abc123",
            "expected_features": [
              "basic_search",
              "save_searches"
            ],
            "expected_limits": {
              "requests_per_hour": 100,
              "data_export": false
            },
            "expected_status": 200
          },
          {
            "user_type": "premium",
            "token": "premium_token_xyz789",
            "expected_features": [
              "basic_search",
              "save_searches",
              "advanced_filters",
              "export_data"
            ],
            "expected_limits": {
              "requests_per_hour": 1000,
              "data_export": true
            },
            "expected_status": 200
          },
          {
            "user_type": "admin",
            "token": "admin_token_super456",
            "expected_features": [
              "all"
            ],
            "expected_limits": {
              "requests_per_hour": -1,
              "data_export": true,
              "admin_access": true
            },
            "expected_status": 200
          }
        ],
        "api_responses": {
          "guest_response": {
            "available_features": [
              "basic_search"
            ],
            "limits": {
              "requests_per_hour": 10,
              "premium_required": true
            }
          },
          "registered_response": {
            "available_features": [
              "basic_search",
              "save_searches"
            ],
            "limits": {
              "requests_per_hour": 100,
              "premium_upgrade_available": true
            }
          },
          "premium_response": {
            "available_features": [
              "basic_search",
              "save_searches",
              "advanced_filters",
              "export_data"
            ],
            "limits": {
              "requests_per_hour": 1000,
              "unlimited_features": false
            }
          },
          "admin_response": {
            "available_features": [
              "all"
            ],
            "limits": {
              "requests_per_hour": -1,
              "unlimited_features": true,
              "admin_panels": [
                "user_management",
                "system_monitoring"
              ]
            }
          }
        },
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null
      },
      "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": 3
          },
          {
            "index": 2,
            "condition": "status_code == `200` && headers['x-admin-action'] == 'dashboard'",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          },
          {
            "index": 3,
            "condition": "status_code == `403`",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          }
        ]
      }
    },
    {
      "step_id": "step-5-cross-user-type-validation",
      "qualified_step_id": "complex_scenarios_test::step-5-cross-user-type-validation",
      "step_name": "Cross-User-Type Validation",
      "status": "success",
      "duration_ms": 6,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json",
          "X-Test-Validation": "cross_user_matrix"
        },
        "body": {
          "validation_type": "cross_user_access",
          "test_results": {
            "guest": {
              "access": false,
              "features": [
                "basic_search"
              ],
              "limits": null
            },
            "registered": {
              "access": false,
              "features": "{{registered_features}}",
              "feature_count": 0
            },
            "premium": {
              "access": false,
              "export_enabled": true,
              "advanced_filters": true
            },
            "admin": {
              "access": false,
              "unlimited": true,
              "capabilities": [
                "user_management",
                "system_monitoring"
              ]
            }
          }
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Test-Validation: cross_user_matrix' -d '{\"validation_type\":\"cross_user_access\",\"test_results\":{\"guest\":{\"access\":false,\"features\":[\"basic_search\"],\"limits\":null},\"registered\":{\"access\":false,\"features\":\"{{registered_features}}\",\"feature_count\":0},\"premium\":{\"access\":false,\"export_enabled\":true,\"advanced_filters\":true},\"admin\":{\"access\":false,\"unlimited\":true,\"capabilities\":[\"user_management\",\"system_monitoring\"]}}}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Test-Validation: cross_user_matrix\r\nContent-Length: 378\r\n\r\n{\"validation_type\":\"cross_user_access\",\"test_results\":{\"guest\":{\"access\":false,\"features\":[\"basic_search\"],\"limits\":null},\"registered\":{\"access\":false,\"features\":\"{{registered_features}}\",\"feature_count\":0},\"premium\":{\"access\":false,\"export_enabled\":true,\"advanced_filters\":true},\"admin\":{\"access\":false,\"unlimited\":true,\"capabilities\":[\"user_management\",\"system_monitoring\"]}}}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "1538",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"validation_type\":\"cross_user_access\",\"test_results\":{\"guest\":{\"access\":false,\"features\":[\"basic_search\"],\"limits\":null},\"registered\":{\"access\":false,\"features\":\"{{registered_features}}\",\"feature_count\":0},\"premium\":{\"access\":false,\"export_enabled\":true,\"advanced_filters\":true},\"admin\":{\"access\":false,\"unlimited\":true,\"capabilities\":[\"user_management\",\"system_monitoring\"]}}}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "378",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Test-Validation": "cross_user_matrix"
          },
          "json": {
            "test_results": {
              "admin": {
                "access": false,
                "capabilities": [
                  "user_management",
                  "system_monitoring"
                ],
                "unlimited": true
              },
              "guest": {
                "access": false,
                "features": [
                  "basic_search"
                ],
                "limits": null
              },
              "premium": {
                "access": false,
                "advanced_filters": true,
                "export_enabled": true
              },
              "registered": {
                "access": false,
                "feature_count": 0,
                "features": "{{registered_features}}"
              }
            },
            "validation_type": "cross_user_access"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 1175,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 1538\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"validation_type\\\":\\\"cross_user_access\\\",\\\"test_results\\\":{\\\"guest\\\":{\\\"access\\\":false,\\\"features\\\":[\\\"basic_search\\\"],\\\"limits\\\":null},\\\"registered\\\":{\\\"access\\\":false,\\\"features\\\":\\\"{{registered_features}}\\\",\\\"feature_count\\\":0},\\\"premium\\\":{\\\"access\\\":false,\\\"export_enabled\\\":true,\\\"advanced_filters\\\":true},\\\"admin\\\":{\\\"access\\\":false,\\\"unlimited\\\":true,\\\"capabilities\\\":[\\\"user_management\\\",\\\"system_monitoring\\\"]}}}\",\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\": \"378\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Test-Validation\": \"cross_user_matrix\"\n  },\n  \"json\": {\n    \"test_results\": {\n      \"admin\": {\n        \"access\": false,\n        \"capabilities\": [\n          \"user_management\",\n          \"system_monitoring\"\n        ],\n        \"unlimited\": true\n      },\n      \"guest\": {\n        \"access\": false,\n        \"features\": [\n          \"basic_search\"\n        ],\n        \"limits\": null\n      },\n      \"premium\": {\n        \"access\": false,\n        \"advanced_filters\": true,\n        \"export_enabled\": true\n      },\n      \"registered\": {\n        \"access\": false,\n        \"feature_count\": 0,\n        \"features\": \"{{registered_features}}\"\n      }\n    },\n    \"validation_type\": \"cross_user_access\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "validation_passed": null,
        "access_matrix_valid": null,
        "user_access_matrix": {
          "guest_valid": false,
          "registered_valid": false,
          "premium_valid": false,
          "admin_valid": false
        },
        "hierarchy_respected": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "test_matrix": [
          {
            "user_type": "guest",
            "token": "",
            "expected_features": [
              "basic_search"
            ],
            "expected_limits": {
              "requests_per_hour": 10,
              "data_export": false
            },
            "expected_status": 200
          },
          {
            "user_type": "registered",
            "token": "reg_token_abc123",
            "expected_features": [
              "basic_search",
              "save_searches"
            ],
            "expected_limits": {
              "requests_per_hour": 100,
              "data_export": false
            },
            "expected_status": 200
          },
          {
            "user_type": "premium",
            "token": "premium_token_xyz789",
            "expected_features": [
              "basic_search",
              "save_searches",
              "advanced_filters",
              "export_data"
            ],
            "expected_limits": {
              "requests_per_hour": 1000,
              "data_export": true
            },
            "expected_status": 200
          },
          {
            "user_type": "admin",
            "token": "admin_token_super456",
            "expected_features": [
              "all"
            ],
            "expected_limits": {
              "requests_per_hour": -1,
              "data_export": true,
              "admin_access": true
            },
            "expected_status": 200
          }
        ],
        "api_responses": {
          "guest_response": {
            "available_features": [
              "basic_search"
            ],
            "limits": {
              "requests_per_hour": 10,
              "premium_required": true
            }
          },
          "registered_response": {
            "available_features": [
              "basic_search",
              "save_searches"
            ],
            "limits": {
              "requests_per_hour": 100,
              "premium_upgrade_available": true
            }
          },
          "premium_response": {
            "available_features": [
              "basic_search",
              "save_searches",
              "advanced_filters",
              "export_data"
            ],
            "limits": {
              "requests_per_hour": 1000,
              "unlimited_features": false
            }
          },
          "admin_response": {
            "available_features": [
              "all"
            ],
            "limits": {
              "requests_per_hour": -1,
              "unlimited_features": true,
              "admin_panels": [
                "user_management",
                "system_monitoring"
              ]
            }
          }
        },
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 2,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 2
          },
          {
            "index": 2,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 0,
            "captures_added": 2
          }
        ]
      }
    },
    {
      "step_id": "step-6-complete-multi-scenario-flow",
      "qualified_step_id": "complex_scenarios_test::step-6-complete-multi-scenario-flow",
      "step_name": "Complete Multi-Scenario Flow",
      "status": "success",
      "duration_ms": 6,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json"
        },
        "body": {
          "flow_test": "multi_scenario",
          "scenarios_tested": [
            {
              "type": "guest",
              "success": false,
              "features_count": 1
            },
            {
              "type": "registered",
              "success": false,
              "upgrade_available": false
            },
            {
              "type": "premium",
              "success": false,
              "export_enabled": true
            },
            {
              "type": "admin",
              "success": false,
              "unlimited": true
            }
          ]
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"flow_test\":\"multi_scenario\",\"scenarios_tested\":[{\"type\":\"guest\",\"success\":false,\"features_count\":1},{\"type\":\"registered\",\"success\":false,\"upgrade_available\":false},{\"type\":\"premium\",\"success\":false,\"export_enabled\":true},{\"type\":\"admin\",\"success\":false,\"unlimited\":true}]}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 274\r\n\r\n{\"flow_test\":\"multi_scenario\",\"scenarios_tested\":[{\"type\":\"guest\",\"success\":false,\"features_count\":1},{\"type\":\"registered\",\"success\":false,\"upgrade_available\":false},{\"type\":\"premium\",\"success\":false,\"export_enabled\":true},{\"type\":\"admin\",\"success\":false,\"unlimited\":true}]}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:39 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "1219",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"flow_test\":\"multi_scenario\",\"scenarios_tested\":[{\"type\":\"guest\",\"success\":false,\"features_count\":1},{\"type\":\"registered\",\"success\":false,\"upgrade_available\":false},{\"type\":\"premium\",\"success\":false,\"export_enabled\":true},{\"type\":\"admin\",\"success\":false,\"unlimited\":true}]}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "274",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1"
          },
          "json": {
            "flow_test": "multi_scenario",
            "scenarios_tested": [
              {
                "features_count": 1,
                "success": false,
                "type": "guest"
              },
              {
                "success": false,
                "type": "registered",
                "upgrade_available": false
              },
              {
                "export_enabled": true,
                "success": false,
                "type": "premium"
              },
              {
                "success": false,
                "type": "admin",
                "unlimited": true
              }
            ]
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 919,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 1219\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"flow_test\\\":\\\"multi_scenario\\\",\\\"scenarios_tested\\\":[{\\\"type\\\":\\\"guest\\\",\\\"success\\\":false,\\\"features_count\\\":1},{\\\"type\\\":\\\"registered\\\",\\\"success\\\":false,\\\"upgrade_available\\\":false},{\\\"type\\\":\\\"premium\\\",\\\"success\\\":false,\\\"export_enabled\\\":true},{\\\"type\\\":\\\"admin\\\",\\\"success\\\":false,\\\"unlimited\\\":true}]}\",\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\": \"274\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\"\n  },\n  \"json\": {\n    \"flow_test\": \"multi_scenario\",\n    \"scenarios_tested\": [\n      {\n        \"features_count\": 1,\n        \"success\": false,\n        \"type\": \"guest\"\n      },\n      {\n        \"success\": false,\n        \"type\": \"registered\",\n        \"upgrade_available\": false\n      },\n      {\n        \"export_enabled\": true,\n        \"success\": false,\n        \"type\": \"premium\"\n      },\n      {\n        \"success\": false,\n        \"type\": \"admin\",\n        \"unlimited\": true\n      }\n    ]\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "all_scenarios_tested": null,
        "scenario_results": {
          "guest_scenario": "not_tested",
          "registered_scenario": "not_tested",
          "premium_scenario": "not_tested",
          "admin_scenario": "not_tested",
          "cross_validation": "not_tested"
        },
        "conditional_flow_summary": {
          "total_scenarios": 6,
          "conditions_tested": 12,
          "user_types_validated": 4,
          "matrix_validation": false,
          "test_complete": true
        }
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "test_matrix": [
          {
            "user_type": "guest",
            "token": "",
            "expected_features": [
              "basic_search"
            ],
            "expected_limits": {
              "requests_per_hour": 10,
              "data_export": false
            },
            "expected_status": 200
          },
          {
            "user_type": "registered",
            "token": "reg_token_abc123",
            "expected_features": [
              "basic_search",
              "save_searches"
            ],
            "expected_limits": {
              "requests_per_hour": 100,
              "data_export": false
            },
            "expected_status": 200
          },
          {
            "user_type": "premium",
            "token": "premium_token_xyz789",
            "expected_features": [
              "basic_search",
              "save_searches",
              "advanced_filters",
              "export_data"
            ],
            "expected_limits": {
              "requests_per_hour": 1000,
              "data_export": true
            },
            "expected_status": 200
          },
          {
            "user_type": "admin",
            "token": "admin_token_super456",
            "expected_features": [
              "all"
            ],
            "expected_limits": {
              "requests_per_hour": -1,
              "data_export": true,
              "admin_access": true
            },
            "expected_status": 200
          }
        ],
        "api_responses": {
          "guest_response": {
            "available_features": [
              "basic_search"
            ],
            "limits": {
              "requests_per_hour": 10,
              "premium_required": true
            }
          },
          "registered_response": {
            "available_features": [
              "basic_search",
              "save_searches"
            ],
            "limits": {
              "requests_per_hour": 100,
              "premium_upgrade_available": true
            }
          },
          "premium_response": {
            "available_features": [
              "basic_search",
              "save_searches",
              "advanced_filters",
              "export_data"
            ],
            "limits": {
              "requests_per_hour": 1000,
              "unlimited_features": false
            }
          },
          "admin_response": {
            "available_features": [
              "all"
            ],
            "limits": {
              "requests_per_hour": -1,
              "unlimited_features": true,
              "admin_panels": [
                "user_management",
                "system_monitoring"
              ]
            }
          }
        },
        "scenario_results": {
          "guest_scenario": "not_tested",
          "registered_scenario": "not_tested",
          "premium_scenario": "not_tested",
          "admin_scenario": "not_tested",
          "cross_validation": "not_tested"
        },
        "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
        "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
        "auth_flows_test.user_permissions": [
          "read",
          "write"
        ],
        "auth_flows_test.auth_flow_results": {
          "jwt_authentication": {
            "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
            "tokens_issued": 2,
            "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
          },
          "oauth2_authentication": {
            "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
            "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
            "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
          },
          "security_validation": {
            "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
            "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
            "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
          },
          "session_management": {
            "logout_success": "{{js: Boolean(variables.complete_logout)}}",
            "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
          }
        },
        "complex-workflows-test.workflow_results": {
          "api_contract_validations": {
            "order_service": null,
            "payment_service": null,
            "user_service": null
          },
          "business_outcomes": {
            "customer_id": "{{customer_id}}",
            "items_purchased": 3,
            "order_id": null,
            "total_revenue": 594.96,
            "transaction_id": null,
            "workflow_completion": null
          },
          "ecommerce_workflow_results": {
            "cart_management": "success",
            "catalog_browsing": null,
            "customer_registration": null,
            "fulfillment_initiated": null,
            "order_created": null,
            "payment_processed": null,
            "product_details": null,
            "promotions_applied": null,
            "shipping_calculated": null
          },
          "end_to_end_success": true,
          "microservices_communication": {
            "inventory_service": null,
            "notification_service": null
          },
          "test_summary": "complex_workflows_ecommerce_contracts",
          "total_complex_workflow_tests": 13,
          "workflow_patterns_tested": [
            "customer_lifecycle_management",
            "product_catalog_interaction",
            "cart_and_checkout_process",
            "payment_transaction_flow",
            "order_fulfillment_pipeline",
            "api_contract_validation",
            "microservices_integration",
            "end_to_end_business_process",
            "workflow_analytics_tracking"
          ],
          "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
        },
        "complex-workflows-test.ecommerce_data": {
          "cart_management": "success",
          "catalog_browsing": null,
          "customer_registration": null,
          "fulfillment_initiated": null,
          "order_created": null,
          "payment_processed": null,
          "product_details": null,
          "promotions_applied": null,
          "shipping_calculated": null
        },
        "complex-workflows-test.contract_validation_results": {
          "order_service": null,
          "payment_service": null,
          "user_service": null
        },
        "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
        "input-capture-test.normalized_email": "John.Doe@Example.COM",
        "input-capture-test.email_domain": "John.Doe@Example.COM",
        "input-capture-test.full_name": "John Michael Doe",
        "dependency-setup.auth_token": "test_user",
        "dependency-setup.session_id": "172.18.0.3",
        "dependency-setup.config_id": "v2",
        "dependency-setup.setup_timestamp": true,
        "comprehensive_basic.captured_echo_data": {
          "action": "create_resource",
          "metadata": {
            "api_version": "v2.1",
            "test_mode": true,
            "timestamp": "2024-01-01T00:00:00Z"
          },
          "user_id": 12345,
          "username": "flow_test_user"
        },
        "comprehensive_basic.generated_uuid": "httpbin",
        "comprehensive_basic.final_status": "completed",
        "javascript-expressions.js_calculated": 50,
        "javascript-expressions.js_timestamp": 1760869717656,
        "iteration-examples.users_tested": null,
        "iteration-examples.range_test_summary": null,
        "sensitive-data-security.security_test_passed": null,
        "sensitive-data-security.sensitive_data_masked": null,
        "sensitive-data-security.auth_tokens_secure": null,
        "webhooks-realtime.webhook_delivered": true,
        "webhooks-realtime.webhook_system_healthy": false,
        "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
        "webhooks-realtime.stream_event_count": 3,
        "retry-logic-comprehensive.retry_attempts": 1,
        "retry-logic-comprehensive.retry_system_functional": false,
        "retry-logic-comprehensive.jittered_response_time": null,
        "file-upload-multipart-test.upload_results": {
          "content_types_tested": [
            "text/plain",
            "application/json",
            "application/octet-stream",
            "image/jpeg",
            "application/pdf",
            "video/mp4",
            "multipart/form-data"
          ],
          "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
          "test_patterns": [
            "single_file_upload",
            "multiple_file_upload",
            "large_file_handling",
            "chunked_upload_process",
            "upload_validation",
            "error_handling",
            "resume_functionality"
          ],
          "test_summary": "file_upload_multipart_comprehensive",
          "total_upload_tests": 12,
          "upload_results": {
            "binary_upload": null,
            "chunked_upload": null,
            "image_upload": null,
            "json_upload": null,
            "large_file": null,
            "mixed_form": null,
            "multiple_upload": null,
            "resume_upload": null,
            "text_upload": null,
            "validated_upload": null
          },
          "upload_scenarios_tested": [
            "text_file_upload",
            "json_file_upload",
            "binary_file_upload",
            "image_file_upload",
            "multiple_files_upload",
            "mixed_form_data",
            "large_file_upload",
            "chunked_upload",
            "validated_upload",
            "error_scenarios",
            "resume_upload"
          ]
        },
        "file-upload-multipart-test.multipart_data": {
          "binary_upload": null,
          "chunked_upload": null,
          "image_upload": null,
          "json_upload": null,
          "large_file": null,
          "mixed_form": null,
          "multiple_upload": null,
          "resume_upload": null,
          "text_upload": null,
          "validated_upload": null
        },
        "file-upload-multipart-test.file_handling_status": [
          "text_file_upload",
          "json_file_upload",
          "binary_file_upload",
          "image_file_upload",
          "multiple_files_upload",
          "mixed_form_data",
          "large_file_upload",
          "chunked_upload",
          "validated_upload",
          "error_scenarios",
          "resume_upload"
        ],
        "advanced-assertions-test.assertion_results": {
          "assertion_types_tested": [
            "regex_matching",
            "length_validation",
            "type_checking",
            "oneof_validation",
            "numeric_ranges",
            "complex_nested",
            "array_elements",
            "conditional_exists",
            "error_structure",
            "performance_combined"
          ],
          "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
          "test_patterns": {
            "array_length": null,
            "complex_nested": null,
            "email_regex": null,
            "length_exact": null,
            "oneof_strings": null,
            "phone_regex": null,
            "type_validation": null,
            "url_regex": null,
            "uuid_regex": null
          },
          "test_summary": "advanced_assertions_comprehensive",
          "total_assertion_tests": 11
        },
        "advanced-assertions-test.validation_data": {
          "array_length": null,
          "complex_nested": null,
          "email_regex": null,
          "length_exact": null,
          "oneof_strings": null,
          "phone_regex": null,
          "type_validation": null,
          "url_regex": null,
          "uuid_regex": null
        },
        "advanced-assertions-test.regex_test_results": [
          "regex_matching",
          "length_validation",
          "type_checking",
          "oneof_validation",
          "numeric_ranges",
          "complex_nested",
          "array_elements",
          "conditional_exists",
          "error_structure",
          "performance_combined"
        ],
        "advanced-retry-patterns.retry_results": {
          "base_delay_ms": 1000,
          "max_retries_configured": 3,
          "patterns_tested": [
            "exponential_backoff",
            "linear_backoff",
            "fixed_delay",
            "conditional_retry",
            "no_retry_4xx",
            "timeout_retry_combo",
            "high_frequency",
            "multi_condition",
            "performance_tracking",
            "retry_chain"
          ],
          "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
          "test_summary": "advanced_retry_patterns",
          "total_retry_tests": 12
        },
        "advanced-retry-patterns.backoff_measurements": [
          "exponential_backoff",
          "linear_backoff",
          "fixed_delay",
          "conditional_retry",
          "no_retry_4xx",
          "timeout_retry_combo",
          "high_frequency",
          "multi_condition",
          "performance_tracking",
          "retry_chain"
        ],
        "environment-feature-flags-test.environment_results": {
          "current_environment": null,
          "deployment_stage": null,
          "environment_configurations": {
            "development": {
              "debug_logging": true,
              "retry_attempts": 3,
              "timeout": 30000
            },
            "production": {
              "debug_logging": false,
              "retry_attempts": 1,
              "timeout": 5000
            },
            "staging": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 15000
            },
            "test": {
              "debug_logging": false,
              "retry_attempts": 2,
              "timeout": 10000
            }
          },
          "environment_specific_tests": {
            "development": "skipped",
            "production": "skipped",
            "staging": "skipped",
            "test": "skipped"
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "production": "https://api.example.com",
            "staging": "https://staging-api.example.com",
            "test": "http://localhost:8080"
          },
          "feature_flag_results": {
            "advanced_analytics": "skipped",
            "api_v2": "skipped",
            "beta_program": "skipped",
            "debug_mode": "skipped",
            "experimental_features": "skipped",
            "new_ui": "skipped"
          },
          "feature_flags_tested": {
            "advanced_analytics": null,
            "api_v2": null,
            "beta_program": null,
            "debug_mode": null,
            "experimental_features": null,
            "new_ui": null
          },
          "test_environment": null,
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "test_summary": "environment_feature_flags_comprehensive",
          "total_environment_tests": 13
        },
        "environment-feature-flags-test.feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "environment-feature-flags-test.multi_env_config": {
          "development": {
            "debug_logging": true,
            "retry_attempts": 3,
            "timeout": 30000
          },
          "production": {
            "debug_logging": false,
            "retry_attempts": 1,
            "timeout": 5000
          },
          "staging": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 15000
          },
          "test": {
            "debug_logging": false,
            "retry_attempts": 2,
            "timeout": 10000
          }
        },
        "error-handling-test.error_handling_results": {
          "error_handling_results": {
            "bad_gateway": null,
            "bad_request": null,
            "chain_recovery": "error_recovery",
            "cleanup_status": null,
            "continue_after_failure": null,
            "degradation_mode": null,
            "fallback_service": null,
            "forbidden": null,
            "not_found": null,
            "primary_service": null,
            "rate_limit": null,
            "server_error": null,
            "service_unavailable": null,
            "timeout_handling": "{{timeout_result}}",
            "unauthorized": null
          },
          "error_scenarios_tested": [
            "continue_on_failure",
            "timeout_handling",
            "http_error_codes",
            "error_recovery_fallback",
            "graceful_degradation",
            "chain_failure_recovery",
            "error_propagation",
            "network_errors",
            "cleanup_after_errors"
          ],
          "http_status_codes_handled": [
            400,
            401,
            403,
            404,
            422,
            429,
            500,
            502,
            503
          ],
          "recovery_patterns": [
            "fallback_services",
            "graceful_degradation",
            "error_chain_recovery",
            "resource_cleanup"
          ],
          "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
          "test_summary": "error_handling_comprehensive",
          "total_error_tests": 10
        },
        "error-handling-test.failure_scenarios": [
          "continue_on_failure",
          "timeout_handling",
          "http_error_codes",
          "error_recovery_fallback",
          "graceful_degradation",
          "chain_failure_recovery",
          "error_propagation",
          "network_errors",
          "cleanup_after_errors"
        ],
        "error-handling-test.recovery_data": [
          "fallback_services",
          "graceful_degradation",
          "error_chain_recovery",
          "resource_cleanup"
        ],
        "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
        "faker_demo.generatedUserId": 8456786969362432,
        "httpbin-test.captured_username": "alpha_user",
        "httpbin-test.auth_token": "httpbin",
        "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
        "variable_cleanup_test.variable_state_before": null,
        "variable_cleanup_test.variable_state_after": null,
        "environment-variables.env_user": null,
        "environment-variables.env_home": null,
        "environment-variables.env_test_passed": true,
        "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
        "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
        "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
        "variable_interpolation.captured_user_data": null,
        "variable_interpolation.extracted_numbers": null,
        "variable_interpolation.processed_array": null,
        "variable_interpolation.nested_extraction": null,
        "variable_interpolation.final_computed_value": null
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 0,
            "captures_added": 3
          },
          {
            "index": 2,
            "condition": "status_code >= `400`",
            "matched": false,
            "executed": false,
            "branch": "none",
            "assertions_added": 0,
            "captures_added": 0
          }
        ]
      }
    }
  ],
  "variables_captured": {},
  "available_variables": {
    "api_base_url": "http://localhost:8080",
    "test_matrix": [
      {
        "user_type": "guest",
        "token": "",
        "expected_features": [
          "basic_search"
        ],
        "expected_limits": {
          "requests_per_hour": 10,
          "data_export": false
        },
        "expected_status": 200
      },
      {
        "user_type": "registered",
        "token": "reg_token_abc123",
        "expected_features": [
          "basic_search",
          "save_searches"
        ],
        "expected_limits": {
          "requests_per_hour": 100,
          "data_export": false
        },
        "expected_status": 200
      },
      {
        "user_type": "premium",
        "token": "premium_token_xyz789",
        "expected_features": [
          "basic_search",
          "save_searches",
          "advanced_filters",
          "export_data"
        ],
        "expected_limits": {
          "requests_per_hour": 1000,
          "data_export": true
        },
        "expected_status": 200
      },
      {
        "user_type": "admin",
        "token": "admin_token_super456",
        "expected_features": [
          "all"
        ],
        "expected_limits": {
          "requests_per_hour": -1,
          "data_export": true,
          "admin_access": true
        },
        "expected_status": 200
      }
    ],
    "api_responses": {
      "guest_response": {
        "available_features": [
          "basic_search"
        ],
        "limits": {
          "requests_per_hour": 10,
          "premium_required": true
        }
      },
      "registered_response": {
        "available_features": [
          "basic_search",
          "save_searches"
        ],
        "limits": {
          "requests_per_hour": 100,
          "premium_upgrade_available": true
        }
      },
      "premium_response": {
        "available_features": [
          "basic_search",
          "save_searches",
          "advanced_filters",
          "export_data"
        ],
        "limits": {
          "requests_per_hour": 1000,
          "unlimited_features": false
        }
      },
      "admin_response": {
        "available_features": [
          "all"
        ],
        "limits": {
          "requests_per_hour": -1,
          "unlimited_features": true,
          "admin_panels": [
            "user_management",
            "system_monitoring"
          ]
        }
      }
    },
    "scenario_results": {
      "guest_scenario": "not_tested",
      "registered_scenario": "not_tested",
      "premium_scenario": "not_tested",
      "admin_scenario": "not_tested",
      "cross_validation": "not_tested"
    },
    "auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
    "auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
    "auth_flows_test.user_permissions": [
      "read",
      "write"
    ],
    "auth_flows_test.auth_flow_results": {
      "jwt_authentication": {
        "status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
        "tokens_issued": 2,
        "profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
      },
      "oauth2_authentication": {
        "status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
        "authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
        "token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
      },
      "security_validation": {
        "expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
        "revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
        "permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
      },
      "session_management": {
        "logout_success": "{{js: Boolean(variables.complete_logout)}}",
        "cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
      }
    },
    "complex-workflows-test.workflow_results": {
      "api_contract_validations": {
        "order_service": null,
        "payment_service": null,
        "user_service": null
      },
      "business_outcomes": {
        "customer_id": "{{customer_id}}",
        "items_purchased": 3,
        "order_id": null,
        "total_revenue": 594.96,
        "transaction_id": null,
        "workflow_completion": null
      },
      "ecommerce_workflow_results": {
        "cart_management": "success",
        "catalog_browsing": null,
        "customer_registration": null,
        "fulfillment_initiated": null,
        "order_created": null,
        "payment_processed": null,
        "product_details": null,
        "promotions_applied": null,
        "shipping_calculated": null
      },
      "end_to_end_success": true,
      "microservices_communication": {
        "inventory_service": null,
        "notification_service": null
      },
      "test_summary": "complex_workflows_ecommerce_contracts",
      "total_complex_workflow_tests": 13,
      "workflow_patterns_tested": [
        "customer_lifecycle_management",
        "product_catalog_interaction",
        "cart_and_checkout_process",
        "payment_transaction_flow",
        "order_fulfillment_pipeline",
        "api_contract_validation",
        "microservices_integration",
        "end_to_end_business_process",
        "workflow_analytics_tracking"
      ],
      "workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
    },
    "complex-workflows-test.ecommerce_data": {
      "cart_management": "success",
      "catalog_browsing": null,
      "customer_registration": null,
      "fulfillment_initiated": null,
      "order_created": null,
      "payment_processed": null,
      "product_details": null,
      "promotions_applied": null,
      "shipping_calculated": null
    },
    "complex-workflows-test.contract_validation_results": {
      "order_service": null,
      "payment_service": null,
      "user_service": null
    },
    "auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
    "input-capture-test.normalized_email": "John.Doe@Example.COM",
    "input-capture-test.email_domain": "John.Doe@Example.COM",
    "input-capture-test.full_name": "John Michael Doe",
    "dependency-setup.auth_token": "test_user",
    "dependency-setup.session_id": "172.18.0.3",
    "dependency-setup.config_id": "v2",
    "dependency-setup.setup_timestamp": true,
    "comprehensive_basic.captured_echo_data": {
      "action": "create_resource",
      "metadata": {
        "api_version": "v2.1",
        "test_mode": true,
        "timestamp": "2024-01-01T00:00:00Z"
      },
      "user_id": 12345,
      "username": "flow_test_user"
    },
    "comprehensive_basic.generated_uuid": "httpbin",
    "comprehensive_basic.final_status": "completed",
    "javascript-expressions.js_calculated": 50,
    "javascript-expressions.js_timestamp": 1760869717656,
    "iteration-examples.users_tested": null,
    "iteration-examples.range_test_summary": null,
    "sensitive-data-security.security_test_passed": null,
    "sensitive-data-security.sensitive_data_masked": null,
    "sensitive-data-security.auth_tokens_secure": null,
    "webhooks-realtime.webhook_delivered": true,
    "webhooks-realtime.webhook_system_healthy": false,
    "webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
    "webhooks-realtime.stream_event_count": 3,
    "retry-logic-comprehensive.retry_attempts": 1,
    "retry-logic-comprehensive.retry_system_functional": false,
    "retry-logic-comprehensive.jittered_response_time": null,
    "file-upload-multipart-test.upload_results": {
      "content_types_tested": [
        "text/plain",
        "application/json",
        "application/octet-stream",
        "image/jpeg",
        "application/pdf",
        "video/mp4",
        "multipart/form-data"
      ],
      "test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
      "test_patterns": [
        "single_file_upload",
        "multiple_file_upload",
        "large_file_handling",
        "chunked_upload_process",
        "upload_validation",
        "error_handling",
        "resume_functionality"
      ],
      "test_summary": "file_upload_multipart_comprehensive",
      "total_upload_tests": 12,
      "upload_results": {
        "binary_upload": null,
        "chunked_upload": null,
        "image_upload": null,
        "json_upload": null,
        "large_file": null,
        "mixed_form": null,
        "multiple_upload": null,
        "resume_upload": null,
        "text_upload": null,
        "validated_upload": null
      },
      "upload_scenarios_tested": [
        "text_file_upload",
        "json_file_upload",
        "binary_file_upload",
        "image_file_upload",
        "multiple_files_upload",
        "mixed_form_data",
        "large_file_upload",
        "chunked_upload",
        "validated_upload",
        "error_scenarios",
        "resume_upload"
      ]
    },
    "file-upload-multipart-test.multipart_data": {
      "binary_upload": null,
      "chunked_upload": null,
      "image_upload": null,
      "json_upload": null,
      "large_file": null,
      "mixed_form": null,
      "multiple_upload": null,
      "resume_upload": null,
      "text_upload": null,
      "validated_upload": null
    },
    "file-upload-multipart-test.file_handling_status": [
      "text_file_upload",
      "json_file_upload",
      "binary_file_upload",
      "image_file_upload",
      "multiple_files_upload",
      "mixed_form_data",
      "large_file_upload",
      "chunked_upload",
      "validated_upload",
      "error_scenarios",
      "resume_upload"
    ],
    "advanced-assertions-test.assertion_results": {
      "assertion_types_tested": [
        "regex_matching",
        "length_validation",
        "type_checking",
        "oneof_validation",
        "numeric_ranges",
        "complex_nested",
        "array_elements",
        "conditional_exists",
        "error_structure",
        "performance_combined"
      ],
      "test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
      "test_patterns": {
        "array_length": null,
        "complex_nested": null,
        "email_regex": null,
        "length_exact": null,
        "oneof_strings": null,
        "phone_regex": null,
        "type_validation": null,
        "url_regex": null,
        "uuid_regex": null
      },
      "test_summary": "advanced_assertions_comprehensive",
      "total_assertion_tests": 11
    },
    "advanced-assertions-test.validation_data": {
      "array_length": null,
      "complex_nested": null,
      "email_regex": null,
      "length_exact": null,
      "oneof_strings": null,
      "phone_regex": null,
      "type_validation": null,
      "url_regex": null,
      "uuid_regex": null
    },
    "advanced-assertions-test.regex_test_results": [
      "regex_matching",
      "length_validation",
      "type_checking",
      "oneof_validation",
      "numeric_ranges",
      "complex_nested",
      "array_elements",
      "conditional_exists",
      "error_structure",
      "performance_combined"
    ],
    "advanced-retry-patterns.retry_results": {
      "base_delay_ms": 1000,
      "max_retries_configured": 3,
      "patterns_tested": [
        "exponential_backoff",
        "linear_backoff",
        "fixed_delay",
        "conditional_retry",
        "no_retry_4xx",
        "timeout_retry_combo",
        "high_frequency",
        "multi_condition",
        "performance_tracking",
        "retry_chain"
      ],
      "test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
      "test_summary": "advanced_retry_patterns",
      "total_retry_tests": 12
    },
    "advanced-retry-patterns.backoff_measurements": [
      "exponential_backoff",
      "linear_backoff",
      "fixed_delay",
      "conditional_retry",
      "no_retry_4xx",
      "timeout_retry_combo",
      "high_frequency",
      "multi_condition",
      "performance_tracking",
      "retry_chain"
    ],
    "environment-feature-flags-test.environment_results": {
      "current_environment": null,
      "deployment_stage": null,
      "environment_configurations": {
        "development": {
          "debug_logging": true,
          "retry_attempts": 3,
          "timeout": 30000
        },
        "production": {
          "debug_logging": false,
          "retry_attempts": 1,
          "timeout": 5000
        },
        "staging": {
          "debug_logging": false,
          "retry_attempts": 2,
          "timeout": 15000
        },
        "test": {
          "debug_logging": false,
          "retry_attempts": 2,
          "timeout": 10000
        }
      },
      "environment_specific_tests": {
        "development": "skipped",
        "production": "skipped",
        "staging": "skipped",
        "test": "skipped"
      },
      "environment_urls": {
        "development": "http://localhost:3000",
        "production": "https://api.example.com",
        "staging": "https://staging-api.example.com",
        "test": "http://localhost:8080"
      },
      "feature_flag_results": {
        "advanced_analytics": "skipped",
        "api_v2": "skipped",
        "beta_program": "skipped",
        "debug_mode": "skipped",
        "experimental_features": "skipped",
        "new_ui": "skipped"
      },
      "feature_flags_tested": {
        "advanced_analytics": null,
        "api_v2": null,
        "beta_program": null,
        "debug_mode": null,
        "experimental_features": null,
        "new_ui": null
      },
      "test_environment": null,
      "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
      "test_patterns": [
        "environment_detection",
        "environment_specific_operations",
        "feature_flag_conditional_execution",
        "multi_environment_configuration",
        "environment_based_data_handling",
        "feature_flag_combinations"
      ],
      "test_summary": "environment_feature_flags_comprehensive",
      "total_environment_tests": 13
    },
    "environment-feature-flags-test.feature_flag_data": {
      "advanced_analytics": "skipped",
      "api_v2": "skipped",
      "beta_program": "skipped",
      "debug_mode": "skipped",
      "experimental_features": "skipped",
      "new_ui": "skipped"
    },
    "environment-feature-flags-test.multi_env_config": {
      "development": {
        "debug_logging": true,
        "retry_attempts": 3,
        "timeout": 30000
      },
      "production": {
        "debug_logging": false,
        "retry_attempts": 1,
        "timeout": 5000
      },
      "staging": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 15000
      },
      "test": {
        "debug_logging": false,
        "retry_attempts": 2,
        "timeout": 10000
      }
    },
    "error-handling-test.error_handling_results": {
      "error_handling_results": {
        "bad_gateway": null,
        "bad_request": null,
        "chain_recovery": "error_recovery",
        "cleanup_status": null,
        "continue_after_failure": null,
        "degradation_mode": null,
        "fallback_service": null,
        "forbidden": null,
        "not_found": null,
        "primary_service": null,
        "rate_limit": null,
        "server_error": null,
        "service_unavailable": null,
        "timeout_handling": "{{timeout_result}}",
        "unauthorized": null
      },
      "error_scenarios_tested": [
        "continue_on_failure",
        "timeout_handling",
        "http_error_codes",
        "error_recovery_fallback",
        "graceful_degradation",
        "chain_failure_recovery",
        "error_propagation",
        "network_errors",
        "cleanup_after_errors"
      ],
      "http_status_codes_handled": [
        400,
        401,
        403,
        404,
        422,
        429,
        500,
        502,
        503
      ],
      "recovery_patterns": [
        "fallback_services",
        "graceful_degradation",
        "error_chain_recovery",
        "resource_cleanup"
      ],
      "test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
      "test_summary": "error_handling_comprehensive",
      "total_error_tests": 10
    },
    "error-handling-test.failure_scenarios": [
      "continue_on_failure",
      "timeout_handling",
      "http_error_codes",
      "error_recovery_fallback",
      "graceful_degradation",
      "chain_failure_recovery",
      "error_propagation",
      "network_errors",
      "cleanup_after_errors"
    ],
    "error-handling-test.recovery_data": [
      "fallback_services",
      "graceful_degradation",
      "error_chain_recovery",
      "resource_cleanup"
    ],
    "faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
    "faker_demo.generatedUserId": 8456786969362432,
    "httpbin-test.captured_username": "alpha_user",
    "httpbin-test.auth_token": "httpbin",
    "variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
    "variable_cleanup_test.variable_state_before": null,
    "variable_cleanup_test.variable_state_after": null,
    "environment-variables.env_user": null,
    "environment-variables.env_home": null,
    "environment-variables.env_test_passed": true,
    "faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
    "faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
    "faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
    "variable_interpolation.captured_user_data": null,
    "variable_interpolation.extracted_numbers": null,
    "variable_interpolation.processed_array": null,
    "variable_interpolation.nested_extraction": null,
    "variable_interpolation.final_computed_value": null
  },
  "suite_yaml_content": "# Teste de Cenários Condicionais Avançados\n# Baseado no exemplo \"Complex Conditional Scenarios\" do YAML_EXAMPLES.md\nsuite_name: \"Teste de Cenários Condicionais Avançados\"\nnode_id: \"complex_scenarios_test\"\ndescription: \"Testa lógica condicional complexa com múltiplos cenários baseados em diferentes condições\"\npriority: \"high\"\n\nbase_url: \"{{httpbin_url}}\"\n\nexports:\n  - user_access_matrix\n  - scenario_results\n  - conditional_flow_summary\n\nvariables:\n  user_types: [\"guest\", \"registered\", \"premium\", \"admin\"]\n\n  test_matrix:\n    - user_type: \"guest\"\n      token: \"\"\n      expected_features: [\"basic_search\"]\n      expected_limits:\n        requests_per_hour: 10\n        data_export: false\n      expected_status: 200\n\n    - user_type: \"registered\"\n      token: \"reg_token_abc123\"\n      expected_features: [\"basic_search\", \"save_searches\"]\n      expected_limits:\n        requests_per_hour: 100\n        data_export: false\n      expected_status: 200\n\n    - user_type: \"premium\"\n      token: \"premium_token_xyz789\"\n      expected_features: [\"basic_search\", \"save_searches\", \"advanced_filters\", \"export_data\"]\n      expected_limits:\n        requests_per_hour: 1000\n        data_export: true\n      expected_status: 200\n\n    - user_type: \"admin\"\n      token: \"admin_token_super456\"\n      expected_features: [\"all\"]\n      expected_limits:\n        requests_per_hour: -1\n        data_export: true\n        admin_access: true\n      expected_status: 200\n\n  # Dados de teste para diferentes cenários\n  api_responses:\n    guest_response:\n      available_features: [\"basic_search\"]\n      limits:\n        requests_per_hour: 10\n        premium_required: true\n\n    registered_response:\n      available_features: [\"basic_search\", \"save_searches\"]\n      limits:\n        requests_per_hour: 100\n        premium_upgrade_available: true\n\n    premium_response:\n      available_features: [\"basic_search\", \"save_searches\", \"advanced_filters\", \"export_data\"]\n      limits:\n        requests_per_hour: 1000\n        unlimited_features: false\n\n    admin_response:\n      available_features: [\"all\"]\n      limits:\n        requests_per_hour: -1\n        unlimited_features: true\n        admin_panels: [\"user_management\", \"system_monitoring\"]\n\nsteps:\n  # Cenário 1: Teste de Acesso Guest (sem autenticação)\n  - name: \"Test Guest User Access\"\n    request:\n      method: GET\n      url: \"/get\"\n      headers:\n        Accept: \"application/json\"\n        X-User-Type: \"guest\"\n      params:\n        action: \"get_features\"\n        user_type: \"guest\"\n\n    scenarios:\n      # Cenário A: Acesso bem-sucedido para guest\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n            args.action:\n              equals: \"get_features\"\n          capture:\n            guest_access_granted: \"true\"\n            guest_features: \"{{api_responses.guest_response.available_features}}\"\n            guest_limits: \"api_responses.guest_response.limits\"\n\n      # Cenário B: Acesso negado\n      - condition: \"status_code == `401`\"\n        then:\n          assert:\n            status_code: 401\n          capture:\n            guest_access_denied: \"true\"\n            auth_required: \"true\"\n\n      # Cenário C: Rate limit excedido\n      - condition: \"status_code == `429`\"\n        then:\n          assert:\n            status_code: 429\n          capture:\n            guest_rate_limited: \"true\"\n            retry_after: \"'60'\"\n\n  # Cenário 2: Teste de Usuário Registrado\n  - name: \"Test Registered User Access\"\n    request:\n      method: GET\n      url: \"/get\"\n      headers:\n        Authorization: \"Bearer {{test_matrix[1].token}}\"\n        Accept: \"application/json\"\n        X-User-Type: \"registered\"\n      params:\n        action: \"get_features\"\n        user_type: \"registered\"\n\n    scenarios:\n      # Cenário A: Usuário registrado com acesso normal\n      - condition: \"status_code == `200` && headers['x-user-type'] == 'registered'\"\n        then:\n          assert:\n            status_code: 200\n            args.user_type:\n              equals: \"registered\"\n          capture:\n            registered_access: \"true\"\n            registered_features: \"api_responses.registered_response.available_features\"\n            registered_limits: \"api_responses.registered_response.limits\"\n            feature_count: \"length(api_responses.registered_response.available_features)\"\n\n      # Cenário B: Token inválido ou expirado\n      - condition: \"status_code == `401`\"\n        then:\n          assert:\n            status_code: 401\n          capture:\n            registered_token_invalid: \"true\"\n            reauth_required: \"true\"\n\n      # Cenário C: Upgrade para premium sugerido\n      - condition: \"status_code == `200` && args.action == 'get_features'\"\n        then:\n          capture:\n            upgrade_available: \"api_responses.registered_response.limits.premium_upgrade_available\"\n            current_tier: \"'registered'\"\n\n  # Cenário 3: Teste de Usuário Premium\n  - name: \"Test Premium User Features\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Authorization: \"Bearer {{test_matrix[2].token}}\"\n        Content-Type: \"application/json\"\n        X-User-Type: \"premium\"\n      body:\n        action: \"test_premium_features\"\n        user_type: \"premium\"\n        requested_features: [\"advanced_filters\", \"export_data\"]\n\n    scenarios:\n      # Cenário A: Todas as funcionalidades premium disponíveis\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n            json.action:\n              equals: \"test_premium_features\"\n          capture:\n            premium_access: \"true\"\n            premium_features: \"{{api_responses.premium_response.available_features}}\"\n            export_enabled: \"{{api_responses.premium_response.available_features | contains('export_data')}}\"\n            advanced_filters: \"{{api_responses.premium_response.available_features | contains('advanced_filters')}}\"\n\n      # Cenário B: Funcionalidade premium não disponível (downgrade?)\n      - condition: \"status_code == `403`\"\n        then:\n          assert:\n            status_code: 403\n          capture:\n            premium_access_denied: \"true\"\n            subscription_check_required: \"true\"\n\n      # Cenário C: Limite de uso excedido mesmo sendo premium\n      - condition: \"status_code == `429`\"\n        then:\n          capture:\n            premium_rate_limited: \"true\"\n            fair_usage_exceeded: \"true\"\n\n  # Cenário 4: Teste de Acesso Administrativo\n  - name: \"Test Admin Capabilities\"\n    request:\n      method: GET\n      url: \"/get\"\n      headers:\n        Authorization: \"Bearer {{test_matrix[3].token}}\"\n        Accept: \"application/json\"\n        X-User-Type: \"admin\"\n        X-Admin-Action: \"dashboard\"\n      params:\n        action: \"admin_dashboard\"\n        permissions: \"all\"\n\n    scenarios:\n      # Cenário A: Acesso administrativo completo\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n            args.action:\n              equals: \"admin_dashboard\"\n          capture:\n            admin_access: \"true\"\n            admin_capabilities: \"{{api_responses.admin_response.limits.admin_panels}}\"\n            unlimited_access: \"{{api_responses.admin_response.limits.unlimited_features}}\"\n\n      # Cenário B: Admin com permissões limitadas\n      - condition: \"status_code == `200` && headers['x-admin-action'] == 'dashboard'\"\n        then:\n          capture:\n            admin_dashboard_access: \"true\"\n            admin_permissions: \"['user_management', 'system_monitoring']\"\n\n      # Cenário C: Acesso admin negado (token inválido)\n      - condition: \"status_code == `403`\"\n        then:\n          capture:\n            admin_access_denied: \"true\"\n            security_alert_triggered: \"true\"\n\n  # Cenário 5: Validação Cruzada de Tipos de Usuário\n  - name: \"Cross-User-Type Validation\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Test-Validation: \"cross_user_matrix\"\n      body:\n        validation_type: \"cross_user_access\"\n        test_results:\n          guest:\n            access: \"{{js: Boolean(variables.guest_access_granted)}}\"\n            features: \"{{guest_features}}\"\n            limits: \"{{guest_limits}}\"\n          registered:\n            access: \"{{js: Boolean(variables.registered_access)}}\"\n            features: \"{{registered_features}}\"\n            feature_count: \"{{js: variables.feature_count || 0}}\"\n          premium:\n            access: \"{{js: Boolean(variables.premium_access)}}\"\n            export_enabled: \"{{js: Boolean(variables.export_enabled)}}\"\n            advanced_filters: \"{{js: Boolean(variables.advanced_filters)}}\"\n          admin:\n            access: \"{{js: Boolean(variables.admin_access)}}\"\n            unlimited: \"{{js: Boolean(variables.unlimited_access)}}\"\n            capabilities: \"{{admin_capabilities}}\"\n\n    scenarios:\n      # Cenário A: Matriz de acesso válida\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n            json.validation_type:\n              equals: \"cross_user_access\"\n          capture:\n            validation_passed: \"true\"\n            access_matrix_valid: \"true\"\n\n      # Cenário B: Inconsistências detectadas\n      - condition: \"status_code == `200`\"\n        then:\n          capture:\n            user_access_matrix:\n              guest_valid: \"{{js: Boolean(variables.guest_access_granted)}}\"\n              registered_valid: \"{{js: Boolean(variables.registered_access)}}\"\n              premium_valid: \"{{js: Boolean(variables.premium_access)}}\"\n              admin_valid: \"{{js: Boolean(variables.admin_access)}}\"\n            hierarchy_respected: \"true\"\n\n  # Cenário 6: Teste de Fluxo Completo com Múltiplas Condições\n  - name: \"Complete Multi-Scenario Flow\"\n    request:\n      method: POST\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n      body:\n        flow_test: \"multi_scenario\"\n        scenarios_tested:\n          - type: \"guest\"\n            success: \"{{js: Boolean(variables.guest_access_granted)}}\"\n            features_count: \"{{js: (variables.guest_features && variables.guest_features.length) || 0}}\"\n          - type: \"registered\"\n            success: \"{{js: Boolean(variables.registered_access)}}\"\n            upgrade_available: \"{{js: Boolean(variables.upgrade_available)}}\"\n          - type: \"premium\"\n            success: \"{{js: Boolean(variables.premium_access)}}\"\n            export_enabled: \"{{js: Boolean(variables.export_enabled)}}\"\n          - type: \"admin\"\n            success: \"{{js: Boolean(variables.admin_access)}}\"\n            unlimited: \"{{js: Boolean(variables.unlimited_access)}}\"\n\n    scenarios:\n      # Cenário Final A: Todos os testes passaram\n      - condition: \"status_code == `200`\"\n        then:\n          capture:\n            all_scenarios_tested: \"true\"\n            scenario_results:\n              guest_scenario: \"{{js: variables.guest_access_granted || 'not_tested'}}\"\n              registered_scenario: \"{{js: variables.registered_access || 'not_tested'}}\"\n              premium_scenario: \"{{js: variables.premium_access || 'not_tested'}}\"\n              admin_scenario: \"{{js: variables.admin_access || 'not_tested'}}\"\n              cross_validation: \"{{js: variables.validation_passed || 'not_tested'}}\"\n\n            conditional_flow_summary:\n              total_scenarios: 6\n              conditions_tested: 12\n              user_types_validated: 4\n              matrix_validation: \"{{js: Boolean(variables.access_matrix_valid)}}\"\n              test_complete: true\n\n      # Cenário Final B: Alguns testes falharam\n      - condition: \"status_code >= `400`\"\n        then:\n          capture:\n            some_scenarios_failed: \"true\"\n            failure_analysis: \"Check individual scenario results\"\n"
}
Flow Test Engine
Report generated on 10/19/2025, 10:28:45 AM
© 2025 Flow Test Engine. Dynamic Reporting System.