Environment-Specific and Feature Flags Comprehensive Testing

/app/tests/environment-feature-flags-comprehensive-test.yaml

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

📊 Execution Timeline

# Status Step Name Type Duration Started At Details
1
Detect current environment
GET /get
request
1ms 19/10/2025, 10:28:38
✅ Request completed successfully
2
Development environment operations
POST /post
request
2ms 19/10/2025, 10:28:38
✅ Request completed successfully
3
Test environment operations
POST /post
request
2ms 19/10/2025, 10:28:38
✅ Request completed successfully
4
Staging environment operations
POST /post
request
2ms 19/10/2025, 10:28:38
✅ Request completed successfully
5
Production environment operations
GET /get
request
2ms 19/10/2025, 10:28:38
✅ Request completed successfully
6
Test new UI feature flag
GET /get
request
2ms 19/10/2025, 10:28:38
✅ Request completed successfully
7
Test API v2 feature flag
POST /post
request
3ms 19/10/2025, 10:28:38
✅ Request completed successfully
8
Test advanced analytics feature flag
POST /post
request
2ms 19/10/2025, 10:28:38
✅ Request completed successfully
9
Test beta program features
GET /get
request
2ms 19/10/2025, 10:28:38
✅ Request completed successfully
10
Test experimental features
POST /post
request
2ms 19/10/2025, 10:28:38
✅ Request completed successfully
11
Test debug mode features
GET /get
request
1ms 19/10/2025, 10:28:38
✅ Request completed successfully
12
Test environment-specific configuration
POST /post
request
2ms 19/10/2025, 10:28:38
✅ Request completed successfully
13
Environment-specific data operations
POST /post
request
3ms 19/10/2025, 10:28:38
✅ Request completed successfully
14
Test feature flag combinations
POST /post
request
3ms 19/10/2025, 10:28:38
✅ Request completed successfully
15
Collect environment and feature flag results
POST /post
request
6ms 19/10/2025, 10:28:38
✅ Request completed successfully

🌐 HTTP Requests Debug Info

Detect current environment

Step #1

1ms
cURL Command
curl -X GET -H 'X-Environment-Test: detection' "http://httpbin/get"

📤 Request

Method: GET
URL: http://httpbin/get
Base URL: http://httpbin
Request Headers
X-Environment-Test: detection
X-Current-Env: null
X-Test-Env: null
X-Deployment-Stage: null

📥 Response

Status Code: 200
Duration: 1ms
Size: 304 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 378
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {
    "detect_env": "true"
  },
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Environment-Test": "detection"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/get?detect_env=true"
}
📊
Total
2
assertions
Passed
2
assertions
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200

body.args.environment.equals

PASSED
✓ Match
Condição
body.args.environment.equals equals null
Assertion passou conforme esperado
Valor recebido: Objeto/Array
Captured Variables
{
  "detected_environment": "{{current_environment}}",
  "environment_detection_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "current_environment": null,
  "test_environment": null,
  "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"
  ]
}

Development environment operations

Step #2

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Environment: development' -H 'X-Dev-Tools: enabled' -d '{"environment":"development","dev_features":{"hot_reload":true,"debug_console":true,"test_data_generation":true,"mock_services":true},"timeout":30000,"retry_attempts":3}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Environment: development
X-Dev-Tools: enabled
Request Body
{
  "environment": "development",
  "dev_features": {
    "hot_reload": true,
    "debug_console": true,
    "test_data_generation": true,
    "mock_services": true
  },
  "timeout": 30000,
  "retry_attempts": 3
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 743 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 919
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"environment\":\"development\",\"dev_features\":{\"hot_reload\":true,\"debug_console\":true,\"test_data_generation\":true,\"mock_services\":true},\"timeout\":30000,\"retry_attempts\":3}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "169",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Dev-Tools": "enabled",
    "X-Environment": "development"
  },
  "json": {
    "dev_features": {
      "debug_console": true,
      "hot_reload": true,
      "mock_services": true,
      "test_data_generation": true
    },
    "environment": "development",
    "retry_attempts": 3,
    "timeout": 30000
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
Captured Variables
{
  "dev_environment_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "current_environment": null,
  "test_environment": null,
  "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"
  ]
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then ✓

Test environment operations

Step #3

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Environment: test' -H 'X-Test-Mode: enabled' -d '{"environment":"test","test_features":{"automated_testing":true,"data_isolation":true,"test_fixtures":true,"coverage_tracking":true},"timeout":10000,"retry_attempts":2}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Environment: test
X-Test-Mode: enabled
Request Body
{
  "environment": "test",
  "test_features": {
    "automated_testing": true,
    "data_isolation": true,
    "test_fixtures": true,
    "coverage_tracking": true
  },
  "timeout": 10000,
  "retry_attempts": 2
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 734 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 910
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"environment\":\"test\",\"test_features\":{\"automated_testing\":true,\"data_isolation\":true,\"test_fixtures\":true,\"coverage_tracking\":true},\"timeout\":10000,\"retry_attempts\":2}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "168",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Environment": "test",
    "X-Test-Mode": "enabled"
  },
  "json": {
    "environment": "test",
    "retry_attempts": 2,
    "test_features": {
      "automated_testing": true,
      "coverage_tracking": true,
      "data_isolation": true,
      "test_fixtures": true
    },
    "timeout": 10000
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
Captured Variables
{
  "test_environment_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "current_environment": null,
  "test_environment": null,
  "test_environment_result": null,
  "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"
  ]
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then ✓

Staging environment operations

Step #4

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Environment: staging' -H 'X-Staging-Mode: enabled' -d '{"environment":"staging","staging_features":{"production_like_data":true,"performance_monitoring":true,"integration_testing":true,"user_acceptance_testing":true},"timeout":15000,"retry_attempts":2}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Environment: staging
X-Staging-Mode: enabled
Request Body
{
  "environment": "staging",
  "staging_features": {
    "production_like_data": true,
    "performance_monitoring": true,
    "integration_testing": true,
    "user_acceptance_testing": true
  },
  "timeout": 15000,
  "retry_attempts": 2
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 798 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 974
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"environment\":\"staging\",\"staging_features\":{\"production_like_data\":true,\"performance_monitoring\":true,\"integration_testing\":true,\"user_acceptance_testing\":true},\"timeout\":15000,\"retry_attempts\":2}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "197",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Environment": "staging",
    "X-Staging-Mode": "enabled"
  },
  "json": {
    "environment": "staging",
    "retry_attempts": 2,
    "staging_features": {
      "integration_testing": true,
      "performance_monitoring": true,
      "production_like_data": true,
      "user_acceptance_testing": true
    },
    "timeout": 15000
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
Captured Variables
{
  "staging_environment_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "current_environment": null,
  "test_environment": null,
  "test_environment_result": null,
  "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"
  ]
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then ✓

Production environment operations

Step #5

2ms
cURL Command
curl -X GET -H 'X-Environment: production' -H 'X-Production-Mode: enabled' -H 'X-Read-Only: true' "http://httpbin/get"

📤 Request

Method: GET
URL: http://httpbin/get
Base URL: http://httpbin
Request Headers
X-Environment: production
X-Production-Mode: enabled
X-Read-Only: true

📥 Response

Status Code: 200
Duration: 2ms
Size: 471 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 573
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {
    "environment": "production",
    "production_safety": "true",
    "read_only_operations": "true"
  },
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Environment": "production",
    "X-Production-Mode": "enabled",
    "X-Read-Only": "true"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/get?environment=production&production_safety=true&read_only_operations=true"
}
Captured Variables
{
  "production_environment_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "current_environment": null,
  "test_environment": null,
  "test_environment_result": null,
  "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"
  ]
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then ✓

Test new UI feature flag

Step #6

2ms
cURL Command
curl -X GET -H 'X-Feature-Flag: new_ui' "http://httpbin/get"

📤 Request

Method: GET
URL: http://httpbin/get
Base URL: http://httpbin
Request Headers
X-Feature-Flag: new_ui
X-Flag-Status: null
X-Environment: null

📥 Response

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

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then ✓

Test API v2 feature flag

Step #7

3ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Feature-Flag: api_v2' -H 'X-API-Version: v2' -d '{"api_version":"v2","feature":"api_v2","enabled":null,"new_endpoints":true,"enhanced_features":true}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Feature-Flag: api_v2
X-API-Version: v2
X-Flag-Status: null
Request Body
{
  "api_version": "v2",
  "feature": "api_v2",
  "enabled": null,
  "new_endpoints": true,
  "enhanced_features": true
}

📥 Response

Status Code: 200
Duration: 3ms
Size: 594 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 737
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"api_version\":\"v2\",\"feature\":\"api_v2\",\"enabled\":null,\"new_endpoints\":true,\"enhanced_features\":true}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "100",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Api-Version": "v2",
    "X-Feature-Flag": "api_v2"
  },
  "json": {
    "api_version": "v2",
    "enabled": null,
    "enhanced_features": true,
    "feature": "api_v2",
    "new_endpoints": true
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
Captured Variables
{
  "api_v2_feature_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "current_environment": null,
  "test_environment": null,
  "test_environment_result": null,
  "api_v2_feature_result": null,
  "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"
  ]
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then ✓

Test advanced analytics feature flag

Step #8

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Feature-Flag: advanced_analytics' -H 'X-Analytics: enabled' -d '{"feature":"advanced_analytics","enabled":null,"analytics_level":"advanced","tracking_enabled":true,"metrics_collection":true}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Feature-Flag: advanced_analytics
X-Analytics: enabled
Request Body
{
  "feature": "advanced_analytics",
  "enabled": null,
  "analytics_level": "advanced",
  "tracking_enabled": true,
  "metrics_collection": true
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 661 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 804
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"feature\":\"advanced_analytics\",\"enabled\":null,\"analytics_level\":\"advanced\",\"tracking_enabled\":true,\"metrics_collection\":true}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "126",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Analytics": "enabled",
    "X-Feature-Flag": "advanced_analytics"
  },
  "json": {
    "analytics_level": "advanced",
    "enabled": null,
    "feature": "advanced_analytics",
    "metrics_collection": true,
    "tracking_enabled": true
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
Captured Variables
{
  "analytics_feature_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "current_environment": null,
  "test_environment": null,
  "test_environment_result": null,
  "api_v2_feature_result": null,
  "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"
  ]
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then ✓

Test beta program features

Step #9

2ms
cURL Command
curl -X GET -H 'X-Beta-Program: enabled' -H 'X-User-Type: beta_tester' -H 'X-Feature-Flag: beta_program' "http://httpbin/get"

📤 Request

Method: GET
URL: http://httpbin/get
Base URL: http://httpbin
Request Headers
X-Beta-Program: enabled
X-User-Type: beta_tester
X-Feature-Flag: beta_program

📥 Response

Status Code: 200
Duration: 2ms
Size: 454 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 556
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {
    "beta_access": "true",
    "beta_features": "enabled",
    "feature_preview": "true"
  },
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Beta-Program": "enabled",
    "X-Feature-Flag": "beta_program",
    "X-User-Type": "beta_tester"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/get?beta_access=true&beta_features=enabled&feature_preview=true"
}
Captured Variables
{
  "beta_program_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "current_environment": null,
  "test_environment": null,
  "test_environment_result": null,
  "api_v2_feature_result": null,
  "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"
  ]
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then ✓

Test experimental features

Step #10

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Experimental: true' -H 'X-Feature-Flag: experimental' -H 'X-Warning: experimental_feature' -d '{"feature_type":"experimental","enabled":null,"warning":"This feature is experimental and may change","stability":"unstable","feedback_encouraged":true}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Experimental: true
X-Feature-Flag: experimental
X-Warning: experimental_feature
Request Body
{
  "feature_type": "experimental",
  "enabled": null,
  "warning": "This feature is experimental and may change",
  "stability": "unstable",
  "feedback_encouraged": true
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 744 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 894
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"feature_type\":\"experimental\",\"enabled\":null,\"warning\":\"This feature is experimental and may change\",\"stability\":\"unstable\",\"feedback_encouraged\":true}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "152",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Experimental": "true",
    "X-Feature-Flag": "experimental",
    "X-Warning": "experimental_feature"
  },
  "json": {
    "enabled": null,
    "feature_type": "experimental",
    "feedback_encouraged": true,
    "stability": "unstable",
    "warning": "This feature is experimental and may change"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
Captured Variables
{
  "experimental_feature_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "current_environment": null,
  "test_environment": null,
  "test_environment_result": null,
  "api_v2_feature_result": null,
  "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"
  ]
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then ✓

Test debug mode features

Step #11

1ms
cURL Command
curl -X GET -H 'X-Debug-Mode: enabled' -H 'X-Verbose-Logging: true' -H 'X-Feature-Flag: debug_mode' "http://httpbin/get"

📤 Request

Method: GET
URL: http://httpbin/get
Base URL: http://httpbin
Request Headers
X-Debug-Mode: enabled
X-Verbose-Logging: true
X-Feature-Flag: debug_mode

📥 Response

Status Code: 200
Duration: 1ms
Size: 491 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 600
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {
    "debug": "true",
    "debug_info": "enabled",
    "performance_metrics": "detailed",
    "verbose_output": "true"
  },
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Debug-Mode": "enabled",
    "X-Feature-Flag": "debug_mode",
    "X-Verbose-Logging": "true"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/get?debug=true&verbose_output=true&debug_info=enabled&performance_metrics=detailed"
}
Captured Variables
{
  "debug_mode_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "current_environment": null,
  "test_environment": null,
  "test_environment_result": null,
  "api_v2_feature_result": null,
  "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"
  ]
}

🎭 Scenarios

Executed: 1 scenarios
Scenario 1: then ✓

Test environment-specific configuration

Step #12

2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Config-Test: environment_specific' -d '{"environment":null,"config":"{{environment_config[current_environment]}}","environment_url":"{{environment_urls[current_environment]}}","test_id":"env-9155d18f-ba99-4cfc-b367-9d2df87e67e9"}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Config-Test: environment_specific
X-Environment: null
Request Body
{
  "environment": null,
  "config": "{{environment_config[current_environment]}}",
  "environment_url": "{{environment_urls[current_environment]}}",
  "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9"
}

📥 Response

Status Code: 200
Duration: 2ms
Size: 766 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 895
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"environment\":null,\"config\":\"{{environment_config[current_environment]}}\",\"environment_url\":\"{{environment_urls[current_environment]}}\",\"test_id\":\"env-9155d18f-ba99-4cfc-b367-9d2df87e67e9\"}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "190",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Config-Test": "environment_specific"
  },
  "json": {
    "config": "{{environment_config[current_environment]}}",
    "environment": null,
    "environment_url": "{{environment_urls[current_environment]}}",
    "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
📊
Total
2
assertions
Passed
2
assertions
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200

body.json.environment.equals

PASSED
✓ Match
Condição
body.json.environment.equals equals null
Assertion passou conforme esperado
Valor recebido: Objeto/Array
Captured Variables
{
  "environment_config_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "current_environment": null,
  "test_environment": null,
  "test_environment_result": null,
  "api_v2_feature_result": null,
  "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-specific data operations

Step #13

3ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Data-Operation: environment_specific' -d '{"operation":"data_handling","environment":null,"data_strategy":"test_data","data_sensitivity":"low","anonymization":"optional","backup_strategy":"daily"}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Data-Operation: environment_specific
X-Environment: null
Request Body
{
  "operation": "data_handling",
  "environment": null,
  "data_strategy": "test_data",
  "data_sensitivity": "low",
  "anonymization": "optional",
  "backup_strategy": "daily"
}

📥 Response

Status Code: 200
Duration: 3ms
Size: 705 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 848
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"operation\":\"data_handling\",\"environment\":null,\"data_strategy\":\"test_data\",\"data_sensitivity\":\"low\",\"anonymization\":\"optional\",\"backup_strategy\":\"daily\"}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "154",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Data-Operation": "environment_specific"
  },
  "json": {
    "anonymization": "optional",
    "backup_strategy": "daily",
    "data_sensitivity": "low",
    "data_strategy": "test_data",
    "environment": null,
    "operation": "data_handling"
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
📊
Total
2
assertions
Passed
2
assertions
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200

body.json.environment.equals

PASSED
✓ Match
Condição
body.json.environment.equals equals null
Assertion passou conforme esperado
Valor recebido: Objeto/Array
Captured Variables
{
  "data_handling_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "current_environment": null,
  "test_environment": null,
  "test_environment_result": null,
  "api_v2_feature_result": null,
  "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"
  ]
}

Test feature flag combinations

Step #14

3ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Feature-Combination: test' -d '{"test_type":"feature_flag_combinations","environment":null,"active_features":{"new_ui":null,"api_v2":null,"advanced_analytics":null,"beta_program":null,"experimental_features":null,"debug_mode":null},"feature_compatibility":{"ui_api_combo":false,"analytics_beta_combo":false},"total_active_features":0}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Feature-Combination: test
Request Body
{
  "test_type": "feature_flag_combinations",
  "environment": null,
  "active_features": {
    "new_ui": null,
    "api_v2": null,
    "advanced_analytics": null,
    "beta_program": null,
    "experimental_features": null,
    "debug_mode": null
  },
  "feature_compatibility": {
    "ui_api_combo": false,
    "analytics_beta_combo": false
  },
  "total_active_features": 0
}

📥 Response

Status Code: 200
Duration: 3ms
Size: 998 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 1214
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"test_type\":\"feature_flag_combinations\",\"environment\":null,\"active_features\":{\"new_ui\":null,\"api_v2\":null,\"advanced_analytics\":null,\"beta_program\":null,\"experimental_features\":null,\"debug_mode\":null},\"feature_compatibility\":{\"ui_api_combo\":false,\"analytics_beta_combo\":false},\"total_active_features\":0}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "303",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Feature-Combination": "test"
  },
  "json": {
    "active_features": {
      "advanced_analytics": null,
      "api_v2": null,
      "beta_program": null,
      "debug_mode": null,
      "experimental_features": null,
      "new_ui": null
    },
    "environment": null,
    "feature_compatibility": {
      "analytics_beta_combo": false,
      "ui_api_combo": false
    },
    "test_type": "feature_flag_combinations",
    "total_active_features": 0
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
📊
Total
2
assertions
Passed
2
assertions
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200

body.json.test_type.equals

PASSED
✓ Match
Condição
body.json.test_type.equals equals feature_flag_combinations
Assertion passou conforme esperado
Valor recebido: feature_flag_combinations
Captured Variables
{
  "feature_combination_result": null
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "current_environment": null,
  "test_environment": null,
  "test_environment_result": null,
  "api_v2_feature_result": null,
  "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"
  ]
}

