✅
Array Filtering and Query Examples
/app/tests/array-filtering-examples.yaml
medium
11 Steps
Duration: 26ms
Success Rate: 100%
✅
Successful Steps
11
100% success rate
❌
Failed Steps
0
0% of total
⏭️
Skipped Steps
0
0% of total
🔗
HTTP Requests
11
100% requests
🔄
Iterações
0
0 steps com iterações
📊 Execution Timeline
| # | Status | Step Name | Type | Duration | Started At | Details |
|---|---|---|---|---|---|---|
| 1 | ✅ | Filter active users POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 2 | ✅ | Filter users by salary ranges POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 3 | ✅ | Filter by department and name patterns POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 4 | ✅ | Filter by array contents (skills) POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 5 | ✅ | Filter products by category and price POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 6 | ✅ | Complex multi-condition filters POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 7 | ✅ | Filter products by tags POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 8 | ✅ | Filter simple arrays POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 9 | ✅ | Filter with data transformation POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 10 | ✅ | Advanced filtering scenarios POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
| 11 | ✅ | Filtering examples summary POST /post | request | 2ms | 19/10/2025, 10:28:39 |
✅ Request completed successfully
|
🌐 HTTP Requests Debug Info
✅
Filter active users
Step #1
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"filter_active_users","users":[{"id":1,"name":"Alice Johnson","email":"alice@example.com","status":"active","role":"admin","age":28,"department":"Engineering","salary":95000,"skills":["JavaScript","Python","Docker"],"last_login":"2024-01-15T10:30:00Z"},{"id":2,"name":"Bob Smith","email":"bob@example.com","status":"active","role":"user","age":34,"department":"Sales","salary":65000,"skills":["Sales","CRM","Excel"],"last_login":"2024-01-14T15:45:00Z"},{"id":3,"name":"Charlie Brown","email":"charlie@example.com","status":"inactive","role":"moderator","age":29,"department":"Marketing","salary":75000,"skills":["Marketing","SEO","Analytics"],"last_login":"2023-12-20T09:15:00Z"},{"id":4,"name":"Diana Prince","email":"diana@example.com","status":"pending","role":"admin","age":31,"department":"Engineering","salary":120000,"skills":["JavaScript","DevOps","Kubernetes"],"last_login":"2024-01-16T08:00:00Z"},{"id":5,"name":"Eve Wilson","email":"eve@example.com","status":"active","role":"user","age":26,"department":"Design","salary":70000,"skills":["Design","Figma","Photoshop"],"last_login":"2024-01-15T14:20:00Z"}]}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"operation": "filter_active_users",
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
]
}📥 Response
Status Code: 200
Duration: 2ms
Size: 2790 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 3742
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"operation\":\"filter_active_users\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "1130",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "filter_active_users",
"users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"active_users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
],
"active_user_names": [
"Alice Johnson",
"Bob Smith",
"Eve Wilson"
],
"active_user_count": 3
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
} ✅
Filter users by salary ranges
Step #2
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"filter_by_salary","users":[{"id":1,"name":"Alice Johnson","email":"alice@example.com","status":"active","role":"admin","age":28,"department":"Engineering","salary":95000,"skills":["JavaScript","Python","Docker"],"last_login":"2024-01-15T10:30:00Z"},{"id":2,"name":"Bob Smith","email":"bob@example.com","status":"active","role":"user","age":34,"department":"Sales","salary":65000,"skills":["Sales","CRM","Excel"],"last_login":"2024-01-14T15:45:00Z"},{"id":3,"name":"Charlie Brown","email":"charlie@example.com","status":"inactive","role":"moderator","age":29,"department":"Marketing","salary":75000,"skills":["Marketing","SEO","Analytics"],"last_login":"2023-12-20T09:15:00Z"},{"id":4,"name":"Diana Prince","email":"diana@example.com","status":"pending","role":"admin","age":31,"department":"Engineering","salary":120000,"skills":["JavaScript","DevOps","Kubernetes"],"last_login":"2024-01-16T08:00:00Z"},{"id":5,"name":"Eve Wilson","email":"eve@example.com","status":"active","role":"user","age":26,"department":"Design","salary":70000,"skills":["Design","Figma","Photoshop"],"last_login":"2024-01-15T14:20:00Z"}]}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"operation": "filter_by_salary",
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
]
}📥 Response
Status Code: 200
Duration: 2ms
Size: 2784 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 3736
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"operation\":\"filter_by_salary\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "1127",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "filter_by_salary",
"users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"high_earners": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
}
],
"mid_range_earners": [
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
],
"entry_level": [
{
"name": "Bob Smith",
"salary": 65000,
"department": "Sales"
}
]
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
} ✅
Filter by department and name patterns
Step #3
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"filter_by_strings","users":[{"id":1,"name":"Alice Johnson","email":"alice@example.com","status":"active","role":"admin","age":28,"department":"Engineering","salary":95000,"skills":["JavaScript","Python","Docker"],"last_login":"2024-01-15T10:30:00Z"},{"id":2,"name":"Bob Smith","email":"bob@example.com","status":"active","role":"user","age":34,"department":"Sales","salary":65000,"skills":["Sales","CRM","Excel"],"last_login":"2024-01-14T15:45:00Z"},{"id":3,"name":"Charlie Brown","email":"charlie@example.com","status":"inactive","role":"moderator","age":29,"department":"Marketing","salary":75000,"skills":["Marketing","SEO","Analytics"],"last_login":"2023-12-20T09:15:00Z"},{"id":4,"name":"Diana Prince","email":"diana@example.com","status":"pending","role":"admin","age":31,"department":"Engineering","salary":120000,"skills":["JavaScript","DevOps","Kubernetes"],"last_login":"2024-01-16T08:00:00Z"},{"id":5,"name":"Eve Wilson","email":"eve@example.com","status":"active","role":"user","age":26,"department":"Design","salary":70000,"skills":["Design","Figma","Photoshop"],"last_login":"2024-01-15T14:20:00Z"}]}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"operation": "filter_by_strings",
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
]
}📥 Response
Status Code: 200
Duration: 2ms
Size: 2786 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 3738
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"operation\":\"filter_by_strings\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "1128",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "filter_by_strings",
"users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"engineering_users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
}
],
"names_starting_with_a": [
"Alice Johnson"
],
"names_containing_o": [
"Alice Johnson",
"Bob Smith",
"Charlie Brown",
"Eve Wilson"
],
"gmail_users": [
"alice@example.com",
"bob@example.com",
"charlie@example.com",
"diana@example.com",
"eve@example.com"
]
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
} ✅
Filter by array contents (skills)
Step #4
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"filter_by_skills","users":[{"id":1,"name":"Alice Johnson","email":"alice@example.com","status":"active","role":"admin","age":28,"department":"Engineering","salary":95000,"skills":["JavaScript","Python","Docker"],"last_login":"2024-01-15T10:30:00Z"},{"id":2,"name":"Bob Smith","email":"bob@example.com","status":"active","role":"user","age":34,"department":"Sales","salary":65000,"skills":["Sales","CRM","Excel"],"last_login":"2024-01-14T15:45:00Z"},{"id":3,"name":"Charlie Brown","email":"charlie@example.com","status":"inactive","role":"moderator","age":29,"department":"Marketing","salary":75000,"skills":["Marketing","SEO","Analytics"],"last_login":"2023-12-20T09:15:00Z"},{"id":4,"name":"Diana Prince","email":"diana@example.com","status":"pending","role":"admin","age":31,"department":"Engineering","salary":120000,"skills":["JavaScript","DevOps","Kubernetes"],"last_login":"2024-01-16T08:00:00Z"},{"id":5,"name":"Eve Wilson","email":"eve@example.com","status":"active","role":"user","age":26,"department":"Design","salary":70000,"skills":["Design","Figma","Photoshop"],"last_login":"2024-01-15T14:20:00Z"}]}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"operation": "filter_by_skills",
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
]
}📥 Response
Status Code: 200
Duration: 2ms
Size: 2784 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 3736
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"operation\":\"filter_by_skills\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "1127",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "filter_by_skills",
"users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"javascript_users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
}
],
"design_users": [
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
],
"engineering_skills": []
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
} ✅
Filter products by category and price
Step #5
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"filter_products","products":[{"id":"PROD-001","name":"Premium Laptop","price":1299.99,"category":"electronics","brand":"TechCorp","stock":25,"rating":4.8,"tags":["premium","laptop","gaming","high-performance"]},{"id":"PROD-002","name":"Basic Mouse","price":19.99,"category":"accessories","brand":"BasicTech","stock":150,"rating":4.2,"tags":["basic","mouse","office"]},{"id":"PROD-003","name":"Gaming Keyboard","price":129.99,"category":"accessories","brand":"GameTech","stock":50,"rating":4.6,"tags":["gaming","keyboard","rgb","mechanical"]},{"id":"PROD-004","name":"Professional Monitor","price":799.99,"category":"electronics","brand":"DisplayPro","stock":15,"rating":4.9,"tags":["professional","monitor","4k","design"]},{"id":"PROD-005","name":"Budget Headphones","price":39.99,"category":"audio","brand":"SoundBasic","stock":0,"rating":3.8,"tags":["budget","headphones","basic"]}]}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"operation": "filter_products",
"products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
]
}📥 Response
Status Code: 200
Duration: 2ms
Size: 2293 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 3171
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"operation\":\"filter_products\",\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "899",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "filter_products",
"products": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "BasicTech",
"category": "accessories",
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"rating": 4.2,
"stock": 150,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"brand": "SoundBasic",
"category": "audio",
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"rating": 3.8,
"stock": 0,
"tags": [
"budget",
"headphones",
"basic"
]
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"electronics": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
}
],
"expensive_items": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
}
],
"in_stock_items": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "BasicTech",
"category": "accessories",
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"rating": 4.2,
"stock": 150,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
}
],
"quality_available": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
}
]
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
} ✅
Complex multi-condition filters
Step #6
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"complex_filtering","users":[{"id":1,"name":"Alice Johnson","email":"alice@example.com","status":"active","role":"admin","age":28,"department":"Engineering","salary":95000,"skills":["JavaScript","Python","Docker"],"last_login":"2024-01-15T10:30:00Z"},{"id":2,"name":"Bob Smith","email":"bob@example.com","status":"active","role":"user","age":34,"department":"Sales","salary":65000,"skills":["Sales","CRM","Excel"],"last_login":"2024-01-14T15:45:00Z"},{"id":3,"name":"Charlie Brown","email":"charlie@example.com","status":"inactive","role":"moderator","age":29,"department":"Marketing","salary":75000,"skills":["Marketing","SEO","Analytics"],"last_login":"2023-12-20T09:15:00Z"},{"id":4,"name":"Diana Prince","email":"diana@example.com","status":"pending","role":"admin","age":31,"department":"Engineering","salary":120000,"skills":["JavaScript","DevOps","Kubernetes"],"last_login":"2024-01-16T08:00:00Z"},{"id":5,"name":"Eve Wilson","email":"eve@example.com","status":"active","role":"user","age":26,"department":"Design","salary":70000,"skills":["Design","Figma","Photoshop"],"last_login":"2024-01-15T14:20:00Z"}],"products":[{"id":"PROD-001","name":"Premium Laptop","price":1299.99,"category":"electronics","brand":"TechCorp","stock":25,"rating":4.8,"tags":["premium","laptop","gaming","high-performance"]},{"id":"PROD-002","name":"Basic Mouse","price":19.99,"category":"accessories","brand":"BasicTech","stock":150,"rating":4.2,"tags":["basic","mouse","office"]},{"id":"PROD-003","name":"Gaming Keyboard","price":129.99,"category":"accessories","brand":"GameTech","stock":50,"rating":4.6,"tags":["gaming","keyboard","rgb","mechanical"]},{"id":"PROD-004","name":"Professional Monitor","price":799.99,"category":"electronics","brand":"DisplayPro","stock":15,"rating":4.9,"tags":["professional","monitor","4k","design"]},{"id":"PROD-005","name":"Budget Headphones","price":39.99,"category":"audio","brand":"SoundBasic","stock":0,"rating":3.8,"tags":["budget","headphones","basic"]}]}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"operation": "complex_filtering",
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
]
}📥 Response
Status Code: 200
Duration: 2ms
Size: 4680 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 6409
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"operation\":\"complex_filtering\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "1996",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "complex_filtering",
"products": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "BasicTech",
"category": "accessories",
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"rating": 4.2,
"stock": 150,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"brand": "SoundBasic",
"category": "audio",
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"rating": 3.8,
"stock": 0,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"senior_admins": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
}
],
"young_high_earners": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
}
],
"premium_electronics": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
}
],
"gaming_accessories": [
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
}
]
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
} ✅
Filter products by tags
Step #7
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"filter_by_tags","products":[{"id":"PROD-001","name":"Premium Laptop","price":1299.99,"category":"electronics","brand":"TechCorp","stock":25,"rating":4.8,"tags":["premium","laptop","gaming","high-performance"]},{"id":"PROD-002","name":"Basic Mouse","price":19.99,"category":"accessories","brand":"BasicTech","stock":150,"rating":4.2,"tags":["basic","mouse","office"]},{"id":"PROD-003","name":"Gaming Keyboard","price":129.99,"category":"accessories","brand":"GameTech","stock":50,"rating":4.6,"tags":["gaming","keyboard","rgb","mechanical"]},{"id":"PROD-004","name":"Professional Monitor","price":799.99,"category":"electronics","brand":"DisplayPro","stock":15,"rating":4.9,"tags":["professional","monitor","4k","design"]},{"id":"PROD-005","name":"Budget Headphones","price":39.99,"category":"audio","brand":"SoundBasic","stock":0,"rating":3.8,"tags":["budget","headphones","basic"]}]}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"operation": "filter_by_tags",
"products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
]
}📥 Response
Status Code: 200
Duration: 2ms
Size: 2291 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 3169
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"operation\":\"filter_by_tags\",\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "898",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "filter_by_tags",
"products": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "BasicTech",
"category": "accessories",
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"rating": 4.2,
"stock": 150,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"brand": "SoundBasic",
"category": "audio",
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"rating": 3.8,
"stock": 0,
"tags": [
"budget",
"headphones",
"basic"
]
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"gaming_products": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
}
],
"high_end_products": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
}
],
"professional_design": [
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
}
]
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
} ✅
Filter simple arrays
Step #8
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"simple_array_filtering","numbers":[1,5,10,15,20,25,30,35,40,45,50],"strings":["apple","banana","cherry","date","elderberry","fig","grape"],"statuses":["active","inactive","pending","active","suspended","active","pending"]}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"operation": "simple_array_filtering",
"numbers": [
1,
5,
10,
15,
20,
25,
30,
35,
40,
45,
50
],
"strings": [
"apple",
"banana",
"cherry",
"date",
"elderberry",
"fig",
"grape"
],
"statuses": [
"active",
"inactive",
"pending",
"active",
"suspended",
"active",
"pending"
]
}📥 Response
Status Code: 200
Duration: 2ms
Size: 843 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 1177
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"operation\":\"simple_array_filtering\",\"numbers\":[1,5,10,15,20,25,30,35,40,45,50],\"strings\":[\"apple\",\"banana\",\"cherry\",\"date\",\"elderberry\",\"fig\",\"grape\"],\"statuses\":[\"active\",\"inactive\",\"pending\",\"active\",\"suspended\",\"active\",\"pending\"]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "236",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"numbers": [
1,
5,
10,
15,
20,
25,
30,
35,
40,
45,
50
],
"operation": "simple_array_filtering",
"statuses": [
"active",
"inactive",
"pending",
"active",
"suspended",
"active",
"pending"
],
"strings": [
"apple",
"banana",
"cherry",
"date",
"elderberry",
"fig",
"grape"
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"numbers_gt_20": [
25,
30,
35,
40,
45,
50
],
"numbers_10_to_30": [
10,
15,
20,
25,
30
],
"fruits_starting_with_a": [
"apple"
],
"strings_with_e": [
"apple",
"cherry",
"date",
"elderberry",
"grape"
],
"unique_statuses": 3
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
} ✅
Filter with data transformation
Step #9
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"filter_and_transform","users":[{"id":1,"name":"Alice Johnson","email":"alice@example.com","status":"active","role":"admin","age":28,"department":"Engineering","salary":95000,"skills":["JavaScript","Python","Docker"],"last_login":"2024-01-15T10:30:00Z"},{"id":2,"name":"Bob Smith","email":"bob@example.com","status":"active","role":"user","age":34,"department":"Sales","salary":65000,"skills":["Sales","CRM","Excel"],"last_login":"2024-01-14T15:45:00Z"},{"id":3,"name":"Charlie Brown","email":"charlie@example.com","status":"inactive","role":"moderator","age":29,"department":"Marketing","salary":75000,"skills":["Marketing","SEO","Analytics"],"last_login":"2023-12-20T09:15:00Z"},{"id":4,"name":"Diana Prince","email":"diana@example.com","status":"pending","role":"admin","age":31,"department":"Engineering","salary":120000,"skills":["JavaScript","DevOps","Kubernetes"],"last_login":"2024-01-16T08:00:00Z"},{"id":5,"name":"Eve Wilson","email":"eve@example.com","status":"active","role":"user","age":26,"department":"Design","salary":70000,"skills":["Design","Figma","Photoshop"],"last_login":"2024-01-15T14:20:00Z"}],"products":[{"id":"PROD-001","name":"Premium Laptop","price":1299.99,"category":"electronics","brand":"TechCorp","stock":25,"rating":4.8,"tags":["premium","laptop","gaming","high-performance"]},{"id":"PROD-002","name":"Basic Mouse","price":19.99,"category":"accessories","brand":"BasicTech","stock":150,"rating":4.2,"tags":["basic","mouse","office"]},{"id":"PROD-003","name":"Gaming Keyboard","price":129.99,"category":"accessories","brand":"GameTech","stock":50,"rating":4.6,"tags":["gaming","keyboard","rgb","mechanical"]},{"id":"PROD-004","name":"Professional Monitor","price":799.99,"category":"electronics","brand":"DisplayPro","stock":15,"rating":4.9,"tags":["professional","monitor","4k","design"]},{"id":"PROD-005","name":"Budget Headphones","price":39.99,"category":"audio","brand":"SoundBasic","stock":0,"rating":3.8,"tags":["budget","headphones","basic"]}]}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"operation": "filter_and_transform",
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
]
}📥 Response
Status Code: 200
Duration: 2ms
Size: 4686 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 6415
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"operation\":\"filter_and_transform\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "1999",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "filter_and_transform",
"products": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "BasicTech",
"category": "accessories",
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"rating": 4.2,
"stock": 150,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"brand": "SoundBasic",
"category": "audio",
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"rating": 3.8,
"stock": 0,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"active_users_formatted": [
{
"employee_id": 1,
"full_name": "Alice Johnson",
"contact": "alice@example.com",
"dept": "Engineering"
},
{
"employee_id": 2,
"full_name": "Bob Smith",
"contact": "bob@example.com",
"dept": "Sales"
},
{
"employee_id": 5,
"full_name": "Eve Wilson",
"contact": "eve@example.com",
"dept": "Design"
}
],
"premium_products_summary": [
{
"product_code": "PROD-001",
"title": "Premium Laptop",
"price_usd": 1299.99,
"availability": "In Stock"
},
{
"product_code": "PROD-003",
"title": "Gaming Keyboard",
"price_usd": 129.99,
"availability": "In Stock"
},
{
"product_code": "PROD-004",
"title": "Professional Monitor",
"price_usd": 799.99,
"availability": "In Stock"
}
]
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
} ✅
Advanced filtering scenarios
Step #10
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"operation":"advanced_scenarios","users":[{"id":1,"name":"Alice Johnson","email":"alice@example.com","status":"active","role":"admin","age":28,"department":"Engineering","salary":95000,"skills":["JavaScript","Python","Docker"],"last_login":"2024-01-15T10:30:00Z"},{"id":2,"name":"Bob Smith","email":"bob@example.com","status":"active","role":"user","age":34,"department":"Sales","salary":65000,"skills":["Sales","CRM","Excel"],"last_login":"2024-01-14T15:45:00Z"},{"id":3,"name":"Charlie Brown","email":"charlie@example.com","status":"inactive","role":"moderator","age":29,"department":"Marketing","salary":75000,"skills":["Marketing","SEO","Analytics"],"last_login":"2023-12-20T09:15:00Z"},{"id":4,"name":"Diana Prince","email":"diana@example.com","status":"pending","role":"admin","age":31,"department":"Engineering","salary":120000,"skills":["JavaScript","DevOps","Kubernetes"],"last_login":"2024-01-16T08:00:00Z"},{"id":5,"name":"Eve Wilson","email":"eve@example.com","status":"active","role":"user","age":26,"department":"Design","salary":70000,"skills":["Design","Figma","Photoshop"],"last_login":"2024-01-15T14:20:00Z"}],"products":[{"id":"PROD-001","name":"Premium Laptop","price":1299.99,"category":"electronics","brand":"TechCorp","stock":25,"rating":4.8,"tags":["premium","laptop","gaming","high-performance"]},{"id":"PROD-002","name":"Basic Mouse","price":19.99,"category":"accessories","brand":"BasicTech","stock":150,"rating":4.2,"tags":["basic","mouse","office"]},{"id":"PROD-003","name":"Gaming Keyboard","price":129.99,"category":"accessories","brand":"GameTech","stock":50,"rating":4.6,"tags":["gaming","keyboard","rgb","mechanical"]},{"id":"PROD-004","name":"Professional Monitor","price":799.99,"category":"electronics","brand":"DisplayPro","stock":15,"rating":4.9,"tags":["professional","monitor","4k","design"]},{"id":"PROD-005","name":"Budget Headphones","price":39.99,"category":"audio","brand":"SoundBasic","stock":0,"rating":3.8,"tags":["budget","headphones","basic"]}]}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"operation": "advanced_scenarios",
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
]
}📥 Response
Status Code: 200
Duration: 2ms
Size: 4682 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 6411
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"operation\":\"advanced_scenarios\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "1997",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "advanced_scenarios",
"products": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "BasicTech",
"category": "accessories",
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"rating": 4.2,
"stock": 150,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"brand": "SoundBasic",
"category": "audio",
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"rating": 3.8,
"stock": 0,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"recent_users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
],
"eng_js_users": [
{
"name": "Alice Johnson",
"skills": [
"JavaScript",
"Python",
"Docker"
]
},
{
"name": "Diana Prince",
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
]
}
],
"products_by_brand": [
{
"brand": "TechCorp",
"product": "Premium Laptop",
"stock_status": 25
},
{
"brand": "GameTech",
"product": "Gaming Keyboard",
"stock_status": 50
}
],
"available_quality_products": [
{
"name": "Basic Mouse",
"price": 19.99,
"rating": 4.2
},
{
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6
},
{
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9
}
]
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
} ✅
Filtering examples summary
Step #11
2ms
cURL Command
curl -X POST -H 'Content-Type: application/json' -d '{"test_summary":"array_filtering_examples","filter_types_demonstrated":["status_filtering","numeric_range_filtering","string_pattern_filtering","array_content_filtering","multi_condition_filtering","tag_based_filtering","simple_array_filtering","transformation_filtering","advanced_scenarios"],"total_examples":10}' "http://httpbin/post"📤 Request
Method: POST
URL:
http://httpbin/post Base URL:
http://httpbin Request Headers
Content-Type: application/jsonRequest Body
{
"test_summary": "array_filtering_examples",
"filter_types_demonstrated": [
"status_filtering",
"numeric_range_filtering",
"string_pattern_filtering",
"array_content_filtering",
"multi_condition_filtering",
"tag_based_filtering",
"simple_array_filtering",
"transformation_filtering",
"advanced_scenarios"
],
"total_examples": 10
}📥 Response
Status Code: 200
Duration: 2ms
Size: 987 bytes
Response Headers
server: gunicorn/19.9.0
date: Sun, 19 Oct 2025 10:28:39 GMT
connection: keep-alive
content-type: application/json
content-length: 1178
access-control-allow-origin: *
access-control-allow-credentials: trueResponse Body
{
"args": {},
"data": "{\"test_summary\":\"array_filtering_examples\",\"filter_types_demonstrated\":[\"status_filtering\",\"numeric_range_filtering\",\"string_pattern_filtering\",\"array_content_filtering\",\"multi_condition_filtering\",\"tag_based_filtering\",\"simple_array_filtering\",\"transformation_filtering\",\"advanced_scenarios\"],\"total_examples\":10}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "314",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"filter_types_demonstrated": [
"status_filtering",
"numeric_range_filtering",
"string_pattern_filtering",
"array_content_filtering",
"multi_condition_filtering",
"tag_based_filtering",
"simple_array_filtering",
"transformation_filtering",
"advanced_scenarios"
],
"test_summary": "array_filtering_examples",
"total_examples": 10
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
} 📊
Total
1
assertions
✅
Passed
1
assertion
📈
Success Rate
100%
success
✓
status_code
PASSED
✓ Match
Condição
status_code equals 200
Assertion passou conforme esperado
Valor recebido: 200
Captured Variables
{
"filtering_results": {
"filter_types_demonstrated": [
"status_filtering",
"numeric_range_filtering",
"string_pattern_filtering",
"array_content_filtering",
"multi_condition_filtering",
"tag_based_filtering",
"simple_array_filtering",
"transformation_filtering",
"advanced_scenarios"
],
"test_summary": "array_filtering_examples",
"total_examples": 10
},
"query_examples": [
"status_filtering",
"numeric_range_filtering",
"string_pattern_filtering",
"array_content_filtering",
"multi_condition_filtering",
"tag_based_filtering",
"simple_array_filtering",
"transformation_filtering",
"advanced_scenarios"
]
}Available Variables
{
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
}📄 Raw Suite Data
Complete Suite Data
{
"node_id": "array-filtering-examples",
"suite_name": "Array Filtering and Query Examples",
"file_path": "/app/tests/array-filtering-examples.yaml",
"priority": "medium",
"start_time": "2025-10-19T10:28:39.332Z",
"end_time": "2025-10-19T10:28:39.358Z",
"duration_ms": 26,
"status": "success",
"steps_executed": 11,
"steps_successful": 11,
"steps_failed": 0,
"success_rate": 100,
"steps_results": [
{
"step_id": "step-1-filter-active-users",
"qualified_step_id": "array-filtering-examples::step-1-filter-active-users",
"step_name": "Filter active users",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"operation": "filter_active_users",
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
]
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"filter_active_users\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 1130\r\n\r\n{\"operation\":\"filter_active_users\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "3742",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"operation\":\"filter_active_users\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "1130",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "filter_active_users",
"users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 2790,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 3742\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"operation\\\":\\\"filter_active_users\\\",\\\"users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Alice Johnson\\\",\\\"email\\\":\\\"alice@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"admin\\\",\\\"age\\\":28,\\\"department\\\":\\\"Engineering\\\",\\\"salary\\\":95000,\\\"skills\\\":[\\\"JavaScript\\\",\\\"Python\\\",\\\"Docker\\\"],\\\"last_login\\\":\\\"2024-01-15T10:30:00Z\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"Bob Smith\\\",\\\"email\\\":\\\"bob@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"age\\\":34,\\\"department\\\":\\\"Sales\\\",\\\"salary\\\":65000,\\\"skills\\\":[\\\"Sales\\\",\\\"CRM\\\",\\\"Excel\\\"],\\\"last_login\\\":\\\"2024-01-14T15:45:00Z\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Charlie Brown\\\",\\\"email\\\":\\\"charlie@example.com\\\",\\\"status\\\":\\\"inactive\\\",\\\"role\\\":\\\"moderator\\\",\\\"age\\\":29,\\\"department\\\":\\\"Marketing\\\",\\\"salary\\\":75000,\\\"skills\\\":[\\\"Marketing\\\",\\\"SEO\\\",\\\"Analytics\\\"],\\\"last_login\\\":\\\"2023-12-20T09:15:00Z\\\"},{\\\"id\\\":4,\\\"name\\\":\\\"Diana Prince\\\",\\\"email\\\":\\\"diana@example.com\\\",\\\"status\\\":\\\"pending\\\",\\\"role\\\":\\\"admin\\\",\\\"age\\\":31,\\\"department\\\":\\\"Engineering\\\",\\\"salary\\\":120000,\\\"skills\\\":[\\\"JavaScript\\\",\\\"DevOps\\\",\\\"Kubernetes\\\"],\\\"last_login\\\":\\\"2024-01-16T08:00:00Z\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"Eve Wilson\\\",\\\"email\\\":\\\"eve@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"age\\\":26,\\\"department\\\":\\\"Design\\\",\\\"salary\\\":70000,\\\"skills\\\":[\\\"Design\\\",\\\"Figma\\\",\\\"Photoshop\\\"],\\\"last_login\\\":\\\"2024-01-15T14:20:00Z\\\"}]}\",\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\": \"1130\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"operation\": \"filter_active_users\",\n \"users\": [\n {\n \"age\": 28,\n \"department\": \"Engineering\",\n \"email\": \"alice@example.com\",\n \"id\": 1,\n \"last_login\": \"2024-01-15T10:30:00Z\",\n \"name\": \"Alice Johnson\",\n \"role\": \"admin\",\n \"salary\": 95000,\n \"skills\": [\n \"JavaScript\",\n \"Python\",\n \"Docker\"\n ],\n \"status\": \"active\"\n },\n {\n \"age\": 34,\n \"department\": \"Sales\",\n \"email\": \"bob@example.com\",\n \"id\": 2,\n \"last_login\": \"2024-01-14T15:45:00Z\",\n \"name\": \"Bob Smith\",\n \"role\": \"user\",\n \"salary\": 65000,\n \"skills\": [\n \"Sales\",\n \"CRM\",\n \"Excel\"\n ],\n \"status\": \"active\"\n },\n {\n \"age\": 29,\n \"department\": \"Marketing\",\n \"email\": \"charlie@example.com\",\n \"id\": 3,\n \"last_login\": \"2023-12-20T09:15:00Z\",\n \"name\": \"Charlie Brown\",\n \"role\": \"moderator\",\n \"salary\": 75000,\n \"skills\": [\n \"Marketing\",\n \"SEO\",\n \"Analytics\"\n ],\n \"status\": \"inactive\"\n },\n {\n \"age\": 31,\n \"department\": \"Engineering\",\n \"email\": \"diana@example.com\",\n \"id\": 4,\n \"last_login\": \"2024-01-16T08:00:00Z\",\n \"name\": \"Diana Prince\",\n \"role\": \"admin\",\n \"salary\": 120000,\n \"skills\": [\n \"JavaScript\",\n \"DevOps\",\n \"Kubernetes\"\n ],\n \"status\": \"pending\"\n },\n {\n \"age\": 26,\n \"department\": \"Design\",\n \"email\": \"eve@example.com\",\n \"id\": 5,\n \"last_login\": \"2024-01-15T14:20:00Z\",\n \"name\": \"Eve Wilson\",\n \"role\": \"user\",\n \"salary\": 70000,\n \"skills\": [\n \"Design\",\n \"Figma\",\n \"Photoshop\"\n ],\n \"status\": \"active\"\n }\n ]\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"active_users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
],
"active_user_names": [
"Alice Johnson",
"Bob Smith",
"Eve Wilson"
],
"active_user_count": 3
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
}
},
{
"step_id": "step-2-filter-users-by-salary-ranges",
"qualified_step_id": "array-filtering-examples::step-2-filter-users-by-salary-ranges",
"step_name": "Filter users by salary ranges",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"operation": "filter_by_salary",
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
]
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"filter_by_salary\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 1127\r\n\r\n{\"operation\":\"filter_by_salary\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "3736",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"operation\":\"filter_by_salary\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "1127",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "filter_by_salary",
"users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 2784,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 3736\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"operation\\\":\\\"filter_by_salary\\\",\\\"users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Alice Johnson\\\",\\\"email\\\":\\\"alice@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"admin\\\",\\\"age\\\":28,\\\"department\\\":\\\"Engineering\\\",\\\"salary\\\":95000,\\\"skills\\\":[\\\"JavaScript\\\",\\\"Python\\\",\\\"Docker\\\"],\\\"last_login\\\":\\\"2024-01-15T10:30:00Z\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"Bob Smith\\\",\\\"email\\\":\\\"bob@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"age\\\":34,\\\"department\\\":\\\"Sales\\\",\\\"salary\\\":65000,\\\"skills\\\":[\\\"Sales\\\",\\\"CRM\\\",\\\"Excel\\\"],\\\"last_login\\\":\\\"2024-01-14T15:45:00Z\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Charlie Brown\\\",\\\"email\\\":\\\"charlie@example.com\\\",\\\"status\\\":\\\"inactive\\\",\\\"role\\\":\\\"moderator\\\",\\\"age\\\":29,\\\"department\\\":\\\"Marketing\\\",\\\"salary\\\":75000,\\\"skills\\\":[\\\"Marketing\\\",\\\"SEO\\\",\\\"Analytics\\\"],\\\"last_login\\\":\\\"2023-12-20T09:15:00Z\\\"},{\\\"id\\\":4,\\\"name\\\":\\\"Diana Prince\\\",\\\"email\\\":\\\"diana@example.com\\\",\\\"status\\\":\\\"pending\\\",\\\"role\\\":\\\"admin\\\",\\\"age\\\":31,\\\"department\\\":\\\"Engineering\\\",\\\"salary\\\":120000,\\\"skills\\\":[\\\"JavaScript\\\",\\\"DevOps\\\",\\\"Kubernetes\\\"],\\\"last_login\\\":\\\"2024-01-16T08:00:00Z\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"Eve Wilson\\\",\\\"email\\\":\\\"eve@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"age\\\":26,\\\"department\\\":\\\"Design\\\",\\\"salary\\\":70000,\\\"skills\\\":[\\\"Design\\\",\\\"Figma\\\",\\\"Photoshop\\\"],\\\"last_login\\\":\\\"2024-01-15T14:20:00Z\\\"}]}\",\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\": \"1127\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"operation\": \"filter_by_salary\",\n \"users\": [\n {\n \"age\": 28,\n \"department\": \"Engineering\",\n \"email\": \"alice@example.com\",\n \"id\": 1,\n \"last_login\": \"2024-01-15T10:30:00Z\",\n \"name\": \"Alice Johnson\",\n \"role\": \"admin\",\n \"salary\": 95000,\n \"skills\": [\n \"JavaScript\",\n \"Python\",\n \"Docker\"\n ],\n \"status\": \"active\"\n },\n {\n \"age\": 34,\n \"department\": \"Sales\",\n \"email\": \"bob@example.com\",\n \"id\": 2,\n \"last_login\": \"2024-01-14T15:45:00Z\",\n \"name\": \"Bob Smith\",\n \"role\": \"user\",\n \"salary\": 65000,\n \"skills\": [\n \"Sales\",\n \"CRM\",\n \"Excel\"\n ],\n \"status\": \"active\"\n },\n {\n \"age\": 29,\n \"department\": \"Marketing\",\n \"email\": \"charlie@example.com\",\n \"id\": 3,\n \"last_login\": \"2023-12-20T09:15:00Z\",\n \"name\": \"Charlie Brown\",\n \"role\": \"moderator\",\n \"salary\": 75000,\n \"skills\": [\n \"Marketing\",\n \"SEO\",\n \"Analytics\"\n ],\n \"status\": \"inactive\"\n },\n {\n \"age\": 31,\n \"department\": \"Engineering\",\n \"email\": \"diana@example.com\",\n \"id\": 4,\n \"last_login\": \"2024-01-16T08:00:00Z\",\n \"name\": \"Diana Prince\",\n \"role\": \"admin\",\n \"salary\": 120000,\n \"skills\": [\n \"JavaScript\",\n \"DevOps\",\n \"Kubernetes\"\n ],\n \"status\": \"pending\"\n },\n {\n \"age\": 26,\n \"department\": \"Design\",\n \"email\": \"eve@example.com\",\n \"id\": 5,\n \"last_login\": \"2024-01-15T14:20:00Z\",\n \"name\": \"Eve Wilson\",\n \"role\": \"user\",\n \"salary\": 70000,\n \"skills\": [\n \"Design\",\n \"Figma\",\n \"Photoshop\"\n ],\n \"status\": \"active\"\n }\n ]\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"high_earners": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
}
],
"mid_range_earners": [
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
],
"entry_level": [
{
"name": "Bob Smith",
"salary": 65000,
"department": "Sales"
}
]
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
}
},
{
"step_id": "step-3-filter-by-department-and-name-patterns",
"qualified_step_id": "array-filtering-examples::step-3-filter-by-department-and-name-patterns",
"step_name": "Filter by department and name patterns",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"operation": "filter_by_strings",
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
]
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"filter_by_strings\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 1128\r\n\r\n{\"operation\":\"filter_by_strings\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "3738",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"operation\":\"filter_by_strings\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "1128",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "filter_by_strings",
"users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 2786,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 3738\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"operation\\\":\\\"filter_by_strings\\\",\\\"users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Alice Johnson\\\",\\\"email\\\":\\\"alice@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"admin\\\",\\\"age\\\":28,\\\"department\\\":\\\"Engineering\\\",\\\"salary\\\":95000,\\\"skills\\\":[\\\"JavaScript\\\",\\\"Python\\\",\\\"Docker\\\"],\\\"last_login\\\":\\\"2024-01-15T10:30:00Z\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"Bob Smith\\\",\\\"email\\\":\\\"bob@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"age\\\":34,\\\"department\\\":\\\"Sales\\\",\\\"salary\\\":65000,\\\"skills\\\":[\\\"Sales\\\",\\\"CRM\\\",\\\"Excel\\\"],\\\"last_login\\\":\\\"2024-01-14T15:45:00Z\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Charlie Brown\\\",\\\"email\\\":\\\"charlie@example.com\\\",\\\"status\\\":\\\"inactive\\\",\\\"role\\\":\\\"moderator\\\",\\\"age\\\":29,\\\"department\\\":\\\"Marketing\\\",\\\"salary\\\":75000,\\\"skills\\\":[\\\"Marketing\\\",\\\"SEO\\\",\\\"Analytics\\\"],\\\"last_login\\\":\\\"2023-12-20T09:15:00Z\\\"},{\\\"id\\\":4,\\\"name\\\":\\\"Diana Prince\\\",\\\"email\\\":\\\"diana@example.com\\\",\\\"status\\\":\\\"pending\\\",\\\"role\\\":\\\"admin\\\",\\\"age\\\":31,\\\"department\\\":\\\"Engineering\\\",\\\"salary\\\":120000,\\\"skills\\\":[\\\"JavaScript\\\",\\\"DevOps\\\",\\\"Kubernetes\\\"],\\\"last_login\\\":\\\"2024-01-16T08:00:00Z\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"Eve Wilson\\\",\\\"email\\\":\\\"eve@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"age\\\":26,\\\"department\\\":\\\"Design\\\",\\\"salary\\\":70000,\\\"skills\\\":[\\\"Design\\\",\\\"Figma\\\",\\\"Photoshop\\\"],\\\"last_login\\\":\\\"2024-01-15T14:20:00Z\\\"}]}\",\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\": \"1128\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"operation\": \"filter_by_strings\",\n \"users\": [\n {\n \"age\": 28,\n \"department\": \"Engineering\",\n \"email\": \"alice@example.com\",\n \"id\": 1,\n \"last_login\": \"2024-01-15T10:30:00Z\",\n \"name\": \"Alice Johnson\",\n \"role\": \"admin\",\n \"salary\": 95000,\n \"skills\": [\n \"JavaScript\",\n \"Python\",\n \"Docker\"\n ],\n \"status\": \"active\"\n },\n {\n \"age\": 34,\n \"department\": \"Sales\",\n \"email\": \"bob@example.com\",\n \"id\": 2,\n \"last_login\": \"2024-01-14T15:45:00Z\",\n \"name\": \"Bob Smith\",\n \"role\": \"user\",\n \"salary\": 65000,\n \"skills\": [\n \"Sales\",\n \"CRM\",\n \"Excel\"\n ],\n \"status\": \"active\"\n },\n {\n \"age\": 29,\n \"department\": \"Marketing\",\n \"email\": \"charlie@example.com\",\n \"id\": 3,\n \"last_login\": \"2023-12-20T09:15:00Z\",\n \"name\": \"Charlie Brown\",\n \"role\": \"moderator\",\n \"salary\": 75000,\n \"skills\": [\n \"Marketing\",\n \"SEO\",\n \"Analytics\"\n ],\n \"status\": \"inactive\"\n },\n {\n \"age\": 31,\n \"department\": \"Engineering\",\n \"email\": \"diana@example.com\",\n \"id\": 4,\n \"last_login\": \"2024-01-16T08:00:00Z\",\n \"name\": \"Diana Prince\",\n \"role\": \"admin\",\n \"salary\": 120000,\n \"skills\": [\n \"JavaScript\",\n \"DevOps\",\n \"Kubernetes\"\n ],\n \"status\": \"pending\"\n },\n {\n \"age\": 26,\n \"department\": \"Design\",\n \"email\": \"eve@example.com\",\n \"id\": 5,\n \"last_login\": \"2024-01-15T14:20:00Z\",\n \"name\": \"Eve Wilson\",\n \"role\": \"user\",\n \"salary\": 70000,\n \"skills\": [\n \"Design\",\n \"Figma\",\n \"Photoshop\"\n ],\n \"status\": \"active\"\n }\n ]\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"engineering_users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
}
],
"names_starting_with_a": [
"Alice Johnson"
],
"names_containing_o": [
"Alice Johnson",
"Bob Smith",
"Charlie Brown",
"Eve Wilson"
],
"gmail_users": [
"alice@example.com",
"bob@example.com",
"charlie@example.com",
"diana@example.com",
"eve@example.com"
]
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
}
},
{
"step_id": "step-4-filter-by-array-contents-skills",
"qualified_step_id": "array-filtering-examples::step-4-filter-by-array-contents-skills",
"step_name": "Filter by array contents (skills)",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"operation": "filter_by_skills",
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
]
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"filter_by_skills\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 1127\r\n\r\n{\"operation\":\"filter_by_skills\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "3736",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"operation\":\"filter_by_skills\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "1127",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "filter_by_skills",
"users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 2784,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 3736\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"operation\\\":\\\"filter_by_skills\\\",\\\"users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Alice Johnson\\\",\\\"email\\\":\\\"alice@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"admin\\\",\\\"age\\\":28,\\\"department\\\":\\\"Engineering\\\",\\\"salary\\\":95000,\\\"skills\\\":[\\\"JavaScript\\\",\\\"Python\\\",\\\"Docker\\\"],\\\"last_login\\\":\\\"2024-01-15T10:30:00Z\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"Bob Smith\\\",\\\"email\\\":\\\"bob@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"age\\\":34,\\\"department\\\":\\\"Sales\\\",\\\"salary\\\":65000,\\\"skills\\\":[\\\"Sales\\\",\\\"CRM\\\",\\\"Excel\\\"],\\\"last_login\\\":\\\"2024-01-14T15:45:00Z\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Charlie Brown\\\",\\\"email\\\":\\\"charlie@example.com\\\",\\\"status\\\":\\\"inactive\\\",\\\"role\\\":\\\"moderator\\\",\\\"age\\\":29,\\\"department\\\":\\\"Marketing\\\",\\\"salary\\\":75000,\\\"skills\\\":[\\\"Marketing\\\",\\\"SEO\\\",\\\"Analytics\\\"],\\\"last_login\\\":\\\"2023-12-20T09:15:00Z\\\"},{\\\"id\\\":4,\\\"name\\\":\\\"Diana Prince\\\",\\\"email\\\":\\\"diana@example.com\\\",\\\"status\\\":\\\"pending\\\",\\\"role\\\":\\\"admin\\\",\\\"age\\\":31,\\\"department\\\":\\\"Engineering\\\",\\\"salary\\\":120000,\\\"skills\\\":[\\\"JavaScript\\\",\\\"DevOps\\\",\\\"Kubernetes\\\"],\\\"last_login\\\":\\\"2024-01-16T08:00:00Z\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"Eve Wilson\\\",\\\"email\\\":\\\"eve@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"age\\\":26,\\\"department\\\":\\\"Design\\\",\\\"salary\\\":70000,\\\"skills\\\":[\\\"Design\\\",\\\"Figma\\\",\\\"Photoshop\\\"],\\\"last_login\\\":\\\"2024-01-15T14:20:00Z\\\"}]}\",\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\": \"1127\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"operation\": \"filter_by_skills\",\n \"users\": [\n {\n \"age\": 28,\n \"department\": \"Engineering\",\n \"email\": \"alice@example.com\",\n \"id\": 1,\n \"last_login\": \"2024-01-15T10:30:00Z\",\n \"name\": \"Alice Johnson\",\n \"role\": \"admin\",\n \"salary\": 95000,\n \"skills\": [\n \"JavaScript\",\n \"Python\",\n \"Docker\"\n ],\n \"status\": \"active\"\n },\n {\n \"age\": 34,\n \"department\": \"Sales\",\n \"email\": \"bob@example.com\",\n \"id\": 2,\n \"last_login\": \"2024-01-14T15:45:00Z\",\n \"name\": \"Bob Smith\",\n \"role\": \"user\",\n \"salary\": 65000,\n \"skills\": [\n \"Sales\",\n \"CRM\",\n \"Excel\"\n ],\n \"status\": \"active\"\n },\n {\n \"age\": 29,\n \"department\": \"Marketing\",\n \"email\": \"charlie@example.com\",\n \"id\": 3,\n \"last_login\": \"2023-12-20T09:15:00Z\",\n \"name\": \"Charlie Brown\",\n \"role\": \"moderator\",\n \"salary\": 75000,\n \"skills\": [\n \"Marketing\",\n \"SEO\",\n \"Analytics\"\n ],\n \"status\": \"inactive\"\n },\n {\n \"age\": 31,\n \"department\": \"Engineering\",\n \"email\": \"diana@example.com\",\n \"id\": 4,\n \"last_login\": \"2024-01-16T08:00:00Z\",\n \"name\": \"Diana Prince\",\n \"role\": \"admin\",\n \"salary\": 120000,\n \"skills\": [\n \"JavaScript\",\n \"DevOps\",\n \"Kubernetes\"\n ],\n \"status\": \"pending\"\n },\n {\n \"age\": 26,\n \"department\": \"Design\",\n \"email\": \"eve@example.com\",\n \"id\": 5,\n \"last_login\": \"2024-01-15T14:20:00Z\",\n \"name\": \"Eve Wilson\",\n \"role\": \"user\",\n \"salary\": 70000,\n \"skills\": [\n \"Design\",\n \"Figma\",\n \"Photoshop\"\n ],\n \"status\": \"active\"\n }\n ]\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"javascript_users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
}
],
"design_users": [
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
],
"engineering_skills": []
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
}
},
{
"step_id": "step-5-filter-products-by-category-and-price",
"qualified_step_id": "array-filtering-examples::step-5-filter-products-by-category-and-price",
"step_name": "Filter products by category and price",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"operation": "filter_products",
"products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
]
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"filter_products\",\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 899\r\n\r\n{\"operation\":\"filter_products\",\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "3171",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"operation\":\"filter_products\",\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "899",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "filter_products",
"products": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "BasicTech",
"category": "accessories",
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"rating": 4.2,
"stock": 150,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"brand": "SoundBasic",
"category": "audio",
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"rating": 3.8,
"stock": 0,
"tags": [
"budget",
"headphones",
"basic"
]
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 2293,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 3171\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"operation\\\":\\\"filter_products\\\",\\\"products\\\":[{\\\"id\\\":\\\"PROD-001\\\",\\\"name\\\":\\\"Premium Laptop\\\",\\\"price\\\":1299.99,\\\"category\\\":\\\"electronics\\\",\\\"brand\\\":\\\"TechCorp\\\",\\\"stock\\\":25,\\\"rating\\\":4.8,\\\"tags\\\":[\\\"premium\\\",\\\"laptop\\\",\\\"gaming\\\",\\\"high-performance\\\"]},{\\\"id\\\":\\\"PROD-002\\\",\\\"name\\\":\\\"Basic Mouse\\\",\\\"price\\\":19.99,\\\"category\\\":\\\"accessories\\\",\\\"brand\\\":\\\"BasicTech\\\",\\\"stock\\\":150,\\\"rating\\\":4.2,\\\"tags\\\":[\\\"basic\\\",\\\"mouse\\\",\\\"office\\\"]},{\\\"id\\\":\\\"PROD-003\\\",\\\"name\\\":\\\"Gaming Keyboard\\\",\\\"price\\\":129.99,\\\"category\\\":\\\"accessories\\\",\\\"brand\\\":\\\"GameTech\\\",\\\"stock\\\":50,\\\"rating\\\":4.6,\\\"tags\\\":[\\\"gaming\\\",\\\"keyboard\\\",\\\"rgb\\\",\\\"mechanical\\\"]},{\\\"id\\\":\\\"PROD-004\\\",\\\"name\\\":\\\"Professional Monitor\\\",\\\"price\\\":799.99,\\\"category\\\":\\\"electronics\\\",\\\"brand\\\":\\\"DisplayPro\\\",\\\"stock\\\":15,\\\"rating\\\":4.9,\\\"tags\\\":[\\\"professional\\\",\\\"monitor\\\",\\\"4k\\\",\\\"design\\\"]},{\\\"id\\\":\\\"PROD-005\\\",\\\"name\\\":\\\"Budget Headphones\\\",\\\"price\\\":39.99,\\\"category\\\":\\\"audio\\\",\\\"brand\\\":\\\"SoundBasic\\\",\\\"stock\\\":0,\\\"rating\\\":3.8,\\\"tags\\\":[\\\"budget\\\",\\\"headphones\\\",\\\"basic\\\"]}]}\",\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\": \"899\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"operation\": \"filter_products\",\n \"products\": [\n {\n \"brand\": \"TechCorp\",\n \"category\": \"electronics\",\n \"id\": \"PROD-001\",\n \"name\": \"Premium Laptop\",\n \"price\": 1299.99,\n \"rating\": 4.8,\n \"stock\": 25,\n \"tags\": [\n \"premium\",\n \"laptop\",\n \"gaming\",\n \"high-performance\"\n ]\n },\n {\n \"brand\": \"BasicTech\",\n \"category\": \"accessories\",\n \"id\": \"PROD-002\",\n \"name\": \"Basic Mouse\",\n \"price\": 19.99,\n \"rating\": 4.2,\n \"stock\": 150,\n \"tags\": [\n \"basic\",\n \"mouse\",\n \"office\"\n ]\n },\n {\n \"brand\": \"GameTech\",\n \"category\": \"accessories\",\n \"id\": \"PROD-003\",\n \"name\": \"Gaming Keyboard\",\n \"price\": 129.99,\n \"rating\": 4.6,\n \"stock\": 50,\n \"tags\": [\n \"gaming\",\n \"keyboard\",\n \"rgb\",\n \"mechanical\"\n ]\n },\n {\n \"brand\": \"DisplayPro\",\n \"category\": \"electronics\",\n \"id\": \"PROD-004\",\n \"name\": \"Professional Monitor\",\n \"price\": 799.99,\n \"rating\": 4.9,\n \"stock\": 15,\n \"tags\": [\n \"professional\",\n \"monitor\",\n \"4k\",\n \"design\"\n ]\n },\n {\n \"brand\": \"SoundBasic\",\n \"category\": \"audio\",\n \"id\": \"PROD-005\",\n \"name\": \"Budget Headphones\",\n \"price\": 39.99,\n \"rating\": 3.8,\n \"stock\": 0,\n \"tags\": [\n \"budget\",\n \"headphones\",\n \"basic\"\n ]\n }\n ]\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"electronics": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
}
],
"expensive_items": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
}
],
"in_stock_items": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "BasicTech",
"category": "accessories",
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"rating": 4.2,
"stock": 150,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
}
],
"quality_available": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
}
]
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
}
},
{
"step_id": "step-6-complex-multi-condition-filters",
"qualified_step_id": "array-filtering-examples::step-6-complex-multi-condition-filters",
"step_name": "Complex multi-condition filters",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"operation": "complex_filtering",
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
]
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"complex_filtering\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 1996\r\n\r\n{\"operation\":\"complex_filtering\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "6409",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"operation\":\"complex_filtering\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "1996",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "complex_filtering",
"products": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "BasicTech",
"category": "accessories",
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"rating": 4.2,
"stock": 150,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"brand": "SoundBasic",
"category": "audio",
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"rating": 3.8,
"stock": 0,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 4680,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 6409\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"operation\\\":\\\"complex_filtering\\\",\\\"users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Alice Johnson\\\",\\\"email\\\":\\\"alice@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"admin\\\",\\\"age\\\":28,\\\"department\\\":\\\"Engineering\\\",\\\"salary\\\":95000,\\\"skills\\\":[\\\"JavaScript\\\",\\\"Python\\\",\\\"Docker\\\"],\\\"last_login\\\":\\\"2024-01-15T10:30:00Z\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"Bob Smith\\\",\\\"email\\\":\\\"bob@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"age\\\":34,\\\"department\\\":\\\"Sales\\\",\\\"salary\\\":65000,\\\"skills\\\":[\\\"Sales\\\",\\\"CRM\\\",\\\"Excel\\\"],\\\"last_login\\\":\\\"2024-01-14T15:45:00Z\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Charlie Brown\\\",\\\"email\\\":\\\"charlie@example.com\\\",\\\"status\\\":\\\"inactive\\\",\\\"role\\\":\\\"moderator\\\",\\\"age\\\":29,\\\"department\\\":\\\"Marketing\\\",\\\"salary\\\":75000,\\\"skills\\\":[\\\"Marketing\\\",\\\"SEO\\\",\\\"Analytics\\\"],\\\"last_login\\\":\\\"2023-12-20T09:15:00Z\\\"},{\\\"id\\\":4,\\\"name\\\":\\\"Diana Prince\\\",\\\"email\\\":\\\"diana@example.com\\\",\\\"status\\\":\\\"pending\\\",\\\"role\\\":\\\"admin\\\",\\\"age\\\":31,\\\"department\\\":\\\"Engineering\\\",\\\"salary\\\":120000,\\\"skills\\\":[\\\"JavaScript\\\",\\\"DevOps\\\",\\\"Kubernetes\\\"],\\\"last_login\\\":\\\"2024-01-16T08:00:00Z\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"Eve Wilson\\\",\\\"email\\\":\\\"eve@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"age\\\":26,\\\"department\\\":\\\"Design\\\",\\\"salary\\\":70000,\\\"skills\\\":[\\\"Design\\\",\\\"Figma\\\",\\\"Photoshop\\\"],\\\"last_login\\\":\\\"2024-01-15T14:20:00Z\\\"}],\\\"products\\\":[{\\\"id\\\":\\\"PROD-001\\\",\\\"name\\\":\\\"Premium Laptop\\\",\\\"price\\\":1299.99,\\\"category\\\":\\\"electronics\\\",\\\"brand\\\":\\\"TechCorp\\\",\\\"stock\\\":25,\\\"rating\\\":4.8,\\\"tags\\\":[\\\"premium\\\",\\\"laptop\\\",\\\"gaming\\\",\\\"high-performance\\\"]},{\\\"id\\\":\\\"PROD-002\\\",\\\"name\\\":\\\"Basic Mouse\\\",\\\"price\\\":19.99,\\\"category\\\":\\\"accessories\\\",\\\"brand\\\":\\\"BasicTech\\\",\\\"stock\\\":150,\\\"rating\\\":4.2,\\\"tags\\\":[\\\"basic\\\",\\\"mouse\\\",\\\"office\\\"]},{\\\"id\\\":\\\"PROD-003\\\",\\\"name\\\":\\\"Gaming Keyboard\\\",\\\"price\\\":129.99,\\\"category\\\":\\\"accessories\\\",\\\"brand\\\":\\\"GameTech\\\",\\\"stock\\\":50,\\\"rating\\\":4.6,\\\"tags\\\":[\\\"gaming\\\",\\\"keyboard\\\",\\\"rgb\\\",\\\"mechanical\\\"]},{\\\"id\\\":\\\"PROD-004\\\",\\\"name\\\":\\\"Professional Monitor\\\",\\\"price\\\":799.99,\\\"category\\\":\\\"electronics\\\",\\\"brand\\\":\\\"DisplayPro\\\",\\\"stock\\\":15,\\\"rating\\\":4.9,\\\"tags\\\":[\\\"professional\\\",\\\"monitor\\\",\\\"4k\\\",\\\"design\\\"]},{\\\"id\\\":\\\"PROD-005\\\",\\\"name\\\":\\\"Budget Headphones\\\",\\\"price\\\":39.99,\\\"category\\\":\\\"audio\\\",\\\"brand\\\":\\\"SoundBasic\\\",\\\"stock\\\":0,\\\"rating\\\":3.8,\\\"tags\\\":[\\\"budget\\\",\\\"headphones\\\",\\\"basic\\\"]}]}\",\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\": \"1996\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"operation\": \"complex_filtering\",\n \"products\": [\n {\n \"brand\": \"TechCorp\",\n \"category\": \"electronics\",\n \"id\": \"PROD-001\",\n \"name\": \"Premium Laptop\",\n \"price\": 1299.99,\n \"rating\": 4.8,\n \"stock\": 25,\n \"tags\": [\n \"premium\",\n \"laptop\",\n \"gaming\",\n \"high-performance\"\n ]\n },\n {\n \"brand\": \"BasicTech\",\n \"category\": \"accessories\",\n \"id\": \"PROD-002\",\n \"name\": \"Basic Mouse\",\n \"price\": 19.99,\n \"rating\": 4.2,\n \"stock\": 150,\n \"tags\": [\n \"basic\",\n \"mouse\",\n \"office\"\n ]\n },\n {\n \"brand\": \"GameTech\",\n \"category\": \"accessories\",\n \"id\": \"PROD-003\",\n \"name\": \"Gaming Keyboard\",\n \"price\": 129.99,\n \"rating\": 4.6,\n \"stock\": 50,\n \"tags\": [\n \"gaming\",\n \"keyboard\",\n \"rgb\",\n \"mechanical\"\n ]\n },\n {\n \"brand\": \"DisplayPro\",\n \"category\": \"electronics\",\n \"id\": \"PROD-004\",\n \"name\": \"Professional Monitor\",\n \"price\": 799.99,\n \"rating\": 4.9,\n \"stock\": 15,\n \"tags\": [\n \"professional\",\n \"monitor\",\n \"4k\",\n \"design\"\n ]\n },\n {\n \"brand\": \"SoundBasic\",\n \"category\": \"audio\",\n \"id\": \"PROD-005\",\n \"name\": \"Budget Headphones\",\n \"price\": 39.99,\n \"rating\": 3.8,\n \"stock\": 0,\n \"tags\": [\n \"budget\",\n \"headphones\",\n \"basic\"\n ]\n }\n ],\n \"users\": [\n {\n \"age\": 28,\n \"department\": \"Engineering\",\n \"email\": \"alice@example.com\",\n \"id\": 1,\n \"last_login\": \"2024-01-15T10:30:00Z\",\n \"name\": \"Alice Johnson\",\n \"role\": \"admin\",\n \"salary\": 95000,\n \"skills\": [\n \"JavaScript\",\n \"Python\",\n \"Docker\"\n ],\n \"status\": \"active\"\n },\n {\n \"age\": 34,\n \"department\": \"Sales\",\n \"email\": \"bob@example.com\",\n \"id\": 2,\n \"last_login\": \"2024-01-14T15:45:00Z\",\n \"name\": \"Bob Smith\",\n \"role\": \"user\",\n \"salary\": 65000,\n \"skills\": [\n \"Sales\",\n \"CRM\",\n \"Excel\"\n ],\n \"status\": \"active\"\n },\n {\n \"age\": 29,\n \"department\": \"Marketing\",\n \"email\": \"charlie@example.com\",\n \"id\": 3,\n \"last_login\": \"2023-12-20T09:15:00Z\",\n \"name\": \"Charlie Brown\",\n \"role\": \"moderator\",\n \"salary\": 75000,\n \"skills\": [\n \"Marketing\",\n \"SEO\",\n \"Analytics\"\n ],\n \"status\": \"inactive\"\n },\n {\n \"age\": 31,\n \"department\": \"Engineering\",\n \"email\": \"diana@example.com\",\n \"id\": 4,\n \"last_login\": \"2024-01-16T08:00:00Z\",\n \"name\": \"Diana Prince\",\n \"role\": \"admin\",\n \"salary\": 120000,\n \"skills\": [\n \"JavaScript\",\n \"DevOps\",\n \"Kubernetes\"\n ],\n \"status\": \"pending\"\n },\n {\n \"age\": 26,\n \"department\": \"Design\",\n \"email\": \"eve@example.com\",\n \"id\": 5,\n \"last_login\": \"2024-01-15T14:20:00Z\",\n \"name\": \"Eve Wilson\",\n \"role\": \"user\",\n \"salary\": 70000,\n \"skills\": [\n \"Design\",\n \"Figma\",\n \"Photoshop\"\n ],\n \"status\": \"active\"\n }\n ]\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"senior_admins": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
}
],
"young_high_earners": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
}
],
"premium_electronics": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
}
],
"gaming_accessories": [
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
}
]
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
}
},
{
"step_id": "step-7-filter-products-by-tags",
"qualified_step_id": "array-filtering-examples::step-7-filter-products-by-tags",
"step_name": "Filter products by tags",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"operation": "filter_by_tags",
"products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
]
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"filter_by_tags\",\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 898\r\n\r\n{\"operation\":\"filter_by_tags\",\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "3169",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"operation\":\"filter_by_tags\",\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "898",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "filter_by_tags",
"products": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "BasicTech",
"category": "accessories",
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"rating": 4.2,
"stock": 150,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"brand": "SoundBasic",
"category": "audio",
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"rating": 3.8,
"stock": 0,
"tags": [
"budget",
"headphones",
"basic"
]
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 2291,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 3169\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"operation\\\":\\\"filter_by_tags\\\",\\\"products\\\":[{\\\"id\\\":\\\"PROD-001\\\",\\\"name\\\":\\\"Premium Laptop\\\",\\\"price\\\":1299.99,\\\"category\\\":\\\"electronics\\\",\\\"brand\\\":\\\"TechCorp\\\",\\\"stock\\\":25,\\\"rating\\\":4.8,\\\"tags\\\":[\\\"premium\\\",\\\"laptop\\\",\\\"gaming\\\",\\\"high-performance\\\"]},{\\\"id\\\":\\\"PROD-002\\\",\\\"name\\\":\\\"Basic Mouse\\\",\\\"price\\\":19.99,\\\"category\\\":\\\"accessories\\\",\\\"brand\\\":\\\"BasicTech\\\",\\\"stock\\\":150,\\\"rating\\\":4.2,\\\"tags\\\":[\\\"basic\\\",\\\"mouse\\\",\\\"office\\\"]},{\\\"id\\\":\\\"PROD-003\\\",\\\"name\\\":\\\"Gaming Keyboard\\\",\\\"price\\\":129.99,\\\"category\\\":\\\"accessories\\\",\\\"brand\\\":\\\"GameTech\\\",\\\"stock\\\":50,\\\"rating\\\":4.6,\\\"tags\\\":[\\\"gaming\\\",\\\"keyboard\\\",\\\"rgb\\\",\\\"mechanical\\\"]},{\\\"id\\\":\\\"PROD-004\\\",\\\"name\\\":\\\"Professional Monitor\\\",\\\"price\\\":799.99,\\\"category\\\":\\\"electronics\\\",\\\"brand\\\":\\\"DisplayPro\\\",\\\"stock\\\":15,\\\"rating\\\":4.9,\\\"tags\\\":[\\\"professional\\\",\\\"monitor\\\",\\\"4k\\\",\\\"design\\\"]},{\\\"id\\\":\\\"PROD-005\\\",\\\"name\\\":\\\"Budget Headphones\\\",\\\"price\\\":39.99,\\\"category\\\":\\\"audio\\\",\\\"brand\\\":\\\"SoundBasic\\\",\\\"stock\\\":0,\\\"rating\\\":3.8,\\\"tags\\\":[\\\"budget\\\",\\\"headphones\\\",\\\"basic\\\"]}]}\",\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\": \"898\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"operation\": \"filter_by_tags\",\n \"products\": [\n {\n \"brand\": \"TechCorp\",\n \"category\": \"electronics\",\n \"id\": \"PROD-001\",\n \"name\": \"Premium Laptop\",\n \"price\": 1299.99,\n \"rating\": 4.8,\n \"stock\": 25,\n \"tags\": [\n \"premium\",\n \"laptop\",\n \"gaming\",\n \"high-performance\"\n ]\n },\n {\n \"brand\": \"BasicTech\",\n \"category\": \"accessories\",\n \"id\": \"PROD-002\",\n \"name\": \"Basic Mouse\",\n \"price\": 19.99,\n \"rating\": 4.2,\n \"stock\": 150,\n \"tags\": [\n \"basic\",\n \"mouse\",\n \"office\"\n ]\n },\n {\n \"brand\": \"GameTech\",\n \"category\": \"accessories\",\n \"id\": \"PROD-003\",\n \"name\": \"Gaming Keyboard\",\n \"price\": 129.99,\n \"rating\": 4.6,\n \"stock\": 50,\n \"tags\": [\n \"gaming\",\n \"keyboard\",\n \"rgb\",\n \"mechanical\"\n ]\n },\n {\n \"brand\": \"DisplayPro\",\n \"category\": \"electronics\",\n \"id\": \"PROD-004\",\n \"name\": \"Professional Monitor\",\n \"price\": 799.99,\n \"rating\": 4.9,\n \"stock\": 15,\n \"tags\": [\n \"professional\",\n \"monitor\",\n \"4k\",\n \"design\"\n ]\n },\n {\n \"brand\": \"SoundBasic\",\n \"category\": \"audio\",\n \"id\": \"PROD-005\",\n \"name\": \"Budget Headphones\",\n \"price\": 39.99,\n \"rating\": 3.8,\n \"stock\": 0,\n \"tags\": [\n \"budget\",\n \"headphones\",\n \"basic\"\n ]\n }\n ]\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"gaming_products": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
}
],
"high_end_products": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
}
],
"professional_design": [
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
}
]
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
}
},
{
"step_id": "step-8-filter-simple-arrays",
"qualified_step_id": "array-filtering-examples::step-8-filter-simple-arrays",
"step_name": "Filter simple arrays",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"operation": "simple_array_filtering",
"numbers": [
1,
5,
10,
15,
20,
25,
30,
35,
40,
45,
50
],
"strings": [
"apple",
"banana",
"cherry",
"date",
"elderberry",
"fig",
"grape"
],
"statuses": [
"active",
"inactive",
"pending",
"active",
"suspended",
"active",
"pending"
]
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"simple_array_filtering\",\"numbers\":[1,5,10,15,20,25,30,35,40,45,50],\"strings\":[\"apple\",\"banana\",\"cherry\",\"date\",\"elderberry\",\"fig\",\"grape\"],\"statuses\":[\"active\",\"inactive\",\"pending\",\"active\",\"suspended\",\"active\",\"pending\"]}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 236\r\n\r\n{\"operation\":\"simple_array_filtering\",\"numbers\":[1,5,10,15,20,25,30,35,40,45,50],\"strings\":[\"apple\",\"banana\",\"cherry\",\"date\",\"elderberry\",\"fig\",\"grape\"],\"statuses\":[\"active\",\"inactive\",\"pending\",\"active\",\"suspended\",\"active\",\"pending\"]}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "1177",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"operation\":\"simple_array_filtering\",\"numbers\":[1,5,10,15,20,25,30,35,40,45,50],\"strings\":[\"apple\",\"banana\",\"cherry\",\"date\",\"elderberry\",\"fig\",\"grape\"],\"statuses\":[\"active\",\"inactive\",\"pending\",\"active\",\"suspended\",\"active\",\"pending\"]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "236",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"numbers": [
1,
5,
10,
15,
20,
25,
30,
35,
40,
45,
50
],
"operation": "simple_array_filtering",
"statuses": [
"active",
"inactive",
"pending",
"active",
"suspended",
"active",
"pending"
],
"strings": [
"apple",
"banana",
"cherry",
"date",
"elderberry",
"fig",
"grape"
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 843,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 1177\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"operation\\\":\\\"simple_array_filtering\\\",\\\"numbers\\\":[1,5,10,15,20,25,30,35,40,45,50],\\\"strings\\\":[\\\"apple\\\",\\\"banana\\\",\\\"cherry\\\",\\\"date\\\",\\\"elderberry\\\",\\\"fig\\\",\\\"grape\\\"],\\\"statuses\\\":[\\\"active\\\",\\\"inactive\\\",\\\"pending\\\",\\\"active\\\",\\\"suspended\\\",\\\"active\\\",\\\"pending\\\"]}\",\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\": \"236\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"numbers\": [\n 1,\n 5,\n 10,\n 15,\n 20,\n 25,\n 30,\n 35,\n 40,\n 45,\n 50\n ],\n \"operation\": \"simple_array_filtering\",\n \"statuses\": [\n \"active\",\n \"inactive\",\n \"pending\",\n \"active\",\n \"suspended\",\n \"active\",\n \"pending\"\n ],\n \"strings\": [\n \"apple\",\n \"banana\",\n \"cherry\",\n \"date\",\n \"elderberry\",\n \"fig\",\n \"grape\"\n ]\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"numbers_gt_20": [
25,
30,
35,
40,
45,
50
],
"numbers_10_to_30": [
10,
15,
20,
25,
30
],
"fruits_starting_with_a": [
"apple"
],
"strings_with_e": [
"apple",
"cherry",
"date",
"elderberry",
"grape"
],
"unique_statuses": 3
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
}
},
{
"step_id": "step-9-filter-with-data-transformation",
"qualified_step_id": "array-filtering-examples::step-9-filter-with-data-transformation",
"step_name": "Filter with data transformation",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"operation": "filter_and_transform",
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
]
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"filter_and_transform\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 1999\r\n\r\n{\"operation\":\"filter_and_transform\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "6415",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"operation\":\"filter_and_transform\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "1999",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "filter_and_transform",
"products": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "BasicTech",
"category": "accessories",
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"rating": 4.2,
"stock": 150,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"brand": "SoundBasic",
"category": "audio",
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"rating": 3.8,
"stock": 0,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 4686,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 6415\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"operation\\\":\\\"filter_and_transform\\\",\\\"users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Alice Johnson\\\",\\\"email\\\":\\\"alice@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"admin\\\",\\\"age\\\":28,\\\"department\\\":\\\"Engineering\\\",\\\"salary\\\":95000,\\\"skills\\\":[\\\"JavaScript\\\",\\\"Python\\\",\\\"Docker\\\"],\\\"last_login\\\":\\\"2024-01-15T10:30:00Z\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"Bob Smith\\\",\\\"email\\\":\\\"bob@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"age\\\":34,\\\"department\\\":\\\"Sales\\\",\\\"salary\\\":65000,\\\"skills\\\":[\\\"Sales\\\",\\\"CRM\\\",\\\"Excel\\\"],\\\"last_login\\\":\\\"2024-01-14T15:45:00Z\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Charlie Brown\\\",\\\"email\\\":\\\"charlie@example.com\\\",\\\"status\\\":\\\"inactive\\\",\\\"role\\\":\\\"moderator\\\",\\\"age\\\":29,\\\"department\\\":\\\"Marketing\\\",\\\"salary\\\":75000,\\\"skills\\\":[\\\"Marketing\\\",\\\"SEO\\\",\\\"Analytics\\\"],\\\"last_login\\\":\\\"2023-12-20T09:15:00Z\\\"},{\\\"id\\\":4,\\\"name\\\":\\\"Diana Prince\\\",\\\"email\\\":\\\"diana@example.com\\\",\\\"status\\\":\\\"pending\\\",\\\"role\\\":\\\"admin\\\",\\\"age\\\":31,\\\"department\\\":\\\"Engineering\\\",\\\"salary\\\":120000,\\\"skills\\\":[\\\"JavaScript\\\",\\\"DevOps\\\",\\\"Kubernetes\\\"],\\\"last_login\\\":\\\"2024-01-16T08:00:00Z\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"Eve Wilson\\\",\\\"email\\\":\\\"eve@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"age\\\":26,\\\"department\\\":\\\"Design\\\",\\\"salary\\\":70000,\\\"skills\\\":[\\\"Design\\\",\\\"Figma\\\",\\\"Photoshop\\\"],\\\"last_login\\\":\\\"2024-01-15T14:20:00Z\\\"}],\\\"products\\\":[{\\\"id\\\":\\\"PROD-001\\\",\\\"name\\\":\\\"Premium Laptop\\\",\\\"price\\\":1299.99,\\\"category\\\":\\\"electronics\\\",\\\"brand\\\":\\\"TechCorp\\\",\\\"stock\\\":25,\\\"rating\\\":4.8,\\\"tags\\\":[\\\"premium\\\",\\\"laptop\\\",\\\"gaming\\\",\\\"high-performance\\\"]},{\\\"id\\\":\\\"PROD-002\\\",\\\"name\\\":\\\"Basic Mouse\\\",\\\"price\\\":19.99,\\\"category\\\":\\\"accessories\\\",\\\"brand\\\":\\\"BasicTech\\\",\\\"stock\\\":150,\\\"rating\\\":4.2,\\\"tags\\\":[\\\"basic\\\",\\\"mouse\\\",\\\"office\\\"]},{\\\"id\\\":\\\"PROD-003\\\",\\\"name\\\":\\\"Gaming Keyboard\\\",\\\"price\\\":129.99,\\\"category\\\":\\\"accessories\\\",\\\"brand\\\":\\\"GameTech\\\",\\\"stock\\\":50,\\\"rating\\\":4.6,\\\"tags\\\":[\\\"gaming\\\",\\\"keyboard\\\",\\\"rgb\\\",\\\"mechanical\\\"]},{\\\"id\\\":\\\"PROD-004\\\",\\\"name\\\":\\\"Professional Monitor\\\",\\\"price\\\":799.99,\\\"category\\\":\\\"electronics\\\",\\\"brand\\\":\\\"DisplayPro\\\",\\\"stock\\\":15,\\\"rating\\\":4.9,\\\"tags\\\":[\\\"professional\\\",\\\"monitor\\\",\\\"4k\\\",\\\"design\\\"]},{\\\"id\\\":\\\"PROD-005\\\",\\\"name\\\":\\\"Budget Headphones\\\",\\\"price\\\":39.99,\\\"category\\\":\\\"audio\\\",\\\"brand\\\":\\\"SoundBasic\\\",\\\"stock\\\":0,\\\"rating\\\":3.8,\\\"tags\\\":[\\\"budget\\\",\\\"headphones\\\",\\\"basic\\\"]}]}\",\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\": \"1999\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"operation\": \"filter_and_transform\",\n \"products\": [\n {\n \"brand\": \"TechCorp\",\n \"category\": \"electronics\",\n \"id\": \"PROD-001\",\n \"name\": \"Premium Laptop\",\n \"price\": 1299.99,\n \"rating\": 4.8,\n \"stock\": 25,\n \"tags\": [\n \"premium\",\n \"laptop\",\n \"gaming\",\n \"high-performance\"\n ]\n },\n {\n \"brand\": \"BasicTech\",\n \"category\": \"accessories\",\n \"id\": \"PROD-002\",\n \"name\": \"Basic Mouse\",\n \"price\": 19.99,\n \"rating\": 4.2,\n \"stock\": 150,\n \"tags\": [\n \"basic\",\n \"mouse\",\n \"office\"\n ]\n },\n {\n \"brand\": \"GameTech\",\n \"category\": \"accessories\",\n \"id\": \"PROD-003\",\n \"name\": \"Gaming Keyboard\",\n \"price\": 129.99,\n \"rating\": 4.6,\n \"stock\": 50,\n \"tags\": [\n \"gaming\",\n \"keyboard\",\n \"rgb\",\n \"mechanical\"\n ]\n },\n {\n \"brand\": \"DisplayPro\",\n \"category\": \"electronics\",\n \"id\": \"PROD-004\",\n \"name\": \"Professional Monitor\",\n \"price\": 799.99,\n \"rating\": 4.9,\n \"stock\": 15,\n \"tags\": [\n \"professional\",\n \"monitor\",\n \"4k\",\n \"design\"\n ]\n },\n {\n \"brand\": \"SoundBasic\",\n \"category\": \"audio\",\n \"id\": \"PROD-005\",\n \"name\": \"Budget Headphones\",\n \"price\": 39.99,\n \"rating\": 3.8,\n \"stock\": 0,\n \"tags\": [\n \"budget\",\n \"headphones\",\n \"basic\"\n ]\n }\n ],\n \"users\": [\n {\n \"age\": 28,\n \"department\": \"Engineering\",\n \"email\": \"alice@example.com\",\n \"id\": 1,\n \"last_login\": \"2024-01-15T10:30:00Z\",\n \"name\": \"Alice Johnson\",\n \"role\": \"admin\",\n \"salary\": 95000,\n \"skills\": [\n \"JavaScript\",\n \"Python\",\n \"Docker\"\n ],\n \"status\": \"active\"\n },\n {\n \"age\": 34,\n \"department\": \"Sales\",\n \"email\": \"bob@example.com\",\n \"id\": 2,\n \"last_login\": \"2024-01-14T15:45:00Z\",\n \"name\": \"Bob Smith\",\n \"role\": \"user\",\n \"salary\": 65000,\n \"skills\": [\n \"Sales\",\n \"CRM\",\n \"Excel\"\n ],\n \"status\": \"active\"\n },\n {\n \"age\": 29,\n \"department\": \"Marketing\",\n \"email\": \"charlie@example.com\",\n \"id\": 3,\n \"last_login\": \"2023-12-20T09:15:00Z\",\n \"name\": \"Charlie Brown\",\n \"role\": \"moderator\",\n \"salary\": 75000,\n \"skills\": [\n \"Marketing\",\n \"SEO\",\n \"Analytics\"\n ],\n \"status\": \"inactive\"\n },\n {\n \"age\": 31,\n \"department\": \"Engineering\",\n \"email\": \"diana@example.com\",\n \"id\": 4,\n \"last_login\": \"2024-01-16T08:00:00Z\",\n \"name\": \"Diana Prince\",\n \"role\": \"admin\",\n \"salary\": 120000,\n \"skills\": [\n \"JavaScript\",\n \"DevOps\",\n \"Kubernetes\"\n ],\n \"status\": \"pending\"\n },\n {\n \"age\": 26,\n \"department\": \"Design\",\n \"email\": \"eve@example.com\",\n \"id\": 5,\n \"last_login\": \"2024-01-15T14:20:00Z\",\n \"name\": \"Eve Wilson\",\n \"role\": \"user\",\n \"salary\": 70000,\n \"skills\": [\n \"Design\",\n \"Figma\",\n \"Photoshop\"\n ],\n \"status\": \"active\"\n }\n ]\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"active_users_formatted": [
{
"employee_id": 1,
"full_name": "Alice Johnson",
"contact": "alice@example.com",
"dept": "Engineering"
},
{
"employee_id": 2,
"full_name": "Bob Smith",
"contact": "bob@example.com",
"dept": "Sales"
},
{
"employee_id": 5,
"full_name": "Eve Wilson",
"contact": "eve@example.com",
"dept": "Design"
}
],
"premium_products_summary": [
{
"product_code": "PROD-001",
"title": "Premium Laptop",
"price_usd": 1299.99,
"availability": "In Stock"
},
{
"product_code": "PROD-003",
"title": "Gaming Keyboard",
"price_usd": 129.99,
"availability": "In Stock"
},
{
"product_code": "PROD-004",
"title": "Professional Monitor",
"price_usd": 799.99,
"availability": "In Stock"
}
]
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
}
},
{
"step_id": "step-10-advanced-filtering-scenarios",
"qualified_step_id": "array-filtering-examples::step-10-advanced-filtering-scenarios",
"step_name": "Advanced filtering scenarios",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"operation": "advanced_scenarios",
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
]
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"operation\":\"advanced_scenarios\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 1997\r\n\r\n{\"operation\":\"advanced_scenarios\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "6411",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"operation\":\"advanced_scenarios\",\"users\":[{\"id\":1,\"name\":\"Alice Johnson\",\"email\":\"alice@example.com\",\"status\":\"active\",\"role\":\"admin\",\"age\":28,\"department\":\"Engineering\",\"salary\":95000,\"skills\":[\"JavaScript\",\"Python\",\"Docker\"],\"last_login\":\"2024-01-15T10:30:00Z\"},{\"id\":2,\"name\":\"Bob Smith\",\"email\":\"bob@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":34,\"department\":\"Sales\",\"salary\":65000,\"skills\":[\"Sales\",\"CRM\",\"Excel\"],\"last_login\":\"2024-01-14T15:45:00Z\"},{\"id\":3,\"name\":\"Charlie Brown\",\"email\":\"charlie@example.com\",\"status\":\"inactive\",\"role\":\"moderator\",\"age\":29,\"department\":\"Marketing\",\"salary\":75000,\"skills\":[\"Marketing\",\"SEO\",\"Analytics\"],\"last_login\":\"2023-12-20T09:15:00Z\"},{\"id\":4,\"name\":\"Diana Prince\",\"email\":\"diana@example.com\",\"status\":\"pending\",\"role\":\"admin\",\"age\":31,\"department\":\"Engineering\",\"salary\":120000,\"skills\":[\"JavaScript\",\"DevOps\",\"Kubernetes\"],\"last_login\":\"2024-01-16T08:00:00Z\"},{\"id\":5,\"name\":\"Eve Wilson\",\"email\":\"eve@example.com\",\"status\":\"active\",\"role\":\"user\",\"age\":26,\"department\":\"Design\",\"salary\":70000,\"skills\":[\"Design\",\"Figma\",\"Photoshop\"],\"last_login\":\"2024-01-15T14:20:00Z\"}],\"products\":[{\"id\":\"PROD-001\",\"name\":\"Premium Laptop\",\"price\":1299.99,\"category\":\"electronics\",\"brand\":\"TechCorp\",\"stock\":25,\"rating\":4.8,\"tags\":[\"premium\",\"laptop\",\"gaming\",\"high-performance\"]},{\"id\":\"PROD-002\",\"name\":\"Basic Mouse\",\"price\":19.99,\"category\":\"accessories\",\"brand\":\"BasicTech\",\"stock\":150,\"rating\":4.2,\"tags\":[\"basic\",\"mouse\",\"office\"]},{\"id\":\"PROD-003\",\"name\":\"Gaming Keyboard\",\"price\":129.99,\"category\":\"accessories\",\"brand\":\"GameTech\",\"stock\":50,\"rating\":4.6,\"tags\":[\"gaming\",\"keyboard\",\"rgb\",\"mechanical\"]},{\"id\":\"PROD-004\",\"name\":\"Professional Monitor\",\"price\":799.99,\"category\":\"electronics\",\"brand\":\"DisplayPro\",\"stock\":15,\"rating\":4.9,\"tags\":[\"professional\",\"monitor\",\"4k\",\"design\"]},{\"id\":\"PROD-005\",\"name\":\"Budget Headphones\",\"price\":39.99,\"category\":\"audio\",\"brand\":\"SoundBasic\",\"stock\":0,\"rating\":3.8,\"tags\":[\"budget\",\"headphones\",\"basic\"]}]}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "1997",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"operation": "advanced_scenarios",
"products": [
{
"brand": "TechCorp",
"category": "electronics",
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"rating": 4.8,
"stock": 25,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"brand": "BasicTech",
"category": "accessories",
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"rating": 4.2,
"stock": 150,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"brand": "GameTech",
"category": "accessories",
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6,
"stock": 50,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"brand": "DisplayPro",
"category": "electronics",
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9,
"stock": 15,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"brand": "SoundBasic",
"category": "audio",
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"rating": 3.8,
"stock": 0,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 29,
"department": "Marketing",
"email": "charlie@example.com",
"id": 3,
"last_login": "2023-12-20T09:15:00Z",
"name": "Charlie Brown",
"role": "moderator",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"status": "inactive"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
]
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 4682,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 6411\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"operation\\\":\\\"advanced_scenarios\\\",\\\"users\\\":[{\\\"id\\\":1,\\\"name\\\":\\\"Alice Johnson\\\",\\\"email\\\":\\\"alice@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"admin\\\",\\\"age\\\":28,\\\"department\\\":\\\"Engineering\\\",\\\"salary\\\":95000,\\\"skills\\\":[\\\"JavaScript\\\",\\\"Python\\\",\\\"Docker\\\"],\\\"last_login\\\":\\\"2024-01-15T10:30:00Z\\\"},{\\\"id\\\":2,\\\"name\\\":\\\"Bob Smith\\\",\\\"email\\\":\\\"bob@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"age\\\":34,\\\"department\\\":\\\"Sales\\\",\\\"salary\\\":65000,\\\"skills\\\":[\\\"Sales\\\",\\\"CRM\\\",\\\"Excel\\\"],\\\"last_login\\\":\\\"2024-01-14T15:45:00Z\\\"},{\\\"id\\\":3,\\\"name\\\":\\\"Charlie Brown\\\",\\\"email\\\":\\\"charlie@example.com\\\",\\\"status\\\":\\\"inactive\\\",\\\"role\\\":\\\"moderator\\\",\\\"age\\\":29,\\\"department\\\":\\\"Marketing\\\",\\\"salary\\\":75000,\\\"skills\\\":[\\\"Marketing\\\",\\\"SEO\\\",\\\"Analytics\\\"],\\\"last_login\\\":\\\"2023-12-20T09:15:00Z\\\"},{\\\"id\\\":4,\\\"name\\\":\\\"Diana Prince\\\",\\\"email\\\":\\\"diana@example.com\\\",\\\"status\\\":\\\"pending\\\",\\\"role\\\":\\\"admin\\\",\\\"age\\\":31,\\\"department\\\":\\\"Engineering\\\",\\\"salary\\\":120000,\\\"skills\\\":[\\\"JavaScript\\\",\\\"DevOps\\\",\\\"Kubernetes\\\"],\\\"last_login\\\":\\\"2024-01-16T08:00:00Z\\\"},{\\\"id\\\":5,\\\"name\\\":\\\"Eve Wilson\\\",\\\"email\\\":\\\"eve@example.com\\\",\\\"status\\\":\\\"active\\\",\\\"role\\\":\\\"user\\\",\\\"age\\\":26,\\\"department\\\":\\\"Design\\\",\\\"salary\\\":70000,\\\"skills\\\":[\\\"Design\\\",\\\"Figma\\\",\\\"Photoshop\\\"],\\\"last_login\\\":\\\"2024-01-15T14:20:00Z\\\"}],\\\"products\\\":[{\\\"id\\\":\\\"PROD-001\\\",\\\"name\\\":\\\"Premium Laptop\\\",\\\"price\\\":1299.99,\\\"category\\\":\\\"electronics\\\",\\\"brand\\\":\\\"TechCorp\\\",\\\"stock\\\":25,\\\"rating\\\":4.8,\\\"tags\\\":[\\\"premium\\\",\\\"laptop\\\",\\\"gaming\\\",\\\"high-performance\\\"]},{\\\"id\\\":\\\"PROD-002\\\",\\\"name\\\":\\\"Basic Mouse\\\",\\\"price\\\":19.99,\\\"category\\\":\\\"accessories\\\",\\\"brand\\\":\\\"BasicTech\\\",\\\"stock\\\":150,\\\"rating\\\":4.2,\\\"tags\\\":[\\\"basic\\\",\\\"mouse\\\",\\\"office\\\"]},{\\\"id\\\":\\\"PROD-003\\\",\\\"name\\\":\\\"Gaming Keyboard\\\",\\\"price\\\":129.99,\\\"category\\\":\\\"accessories\\\",\\\"brand\\\":\\\"GameTech\\\",\\\"stock\\\":50,\\\"rating\\\":4.6,\\\"tags\\\":[\\\"gaming\\\",\\\"keyboard\\\",\\\"rgb\\\",\\\"mechanical\\\"]},{\\\"id\\\":\\\"PROD-004\\\",\\\"name\\\":\\\"Professional Monitor\\\",\\\"price\\\":799.99,\\\"category\\\":\\\"electronics\\\",\\\"brand\\\":\\\"DisplayPro\\\",\\\"stock\\\":15,\\\"rating\\\":4.9,\\\"tags\\\":[\\\"professional\\\",\\\"monitor\\\",\\\"4k\\\",\\\"design\\\"]},{\\\"id\\\":\\\"PROD-005\\\",\\\"name\\\":\\\"Budget Headphones\\\",\\\"price\\\":39.99,\\\"category\\\":\\\"audio\\\",\\\"brand\\\":\\\"SoundBasic\\\",\\\"stock\\\":0,\\\"rating\\\":3.8,\\\"tags\\\":[\\\"budget\\\",\\\"headphones\\\",\\\"basic\\\"]}]}\",\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\": \"1997\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"operation\": \"advanced_scenarios\",\n \"products\": [\n {\n \"brand\": \"TechCorp\",\n \"category\": \"electronics\",\n \"id\": \"PROD-001\",\n \"name\": \"Premium Laptop\",\n \"price\": 1299.99,\n \"rating\": 4.8,\n \"stock\": 25,\n \"tags\": [\n \"premium\",\n \"laptop\",\n \"gaming\",\n \"high-performance\"\n ]\n },\n {\n \"brand\": \"BasicTech\",\n \"category\": \"accessories\",\n \"id\": \"PROD-002\",\n \"name\": \"Basic Mouse\",\n \"price\": 19.99,\n \"rating\": 4.2,\n \"stock\": 150,\n \"tags\": [\n \"basic\",\n \"mouse\",\n \"office\"\n ]\n },\n {\n \"brand\": \"GameTech\",\n \"category\": \"accessories\",\n \"id\": \"PROD-003\",\n \"name\": \"Gaming Keyboard\",\n \"price\": 129.99,\n \"rating\": 4.6,\n \"stock\": 50,\n \"tags\": [\n \"gaming\",\n \"keyboard\",\n \"rgb\",\n \"mechanical\"\n ]\n },\n {\n \"brand\": \"DisplayPro\",\n \"category\": \"electronics\",\n \"id\": \"PROD-004\",\n \"name\": \"Professional Monitor\",\n \"price\": 799.99,\n \"rating\": 4.9,\n \"stock\": 15,\n \"tags\": [\n \"professional\",\n \"monitor\",\n \"4k\",\n \"design\"\n ]\n },\n {\n \"brand\": \"SoundBasic\",\n \"category\": \"audio\",\n \"id\": \"PROD-005\",\n \"name\": \"Budget Headphones\",\n \"price\": 39.99,\n \"rating\": 3.8,\n \"stock\": 0,\n \"tags\": [\n \"budget\",\n \"headphones\",\n \"basic\"\n ]\n }\n ],\n \"users\": [\n {\n \"age\": 28,\n \"department\": \"Engineering\",\n \"email\": \"alice@example.com\",\n \"id\": 1,\n \"last_login\": \"2024-01-15T10:30:00Z\",\n \"name\": \"Alice Johnson\",\n \"role\": \"admin\",\n \"salary\": 95000,\n \"skills\": [\n \"JavaScript\",\n \"Python\",\n \"Docker\"\n ],\n \"status\": \"active\"\n },\n {\n \"age\": 34,\n \"department\": \"Sales\",\n \"email\": \"bob@example.com\",\n \"id\": 2,\n \"last_login\": \"2024-01-14T15:45:00Z\",\n \"name\": \"Bob Smith\",\n \"role\": \"user\",\n \"salary\": 65000,\n \"skills\": [\n \"Sales\",\n \"CRM\",\n \"Excel\"\n ],\n \"status\": \"active\"\n },\n {\n \"age\": 29,\n \"department\": \"Marketing\",\n \"email\": \"charlie@example.com\",\n \"id\": 3,\n \"last_login\": \"2023-12-20T09:15:00Z\",\n \"name\": \"Charlie Brown\",\n \"role\": \"moderator\",\n \"salary\": 75000,\n \"skills\": [\n \"Marketing\",\n \"SEO\",\n \"Analytics\"\n ],\n \"status\": \"inactive\"\n },\n {\n \"age\": 31,\n \"department\": \"Engineering\",\n \"email\": \"diana@example.com\",\n \"id\": 4,\n \"last_login\": \"2024-01-16T08:00:00Z\",\n \"name\": \"Diana Prince\",\n \"role\": \"admin\",\n \"salary\": 120000,\n \"skills\": [\n \"JavaScript\",\n \"DevOps\",\n \"Kubernetes\"\n ],\n \"status\": \"pending\"\n },\n {\n \"age\": 26,\n \"department\": \"Design\",\n \"email\": \"eve@example.com\",\n \"id\": 5,\n \"last_login\": \"2024-01-15T14:20:00Z\",\n \"name\": \"Eve Wilson\",\n \"role\": \"user\",\n \"salary\": 70000,\n \"skills\": [\n \"Design\",\n \"Figma\",\n \"Photoshop\"\n ],\n \"status\": \"active\"\n }\n ]\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"recent_users": [
{
"age": 28,
"department": "Engineering",
"email": "alice@example.com",
"id": 1,
"last_login": "2024-01-15T10:30:00Z",
"name": "Alice Johnson",
"role": "admin",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"status": "active"
},
{
"age": 34,
"department": "Sales",
"email": "bob@example.com",
"id": 2,
"last_login": "2024-01-14T15:45:00Z",
"name": "Bob Smith",
"role": "user",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"status": "active"
},
{
"age": 31,
"department": "Engineering",
"email": "diana@example.com",
"id": 4,
"last_login": "2024-01-16T08:00:00Z",
"name": "Diana Prince",
"role": "admin",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"status": "pending"
},
{
"age": 26,
"department": "Design",
"email": "eve@example.com",
"id": 5,
"last_login": "2024-01-15T14:20:00Z",
"name": "Eve Wilson",
"role": "user",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"status": "active"
}
],
"eng_js_users": [
{
"name": "Alice Johnson",
"skills": [
"JavaScript",
"Python",
"Docker"
]
},
{
"name": "Diana Prince",
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
]
}
],
"products_by_brand": [
{
"brand": "TechCorp",
"product": "Premium Laptop",
"stock_status": 25
},
{
"brand": "GameTech",
"product": "Gaming Keyboard",
"stock_status": 50
}
],
"available_quality_products": [
{
"name": "Basic Mouse",
"price": 19.99,
"rating": 4.2
},
{
"name": "Gaming Keyboard",
"price": 129.99,
"rating": 4.6
},
{
"name": "Professional Monitor",
"price": 799.99,
"rating": 4.9
}
]
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
}
},
{
"step_id": "step-11-filtering-examples-summary",
"qualified_step_id": "array-filtering-examples::step-11-filtering-examples-summary",
"step_name": "Filtering examples summary",
"status": "success",
"duration_ms": 2,
"request_details": {
"method": "POST",
"url": "/post",
"headers": {
"Content-Type": "application/json"
},
"body": {
"test_summary": "array_filtering_examples",
"filter_types_demonstrated": [
"status_filtering",
"numeric_range_filtering",
"string_pattern_filtering",
"array_content_filtering",
"multi_condition_filtering",
"tag_based_filtering",
"simple_array_filtering",
"transformation_filtering",
"advanced_scenarios"
],
"total_examples": 10
},
"base_url": "http://httpbin",
"full_url": "http://httpbin/post",
"curl_command": "curl -X POST -H 'Content-Type: application/json' -d '{\"test_summary\":\"array_filtering_examples\",\"filter_types_demonstrated\":[\"status_filtering\",\"numeric_range_filtering\",\"string_pattern_filtering\",\"array_content_filtering\",\"multi_condition_filtering\",\"tag_based_filtering\",\"simple_array_filtering\",\"transformation_filtering\",\"advanced_scenarios\"],\"total_examples\":10}' \"http://httpbin/post\"",
"raw_request": "POST /post HTTP/1.1\r\nHost: httpbin\r\nContent-Type: application/json\r\nContent-Length: 314\r\n\r\n{\"test_summary\":\"array_filtering_examples\",\"filter_types_demonstrated\":[\"status_filtering\",\"numeric_range_filtering\",\"string_pattern_filtering\",\"array_content_filtering\",\"multi_condition_filtering\",\"tag_based_filtering\",\"simple_array_filtering\",\"transformation_filtering\",\"advanced_scenarios\"],\"total_examples\":10}",
"raw_url": "{{base_url}}/post"
},
"response_details": {
"status_code": 200,
"headers": {
"server": "gunicorn/19.9.0",
"date": "Sun, 19 Oct 2025 10:28:39 GMT",
"connection": "keep-alive",
"content-type": "application/json",
"content-length": "1178",
"access-control-allow-origin": "*",
"access-control-allow-credentials": "true"
},
"body": {
"args": {},
"data": "{\"test_summary\":\"array_filtering_examples\",\"filter_types_demonstrated\":[\"status_filtering\",\"numeric_range_filtering\",\"string_pattern_filtering\",\"array_content_filtering\",\"multi_condition_filtering\",\"tag_based_filtering\",\"simple_array_filtering\",\"transformation_filtering\",\"advanced_scenarios\"],\"total_examples\":10}",
"files": {},
"form": {},
"headers": {
"Accept": "application/json, text/plain, */*",
"Accept-Encoding": "gzip, compress, deflate, br",
"Connection": "keep-alive",
"Content-Length": "314",
"Content-Type": "application/json",
"Host": "httpbin",
"User-Agent": "axios/1.12.1"
},
"json": {
"filter_types_demonstrated": [
"status_filtering",
"numeric_range_filtering",
"string_pattern_filtering",
"array_content_filtering",
"multi_condition_filtering",
"tag_based_filtering",
"simple_array_filtering",
"transformation_filtering",
"advanced_scenarios"
],
"test_summary": "array_filtering_examples",
"total_examples": 10
},
"origin": "172.18.0.3",
"url": "http://httpbin/post"
},
"size_bytes": 987,
"raw_response": "HTTP/1.1 200 OK\r\nserver: gunicorn/19.9.0\r\ndate: Sun, 19 Oct 2025 10:28:39 GMT\r\nconnection: keep-alive\r\ncontent-type: application/json\r\ncontent-length: 1178\r\naccess-control-allow-origin: *\r\naccess-control-allow-credentials: true\r\n\r\n{\n \"args\": {},\n \"data\": \"{\\\"test_summary\\\":\\\"array_filtering_examples\\\",\\\"filter_types_demonstrated\\\":[\\\"status_filtering\\\",\\\"numeric_range_filtering\\\",\\\"string_pattern_filtering\\\",\\\"array_content_filtering\\\",\\\"multi_condition_filtering\\\",\\\"tag_based_filtering\\\",\\\"simple_array_filtering\\\",\\\"transformation_filtering\\\",\\\"advanced_scenarios\\\"],\\\"total_examples\\\":10}\",\n \"files\": {},\n \"form\": {},\n \"headers\": {\n \"Accept\": \"application/json, text/plain, */*\",\n \"Accept-Encoding\": \"gzip, compress, deflate, br\",\n \"Connection\": \"keep-alive\",\n \"Content-Length\": \"314\",\n \"Content-Type\": \"application/json\",\n \"Host\": \"httpbin\",\n \"User-Agent\": \"axios/1.12.1\"\n },\n \"json\": {\n \"filter_types_demonstrated\": [\n \"status_filtering\",\n \"numeric_range_filtering\",\n \"string_pattern_filtering\",\n \"array_content_filtering\",\n \"multi_condition_filtering\",\n \"tag_based_filtering\",\n \"simple_array_filtering\",\n \"transformation_filtering\",\n \"advanced_scenarios\"\n ],\n \"test_summary\": \"array_filtering_examples\",\n \"total_examples\": 10\n },\n \"origin\": \"172.18.0.3\",\n \"url\": \"http://httpbin/post\"\n}"
},
"assertions_results": [
{
"field": "status_code",
"expected": 200,
"actual": 200,
"passed": true,
"message": "OK"
}
],
"captured_variables": {
"filtering_results": {
"filter_types_demonstrated": [
"status_filtering",
"numeric_range_filtering",
"string_pattern_filtering",
"array_content_filtering",
"multi_condition_filtering",
"tag_based_filtering",
"simple_array_filtering",
"transformation_filtering",
"advanced_scenarios"
],
"test_summary": "array_filtering_examples",
"total_examples": 10
},
"query_examples": [
"status_filtering",
"numeric_range_filtering",
"string_pattern_filtering",
"array_content_filtering",
"multi_condition_filtering",
"tag_based_filtering",
"simple_array_filtering",
"transformation_filtering",
"advanced_scenarios"
]
},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
}
}
],
"variables_captured": {},
"available_variables": {
"api_base_url": "http://localhost:8080",
"test_users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"status": "active",
"role": "admin",
"age": 28,
"department": "Engineering",
"salary": 95000,
"skills": [
"JavaScript",
"Python",
"Docker"
],
"last_login": "2024-01-15T10:30:00Z"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"status": "active",
"role": "user",
"age": 34,
"department": "Sales",
"salary": 65000,
"skills": [
"Sales",
"CRM",
"Excel"
],
"last_login": "2024-01-14T15:45:00Z"
},
{
"id": 3,
"name": "Charlie Brown",
"email": "charlie@example.com",
"status": "inactive",
"role": "moderator",
"age": 29,
"department": "Marketing",
"salary": 75000,
"skills": [
"Marketing",
"SEO",
"Analytics"
],
"last_login": "2023-12-20T09:15:00Z"
},
{
"id": 4,
"name": "Diana Prince",
"email": "diana@example.com",
"status": "pending",
"role": "admin",
"age": 31,
"department": "Engineering",
"salary": 120000,
"skills": [
"JavaScript",
"DevOps",
"Kubernetes"
],
"last_login": "2024-01-16T08:00:00Z"
},
{
"id": 5,
"name": "Eve Wilson",
"email": "eve@example.com",
"status": "active",
"role": "user",
"age": 26,
"department": "Design",
"salary": 70000,
"skills": [
"Design",
"Figma",
"Photoshop"
],
"last_login": "2024-01-15T14:20:00Z"
}
],
"test_products": [
{
"id": "PROD-001",
"name": "Premium Laptop",
"price": 1299.99,
"category": "electronics",
"brand": "TechCorp",
"stock": 25,
"rating": 4.8,
"tags": [
"premium",
"laptop",
"gaming",
"high-performance"
]
},
{
"id": "PROD-002",
"name": "Basic Mouse",
"price": 19.99,
"category": "accessories",
"brand": "BasicTech",
"stock": 150,
"rating": 4.2,
"tags": [
"basic",
"mouse",
"office"
]
},
{
"id": "PROD-003",
"name": "Gaming Keyboard",
"price": 129.99,
"category": "accessories",
"brand": "GameTech",
"stock": 50,
"rating": 4.6,
"tags": [
"gaming",
"keyboard",
"rgb",
"mechanical"
]
},
{
"id": "PROD-004",
"name": "Professional Monitor",
"price": 799.99,
"category": "electronics",
"brand": "DisplayPro",
"stock": 15,
"rating": 4.9,
"tags": [
"professional",
"monitor",
"4k",
"design"
]
},
{
"id": "PROD-005",
"name": "Budget Headphones",
"price": 39.99,
"category": "audio",
"brand": "SoundBasic",
"stock": 0,
"rating": 3.8,
"tags": [
"budget",
"headphones",
"basic"
]
}
],
"auth_flows_test.jwt_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.mock_payload",
"auth_flows_test.oauth2_access_token": "oauth2_access_token_xyz",
"auth_flows_test.user_permissions": [
"read",
"write"
],
"auth_flows_test.auth_flow_results": {
"jwt_authentication": {
"status": "{{jwt_login_success && jwt_valid && jwt_refresh_success ? 'success' : 'partial'}}",
"tokens_issued": 2,
"profile_access": "{{js: Boolean(variables.profile_fetch_success)}}"
},
"oauth2_authentication": {
"status": "{{oauth2_token_exchange_success && oauth2_resource_access ? 'success' : 'partial'}}",
"authorization_code_flow": "{{js: Boolean(variables.oauth2_auth_started)}}",
"token_management": "{{js: Boolean(variables.oauth2_token_revoked)}}"
},
"security_validation": {
"expired_tokens": "{{js: Boolean(variables.jwt_expired_handled)}}",
"revoked_tokens": "{{js: Boolean(variables.revoked_token_rejected)}}",
"permissions": "{{js: Boolean(variables.admin_permission_granted || variables.admin_permission_denied)}}"
},
"session_management": {
"logout_success": "{{js: Boolean(variables.complete_logout)}}",
"cleanup_complete": "{{js: Boolean(variables.all_tokens_revoked)}}"
}
},
"complex-workflows-test.workflow_results": {
"api_contract_validations": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"business_outcomes": {
"customer_id": "{{customer_id}}",
"items_purchased": 3,
"order_id": null,
"total_revenue": 594.96,
"transaction_id": null,
"workflow_completion": null
},
"ecommerce_workflow_results": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"end_to_end_success": true,
"microservices_communication": {
"inventory_service": null,
"notification_service": null
},
"test_summary": "complex_workflows_ecommerce_contracts",
"total_complex_workflow_tests": 13,
"workflow_patterns_tested": [
"customer_lifecycle_management",
"product_catalog_interaction",
"cart_and_checkout_process",
"payment_transaction_flow",
"order_fulfillment_pipeline",
"api_contract_validation",
"microservices_integration",
"end_to_end_business_process",
"workflow_analytics_tracking"
],
"workflow_test_id": "workflow-ce7a02af-3257-4a3b-b77e-2dad7569115e"
},
"complex-workflows-test.ecommerce_data": {
"cart_management": "success",
"catalog_browsing": null,
"customer_registration": null,
"fulfillment_initiated": null,
"order_created": null,
"payment_processed": null,
"product_details": null,
"promotions_applied": null,
"shipping_calculated": null
},
"complex-workflows-test.contract_validation_results": {
"order_service": null,
"payment_service": null,
"user_service": null
},
"auth.token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiYWRtaW4iOnRydWUsImlhdCI6MTUxNjIzOTAyMn0.KMUFsIDTnFmyG3nMiGM6H9FNFUROf3wh7SmqJp-QV30",
"input-capture-test.normalized_email": "John.Doe@Example.COM",
"input-capture-test.email_domain": "John.Doe@Example.COM",
"input-capture-test.full_name": "John Michael Doe",
"dependency-setup.auth_token": "test_user",
"dependency-setup.session_id": "172.18.0.3",
"dependency-setup.config_id": "v2",
"dependency-setup.setup_timestamp": true,
"comprehensive_basic.captured_echo_data": {
"action": "create_resource",
"metadata": {
"api_version": "v2.1",
"test_mode": true,
"timestamp": "2024-01-01T00:00:00Z"
},
"user_id": 12345,
"username": "flow_test_user"
},
"comprehensive_basic.generated_uuid": "httpbin",
"comprehensive_basic.final_status": "completed",
"javascript-expressions.js_calculated": 50,
"javascript-expressions.js_timestamp": 1760869717656,
"iteration-examples.users_tested": null,
"iteration-examples.range_test_summary": null,
"sensitive-data-security.security_test_passed": null,
"sensitive-data-security.sensitive_data_masked": null,
"sensitive-data-security.auth_tokens_secure": null,
"webhooks-realtime.webhook_delivered": true,
"webhooks-realtime.webhook_system_healthy": false,
"webhooks-realtime.event_user_id": "31b4e06a-4cf5-4af9-b89d-4c7d79e5e91e",
"webhooks-realtime.stream_event_count": 3,
"retry-logic-comprehensive.retry_attempts": 1,
"retry-logic-comprehensive.retry_system_functional": false,
"retry-logic-comprehensive.jittered_response_time": null,
"file-upload-multipart-test.upload_results": {
"content_types_tested": [
"text/plain",
"application/json",
"application/octet-stream",
"image/jpeg",
"application/pdf",
"video/mp4",
"multipart/form-data"
],
"test_id": "upload-6b89f201-e691-4ce2-ac53-a9d39aae657e",
"test_patterns": [
"single_file_upload",
"multiple_file_upload",
"large_file_handling",
"chunked_upload_process",
"upload_validation",
"error_handling",
"resume_functionality"
],
"test_summary": "file_upload_multipart_comprehensive",
"total_upload_tests": 12,
"upload_results": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"upload_scenarios_tested": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
]
},
"file-upload-multipart-test.multipart_data": {
"binary_upload": null,
"chunked_upload": null,
"image_upload": null,
"json_upload": null,
"large_file": null,
"mixed_form": null,
"multiple_upload": null,
"resume_upload": null,
"text_upload": null,
"validated_upload": null
},
"file-upload-multipart-test.file_handling_status": [
"text_file_upload",
"json_file_upload",
"binary_file_upload",
"image_file_upload",
"multiple_files_upload",
"mixed_form_data",
"large_file_upload",
"chunked_upload",
"validated_upload",
"error_scenarios",
"resume_upload"
],
"advanced-assertions-test.assertion_results": {
"assertion_types_tested": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"test_id": "assert-f27e4cec-c756-4dad-8a77-a4177723732c",
"test_patterns": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"test_summary": "advanced_assertions_comprehensive",
"total_assertion_tests": 11
},
"advanced-assertions-test.validation_data": {
"array_length": null,
"complex_nested": null,
"email_regex": null,
"length_exact": null,
"oneof_strings": null,
"phone_regex": null,
"type_validation": null,
"url_regex": null,
"uuid_regex": null
},
"advanced-assertions-test.regex_test_results": [
"regex_matching",
"length_validation",
"type_checking",
"oneof_validation",
"numeric_ranges",
"complex_nested",
"array_elements",
"conditional_exists",
"error_structure",
"performance_combined"
],
"advanced-retry-patterns.retry_results": {
"base_delay_ms": 1000,
"max_retries_configured": 3,
"patterns_tested": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"test_id": "retry-cd4a5b7a-ee7d-4084-be15-f5ddbce03d5a",
"test_summary": "advanced_retry_patterns",
"total_retry_tests": 12
},
"advanced-retry-patterns.backoff_measurements": [
"exponential_backoff",
"linear_backoff",
"fixed_delay",
"conditional_retry",
"no_retry_4xx",
"timeout_retry_combo",
"high_frequency",
"multi_condition",
"performance_tracking",
"retry_chain"
],
"environment-feature-flags-test.environment_results": {
"current_environment": null,
"deployment_stage": null,
"environment_configurations": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"environment_specific_tests": {
"development": "skipped",
"production": "skipped",
"staging": "skipped",
"test": "skipped"
},
"environment_urls": {
"development": "http://localhost:3000",
"production": "https://api.example.com",
"staging": "https://staging-api.example.com",
"test": "http://localhost:8080"
},
"feature_flag_results": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"feature_flags_tested": {
"advanced_analytics": null,
"api_v2": null,
"beta_program": null,
"debug_mode": null,
"experimental_features": null,
"new_ui": null
},
"test_environment": null,
"test_id": "env-9155d18f-ba99-4cfc-b367-9d2df87e67e9",
"test_patterns": [
"environment_detection",
"environment_specific_operations",
"feature_flag_conditional_execution",
"multi_environment_configuration",
"environment_based_data_handling",
"feature_flag_combinations"
],
"test_summary": "environment_feature_flags_comprehensive",
"total_environment_tests": 13
},
"environment-feature-flags-test.feature_flag_data": {
"advanced_analytics": "skipped",
"api_v2": "skipped",
"beta_program": "skipped",
"debug_mode": "skipped",
"experimental_features": "skipped",
"new_ui": "skipped"
},
"environment-feature-flags-test.multi_env_config": {
"development": {
"debug_logging": true,
"retry_attempts": 3,
"timeout": 30000
},
"production": {
"debug_logging": false,
"retry_attempts": 1,
"timeout": 5000
},
"staging": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 15000
},
"test": {
"debug_logging": false,
"retry_attempts": 2,
"timeout": 10000
}
},
"error-handling-test.error_handling_results": {
"error_handling_results": {
"bad_gateway": null,
"bad_request": null,
"chain_recovery": "error_recovery",
"cleanup_status": null,
"continue_after_failure": null,
"degradation_mode": null,
"fallback_service": null,
"forbidden": null,
"not_found": null,
"primary_service": null,
"rate_limit": null,
"server_error": null,
"service_unavailable": null,
"timeout_handling": "{{timeout_result}}",
"unauthorized": null
},
"error_scenarios_tested": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"http_status_codes_handled": [
400,
401,
403,
404,
422,
429,
500,
502,
503
],
"recovery_patterns": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"test_id": "error-afc8e2e9-ee8c-4d98-ace0-c04d982c7248",
"test_summary": "error_handling_comprehensive",
"total_error_tests": 10
},
"error-handling-test.failure_scenarios": [
"continue_on_failure",
"timeout_handling",
"http_error_codes",
"error_recovery_fallback",
"graceful_degradation",
"chain_failure_recovery",
"error_propagation",
"network_errors",
"cleanup_after_errors"
],
"error-handling-test.recovery_data": [
"fallback_services",
"graceful_degradation",
"error_chain_recovery",
"resource_cleanup"
],
"faker_demo.generatedEmail": "Brittany.Mitchell@yahoo.com",
"faker_demo.generatedUserId": 8456786969362432,
"httpbin-test.captured_username": "alpha_user",
"httpbin-test.auth_token": "httpbin",
"variable_cleanup_test.cleanup_verification_result": "cleanup_test_completed",
"variable_cleanup_test.variable_state_before": null,
"variable_cleanup_test.variable_state_after": null,
"environment-variables.env_user": null,
"environment-variables.env_home": null,
"environment-variables.env_test_passed": true,
"faker_comprehensive.generated_user_profile": "{\"user_profile\":{\"id\":\"d142fc31-094b-4a02-ac8f-34eef8f1a563\",\"first_name\":\"Price\",\"last_name\":\"Miller\",\"full_name\":\"Hilda Champlin-Bartoletti\",\"gender\":\"Non-binary\",\"email\":\"Travis.Reynolds@yahoo.com\",\"phone\":\"(415) 296-9932 x603\",\"website\":\"https://disgusting-overnighter.net/\",\"address\":{\"street\":\"7918 Franey Corner\",\"city\":\"Lake Lavonville\",\"state\":\"Massachusetts\",\"country\":\"Dominican Republic\",\"zip_code\":\"28571-7564\",\"latitude\":84.6382,\"longitude\":-114.4559},\"job\":{\"title\":\"Forward Metrics Specialist\",\"department\":\"Infrastructure\",\"company\":\"Kunde - Wiza\"},\"birth_date\":\"2002-12-18T08:44:01.690Z\",\"created_at\":\"2025-10-18T23:02:58.263Z\",\"last_login\":\"2025-10-18T13:29:57.870Z\",\"avatar\":\"https://avatars.githubusercontent.com/u/53642843\",\"bio\":\"Pecto vesco comes ademptio magni carbo ater cohors error. Solium temporibus territo adsidue adeo voluptates acervus. Porro talis audax curis angelus bene.\",\"username\":\"Herman.Schultz\"}}",
"faker_comprehensive.financial_data": "{\"financial_profile\":{\"account_number\":\"12447327\",\"routing_number\":\"763219866\",\"credit_card\":\"589328513943287374\",\"credit_card_cvv\":\"813\",\"amount\":\"249.92\",\"currency_code\":\"MMK\",\"currency_name\":\"Kwanza\",\"product\":{\"name\":\"Sleek Metal Chair\",\"description\":\"The Football Is Good For Training And Recreational Purposes\",\"price\":\"223.00\",\"department\":\"Games\",\"material\":\"Concrete\"},\"vehicle\":{\"manufacturer\":\"Nissan\",\"model\":\"LeBaron\",\"type\":\"SUV\",\"fuel\":\"Gasoline\",\"vin\":\"7RZ1HAK58HLY43020\"},\"transactions\":[{\"id\":\"42b7dde4-b5a7-47d7-b083-39bd8086b251\",\"amount\":\"535.30\",\"description\":\"Oriental Plastic Keyboard\",\"date\":\"2025-10-19T00:46:57.126Z\"},{\"id\":\"cace6760-9036-4f28-9dd4-8c0f021d8938\",\"amount\":\"4.03\",\"description\":\"Rustic Bronze Pants\",\"date\":\"2025-10-19T01:05:28.532Z\"}]}}",
"faker_comprehensive.validation_results": "{\"validation_test\":{\"emails\":[\"Danial.Kuvalis92@gmail.com\",\"Norris10@gmail.com\",\"Skye_Botsford@yahoo.com\"],\"uuids\":[\"cf9f3379-5dda-43c5-85fd-13d27166aa1c\",\"73f5a9b1-f413-49a6-b6a2-5e04f6799cee\",\"2983168d-4f9c-4459-9c9e-9e4596edfecf\"],\"phone_numbers\":[\"1-602-444-4075 x042\",\"315.724.2578 x458\",\"378.818.4888\"],\"dates\":{\"past\":\"2025-02-03T16:02:52.736Z\",\"future\":\"2026-03-24T09:50:29.661Z\",\"recent\":\"2025-10-18T14:32:08.117Z\",\"birthdate\":\"2004-02-26T05:37:41.794Z\"},\"consistent_data\":{\"name1\":\"Ms. Kristen Kris\",\"name2\":\"Rodney Lang\",\"email1\":\"Antoinette19@gmail.com\",\"email2\":\"Ewald_Hodkiewicz84@gmail.com\"}}}",
"variable_interpolation.captured_user_data": null,
"variable_interpolation.extracted_numbers": null,
"variable_interpolation.processed_array": null,
"variable_interpolation.nested_extraction": null,
"variable_interpolation.final_computed_value": null,
"complex_scenarios_test.user_access_matrix": {
"guest_valid": false,
"registered_valid": false,
"premium_valid": false,
"admin_valid": false
},
"complex_scenarios_test.scenario_results": {
"guest_scenario": "not_tested",
"registered_scenario": "not_tested",
"premium_scenario": "not_tested",
"admin_scenario": "not_tested",
"cross_validation": "not_tested"
},
"complex_scenarios_test.conditional_flow_summary": {
"total_scenarios": 6,
"conditions_tested": 12,
"user_types_validated": 4,
"matrix_validation": false,
"test_complete": true
},
"integration_full.e2e_test_summary": {
"generated_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"imported_flows": {
"auth": {
"token_present": true,
"user_authenticated": true
},
"setup": {
"environment": "integration",
"session_active": true
}
},
"performance": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"test_summary": {
"all_steps_completed": true,
"environment": "integration",
"initialization": true,
"test_id": "INTEG_001"
}
},
"integration_full.performance_metrics": {
"crud_performance": "excellent",
"crud_success": true,
"performance_rating": "excellent",
"performance_score": 100
},
"integration_full.user_journey_data": {
"active_user_count": "length(2)",
"test_user": null,
"total_transactions": 10,
"total_users_processed": 5
},
"integration_full.final_validation_result": "all_tests_passed",
"advanced_scenarios.auth_status": "authenticated",
"advanced_scenarios.performance_rating": "excellent",
"advanced_scenarios.error_count": 1,
"advanced_scenarios.final_scenario_result": "partial_success",
"file_upload_test.file_id": "FILE-12345",
"file_upload_test.upload_metadata": {
"original_filename": "test_document.pdf",
"file_size": 256000,
"upload_time": "2024-01-01T10:00:00Z",
"file_id": "{{file_id}}"
},
"file_upload_test.file_operations_summary": {
"total_operations": 7,
"upload_success": true,
"download_success": true,
"integrity_verified": true,
"deletion_confirmed": true,
"supported_formats_count": 4
},
"interactive-input-examples.selected_user_data": "user_001",
"interactive-input-examples.user_action_result": "view_activity",
"interactive-input-examples.final_config": {
"action_performed": "view_activity",
"batch_size": 10,
"execution_metadata": {
"confirmed": null,
"reason": "{{action_reason}}",
"test_run": true,
"timestamp": "2024-01-15T12:00:00Z"
},
"notification_settings": {
"email": "admin@company.com",
"webhook": "{{webhook_url}}"
},
"selected_user": "user_001"
},
"faker-advanced-integration.generated_email": "Kylie.Hayes39@gmail.com",
"faker-advanced-integration.generated_name": "Jeffery Romaguera",
"faker-advanced-integration.generated_city": "Coral Springs",
"faker-advanced-integration.generated_company": "Emmerich, Wolf and Little",
"faker-advanced-integration.locale_name": "Gail Ward",
"microservices_integration_test.service_health_status": {
"pre_transaction": "{{all_services_up}}",
"post_transaction": "{{post_transaction_health}}",
"degradation_detected": "false"
},
"microservices_integration_test.integration_results": {
"transaction_success": "{{payment_approved && order_updated && notification_sent}}",
"services_coordination": "successful",
"data_propagation": "{{all_services_consistent ? 'complete' : 'partial'}}",
"error_handling": "{{js: (variables.rollback_initiated || variables.rollback_failed) ? 'tested' : 'not_applicable'}}"
},
"microservices_integration_test.transaction_trace": {
"trace_id": "{{tracing_headers.trace_id}}",
"correlation_id": "{{tracing_headers.correlation_id}}",
"total_steps": 12,
"execution_time": "{{js: Math.floor(Math.random() * 5000) + 2000}}ms",
"service_calls": 11,
"cross_service_calls": 6
},
"microservices_integration_test.service_dependencies": [
{
"service": "user-service",
"dependencies": [],
"dependents": [
"order-service",
"notification-service"
]
},
{
"service": "inventory-service",
"dependencies": [],
"dependents": [
"order-service"
]
},
{
"service": "order-service",
"dependencies": [
"user-service",
"inventory-service"
],
"dependents": [
"payment-service",
"notification-service"
]
},
{
"service": "payment-service",
"dependencies": [
"order-service"
],
"dependents": [
"order-service",
"inventory-service"
]
},
{
"service": "notification-service",
"dependencies": [
"user-service",
"order-service"
],
"dependents": []
}
],
"microservices_integration_test.payment_approved": "true",
"performance_test.performance_metrics": {
"response_time_analysis": {
"fastest": "{{js: Math.min(variables.baseline_response_time, variables.small_payload_time, variables.json_endpoint_time)}}ms",
"slowest": "{{js: Math.max(variables.medium_payload_time, variables.large_payload_time)}}ms",
"average": "{{js: Math.round((variables.baseline_response_time + variables.small_payload_time + variables.medium_payload_time + variables.large_payload_time) / 4)}}ms"
},
"load_test_results": {
"light_load_success": "{{light_load_success}}",
"medium_load_degradation": "{{medium_load_degradation}}",
"heavy_load_stability": "{{js: Boolean(variables.system_stable_under_load)}}",
"load_shedding": "{{js: Boolean(variables.load_shedding_active)}}"
},
"performance_thresholds": {
"baseline_met": "{{baseline_success}}",
"acceptable_met": "{{small_payload_success && medium_payload_success}}",
"critical_met": "{{large_payload_success}}"
},
"system_characteristics": {
"payload_sensitivity": "{{js: variables.large_payload_time > variables.baseline_response_time * 3 ? 'high' : variables.large_payload_time > variables.baseline_response_time * 2 ? 'medium' : 'low'}}",
"load_tolerance": "{{system_overloaded ? 'low' : medium_load_degradation ? 'medium' : 'high'}}",
"timeout_behavior": "{{js: (variables.timeout_handled_correctly || variables.timeout_occurred) ? 'correct' : 'untested'}}"
}
},
"performance_test.response_times": [
{
"endpoint": "baseline_get",
"time": "{{baseline_response_time}}",
"grade": "{{baseline_performance_grade}}"
},
{
"endpoint": "small_payload_post",
"time": "{{small_payload_time}}",
"success": "{{small_payload_success}}"
},
{
"endpoint": "medium_payload_post",
"time": "{{medium_payload_time}}",
"success": "{{medium_payload_success}}"
},
{
"endpoint": "large_payload_post",
"time": "{{large_payload_time}}",
"success": "{{large_payload_success}}"
}
],
"performance_test.throughput_results": {
"baseline_rps": "{{requests_per_second}}",
"performance_comparison": "{{performance_comparison}}",
"degradation_under_load": "{{medium_load_degradation}}"
},
"performance_test.load_test_summary": {
"total_scenarios_tested": 3,
"light_load_result": "{{light_load_success ? 'passed' : 'failed'}}",
"medium_load_result": "{{medium_load_degradation ? 'degraded' : 'stable'}}",
"heavy_load_result": "{{system_overloaded ? 'overloaded' : system_stable_under_load ? 'stable' : 'unknown'}}",
"overall_stability": "{{system_stable_under_load && !system_overloaded ? 'good' : 'needs_attention'}}"
},
"data-formatting-examples.formatted_data": {
"test_summary": "data_formatting_examples",
"total_examples": 9,
"transformations_applied": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
]
},
"data-formatting-examples.transformation_results": [
"essential_field_extraction",
"summary_reports",
"catalog_views",
"hierarchical_transformation",
"csv_formatting",
"api_response_formatting",
"conditional_formatting"
],
"dynamic-test-generation.generated_users": null,
"dynamic-test-generation.dynamic_endpoints_tested": null,
"dynamic-test-generation.test_summary": null,
"parallel-execution.parallel_execution_effective": true,
"parallel-execution.req1_duration": null,
"parallel-execution.req2_duration": null,
"parallel-execution.req3_duration": null
},
"suite_yaml_content": "suite_name: \"Array Filtering and Query Examples\"\nnode_id: \"array-filtering-examples\"\ndescription: \"Comprehensive examples of filtering arrays using JMESPath queries, including object arrays, simple arrays, and complex conditional filtering\"\nbase_url: \"{{httpbin_url}}\"\n\nmetadata:\n priority: \"medium\"\n tags: [\"filtering\", \"arrays\", \"jmespath\", \"queries\", \"conditions\"]\n estimated_duration_ms: 10000\n\nvariables:\n # Test data: Users with various statuses and attributes\n test_users:\n - id: 1\n name: \"Alice Johnson\"\n email: \"alice@example.com\"\n status: \"active\"\n role: \"admin\"\n age: 28\n department: \"Engineering\"\n salary: 95000\n skills: [\"JavaScript\", \"Python\", \"Docker\"]\n last_login: \"2024-01-15T10:30:00Z\"\n - id: 2\n name: \"Bob Smith\"\n email: \"bob@example.com\"\n status: \"active\"\n role: \"user\"\n age: 34\n department: \"Sales\"\n salary: 65000\n skills: [\"Sales\", \"CRM\", \"Excel\"]\n last_login: \"2024-01-14T15:45:00Z\"\n - id: 3\n name: \"Charlie Brown\"\n email: \"charlie@example.com\"\n status: \"inactive\"\n role: \"moderator\"\n age: 29\n department: \"Marketing\"\n salary: 75000\n skills: [\"Marketing\", \"SEO\", \"Analytics\"]\n last_login: \"2023-12-20T09:15:00Z\"\n - id: 4\n name: \"Diana Prince\"\n email: \"diana@example.com\"\n status: \"pending\"\n role: \"admin\"\n age: 31\n department: \"Engineering\"\n salary: 120000\n skills: [\"JavaScript\", \"DevOps\", \"Kubernetes\"]\n last_login: \"2024-01-16T08:00:00Z\"\n - id: 5\n name: \"Eve Wilson\"\n email: \"eve@example.com\"\n status: \"active\"\n role: \"user\"\n age: 26\n department: \"Design\"\n salary: 70000\n skills: [\"Design\", \"Figma\", \"Photoshop\"]\n last_login: \"2024-01-15T14:20:00Z\"\n\n # Test data: Products with different categories and prices\n test_products:\n - id: \"PROD-001\"\n name: \"Premium Laptop\"\n price: 1299.99\n category: \"electronics\"\n brand: \"TechCorp\"\n stock: 25\n rating: 4.8\n tags: [\"premium\", \"laptop\", \"gaming\", \"high-performance\"]\n - id: \"PROD-002\"\n name: \"Basic Mouse\"\n price: 19.99\n category: \"accessories\"\n brand: \"BasicTech\"\n stock: 150\n rating: 4.2\n tags: [\"basic\", \"mouse\", \"office\"]\n - id: \"PROD-003\"\n name: \"Gaming Keyboard\"\n price: 129.99\n category: \"accessories\"\n brand: \"GameTech\"\n stock: 50\n rating: 4.6\n tags: [\"gaming\", \"keyboard\", \"rgb\", \"mechanical\"]\n - id: \"PROD-004\"\n name: \"Professional Monitor\"\n price: 799.99\n category: \"electronics\"\n brand: \"DisplayPro\"\n stock: 15\n rating: 4.9\n tags: [\"professional\", \"monitor\", \"4k\", \"design\"]\n - id: \"PROD-005\"\n name: \"Budget Headphones\"\n price: 39.99\n category: \"audio\"\n brand: \"SoundBasic\"\n stock: 0\n rating: 3.8\n tags: [\"budget\", \"headphones\", \"basic\"]\n\n # Simple arrays for basic filtering\n simple_numbers: [1, 5, 10, 15, 20, 25, 30, 35, 40, 45, 50]\n simple_strings: [\"apple\", \"banana\", \"cherry\", \"date\", \"elderberry\", \"fig\", \"grape\"]\n mixed_statuses: [\"active\", \"inactive\", \"pending\", \"active\", \"suspended\", \"active\", \"pending\"]\n\nexports: [\"filtering_results\", \"query_examples\"]\n\nsteps:\n # 1. Basic filtering - Active users only\n - name: \"Filter active users\"\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n operation: \"filter_active_users\"\n users: \"{{test_users}}\"\n assert:\n status_code: 200\n capture:\n # Filter users with status 'active'\n active_users: \"body.json.users[?status == 'active']\"\n # Get just names of active users\n active_user_names: \"body.json.users[?status == 'active'].name\"\n # Count active users\n active_user_count: \"body.json.users[?status == 'active'] | length(@)\"\n\n # 2. Numeric filtering - Salary ranges\n - name: \"Filter users by salary ranges\"\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n operation: \"filter_by_salary\"\n users: \"{{test_users}}\"\n assert:\n status_code: 200\n capture:\n # High earners (salary > 80000)\n high_earners: \"body.json.users[?salary > `80000`]\"\n # Mid-range earners (salary between 60000-90000)\n mid_range_earners: \"body.json.users[?salary >= `60000` && salary <= `90000`]\"\n # Entry level (salary < 70000)\n entry_level: \"body.json.users[?salary < `70000`].{name: name, salary: salary, department: department}\"\n\n # 3. String filtering - Department and name searches\n - name: \"Filter by department and name patterns\"\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n operation: \"filter_by_strings\"\n users: \"{{test_users}}\"\n assert:\n status_code: 200\n capture:\n # Engineering department only\n engineering_users: \"body.json.users[?department == 'Engineering']\"\n # Names starting with specific letters\n names_starting_with_a: \"body.json.users[?starts_with(name, 'A')].name\"\n # Names containing specific substring\n names_containing_o: \"body.json.users[?contains(name, 'o')].name\"\n # Email domains\n gmail_users: \"body.json.users[?contains(email, '@example.com')].email\"\n\n # 4. Array content filtering - Skills-based filtering\n - name: \"Filter by array contents (skills)\"\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n operation: \"filter_by_skills\"\n users: \"{{test_users}}\"\n assert:\n status_code: 200\n capture:\n # Users with JavaScript skills\n javascript_users: \"body.json.users[?contains(skills, 'JavaScript')]\"\n # Users with design-related skills\n design_users: \"body.json.users[?contains(skills, 'Design') || contains(skills, 'Figma')]\"\n # Extract skills from engineering users\n engineering_skills: \"body.json.users[?department == 'Engineering'][*].skills[]\"\n\n # 5. Product filtering - Category and price filtering\n - name: \"Filter products by category and price\"\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n operation: \"filter_products\"\n products: \"{{test_products}}\"\n assert:\n status_code: 200\n capture:\n # Electronics category only\n electronics: \"body.json.products[?category == 'electronics']\"\n # Expensive items (price > 500)\n expensive_items: \"body.json.products[?price > `500`]\"\n # In-stock items only\n in_stock_items: \"body.json.products[?stock > `0`]\"\n # High-rated and in-stock\n quality_available: \"body.json.products[?rating >= `4.5` && stock > `0`]\"\n\n # 6. Complex multi-condition filtering\n - name: \"Complex multi-condition filters\"\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n operation: \"complex_filtering\"\n users: \"{{test_users}}\"\n products: \"{{test_products}}\"\n assert:\n status_code: 200\n capture:\n # Senior active admins\n senior_admins: \"body.json.users[?status == 'active' && role == 'admin' && age > `25`]\"\n # Young high earners\n young_high_earners: \"body.json.users[?age < `30` && salary > `70000`]\"\n # Premium electronics in stock\n premium_electronics: \"body.json.products[?category == 'electronics' && price > `1000` && stock > `0`]\"\n # Gaming accessories under 200\n gaming_accessories: \"body.json.products[?category == 'accessories' && contains(tags, 'gaming') && price < `200`]\"\n\n # 7. Tag-based filtering for products\n - name: \"Filter products by tags\"\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n operation: \"filter_by_tags\"\n products: \"{{test_products}}\"\n assert:\n status_code: 200\n capture:\n # Products with 'gaming' tag\n gaming_products: \"body.json.products[?contains(tags, 'gaming')]\"\n # Products with 'premium' or 'professional' tags\n high_end_products: \"body.json.products[?contains(tags, 'premium') || contains(tags, 'professional')]\"\n # Products with multiple specific tags\n professional_design: \"body.json.products[?contains(tags, 'design') && contains(tags, '4k')]\"\n\n # 8. Simple array filtering\n - name: \"Filter simple arrays\"\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n operation: \"simple_array_filtering\"\n numbers: \"{{simple_numbers}}\"\n strings: \"{{simple_strings}}\"\n statuses: \"{{mixed_statuses}}\"\n assert:\n status_code: 200\n capture:\n # Numbers greater than 20\n numbers_gt_20: \"body.json.numbers[?@ > `20`]\"\n # Numbers between 10 and 30\n numbers_10_to_30: \"body.json.numbers[?@ >= `10` && @ <= `30`]\"\n # Strings starting with specific letter\n fruits_starting_with_a: \"body.json.strings[?starts_with(@, 'a')]\"\n # Strings containing 'e'\n strings_with_e: \"body.json.strings[?contains(@, 'e')]\"\n # Count of each status\n unique_statuses: \"body.json.statuses[?@ == 'active'] | length(@)\"\n\n # 9. Filtering with projections and transformations\n - name: \"Filter with data transformation\"\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n operation: \"filter_and_transform\"\n users: \"{{test_users}}\"\n products: \"{{test_products}}\"\n assert:\n status_code: 200\n capture:\n # Active users with formatted output\n active_users_formatted: \"body.json.users[?status == 'active'].{employee_id: id, full_name: name, contact: email, dept: department}\"\n # High-value products summary\n premium_products_summary: \"body.json.products[?price > `100`].{product_code: id, title: name, price_usd: price, availability: stock > `0` && 'In Stock' || 'Out of Stock'}\"\n # Department user counts\n dept_summary: \"body.json.users[?status == 'active'] | group_by(@, &department)\"\n\n # 10. Advanced filtering scenarios\n - name: \"Advanced filtering scenarios\"\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n operation: \"advanced_scenarios\"\n users: \"{{test_users}}\"\n products: \"{{test_products}}\"\n assert:\n status_code: 200\n capture:\n # Users with recent activity (mock recent date filtering)\n recent_users: \"body.json.users[?contains(last_login, '2024-01')]\"\n # Cross-reference: Engineering users with JavaScript skills\n eng_js_users: \"body.json.users[?department == 'Engineering' && contains(skills, 'JavaScript')].{name: name, skills: skills}\"\n # Products by brand with stock status\n products_by_brand: \"body.json.products[?brand == 'TechCorp' || brand == 'GameTech'].{brand: brand, product: name, stock_status: stock}\"\n # Complex availability check\n available_quality_products: \"body.json.products[?stock > `10` && rating > `4.0` && price < `1000`].{name: name, price: price, rating: rating}\"\n\n # 11. Final summary\n - name: \"Filtering examples summary\"\n request:\n method: POST\n url: \"/post\"\n headers:\n Content-Type: \"application/json\"\n body:\n test_summary: \"array_filtering_examples\"\n filter_types_demonstrated:\n - \"status_filtering\"\n - \"numeric_range_filtering\"\n - \"string_pattern_filtering\"\n - \"array_content_filtering\"\n - \"multi_condition_filtering\"\n - \"tag_based_filtering\"\n - \"simple_array_filtering\"\n - \"transformation_filtering\"\n - \"advanced_scenarios\"\n total_examples: 10\n assert:\n status_code: 200\n capture:\n filtering_results: \"body.json\"\n query_examples: \"body.json.filter_types_demonstrated\""
}