Collect environment and feature flag results

Step #15

6ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -H 'X-Summary: environment_feature_complete' -d '{"test_summary":"environment_feature_flags_comprehensive","test_id":"env-9155d18f-ba99-4cfc-b367-9d2df87e67e9","current_environment":null,"test_environment":null,"deployment_stage":null,"feature_flags_tested":{"new_ui":null,"api_v2":null,"advanced_analytics":null,"beta_program":null,"experimental_features":null,"debug_mode":null},"environment_specific_tests":{"development":"skipped","test":"skipped","staging":"skipped","production":"skipped"},"feature_flag_results":{"new_ui":"skipped","api_v2":"skipped","advanced_analytics":"skipped","beta_program":"skipped","experimental_features":"skipped","debug_mode":"skipped"},"environment_configurations":{"development":{"timeout":30000,"retry_attempts":3,"debug_logging":true},"test":{"timeout":10000,"retry_attempts":2,"debug_logging":false},"staging":{"timeout":15000,"retry_attempts":2,"debug_logging":false},"production":{"timeout":5000,"retry_attempts":1,"debug_logging":false}},"environment_urls":{"development":"http://localhost:3000","test":"http://localhost:8080","staging":"https://staging-api.example.com","production":"https://api.example.com"},"test_patterns":["environment_detection","environment_specific_operations","feature_flag_conditional_execution","multi_environment_configuration","environment_based_data_handling","feature_flag_combinations"],"total_environment_tests":13}' "http://httpbin/post"

📤 Request

Method: POST
URL: http://httpbin/post
Base URL: http://httpbin
Request Headers
Content-Type: application/json
X-Summary: environment_feature_complete
Request Body
{
  "test_summary": "environment_feature_flags_comprehensive",
  "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
  "current_environment": null,
  "test_environment": null,
  "deployment_stage": null,
  "feature_flags_tested": {
    "new_ui": null,
    "api_v2": null,
    "advanced_analytics": null,
    "beta_program": null,
    "experimental_features": null,
    "debug_mode": null
  },
  "environment_specific_tests": {
    "development": "skipped",
    "test": "skipped",
    "staging": "skipped",
    "production": "skipped"
  },
  "feature_flag_results": {
    "new_ui": "skipped",
    "api_v2": "skipped",
    "advanced_analytics": "skipped",
    "beta_program": "skipped",
    "experimental_features": "skipped",
    "debug_mode": "skipped"
  },
  "environment_configurations": {
    "development": {
      "timeout": 30000,
      "retry_attempts": 3,
      "debug_logging": true
    },
    "test": {
      "timeout": 10000,
      "retry_attempts": 2,
      "debug_logging": false
    },
    "staging": {
      "timeout": 15000,
      "retry_attempts": 2,
      "debug_logging": false
    },
    "production": {
      "timeout": 5000,
      "retry_attempts": 1,
      "debug_logging": false
    }
  },
  "environment_urls": {
    "development": "http://localhost:3000",
    "test": "http://localhost:8080",
    "staging": "https://staging-api.example.com",
    "production": "https://api.example.com"
  },
  "test_patterns": [
    "environment_detection",
    "environment_specific_operations",
    "feature_flag_conditional_execution",
    "multi_environment_configuration",
    "environment_based_data_handling",
    "feature_flag_combinations"
  ],
  "total_environment_tests": 13
}

📥 Response

Status Code: 200
Duration: 6ms
Size: 3203 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:38 GMT
connection: keep-alive
content-type: application/json
content-length: 3832
access-control-allow-origin: *
access-control-allow-credentials: true
Response Body
{
  "args": {},
  "data": "{\"test_summary\":\"environment_feature_flags_comprehensive\",\"test_id\":\"env-9155d18f-ba99-4cfc-b367-9d2df87e67e9\",\"current_environment\":null,\"test_environment\":null,\"deployment_stage\":null,\"feature_flags_tested\":{\"new_ui\":null,\"api_v2\":null,\"advanced_analytics\":null,\"beta_program\":null,\"experimental_features\":null,\"debug_mode\":null},\"environment_specific_tests\":{\"development\":\"skipped\",\"test\":\"skipped\",\"staging\":\"skipped\",\"production\":\"skipped\"},\"feature_flag_results\":{\"new_ui\":\"skipped\",\"api_v2\":\"skipped\",\"advanced_analytics\":\"skipped\",\"beta_program\":\"skipped\",\"experimental_features\":\"skipped\",\"debug_mode\":\"skipped\"},\"environment_configurations\":{\"development\":{\"timeout\":30000,\"retry_attempts\":3,\"debug_logging\":true},\"test\":{\"timeout\":10000,\"retry_attempts\":2,\"debug_logging\":false},\"staging\":{\"timeout\":15000,\"retry_attempts\":2,\"debug_logging\":false},\"production\":{\"timeout\":5000,\"retry_attempts\":1,\"debug_logging\":false}},\"environment_urls\":{\"development\":\"http://localhost:3000\",\"test\":\"http://localhost:8080\",\"staging\":\"https://staging-api.example.com\",\"production\":\"https://api.example.com\"},\"test_patterns\":[\"environment_detection\",\"environment_specific_operations\",\"feature_flag_conditional_execution\",\"multi_environment_configuration\",\"environment_based_data_handling\",\"feature_flag_combinations\"],\"total_environment_tests\":13}",
  "files": {},
  "form": {},
  "headers": {
    "Accept": "application/json, text/plain, */*",
    "Accept-Encoding": "gzip, compress, deflate, br",
    "Connection": "keep-alive",
    "Content-Length": "1343",
    "Content-Type": "application/json",
    "Host": "httpbin",
    "User-Agent": "axios/1.12.1",
    "X-Summary": "environment_feature_complete"
  },
  "json": {
    "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
  },
  "origin": "172.18.0.3",
  "url": "http://httpbin/post"
}
📊
Total
4
assertions
Passed
4
assertions
📈
Success Rate
100%
success

status_code

PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200

body.json.test_summary.equals

PASSED
✓ Match
Condição
body.json.test_summary.equals equals environment_feature_flags_comprehensive
Assertion passou conforme esperado
Valor recebido: environment_feature_flags_comprehensive

body.json.current_environment.equals

PASSED
✓ Match
Condição
body.json.current_environment.equals equals null
Assertion passou conforme esperado
Valor recebido: Objeto/Array

body.json.total_environment_tests.equals

PASSED
✓ Match
Condição
body.json.total_environment_tests.equals equals 13
Assertion passou conforme esperado
Valor recebido: 13
Captured Variables
{
  "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
  },
  "feature_flag_data": {
    "advanced_analytics": "skipped",
    "api_v2": "skipped",
    "beta_program": "skipped",
    "debug_mode": "skipped",
    "experimental_features": "skipped",
    "new_ui": "skipped"
  },
  "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
    }
  }
}
Available Variables
{
  "api_base_url": "http://localhost:8080",
  "current_environment": null,
  "test_environment": null,
  "test_environment_result": null,
  "api_v2_feature_result": null,
  "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"
  ]
}

📄 Raw Suite Data

Complete Suite Data
{
  "node_id": "environment-feature-flags-test",
  "suite_name": "Environment-Specific and Feature Flags Comprehensive Testing",
  "file_path": "/app/tests/environment-feature-flags-comprehensive-test.yaml",
  "priority": "high",
  "start_time": "2025-10-19T10:28:38.897Z",
  "end_time": "2025-10-19T10:28:38.934Z",
  "duration_ms": 37,
  "status": "success",
  "steps_executed": 15,
  "steps_successful": 15,
  "steps_failed": 0,
  "success_rate": 100,
  "steps_results": [
    {
      "step_id": "step-1-detect-current-environment",
      "qualified_step_id": "environment-feature-flags-test::step-1-detect-current-environment",
      "step_name": "Detect current environment",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "GET",
        "url": "/get",
        "headers": {
          "X-Environment-Test": "detection",
          "X-Current-Env": null,
          "X-Test-Env": null,
          "X-Deployment-Stage": null
        },
        "params": {
          "environment": null,
          "detect_env": "true"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/get",
        "curl_command": "curl -X GET -H 'X-Environment-Test: detection' \"http://httpbin/get\"",
        "raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nX-Environment-Test: detection\r\n\r\n",
        "raw_url": "{{base_url}}/get"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "378",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {
            "detect_env": "true"
          },
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Environment-Test": "detection"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/get?detect_env=true"
        },
        "size_bytes": 304,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 378\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {\n    \"detect_env\": \"true\"\n  },\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Environment-Test\": \"detection\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/get?detect_env=true\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        },
        {
          "field": "body.args.environment.equals",
          "expected": null,
          "actual": null,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "detected_environment": "{{current_environment}}",
        "environment_detection_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "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"
        ]
      }
    },
    {
      "step_id": "step-2-development-environment-operations",
      "qualified_step_id": "environment-feature-flags-test::step-2-development-environment-operations",
      "step_name": "Development environment operations",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json",
          "X-Environment": "development",
          "X-Dev-Tools": "enabled"
        },
        "body": {
          "environment": "development",
          "dev_features": {
            "hot_reload": true,
            "debug_console": true,
            "test_data_generation": true,
            "mock_services": true
          },
          "timeout": 30000,
          "retry_attempts": 3
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Environment: development' -H 'X-Dev-Tools: enabled' -d '{\"environment\":\"development\",\"dev_features\":{\"hot_reload\":true,\"debug_console\":true,\"test_data_generation\":true,\"mock_services\":true},\"timeout\":30000,\"retry_attempts\":3}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Environment: development\r\nX-Dev-Tools: enabled\r\nContent-Length: 169\r\n\r\n{\"environment\":\"development\",\"dev_features\":{\"hot_reload\":true,\"debug_console\":true,\"test_data_generation\":true,\"mock_services\":true},\"timeout\":30000,\"retry_attempts\":3}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "919",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"environment\":\"development\",\"dev_features\":{\"hot_reload\":true,\"debug_console\":true,\"test_data_generation\":true,\"mock_services\":true},\"timeout\":30000,\"retry_attempts\":3}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "169",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Dev-Tools": "enabled",
            "X-Environment": "development"
          },
          "json": {
            "dev_features": {
              "debug_console": true,
              "hot_reload": true,
              "mock_services": true,
              "test_data_generation": true
            },
            "environment": "development",
            "retry_attempts": 3,
            "timeout": 30000
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 743,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 919\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"environment\\\":\\\"development\\\",\\\"dev_features\\\":{\\\"hot_reload\\\":true,\\\"debug_console\\\":true,\\\"test_data_generation\\\":true,\\\"mock_services\\\":true},\\\"timeout\\\":30000,\\\"retry_attempts\\\":3}\",\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\": \"169\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Dev-Tools\": \"enabled\",\n    \"X-Environment\": \"development\"\n  },\n  \"json\": {\n    \"dev_features\": {\n      \"debug_console\": true,\n      \"hot_reload\": true,\n      \"mock_services\": true,\n      \"test_data_generation\": true\n    },\n    \"environment\": \"development\",\n    \"retry_attempts\": 3,\n    \"timeout\": 30000\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "dev_environment_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "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"
        ]
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 2,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-3-test-environment-operations",
      "qualified_step_id": "environment-feature-flags-test::step-3-test-environment-operations",
      "step_name": "Test environment operations",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json",
          "X-Environment": "test",
          "X-Test-Mode": "enabled"
        },
        "body": {
          "environment": "test",
          "test_features": {
            "automated_testing": true,
            "data_isolation": true,
            "test_fixtures": true,
            "coverage_tracking": true
          },
          "timeout": 10000,
          "retry_attempts": 2
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Environment: test' -H 'X-Test-Mode: enabled' -d '{\"environment\":\"test\",\"test_features\":{\"automated_testing\":true,\"data_isolation\":true,\"test_fixtures\":true,\"coverage_tracking\":true},\"timeout\":10000,\"retry_attempts\":2}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Environment: test\r\nX-Test-Mode: enabled\r\nContent-Length: 168\r\n\r\n{\"environment\":\"test\",\"test_features\":{\"automated_testing\":true,\"data_isolation\":true,\"test_fixtures\":true,\"coverage_tracking\":true},\"timeout\":10000,\"retry_attempts\":2}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "910",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"environment\":\"test\",\"test_features\":{\"automated_testing\":true,\"data_isolation\":true,\"test_fixtures\":true,\"coverage_tracking\":true},\"timeout\":10000,\"retry_attempts\":2}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "168",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Environment": "test",
            "X-Test-Mode": "enabled"
          },
          "json": {
            "environment": "test",
            "retry_attempts": 2,
            "test_features": {
              "automated_testing": true,
              "coverage_tracking": true,
              "data_isolation": true,
              "test_fixtures": true
            },
            "timeout": 10000
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 734,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 910\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"environment\\\":\\\"test\\\",\\\"test_features\\\":{\\\"automated_testing\\\":true,\\\"data_isolation\\\":true,\\\"test_fixtures\\\":true,\\\"coverage_tracking\\\":true},\\\"timeout\\\":10000,\\\"retry_attempts\\\":2}\",\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\": \"168\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Environment\": \"test\",\n    \"X-Test-Mode\": \"enabled\"\n  },\n  \"json\": {\n    \"environment\": \"test\",\n    \"retry_attempts\": 2,\n    \"test_features\": {\n      \"automated_testing\": true,\n      \"coverage_tracking\": true,\n      \"data_isolation\": true,\n      \"test_fixtures\": true\n    },\n    \"timeout\": 10000\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "test_environment_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "test_environment_result": null,
        "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"
        ]
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-4-staging-environment-operations",
      "qualified_step_id": "environment-feature-flags-test::step-4-staging-environment-operations",
      "step_name": "Staging environment operations",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json",
          "X-Environment": "staging",
          "X-Staging-Mode": "enabled"
        },
        "body": {
          "environment": "staging",
          "staging_features": {
            "production_like_data": true,
            "performance_monitoring": true,
            "integration_testing": true,
            "user_acceptance_testing": true
          },
          "timeout": 15000,
          "retry_attempts": 2
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Environment: staging' -H 'X-Staging-Mode: enabled' -d '{\"environment\":\"staging\",\"staging_features\":{\"production_like_data\":true,\"performance_monitoring\":true,\"integration_testing\":true,\"user_acceptance_testing\":true},\"timeout\":15000,\"retry_attempts\":2}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Environment: staging\r\nX-Staging-Mode: enabled\r\nContent-Length: 197\r\n\r\n{\"environment\":\"staging\",\"staging_features\":{\"production_like_data\":true,\"performance_monitoring\":true,\"integration_testing\":true,\"user_acceptance_testing\":true},\"timeout\":15000,\"retry_attempts\":2}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "974",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"environment\":\"staging\",\"staging_features\":{\"production_like_data\":true,\"performance_monitoring\":true,\"integration_testing\":true,\"user_acceptance_testing\":true},\"timeout\":15000,\"retry_attempts\":2}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "197",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Environment": "staging",
            "X-Staging-Mode": "enabled"
          },
          "json": {
            "environment": "staging",
            "retry_attempts": 2,
            "staging_features": {
              "integration_testing": true,
              "performance_monitoring": true,
              "production_like_data": true,
              "user_acceptance_testing": true
            },
            "timeout": 15000
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 798,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 974\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"environment\\\":\\\"staging\\\",\\\"staging_features\\\":{\\\"production_like_data\\\":true,\\\"performance_monitoring\\\":true,\\\"integration_testing\\\":true,\\\"user_acceptance_testing\\\":true},\\\"timeout\\\":15000,\\\"retry_attempts\\\":2}\",\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\": \"197\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Environment\": \"staging\",\n    \"X-Staging-Mode\": \"enabled\"\n  },\n  \"json\": {\n    \"environment\": \"staging\",\n    \"retry_attempts\": 2,\n    \"staging_features\": {\n      \"integration_testing\": true,\n      \"performance_monitoring\": true,\n      \"production_like_data\": true,\n      \"user_acceptance_testing\": true\n    },\n    \"timeout\": 15000\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "staging_environment_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "test_environment_result": null,
        "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"
        ]
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-5-production-environment-operations",
      "qualified_step_id": "environment-feature-flags-test::step-5-production-environment-operations",
      "step_name": "Production environment operations",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "GET",
        "url": "/get",
        "headers": {
          "X-Environment": "production",
          "X-Production-Mode": "enabled",
          "X-Read-Only": "true"
        },
        "params": {
          "environment": "production",
          "production_safety": "true",
          "read_only_operations": "true"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/get",
        "curl_command": "curl -X GET -H 'X-Environment: production' -H 'X-Production-Mode: enabled' -H 'X-Read-Only: true' \"http://httpbin/get\"",
        "raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nX-Environment: production\r\nX-Production-Mode: enabled\r\nX-Read-Only: true\r\n\r\n",
        "raw_url": "{{base_url}}/get"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "573",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {
            "environment": "production",
            "production_safety": "true",
            "read_only_operations": "true"
          },
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Environment": "production",
            "X-Production-Mode": "enabled",
            "X-Read-Only": "true"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/get?environment=production&production_safety=true&read_only_operations=true"
        },
        "size_bytes": 471,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 573\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {\n    \"environment\": \"production\",\n    \"production_safety\": \"true\",\n    \"read_only_operations\": \"true\"\n  },\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Environment\": \"production\",\n    \"X-Production-Mode\": \"enabled\",\n    \"X-Read-Only\": \"true\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/get?environment=production&production_safety=true&read_only_operations=true\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "production_environment_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "test_environment_result": null,
        "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"
        ]
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-6-test-new-ui-feature-flag",
      "qualified_step_id": "environment-feature-flags-test::step-6-test-new-ui-feature-flag",
      "step_name": "Test new UI feature flag",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "GET",
        "url": "/get",
        "headers": {
          "X-Feature-Flag": "new_ui",
          "X-Flag-Status": null,
          "X-Environment": null
        },
        "params": {
          "feature": "new_ui",
          "enabled": null,
          "ui_version": "v2"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/get",
        "curl_command": "curl -X GET -H 'X-Feature-Flag: new_ui' \"http://httpbin/get\"",
        "raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nX-Feature-Flag: new_ui\r\n\r\n",
        "raw_url": "{{base_url}}/get"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "408",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {
            "feature": "new_ui",
            "ui_version": "v2"
          },
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Feature-Flag": "new_ui"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/get?feature=new_ui&ui_version=v2"
        },
        "size_bytes": 327,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 408\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {\n    \"feature\": \"new_ui\",\n    \"ui_version\": \"v2\"\n  },\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Feature-Flag\": \"new_ui\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/get?feature=new_ui&ui_version=v2\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "new_ui_feature_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "test_environment_result": null,
        "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"
        ]
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-7-test-api-v2-feature-flag",
      "qualified_step_id": "environment-feature-flags-test::step-7-test-api-v2-feature-flag",
      "step_name": "Test API v2 feature flag",
      "status": "success",
      "duration_ms": 3,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json",
          "X-Feature-Flag": "api_v2",
          "X-API-Version": "v2",
          "X-Flag-Status": null
        },
        "body": {
          "api_version": "v2",
          "feature": "api_v2",
          "enabled": null,
          "new_endpoints": true,
          "enhanced_features": true
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Feature-Flag: api_v2' -H 'X-API-Version: v2' -d '{\"api_version\":\"v2\",\"feature\":\"api_v2\",\"enabled\":null,\"new_endpoints\":true,\"enhanced_features\":true}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Feature-Flag: api_v2\r\nX-API-Version: v2\r\nContent-Length: 100\r\n\r\n{\"api_version\":\"v2\",\"feature\":\"api_v2\",\"enabled\":null,\"new_endpoints\":true,\"enhanced_features\":true}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "737",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"api_version\":\"v2\",\"feature\":\"api_v2\",\"enabled\":null,\"new_endpoints\":true,\"enhanced_features\":true}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "100",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Api-Version": "v2",
            "X-Feature-Flag": "api_v2"
          },
          "json": {
            "api_version": "v2",
            "enabled": null,
            "enhanced_features": true,
            "feature": "api_v2",
            "new_endpoints": true
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 594,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 737\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"api_version\\\":\\\"v2\\\",\\\"feature\\\":\\\"api_v2\\\",\\\"enabled\\\":null,\\\"new_endpoints\\\":true,\\\"enhanced_features\\\":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\": \"100\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Api-Version\": \"v2\",\n    \"X-Feature-Flag\": \"api_v2\"\n  },\n  \"json\": {\n    \"api_version\": \"v2\",\n    \"enabled\": null,\n    \"enhanced_features\": true,\n    \"feature\": \"api_v2\",\n    \"new_endpoints\": true\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "api_v2_feature_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "test_environment_result": null,
        "api_v2_feature_result": null,
        "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"
        ]
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-8-test-advanced-analytics-feature-flag",
      "qualified_step_id": "environment-feature-flags-test::step-8-test-advanced-analytics-feature-flag",
      "step_name": "Test advanced analytics feature flag",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json",
          "X-Feature-Flag": "advanced_analytics",
          "X-Analytics": "enabled"
        },
        "body": {
          "feature": "advanced_analytics",
          "enabled": null,
          "analytics_level": "advanced",
          "tracking_enabled": true,
          "metrics_collection": true
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Feature-Flag: advanced_analytics' -H 'X-Analytics: enabled' -d '{\"feature\":\"advanced_analytics\",\"enabled\":null,\"analytics_level\":\"advanced\",\"tracking_enabled\":true,\"metrics_collection\":true}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Feature-Flag: advanced_analytics\r\nX-Analytics: enabled\r\nContent-Length: 126\r\n\r\n{\"feature\":\"advanced_analytics\",\"enabled\":null,\"analytics_level\":\"advanced\",\"tracking_enabled\":true,\"metrics_collection\":true}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "804",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"feature\":\"advanced_analytics\",\"enabled\":null,\"analytics_level\":\"advanced\",\"tracking_enabled\":true,\"metrics_collection\":true}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "126",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Analytics": "enabled",
            "X-Feature-Flag": "advanced_analytics"
          },
          "json": {
            "analytics_level": "advanced",
            "enabled": null,
            "feature": "advanced_analytics",
            "metrics_collection": true,
            "tracking_enabled": true
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 661,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 804\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"feature\\\":\\\"advanced_analytics\\\",\\\"enabled\\\":null,\\\"analytics_level\\\":\\\"advanced\\\",\\\"tracking_enabled\\\":true,\\\"metrics_collection\\\":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\": \"126\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Analytics\": \"enabled\",\n    \"X-Feature-Flag\": \"advanced_analytics\"\n  },\n  \"json\": {\n    \"analytics_level\": \"advanced\",\n    \"enabled\": null,\n    \"feature\": \"advanced_analytics\",\n    \"metrics_collection\": true,\n    \"tracking_enabled\": true\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "analytics_feature_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "test_environment_result": null,
        "api_v2_feature_result": null,
        "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"
        ]
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-9-test-beta-program-features",
      "qualified_step_id": "environment-feature-flags-test::step-9-test-beta-program-features",
      "step_name": "Test beta program features",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "GET",
        "url": "/get",
        "headers": {
          "X-Beta-Program": "enabled",
          "X-User-Type": "beta_tester",
          "X-Feature-Flag": "beta_program"
        },
        "params": {
          "beta_access": "true",
          "beta_features": "enabled",
          "feature_preview": "true"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/get",
        "curl_command": "curl -X GET -H 'X-Beta-Program: enabled' -H 'X-User-Type: beta_tester' -H 'X-Feature-Flag: beta_program' \"http://httpbin/get\"",
        "raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nX-Beta-Program: enabled\r\nX-User-Type: beta_tester\r\nX-Feature-Flag: beta_program\r\n\r\n",
        "raw_url": "{{base_url}}/get"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "556",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {
            "beta_access": "true",
            "beta_features": "enabled",
            "feature_preview": "true"
          },
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Beta-Program": "enabled",
            "X-Feature-Flag": "beta_program",
            "X-User-Type": "beta_tester"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/get?beta_access=true&beta_features=enabled&feature_preview=true"
        },
        "size_bytes": 454,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 556\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {\n    \"beta_access\": \"true\",\n    \"beta_features\": \"enabled\",\n    \"feature_preview\": \"true\"\n  },\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Beta-Program\": \"enabled\",\n    \"X-Feature-Flag\": \"beta_program\",\n    \"X-User-Type\": \"beta_tester\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/get?beta_access=true&beta_features=enabled&feature_preview=true\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "beta_program_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "test_environment_result": null,
        "api_v2_feature_result": null,
        "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"
        ]
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-10-test-experimental-features",
      "qualified_step_id": "environment-feature-flags-test::step-10-test-experimental-features",
      "step_name": "Test experimental features",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json",
          "X-Experimental": "true",
          "X-Feature-Flag": "experimental",
          "X-Warning": "experimental_feature"
        },
        "body": {
          "feature_type": "experimental",
          "enabled": null,
          "warning": "This feature is experimental and may change",
          "stability": "unstable",
          "feedback_encouraged": true
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Experimental: true' -H 'X-Feature-Flag: experimental' -H 'X-Warning: experimental_feature' -d '{\"feature_type\":\"experimental\",\"enabled\":null,\"warning\":\"This feature is experimental and may change\",\"stability\":\"unstable\",\"feedback_encouraged\":true}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Experimental: true\r\nX-Feature-Flag: experimental\r\nX-Warning: experimental_feature\r\nContent-Length: 152\r\n\r\n{\"feature_type\":\"experimental\",\"enabled\":null,\"warning\":\"This feature is experimental and may change\",\"stability\":\"unstable\",\"feedback_encouraged\":true}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "894",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"feature_type\":\"experimental\",\"enabled\":null,\"warning\":\"This feature is experimental and may change\",\"stability\":\"unstable\",\"feedback_encouraged\":true}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "152",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Experimental": "true",
            "X-Feature-Flag": "experimental",
            "X-Warning": "experimental_feature"
          },
          "json": {
            "enabled": null,
            "feature_type": "experimental",
            "feedback_encouraged": true,
            "stability": "unstable",
            "warning": "This feature is experimental and may change"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 744,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 894\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"feature_type\\\":\\\"experimental\\\",\\\"enabled\\\":null,\\\"warning\\\":\\\"This feature is experimental and may change\\\",\\\"stability\\\":\\\"unstable\\\",\\\"feedback_encouraged\\\":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\": \"152\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Experimental\": \"true\",\n    \"X-Feature-Flag\": \"experimental\",\n    \"X-Warning\": \"experimental_feature\"\n  },\n  \"json\": {\n    \"enabled\": null,\n    \"feature_type\": \"experimental\",\n    \"feedback_encouraged\": true,\n    \"stability\": \"unstable\",\n    \"warning\": \"This feature is experimental and may change\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "experimental_feature_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "test_environment_result": null,
        "api_v2_feature_result": null,
        "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"
        ]
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-11-test-debug-mode-features",
      "qualified_step_id": "environment-feature-flags-test::step-11-test-debug-mode-features",
      "step_name": "Test debug mode features",
      "status": "success",
      "duration_ms": 1,
      "request_details": {
        "method": "GET",
        "url": "/get",
        "headers": {
          "X-Debug-Mode": "enabled",
          "X-Verbose-Logging": "true",
          "X-Feature-Flag": "debug_mode"
        },
        "params": {
          "debug": "true",
          "verbose_output": "true",
          "debug_info": "enabled",
          "performance_metrics": "detailed"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/get",
        "curl_command": "curl -X GET -H 'X-Debug-Mode: enabled' -H 'X-Verbose-Logging: true' -H 'X-Feature-Flag: debug_mode' \"http://httpbin/get\"",
        "raw_request": "GET /get HTTP/1.1\r\nHost: httpbin\r\nX-Debug-Mode: enabled\r\nX-Verbose-Logging: true\r\nX-Feature-Flag: debug_mode\r\n\r\n",
        "raw_url": "{{base_url}}/get"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "600",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {
            "debug": "true",
            "debug_info": "enabled",
            "performance_metrics": "detailed",
            "verbose_output": "true"
          },
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Debug-Mode": "enabled",
            "X-Feature-Flag": "debug_mode",
            "X-Verbose-Logging": "true"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/get?debug=true&verbose_output=true&debug_info=enabled&performance_metrics=detailed"
        },
        "size_bytes": 491,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 600\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {\n    \"debug\": \"true\",\n    \"debug_info\": \"enabled\",\n    \"performance_metrics\": \"detailed\",\n    \"verbose_output\": \"true\"\n  },\n  \"headers\": {\n    \"Accept\": \"application/json, text/plain, */*\",\n    \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n    \"Connection\": \"keep-alive\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Debug-Mode\": \"enabled\",\n    \"X-Feature-Flag\": \"debug_mode\",\n    \"X-Verbose-Logging\": \"true\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/get?debug=true&verbose_output=true&debug_info=enabled&performance_metrics=detailed\"\n}"
      },
      "assertions_results": [],
      "captured_variables": {
        "debug_mode_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "test_environment_result": null,
        "api_v2_feature_result": null,
        "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"
        ]
      },
      "scenarios_meta": {
        "has_scenarios": true,
        "executed_count": 1,
        "evaluations": [
          {
            "index": 1,
            "condition": "status_code == `200`",
            "matched": true,
            "executed": true,
            "branch": "then",
            "assertions_added": 1,
            "captures_added": 1
          }
        ]
      }
    },
    {
      "step_id": "step-12-test-environment-specific-configuration",
      "qualified_step_id": "environment-feature-flags-test::step-12-test-environment-specific-configuration",
      "step_name": "Test environment-specific configuration",
      "status": "success",
      "duration_ms": 2,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json",
          "X-Config-Test": "environment_specific",
          "X-Environment": null
        },
        "body": {
          "environment": null,
          "config": "{{environment_config[current_environment]}}",
          "environment_url": "{{environment_urls[current_environment]}}",
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Config-Test: environment_specific' -d '{\"environment\":null,\"config\":\"{{environment_config[current_environment]}}\",\"environment_url\":\"{{environment_urls[current_environment]}}\",\"test_id\":\"env-9155d18f-ba99-4cfc-b367-9d2df87e67e9\"}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Config-Test: environment_specific\r\nContent-Length: 190\r\n\r\n{\"environment\":null,\"config\":\"{{environment_config[current_environment]}}\",\"environment_url\":\"{{environment_urls[current_environment]}}\",\"test_id\":\"env-9155d18f-ba99-4cfc-b367-9d2df87e67e9\"}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "895",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"environment\":null,\"config\":\"{{environment_config[current_environment]}}\",\"environment_url\":\"{{environment_urls[current_environment]}}\",\"test_id\":\"env-9155d18f-ba99-4cfc-b367-9d2df87e67e9\"}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "190",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Config-Test": "environment_specific"
          },
          "json": {
            "config": "{{environment_config[current_environment]}}",
            "environment": null,
            "environment_url": "{{environment_urls[current_environment]}}",
            "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 766,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 895\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"environment\\\":null,\\\"config\\\":\\\"{{environment_config[current_environment]}}\\\",\\\"environment_url\\\":\\\"{{environment_urls[current_environment]}}\\\",\\\"test_id\\\":\\\"env-9155d18f-ba99-4cfc-b367-9d2df87e67e9\\\"}\",\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\": \"190\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Config-Test\": \"environment_specific\"\n  },\n  \"json\": {\n    \"config\": \"{{environment_config[current_environment]}}\",\n    \"environment\": null,\n    \"environment_url\": \"{{environment_urls[current_environment]}}\",\n    \"test_id\": \"env-9155d18f-ba99-4cfc-b367-9d2df87e67e9\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        },
        {
          "field": "body.json.environment.equals",
          "expected": null,
          "actual": null,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "environment_config_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "test_environment_result": null,
        "api_v2_feature_result": null,
        "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"
        ]
      }
    },
    {
      "step_id": "step-13-environment-specific-data-operations",
      "qualified_step_id": "environment-feature-flags-test::step-13-environment-specific-data-operations",
      "step_name": "Environment-specific data operations",
      "status": "success",
      "duration_ms": 3,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json",
          "X-Data-Operation": "environment_specific",
          "X-Environment": null
        },
        "body": {
          "operation": "data_handling",
          "environment": null,
          "data_strategy": "test_data",
          "data_sensitivity": "low",
          "anonymization": "optional",
          "backup_strategy": "daily"
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Data-Operation: environment_specific' -d '{\"operation\":\"data_handling\",\"environment\":null,\"data_strategy\":\"test_data\",\"data_sensitivity\":\"low\",\"anonymization\":\"optional\",\"backup_strategy\":\"daily\"}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Data-Operation: environment_specific\r\nContent-Length: 154\r\n\r\n{\"operation\":\"data_handling\",\"environment\":null,\"data_strategy\":\"test_data\",\"data_sensitivity\":\"low\",\"anonymization\":\"optional\",\"backup_strategy\":\"daily\"}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "848",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"operation\":\"data_handling\",\"environment\":null,\"data_strategy\":\"test_data\",\"data_sensitivity\":\"low\",\"anonymization\":\"optional\",\"backup_strategy\":\"daily\"}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "154",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Data-Operation": "environment_specific"
          },
          "json": {
            "anonymization": "optional",
            "backup_strategy": "daily",
            "data_sensitivity": "low",
            "data_strategy": "test_data",
            "environment": null,
            "operation": "data_handling"
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 705,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 848\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"operation\\\":\\\"data_handling\\\",\\\"environment\\\":null,\\\"data_strategy\\\":\\\"test_data\\\",\\\"data_sensitivity\\\":\\\"low\\\",\\\"anonymization\\\":\\\"optional\\\",\\\"backup_strategy\\\":\\\"daily\\\"}\",\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\": \"154\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Data-Operation\": \"environment_specific\"\n  },\n  \"json\": {\n    \"anonymization\": \"optional\",\n    \"backup_strategy\": \"daily\",\n    \"data_sensitivity\": \"low\",\n    \"data_strategy\": \"test_data\",\n    \"environment\": null,\n    \"operation\": \"data_handling\"\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        },
        {
          "field": "body.json.environment.equals",
          "expected": null,
          "actual": null,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "data_handling_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "test_environment_result": null,
        "api_v2_feature_result": null,
        "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"
        ]
      }
    },
    {
      "step_id": "step-14-test-feature-flag-combinations",
      "qualified_step_id": "environment-feature-flags-test::step-14-test-feature-flag-combinations",
      "step_name": "Test feature flag combinations",
      "status": "success",
      "duration_ms": 3,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json",
          "X-Feature-Combination": "test"
        },
        "body": {
          "test_type": "feature_flag_combinations",
          "environment": null,
          "active_features": {
            "new_ui": null,
            "api_v2": null,
            "advanced_analytics": null,
            "beta_program": null,
            "experimental_features": null,
            "debug_mode": null
          },
          "feature_compatibility": {
            "ui_api_combo": false,
            "analytics_beta_combo": false
          },
          "total_active_features": 0
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Feature-Combination: test' -d '{\"test_type\":\"feature_flag_combinations\",\"environment\":null,\"active_features\":{\"new_ui\":null,\"api_v2\":null,\"advanced_analytics\":null,\"beta_program\":null,\"experimental_features\":null,\"debug_mode\":null},\"feature_compatibility\":{\"ui_api_combo\":false,\"analytics_beta_combo\":false},\"total_active_features\":0}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Feature-Combination: test\r\nContent-Length: 303\r\n\r\n{\"test_type\":\"feature_flag_combinations\",\"environment\":null,\"active_features\":{\"new_ui\":null,\"api_v2\":null,\"advanced_analytics\":null,\"beta_program\":null,\"experimental_features\":null,\"debug_mode\":null},\"feature_compatibility\":{\"ui_api_combo\":false,\"analytics_beta_combo\":false},\"total_active_features\":0}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "1214",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"test_type\":\"feature_flag_combinations\",\"environment\":null,\"active_features\":{\"new_ui\":null,\"api_v2\":null,\"advanced_analytics\":null,\"beta_program\":null,\"experimental_features\":null,\"debug_mode\":null},\"feature_compatibility\":{\"ui_api_combo\":false,\"analytics_beta_combo\":false},\"total_active_features\":0}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "303",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Feature-Combination": "test"
          },
          "json": {
            "active_features": {
              "advanced_analytics": null,
              "api_v2": null,
              "beta_program": null,
              "debug_mode": null,
              "experimental_features": null,
              "new_ui": null
            },
            "environment": null,
            "feature_compatibility": {
              "analytics_beta_combo": false,
              "ui_api_combo": false
            },
            "test_type": "feature_flag_combinations",
            "total_active_features": 0
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 998,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 1214\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"test_type\\\":\\\"feature_flag_combinations\\\",\\\"environment\\\":null,\\\"active_features\\\":{\\\"new_ui\\\":null,\\\"api_v2\\\":null,\\\"advanced_analytics\\\":null,\\\"beta_program\\\":null,\\\"experimental_features\\\":null,\\\"debug_mode\\\":null},\\\"feature_compatibility\\\":{\\\"ui_api_combo\\\":false,\\\"analytics_beta_combo\\\":false},\\\"total_active_features\\\":0}\",\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\": \"303\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Feature-Combination\": \"test\"\n  },\n  \"json\": {\n    \"active_features\": {\n      \"advanced_analytics\": null,\n      \"api_v2\": null,\n      \"beta_program\": null,\n      \"debug_mode\": null,\n      \"experimental_features\": null,\n      \"new_ui\": null\n    },\n    \"environment\": null,\n    \"feature_compatibility\": {\n      \"analytics_beta_combo\": false,\n      \"ui_api_combo\": false\n    },\n    \"test_type\": \"feature_flag_combinations\",\n    \"total_active_features\": 0\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        },
        {
          "field": "body.json.test_type.equals",
          "expected": "feature_flag_combinations",
          "actual": "feature_flag_combinations",
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "feature_combination_result": null
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "test_environment_result": null,
        "api_v2_feature_result": null,
        "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"
        ]
      }
    },
    {
      "step_id": "step-15-collect-environment-and-feature-flag-results",
      "qualified_step_id": "environment-feature-flags-test::step-15-collect-environment-and-feature-flag-results",
      "step_name": "Collect environment and feature flag results",
      "status": "success",
      "duration_ms": 6,
      "request_details": {
        "method": "POST",
        "url": "/post",
        "headers": {
          "Content-Type": "application/json",
          "X-Summary": "environment_feature_complete"
        },
        "body": {
          "test_summary": "environment_feature_flags_comprehensive",
          "test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
          "current_environment": null,
          "test_environment": null,
          "deployment_stage": null,
          "feature_flags_tested": {
            "new_ui": null,
            "api_v2": null,
            "advanced_analytics": null,
            "beta_program": null,
            "experimental_features": null,
            "debug_mode": null
          },
          "environment_specific_tests": {
            "development": "skipped",
            "test": "skipped",
            "staging": "skipped",
            "production": "skipped"
          },
          "feature_flag_results": {
            "new_ui": "skipped",
            "api_v2": "skipped",
            "advanced_analytics": "skipped",
            "beta_program": "skipped",
            "experimental_features": "skipped",
            "debug_mode": "skipped"
          },
          "environment_configurations": {
            "development": {
              "timeout": 30000,
              "retry_attempts": 3,
              "debug_logging": true
            },
            "test": {
              "timeout": 10000,
              "retry_attempts": 2,
              "debug_logging": false
            },
            "staging": {
              "timeout": 15000,
              "retry_attempts": 2,
              "debug_logging": false
            },
            "production": {
              "timeout": 5000,
              "retry_attempts": 1,
              "debug_logging": false
            }
          },
          "environment_urls": {
            "development": "http://localhost:3000",
            "test": "http://localhost:8080",
            "staging": "https://staging-api.example.com",
            "production": "https://api.example.com"
          },
          "test_patterns": [
            "environment_detection",
            "environment_specific_operations",
            "feature_flag_conditional_execution",
            "multi_environment_configuration",
            "environment_based_data_handling",
            "feature_flag_combinations"
          ],
          "total_environment_tests": 13
        },
        "base_url": "http://httpbin",
        "full_url": "http://httpbin/post",
        "curl_command": "curl -X POST -H 'Content-Type: application/json' -H 'X-Summary: environment_feature_complete' -d '{\"test_summary\":\"environment_feature_flags_comprehensive\",\"test_id\":\"env-9155d18f-ba99-4cfc-b367-9d2df87e67e9\",\"current_environment\":null,\"test_environment\":null,\"deployment_stage\":null,\"feature_flags_tested\":{\"new_ui\":null,\"api_v2\":null,\"advanced_analytics\":null,\"beta_program\":null,\"experimental_features\":null,\"debug_mode\":null},\"environment_specific_tests\":{\"development\":\"skipped\",\"test\":\"skipped\",\"staging\":\"skipped\",\"production\":\"skipped\"},\"feature_flag_results\":{\"new_ui\":\"skipped\",\"api_v2\":\"skipped\",\"advanced_analytics\":\"skipped\",\"beta_program\":\"skipped\",\"experimental_features\":\"skipped\",\"debug_mode\":\"skipped\"},\"environment_configurations\":{\"development\":{\"timeout\":30000,\"retry_attempts\":3,\"debug_logging\":true},\"test\":{\"timeout\":10000,\"retry_attempts\":2,\"debug_logging\":false},\"staging\":{\"timeout\":15000,\"retry_attempts\":2,\"debug_logging\":false},\"production\":{\"timeout\":5000,\"retry_attempts\":1,\"debug_logging\":false}},\"environment_urls\":{\"development\":\"http://localhost:3000\",\"test\":\"http://localhost:8080\",\"staging\":\"https://staging-api.example.com\",\"production\":\"https://api.example.com\"},\"test_patterns\":[\"environment_detection\",\"environment_specific_operations\",\"feature_flag_conditional_execution\",\"multi_environment_configuration\",\"environment_based_data_handling\",\"feature_flag_combinations\"],\"total_environment_tests\":13}' \"http://httpbin/post\"",
        "raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nX-Summary: environment_feature_complete\r\nContent-Length: 1343\r\n\r\n{\"test_summary\":\"environment_feature_flags_comprehensive\",\"test_id\":\"env-9155d18f-ba99-4cfc-b367-9d2df87e67e9\",\"current_environment\":null,\"test_environment\":null,\"deployment_stage\":null,\"feature_flags_tested\":{\"new_ui\":null,\"api_v2\":null,\"advanced_analytics\":null,\"beta_program\":null,\"experimental_features\":null,\"debug_mode\":null},\"environment_specific_tests\":{\"development\":\"skipped\",\"test\":\"skipped\",\"staging\":\"skipped\",\"production\":\"skipped\"},\"feature_flag_results\":{\"new_ui\":\"skipped\",\"api_v2\":\"skipped\",\"advanced_analytics\":\"skipped\",\"beta_program\":\"skipped\",\"experimental_features\":\"skipped\",\"debug_mode\":\"skipped\"},\"environment_configurations\":{\"development\":{\"timeout\":30000,\"retry_attempts\":3,\"debug_logging\":true},\"test\":{\"timeout\":10000,\"retry_attempts\":2,\"debug_logging\":false},\"staging\":{\"timeout\":15000,\"retry_attempts\":2,\"debug_logging\":false},\"production\":{\"timeout\":5000,\"retry_attempts\":1,\"debug_logging\":false}},\"environment_urls\":{\"development\":\"http://localhost:3000\",\"test\":\"http://localhost:8080\",\"staging\":\"https://staging-api.example.com\",\"production\":\"https://api.example.com\"},\"test_patterns\":[\"environment_detection\",\"environment_specific_operations\",\"feature_flag_conditional_execution\",\"multi_environment_configuration\",\"environment_based_data_handling\",\"feature_flag_combinations\"],\"total_environment_tests\":13}",
        "raw_url": "{{base_url}}/post"
      },
      "response_details": {
        "status_code": 200,
        "headers": {
          "server": "gunicorn/19.9.0",
          "date": "Sun, 19 Oct 2025 10:28:38 GMT",
          "connection": "keep-alive",
          "content-type": "application/json",
          "content-length": "3832",
          "access-control-allow-origin": "*",
          "access-control-allow-credentials": "true"
        },
        "body": {
          "args": {},
          "data": "{\"test_summary\":\"environment_feature_flags_comprehensive\",\"test_id\":\"env-9155d18f-ba99-4cfc-b367-9d2df87e67e9\",\"current_environment\":null,\"test_environment\":null,\"deployment_stage\":null,\"feature_flags_tested\":{\"new_ui\":null,\"api_v2\":null,\"advanced_analytics\":null,\"beta_program\":null,\"experimental_features\":null,\"debug_mode\":null},\"environment_specific_tests\":{\"development\":\"skipped\",\"test\":\"skipped\",\"staging\":\"skipped\",\"production\":\"skipped\"},\"feature_flag_results\":{\"new_ui\":\"skipped\",\"api_v2\":\"skipped\",\"advanced_analytics\":\"skipped\",\"beta_program\":\"skipped\",\"experimental_features\":\"skipped\",\"debug_mode\":\"skipped\"},\"environment_configurations\":{\"development\":{\"timeout\":30000,\"retry_attempts\":3,\"debug_logging\":true},\"test\":{\"timeout\":10000,\"retry_attempts\":2,\"debug_logging\":false},\"staging\":{\"timeout\":15000,\"retry_attempts\":2,\"debug_logging\":false},\"production\":{\"timeout\":5000,\"retry_attempts\":1,\"debug_logging\":false}},\"environment_urls\":{\"development\":\"http://localhost:3000\",\"test\":\"http://localhost:8080\",\"staging\":\"https://staging-api.example.com\",\"production\":\"https://api.example.com\"},\"test_patterns\":[\"environment_detection\",\"environment_specific_operations\",\"feature_flag_conditional_execution\",\"multi_environment_configuration\",\"environment_based_data_handling\",\"feature_flag_combinations\"],\"total_environment_tests\":13}",
          "files": {},
          "form": {},
          "headers": {
            "Accept": "application/json, text/plain, */*",
            "Accept-Encoding": "gzip, compress, deflate, br",
            "Connection": "keep-alive",
            "Content-Length": "1343",
            "Content-Type": "application/json",
            "Host": "httpbin",
            "User-Agent": "axios/1.12.1",
            "X-Summary": "environment_feature_complete"
          },
          "json": {
            "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
          },
          "origin": "172.18.0.3",
          "url": "http://httpbin/post"
        },
        "size_bytes": 3203,
        "raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:38 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 3832\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n  \"args\": {},\n  \"data\": \"{\\\"test_summary\\\":\\\"environment_feature_flags_comprehensive\\\",\\\"test_id\\\":\\\"env-9155d18f-ba99-4cfc-b367-9d2df87e67e9\\\",\\\"current_environment\\\":null,\\\"test_environment\\\":null,\\\"deployment_stage\\\":null,\\\"feature_flags_tested\\\":{\\\"new_ui\\\":null,\\\"api_v2\\\":null,\\\"advanced_analytics\\\":null,\\\"beta_program\\\":null,\\\"experimental_features\\\":null,\\\"debug_mode\\\":null},\\\"environment_specific_tests\\\":{\\\"development\\\":\\\"skipped\\\",\\\"test\\\":\\\"skipped\\\",\\\"staging\\\":\\\"skipped\\\",\\\"production\\\":\\\"skipped\\\"},\\\"feature_flag_results\\\":{\\\"new_ui\\\":\\\"skipped\\\",\\\"api_v2\\\":\\\"skipped\\\",\\\"advanced_analytics\\\":\\\"skipped\\\",\\\"beta_program\\\":\\\"skipped\\\",\\\"experimental_features\\\":\\\"skipped\\\",\\\"debug_mode\\\":\\\"skipped\\\"},\\\"environment_configurations\\\":{\\\"development\\\":{\\\"timeout\\\":30000,\\\"retry_attempts\\\":3,\\\"debug_logging\\\":true},\\\"test\\\":{\\\"timeout\\\":10000,\\\"retry_attempts\\\":2,\\\"debug_logging\\\":false},\\\"staging\\\":{\\\"timeout\\\":15000,\\\"retry_attempts\\\":2,\\\"debug_logging\\\":false},\\\"production\\\":{\\\"timeout\\\":5000,\\\"retry_attempts\\\":1,\\\"debug_logging\\\":false}},\\\"environment_urls\\\":{\\\"development\\\":\\\"http://localhost:3000\\\",\\\"test\\\":\\\"http://localhost:8080\\\",\\\"staging\\\":\\\"https://staging-api.example.com\\\",\\\"production\\\":\\\"https://api.example.com\\\"},\\\"test_patterns\\\":[\\\"environment_detection\\\",\\\"environment_specific_operations\\\",\\\"feature_flag_conditional_execution\\\",\\\"multi_environment_configuration\\\",\\\"environment_based_data_handling\\\",\\\"feature_flag_combinations\\\"],\\\"total_environment_tests\\\":13}\",\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\": \"1343\",\n    \"Content-Type\": \"application/json\",\n    \"Host\": \"httpbin\",\n    \"User-Agent\": \"axios/1.12.1\",\n    \"X-Summary\": \"environment_feature_complete\"\n  },\n  \"json\": {\n    \"current_environment\": null,\n    \"deployment_stage\": null,\n    \"environment_configurations\": {\n      \"development\": {\n        \"debug_logging\": true,\n        \"retry_attempts\": 3,\n        \"timeout\": 30000\n      },\n      \"production\": {\n        \"debug_logging\": false,\n        \"retry_attempts\": 1,\n        \"timeout\": 5000\n      },\n      \"staging\": {\n        \"debug_logging\": false,\n        \"retry_attempts\": 2,\n        \"timeout\": 15000\n      },\n      \"test\": {\n        \"debug_logging\": false,\n        \"retry_attempts\": 2,\n        \"timeout\": 10000\n      }\n    },\n    \"environment_specific_tests\": {\n      \"development\": \"skipped\",\n      \"production\": \"skipped\",\n      \"staging\": \"skipped\",\n      \"test\": \"skipped\"\n    },\n    \"environment_urls\": {\n      \"development\": \"http://localhost:3000\",\n      \"production\": \"https://api.example.com\",\n      \"staging\": \"https://staging-api.example.com\",\n      \"test\": \"http://localhost:8080\"\n    },\n    \"feature_flag_results\": {\n      \"advanced_analytics\": \"skipped\",\n      \"api_v2\": \"skipped\",\n      \"beta_program\": \"skipped\",\n      \"debug_mode\": \"skipped\",\n      \"experimental_features\": \"skipped\",\n      \"new_ui\": \"skipped\"\n    },\n    \"feature_flags_tested\": {\n      \"advanced_analytics\": null,\n      \"api_v2\": null,\n      \"beta_program\": null,\n      \"debug_mode\": null,\n      \"experimental_features\": null,\n      \"new_ui\": null\n    },\n    \"test_environment\": null,\n    \"test_id\": \"env-9155d18f-ba99-4cfc-b367-9d2df87e67e9\",\n    \"test_patterns\": [\n      \"environment_detection\",\n      \"environment_specific_operations\",\n      \"feature_flag_conditional_execution\",\n      \"multi_environment_configuration\",\n      \"environment_based_data_handling\",\n      \"feature_flag_combinations\"\n    ],\n    \"test_summary\": \"environment_feature_flags_comprehensive\",\n    \"total_environment_tests\": 13\n  },\n  \"origin\": \"172.18.0.3\",\n  \"url\": \"http://httpbin/post\"\n}"
      },
      "assertions_results": [
        {
          "field": "status_code",
          "expected": 200,
          "actual": 200,
          "passed": true,
          "message": "OK"
        },
        {
          "field": "body.json.test_summary.equals",
          "expected": "environment_feature_flags_comprehensive",
          "actual": "environment_feature_flags_comprehensive",
          "passed": true,
          "message": "OK"
        },
        {
          "field": "body.json.current_environment.equals",
          "expected": null,
          "actual": null,
          "passed": true,
          "message": "OK"
        },
        {
          "field": "body.json.total_environment_tests.equals",
          "expected": 13,
          "actual": 13,
          "passed": true,
          "message": "OK"
        }
      ],
      "captured_variables": {
        "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
        },
        "feature_flag_data": {
          "advanced_analytics": "skipped",
          "api_v2": "skipped",
          "beta_program": "skipped",
          "debug_mode": "skipped",
          "experimental_features": "skipped",
          "new_ui": "skipped"
        },
        "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
          }
        }
      },
      "available_variables": {
        "api_base_url": "http://localhost:8080",
        "current_environment": null,
        "test_environment": null,
        "test_environment_result": null,
        "api_v2_feature_result": null,
        "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"
        ]
      }
    }
  ],
  "variables_captured": {},
  "available_variables": {
    "api_base_url": "http://localhost:8080",
    "current_environment": null,
    "test_environment": null,
    "test_environment_result": null,
    "api_v2_feature_result": null,
    "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"
    ]
  },
  "suite_yaml_content": "suite_name: \"Environment-Specific and Feature Flags Comprehensive Testing\"\nnode_id: \"environment-feature-flags-test\"\ndescription: \"Comprehensive testing of environment-specific behaviors, feature flag integration, multi-environment configuration, and environment-based conditional execution\"\nbase_url: \"{{httpbin_url}}\"\n\nmetadata:\n  priority: \"high\"\n  tags: [\"environment\", \"feature-flags\", \"configuration\", \"multi-env\", \"conditional\"]\n  estimated_duration_ms: 20000\n\nvariables:\n  current_environment: \"{{$env.NODE_ENV || 'development'}}\"\n  test_environment: \"{{$env.TEST_ENV || 'test'}}\"\n  deployment_stage: \"{{$env.DEPLOYMENT_STAGE || 'staging'}}\"\n\n  # Feature flags from environment variables\n  feature_flags:\n    new_ui: \"{{$env.FEATURE_NEW_UI || 'false'}}\"\n    api_v2: \"{{$env.FEATURE_API_V2 || 'false'}}\"\n    advanced_analytics: \"{{$env.FEATURE_ANALYTICS || 'false'}}\"\n    beta_program: \"{{$env.FEATURE_BETA || 'false'}}\"\n    experimental_features: \"{{$env.FEATURE_EXPERIMENTAL || 'false'}}\"\n    debug_mode: \"{{$env.FEATURE_DEBUG || 'false'}}\"\n\n  # Environment-specific URLs\n  environment_urls:\n    development: \"http://localhost:3000\"\n    test: \"http://localhost:8080\"\n    staging: \"https://staging-api.example.com\"\n    production: \"https://api.example.com\"\n\n  # Environment-specific configurations\n  environment_config:\n    development:\n      timeout: 30000\n      retry_attempts: 3\n      debug_logging: true\n    test:\n      timeout: 10000\n      retry_attempts: 2\n      debug_logging: false\n    staging:\n      timeout: 15000\n      retry_attempts: 2\n      debug_logging: false\n    production:\n      timeout: 5000\n      retry_attempts: 1\n      debug_logging: false\n\n  env_test_id: \"env-{{$faker.string.uuid}}\"\n\nexports: [\"environment_results\", \"feature_flag_data\", \"multi_env_config\"]\n\nsteps:\n  # 1. Environment Detection and Configuration\n  - name: \"Detect current environment\"\n    request:\n      method: \"GET\"\n      url: \"/get\"\n      headers:\n        X-Environment-Test: \"detection\"\n        X-Current-Env: \"{{current_environment}}\"\n        X-Test-Env: \"{{test_environment}}\"\n        X-Deployment-Stage: \"{{deployment_stage}}\"\n      params:\n        environment: \"{{current_environment}}\"\n        detect_env: \"true\"\n    assert:\n      status_code: 200\n      body:\n        args:\n          environment: { equals: \"{{current_environment}}\" }\n    capture:\n      detected_environment: \"{{current_environment}}\"\n      environment_detection_result: \"success\"\n\n  # 2. Development Environment Specific Tests\n  - name: \"Development environment operations\"\n    metadata:\n      skip: \"{{current_environment}} !== 'development'\"\n      description: \"Only run in development environment\"\n    request:\n      method: \"POST\"\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Environment: \"development\"\n        X-Dev-Tools: \"enabled\"\n      body:\n        environment: \"development\"\n        dev_features:\n          hot_reload: true\n          debug_console: true\n          test_data_generation: true\n          mock_services: true\n        timeout: \"{{environment_config.development.timeout}}\"\n        retry_attempts: \"{{environment_config.development.retry_attempts}}\"\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n            body:\n              json:\n                environment: { equals: \"development\" }\n          capture:\n            dev_environment_result: \"development_features_enabled\"\n\n  # 3. Test Environment Specific Tests\n  - name: \"Test environment operations\"\n    metadata:\n      skip: \"{{test_environment}} !== 'test'\"\n      description: \"Only run in test environment\"\n    request:\n      method: \"POST\"\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Environment: \"test\"\n        X-Test-Mode: \"enabled\"\n      body:\n        environment: \"test\"\n        test_features:\n          automated_testing: true\n          data_isolation: true\n          test_fixtures: true\n          coverage_tracking: true\n        timeout: \"{{environment_config.test.timeout}}\"\n        retry_attempts: \"{{environment_config.test.retry_attempts}}\"\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n          capture:\n            test_environment_result: \"test_features_enabled\"\n\n  # 4. Staging Environment Specific Tests\n  - name: \"Staging environment operations\"\n    metadata:\n      skip: \"{{deployment_stage}} !== 'staging'\"\n      description: \"Only run in staging environment\"\n    request:\n      method: \"POST\"\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Environment: \"staging\"\n        X-Staging-Mode: \"enabled\"\n      body:\n        environment: \"staging\"\n        staging_features:\n          production_like_data: true\n          performance_monitoring: true\n          integration_testing: true\n          user_acceptance_testing: true\n        timeout: \"{{environment_config.staging.timeout}}\"\n        retry_attempts: \"{{environment_config.staging.retry_attempts}}\"\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n          capture:\n            staging_environment_result: \"staging_features_enabled\"\n\n  # 5. Production Environment Specific Tests\n  - name: \"Production environment operations\"\n    metadata:\n      skip: \"{{deployment_stage}} !== 'production'\"\n      description: \"Only run in production environment\"\n    request:\n      method: \"GET\"  # Only safe operations in production\n      url: \"/get\"\n      headers:\n        X-Environment: \"production\"\n        X-Production-Mode: \"enabled\"\n        X-Read-Only: \"true\"\n      params:\n        environment: \"production\"\n        production_safety: \"true\"\n        read_only_operations: \"true\"\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n            response_time_ms:\n              max: \"{{environment_config.production.timeout}}\"\n          capture:\n            production_environment_result: \"production_safety_verified\"\n\n  # 6. Feature Flag Testing\n  - name: \"Test new UI feature flag\"\n    metadata:\n      skip: \"{{feature_flags.new_ui}} !== 'true'\"\n      description: \"Test new UI when feature flag is enabled\"\n    request:\n      method: \"GET\"\n      url: \"/get\"\n      headers:\n        X-Feature-Flag: \"new_ui\"\n        X-Flag-Status: \"{{feature_flags.new_ui}}\"\n        X-Environment: \"{{current_environment}}\"\n      params:\n        feature: \"new_ui\"\n        enabled: \"{{feature_flags.new_ui}}\"\n        ui_version: \"v2\"\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n          capture:\n            new_ui_feature_result: \"new_ui_enabled\"\n\n  - name: \"Test API v2 feature flag\"\n    metadata:\n      skip: \"{{feature_flags.api_v2}} !== 'true'\"\n      description: \"Test API v2 when feature flag is enabled\"\n    request:\n      method: \"POST\"\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Feature-Flag: \"api_v2\"\n        X-API-Version: \"v2\"\n        X-Flag-Status: \"{{feature_flags.api_v2}}\"\n      body:\n        api_version: \"v2\"\n        feature: \"api_v2\"\n        enabled: \"{{feature_flags.api_v2}}\"\n        new_endpoints: true\n        enhanced_features: true\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n          capture:\n            api_v2_feature_result: \"api_v2_enabled\"\n\n  - name: \"Test advanced analytics feature flag\"\n    metadata:\n      skip: \"{{feature_flags.advanced_analytics}} !== 'true'\"\n      description: \"Test analytics when feature flag is enabled\"\n    request:\n      method: \"POST\"\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Feature-Flag: \"advanced_analytics\"\n        X-Analytics: \"enabled\"\n      body:\n        feature: \"advanced_analytics\"\n        enabled: \"{{feature_flags.advanced_analytics}}\"\n        analytics_level: \"advanced\"\n        tracking_enabled: true\n        metrics_collection: true\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n          capture:\n            analytics_feature_result: \"analytics_enabled\"\n\n  # 7. Beta Program Feature Testing\n  - name: \"Test beta program features\"\n    metadata:\n      skip: \"{{feature_flags.beta_program}} !== 'true'\"\n      description: \"Test beta features when user is in beta program\"\n    request:\n      method: \"GET\"\n      url: \"/get\"\n      headers:\n        X-Beta-Program: \"enabled\"\n        X-User-Type: \"beta_tester\"\n        X-Feature-Flag: \"beta_program\"\n      params:\n        beta_access: \"true\"\n        beta_features: \"enabled\"\n        feature_preview: \"true\"\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n          capture:\n            beta_program_result: \"beta_access_granted\"\n\n  # 8. Experimental Features Testing\n  - name: \"Test experimental features\"\n    metadata:\n      skip: \"{{feature_flags.experimental_features}} !== 'true'\"\n      description: \"Test experimental features when flag is enabled\"\n    request:\n      method: \"POST\"\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Experimental: \"true\"\n        X-Feature-Flag: \"experimental\"\n        X-Warning: \"experimental_feature\"\n      body:\n        feature_type: \"experimental\"\n        enabled: \"{{feature_flags.experimental_features}}\"\n        warning: \"This feature is experimental and may change\"\n        stability: \"unstable\"\n        feedback_encouraged: true\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n          capture:\n            experimental_feature_result: \"experimental_enabled\"\n\n  # 9. Debug Mode Feature Testing\n  - name: \"Test debug mode features\"\n    metadata:\n      skip: \"{{feature_flags.debug_mode}} !== 'true'\"\n      description: \"Test debug features when debug mode is enabled\"\n    request:\n      method: \"GET\"\n      url: \"/get\"\n      headers:\n        X-Debug-Mode: \"enabled\"\n        X-Verbose-Logging: \"true\"\n        X-Feature-Flag: \"debug_mode\"\n      params:\n        debug: \"true\"\n        verbose_output: \"true\"\n        debug_info: \"enabled\"\n        performance_metrics: \"detailed\"\n    scenarios:\n      - condition: \"status_code == `200`\"\n        then:\n          assert:\n            status_code: 200\n          capture:\n            debug_mode_result: \"debug_features_enabled\"\n\n  # 10. Multi-Environment Configuration Testing\n  - name: \"Test environment-specific configuration\"\n    request:\n      method: \"POST\"\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Config-Test: \"environment_specific\"\n        X-Environment: \"{{current_environment}}\"\n      body:\n        environment: \"{{current_environment}}\"\n        config: \"{{environment_config[current_environment]}}\"\n        environment_url: \"{{environment_urls[current_environment]}}\"\n        test_id: \"{{env_test_id}}\"\n    assert:\n      status_code: 200\n      body:\n        json:\n          environment: { equals: \"{{current_environment}}\" }\n    capture:\n      environment_config_result: \"config_loaded\"\n\n  # 11. Environment-Based Data Handling\n  - name: \"Environment-specific data operations\"\n    request:\n      method: \"POST\"\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Data-Operation: \"environment_specific\"\n        X-Environment: \"{{current_environment}}\"\n      body:\n        operation: \"data_handling\"\n        environment: \"{{current_environment}}\"\n        data_strategy: \"{{current_environment === 'production' ? 'real_data' : 'test_data'}}\"\n        data_sensitivity: \"{{current_environment === 'production' ? 'high' : 'low'}}\"\n        anonymization: \"{{current_environment === 'production' ? 'required' : 'optional'}}\"\n        backup_strategy: \"{{current_environment === 'production' ? 'continuous' : 'daily'}}\"\n    assert:\n      status_code: 200\n      body:\n        json:\n          environment: { equals: \"{{current_environment}}\" }\n    capture:\n      data_handling_result: \"environment_data_strategy_applied\"\n\n  # 12. Feature Flag Combination Testing\n  - name: \"Test feature flag combinations\"\n    request:\n      method: \"POST\"\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Feature-Combination: \"test\"\n      body:\n        test_type: \"feature_flag_combinations\"\n        environment: \"{{current_environment}}\"\n        active_features:\n          new_ui: \"{{feature_flags.new_ui}}\"\n          api_v2: \"{{feature_flags.api_v2}}\"\n          advanced_analytics: \"{{feature_flags.advanced_analytics}}\"\n          beta_program: \"{{feature_flags.beta_program}}\"\n          experimental_features: \"{{feature_flags.experimental_features}}\"\n          debug_mode: \"{{feature_flags.debug_mode}}\"\n        feature_compatibility:\n          ui_api_combo: \"{{feature_flags.new_ui === 'true' && feature_flags.api_v2 === 'true'}}\"\n          analytics_beta_combo: \"{{feature_flags.advanced_analytics === 'true' && feature_flags.beta_program === 'true'}}\"\n        total_active_features: \"{{Object.values(feature_flags).filter(flag => flag === 'true').length}}\"\n    assert:\n      status_code: 200\n      body:\n        json:\n          test_type: { equals: \"feature_flag_combinations\" }\n    capture:\n      feature_combination_result: \"combinations_tested\"\n\n  # 13. Final Environment and Feature Summary\n  - name: \"Collect environment and feature flag results\"\n    request:\n      method: \"POST\"\n      url: \"/post\"\n      headers:\n        Content-Type: \"application/json\"\n        X-Summary: \"environment_feature_complete\"\n      body:\n        test_summary: \"environment_feature_flags_comprehensive\"\n        test_id: \"{{env_test_id}}\"\n        current_environment: \"{{current_environment}}\"\n        test_environment: \"{{test_environment}}\"\n        deployment_stage: \"{{deployment_stage}}\"\n        feature_flags_tested: \"{{feature_flags}}\"\n        environment_specific_tests:\n          development: \"{{dev_environment_result || 'skipped'}}\"\n          test: \"{{test_environment_result || 'skipped'}}\"\n          staging: \"{{staging_environment_result || 'skipped'}}\"\n          production: \"{{production_environment_result || 'skipped'}}\"\n        feature_flag_results:\n          new_ui: \"{{new_ui_feature_result || 'skipped'}}\"\n          api_v2: \"{{api_v2_feature_result || 'skipped'}}\"\n          advanced_analytics: \"{{analytics_feature_result || 'skipped'}}\"\n          beta_program: \"{{beta_program_result || 'skipped'}}\"\n          experimental_features: \"{{experimental_feature_result || 'skipped'}}\"\n          debug_mode: \"{{debug_mode_result || 'skipped'}}\"\n        environment_configurations: \"{{environment_config}}\"\n        environment_urls: \"{{environment_urls}}\"\n        test_patterns:\n          - \"environment_detection\"\n          - \"environment_specific_operations\"\n          - \"feature_flag_conditional_execution\"\n          - \"multi_environment_configuration\"\n          - \"environment_based_data_handling\"\n          - \"feature_flag_combinations\"\n        total_environment_tests: 13\n    assert:\n      status_code: 200\n      body:\n        json:\n          test_summary: { equals: \"environment_feature_flags_comprehensive\" }\n          current_environment: { equals: \"{{current_environment}}\" }\n          total_environment_tests: { equals: 13 }\n    capture:\n      environment_results: \"body.json\"\n      feature_flag_data: \"body.json.feature_flag_results\"\n      multi_env_config: \"body.json.environment_configurations\""
}
Flow Test Engine
Report generated on 10/19/2025, 10:28:45 AM
© 2025 Flow Test Engine. Dynamic Reporting System.