Skip to main content

mockforge_bench/
parallel_executor.rs

1//! Parallel execution engine for multi-target bench testing
2//!
3//! Executes load tests against multiple targets in parallel with configurable
4//! concurrency limits. Uses tokio for async execution and semaphores for
5//! backpressure control.
6
7use crate::command::BenchCommand;
8use crate::error::{BenchError, Result};
9use crate::executor::{K6Executor, K6Results};
10use crate::k6_gen::{K6Config, K6ScriptGenerator};
11use crate::reporter::TerminalReporter;
12use crate::request_gen::RequestGenerator;
13use crate::scenarios::LoadScenario;
14use crate::spec_parser::SpecParser;
15use crate::target_parser::TargetConfig;
16use indicatif::{MultiProgress, ProgressBar, ProgressStyle};
17use std::collections::HashMap;
18use std::path::{Path, PathBuf};
19use std::str::FromStr;
20use std::sync::Arc;
21use tokio::sync::Semaphore;
22use tokio::task::JoinHandle;
23
24/// Result for a single target execution
25#[derive(Debug, Clone)]
26pub struct TargetResult {
27    /// Target URL that was tested
28    pub target_url: String,
29    /// Index of the target (for ordering)
30    pub target_index: usize,
31    /// k6 test results
32    pub results: K6Results,
33    /// Output directory for this target
34    pub output_dir: PathBuf,
35    /// Whether the test succeeded
36    pub success: bool,
37    /// Error message if test failed
38    pub error: Option<String>,
39}
40
41/// Aggregated results from all target executions
42#[derive(Debug, Clone)]
43pub struct AggregatedResults {
44    /// Results for each target
45    pub target_results: Vec<TargetResult>,
46    /// Overall statistics
47    pub total_targets: usize,
48    pub successful_targets: usize,
49    pub failed_targets: usize,
50    /// Aggregated metrics across all targets
51    pub aggregated_metrics: AggregatedMetrics,
52}
53
54/// Aggregated metrics across all targets
55#[derive(Debug, Clone)]
56pub struct AggregatedMetrics {
57    /// Total requests across all targets
58    pub total_requests: u64,
59    /// Total failed requests across all targets
60    pub total_failed_requests: u64,
61    /// Average response time across all targets (ms)
62    pub avg_duration_ms: f64,
63    /// p95 response time across all targets (ms)
64    pub p95_duration_ms: f64,
65    /// p99 response time across all targets (ms)
66    pub p99_duration_ms: f64,
67    /// Overall error rate percentage
68    pub error_rate: f64,
69    /// Total RPS across all targets
70    pub total_rps: f64,
71    /// Average RPS per target
72    pub avg_rps: f64,
73    /// Total max VUs across all targets
74    pub total_vus_max: u32,
75    /// Total connections opened across all targets (Issue #79 round 12 —
76    /// Srikanth's multi-target bench output was missing the CPS / connection
77    /// counts that single-target runs surface).
78    pub total_connections_opened: u64,
79    /// Total iterations completed across all targets.
80    pub total_iterations_completed: u64,
81}
82
83impl AggregatedMetrics {
84    /// Calculate aggregated metrics from target results
85    fn from_results(results: &[TargetResult]) -> Self {
86        let mut total_requests = 0u64;
87        let mut total_failed_requests = 0u64;
88        let mut durations = Vec::new();
89        let mut p95_values = Vec::new();
90        let mut p99_values = Vec::new();
91        let mut total_rps = 0.0f64;
92        let mut total_vus_max = 0u32;
93        let mut total_connections_opened = 0u64;
94        let mut total_iterations_completed = 0u64;
95        let mut successful_count = 0usize;
96
97        for result in results {
98            if result.success {
99                total_requests += result.results.total_requests;
100                total_failed_requests += result.results.failed_requests;
101                durations.push(result.results.avg_duration_ms);
102                p95_values.push(result.results.p95_duration_ms);
103                p99_values.push(result.results.p99_duration_ms);
104                total_rps += result.results.rps;
105                total_vus_max += result.results.vus_max;
106                total_connections_opened += result.results.tcp_connect_samples;
107                total_iterations_completed += result.results.iterations_completed;
108                successful_count += 1;
109            }
110        }
111
112        let avg_duration_ms = if !durations.is_empty() {
113            durations.iter().sum::<f64>() / durations.len() as f64
114        } else {
115            0.0
116        };
117
118        let p95_duration_ms = if !p95_values.is_empty() {
119            p95_values.sort_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal));
120            let index = (p95_values.len() as f64 * 0.95).ceil() as usize - 1;
121            p95_values[index.min(p95_values.len() - 1)]
122        } else {
123            0.0
124        };
125
126        let p99_duration_ms = if !p99_values.is_empty() {
127            p99_values.sort_by(|a, b| a.partial_cmp(b).unwrap_or(std::cmp::Ordering::Equal));
128            let index = (p99_values.len() as f64 * 0.99).ceil() as usize - 1;
129            p99_values[index.min(p99_values.len() - 1)]
130        } else {
131            0.0
132        };
133
134        let error_rate = if total_requests > 0 {
135            (total_failed_requests as f64 / total_requests as f64) * 100.0
136        } else {
137            0.0
138        };
139
140        let avg_rps = if successful_count > 0 {
141            total_rps / successful_count as f64
142        } else {
143            0.0
144        };
145
146        Self {
147            total_requests,
148            total_failed_requests,
149            avg_duration_ms,
150            p95_duration_ms,
151            p99_duration_ms,
152            error_rate,
153            total_rps,
154            avg_rps,
155            total_vus_max,
156            total_connections_opened,
157            total_iterations_completed,
158        }
159    }
160}
161
162/// Parallel executor for multi-target bench testing
163pub struct ParallelExecutor {
164    /// Base command configuration (shared across all targets)
165    base_command: BenchCommand,
166    /// List of targets to test
167    targets: Vec<TargetConfig>,
168    /// Maximum number of concurrent executions
169    max_concurrency: usize,
170    /// Base output directory
171    base_output: PathBuf,
172}
173
174impl ParallelExecutor {
175    /// Create a new parallel executor
176    pub fn new(
177        base_command: BenchCommand,
178        targets: Vec<TargetConfig>,
179        max_concurrency: usize,
180    ) -> Self {
181        let base_output = base_command.output.clone();
182        Self {
183            base_command,
184            targets,
185            max_concurrency,
186            base_output,
187        }
188    }
189
190    /// Execute tests against all targets in parallel
191    pub async fn execute_all(&self) -> Result<AggregatedResults> {
192        let total_targets = self.targets.len();
193        TerminalReporter::print_progress(&format!(
194            "Starting parallel execution for {} targets (max concurrency: {})",
195            total_targets, self.max_concurrency
196        ));
197
198        // Validate k6 installation
199        if !K6Executor::is_k6_installed() {
200            TerminalReporter::print_error("k6 is not installed");
201            TerminalReporter::print_warning(
202                "Install k6 from: https://k6.io/docs/get-started/installation/",
203            );
204            return Err(BenchError::K6NotFound);
205        }
206
207        // Load and parse spec(s) (shared across all targets)
208        TerminalReporter::print_progress("Loading OpenAPI specification(s)...");
209        let merged_spec = self.base_command.load_and_merge_specs().await?;
210        let parser = SpecParser::from_spec(merged_spec);
211        TerminalReporter::print_success("Specification(s) loaded");
212
213        // Get operations
214        let operations = if let Some(filter) = &self.base_command.operations {
215            parser.filter_operations(filter)?
216        } else {
217            parser.get_operations()
218        };
219
220        if operations.is_empty() {
221            return Err(BenchError::Other("No operations found in spec".to_string()));
222        }
223
224        TerminalReporter::print_success(&format!("Found {} operations", operations.len()));
225
226        // Generate request templates (shared across all targets)
227        TerminalReporter::print_progress("Generating request templates...");
228        let templates: Vec<_> = operations
229            .iter()
230            .map(RequestGenerator::generate_template)
231            .collect::<Result<Vec<_>>>()?;
232        TerminalReporter::print_success("Request templates generated");
233
234        // Pre-load per-target specs
235        let mut per_target_data: HashMap<
236            PathBuf,
237            (Vec<crate::request_gen::RequestTemplate>, Option<String>),
238        > = HashMap::new();
239        {
240            let mut unique_specs: Vec<PathBuf> = Vec::new();
241            for t in &self.targets {
242                if let Some(spec_path) = &t.spec {
243                    if !unique_specs.contains(spec_path) {
244                        unique_specs.push(spec_path.clone());
245                    }
246                }
247            }
248            for spec_path in &unique_specs {
249                TerminalReporter::print_progress(&format!(
250                    "Loading per-target spec: {}",
251                    spec_path.display()
252                ));
253                match SpecParser::from_file(spec_path).await {
254                    Ok(target_parser) => {
255                        let target_ops = if let Some(filter) = &self.base_command.operations {
256                            match target_parser.filter_operations(filter) {
257                                Ok(ops) => ops,
258                                Err(e) => {
259                                    TerminalReporter::print_warning(&format!(
260                                        "Failed to filter operations from {}: {}. Using shared spec.",
261                                        spec_path.display(),
262                                        e
263                                    ));
264                                    continue;
265                                }
266                            }
267                        } else {
268                            target_parser.get_operations()
269                        };
270                        let target_templates: Vec<_> = match target_ops
271                            .iter()
272                            .map(RequestGenerator::generate_template)
273                            .collect::<Result<Vec<_>>>()
274                        {
275                            Ok(t) => t,
276                            Err(e) => {
277                                TerminalReporter::print_warning(&format!(
278                                    "Failed to generate templates from {}: {}. Using shared spec.",
279                                    spec_path.display(),
280                                    e
281                                ));
282                                continue;
283                            }
284                        };
285                        let target_base_path = if let Some(cli_bp) = &self.base_command.base_path {
286                            if cli_bp.is_empty() {
287                                None
288                            } else {
289                                Some(cli_bp.clone())
290                            }
291                        } else {
292                            target_parser.get_base_path()
293                        };
294                        TerminalReporter::print_success(&format!(
295                            "Loaded {} operations from {}",
296                            target_templates.len(),
297                            spec_path.display()
298                        ));
299                        per_target_data
300                            .insert(spec_path.clone(), (target_templates, target_base_path));
301                    }
302                    Err(e) => {
303                        TerminalReporter::print_warning(&format!(
304                            "Failed to load per-target spec {}: {}. Targets using this spec will use the shared spec.",
305                            spec_path.display(),
306                            e
307                        ));
308                    }
309                }
310            }
311        }
312
313        // Parse base headers
314        let base_headers = self.base_command.parse_headers()?;
315
316        // Resolve base path (CLI option takes priority over spec's servers URL)
317        let base_path = self.resolve_base_path(&parser);
318        if let Some(ref bp) = base_path {
319            TerminalReporter::print_progress(&format!("Using base path: {}", bp));
320        }
321
322        // Parse scenario
323        let scenario = LoadScenario::from_str(&self.base_command.scenario)
324            .map_err(BenchError::InvalidScenario)?;
325
326        let duration_secs_val = BenchCommand::parse_duration(&self.base_command.duration)?;
327
328        // Compute security testing flag
329        let security_testing_enabled_val =
330            self.base_command.security_test || self.base_command.wafbench_dir.is_some();
331
332        // Pre-compute enhancement code once (same for all targets)
333        let has_advanced_features = self.base_command.data_file.is_some()
334            || self.base_command.error_rate.is_some()
335            || self.base_command.security_test
336            || self.base_command.parallel_create.is_some()
337            || self.base_command.wafbench_dir.is_some();
338
339        let enhancement_code = if has_advanced_features {
340            let dummy_script = "export const options = {};";
341            let enhanced = self.base_command.generate_enhanced_script(dummy_script)?;
342            if let Some(pos) = enhanced.find("export const options") {
343                enhanced[..pos].to_string()
344            } else {
345                String::new()
346            }
347        } else {
348            String::new()
349        };
350
351        // Create semaphore for concurrency control
352        let semaphore = Arc::new(Semaphore::new(self.max_concurrency));
353        let multi_progress = MultiProgress::new();
354
355        // Create progress bars for each target
356        let progress_bars: Vec<ProgressBar> = (0..total_targets)
357            .map(|i| {
358                let pb = multi_progress.add(ProgressBar::new(1));
359                pb.set_style(
360                    ProgressStyle::default_bar()
361                        .template("{spinner:.green} [{elapsed_precise}] [{wide_bar:.cyan/blue}] {pos}/{len} {msg}")
362                        .unwrap(),
363                );
364                pb.set_message(format!("Target {}", i + 1));
365                pb
366            })
367            .collect();
368
369        // Spawn tasks for each target
370        let mut handles: Vec<JoinHandle<Result<TargetResult>>> = Vec::new();
371
372        for (index, target) in self.targets.iter().enumerate() {
373            let target = target.clone();
374            // Clone necessary fields from base_command instead of passing reference
375            let duration = self.base_command.duration.clone();
376            let vus = self.base_command.vus;
377            let scenario_str = self.base_command.scenario.clone();
378            let operations = self.base_command.operations.clone();
379            let auth = self.base_command.auth.clone();
380            let headers = self.base_command.headers.clone();
381            let threshold_percentile = self.base_command.threshold_percentile.clone();
382            let threshold_ms = self.base_command.threshold_ms;
383            let max_error_rate = self.base_command.max_error_rate;
384            let verbose = self.base_command.verbose;
385            let skip_tls_verify = self.base_command.skip_tls_verify;
386            let chunked_request_bodies = self.base_command.chunked_request_bodies;
387            let target_rps = self.base_command.target_rps;
388            let no_keep_alive = self.base_command.no_keep_alive;
389            // Issue #79 r54 (Srikanth on 0.3.200): `--source-ip` was silently
390            // dropped in multi-target (`--targets-file`) mode because this
391            // executor built `K6Executor::new()` without `.with_local_ips` and
392            // the per-target BenchCommand clone zeroed `source_ips`. Thread the
393            // source IPs (as the k6 `--local-ips` list) and geo config through
394            // to each target's run.
395            let local_ips = self.base_command.source_ips.join(",");
396            let dns_policy = self.base_command.dns_policy.clone().unwrap_or_default();
397            let geo_source_ips = self.base_command.geo_source_ips.clone();
398            let geo_source_headers = self.base_command.geo_source_headers.clone();
399
400            // Select per-target templates/base_path if this target has a custom spec
401            let (templates, base_path) = if let Some(spec_path) = &target.spec {
402                if let Some((t, bp)) = per_target_data.get(spec_path) {
403                    (t.clone(), bp.clone())
404                } else {
405                    (templates.clone(), base_path.clone())
406                }
407            } else {
408                (templates.clone(), base_path.clone())
409            };
410
411            let base_headers = base_headers.clone();
412            let scenario = scenario.clone();
413            let duration_secs = duration_secs_val;
414            let base_output = self.base_output.clone();
415            let semaphore = semaphore.clone();
416            let progress_bar = progress_bars[index].clone();
417            let target_index = index;
418            let security_testing_enabled = security_testing_enabled_val;
419            let enhancement_code = enhancement_code.clone();
420
421            let handle = tokio::spawn(async move {
422                // Acquire semaphore permit
423                let _permit = semaphore.acquire().await.map_err(|e| {
424                    BenchError::Other(format!("Failed to acquire semaphore: {}", e))
425                })?;
426
427                progress_bar.set_message(format!("Testing {}", target.url));
428
429                // Execute test for this target
430                let result = Self::execute_single_target_internal(
431                    &duration,
432                    vus,
433                    &scenario_str,
434                    &operations,
435                    &auth,
436                    &headers,
437                    &threshold_percentile,
438                    threshold_ms,
439                    max_error_rate,
440                    verbose,
441                    skip_tls_verify,
442                    base_path.as_ref(),
443                    &target,
444                    target_index,
445                    &templates,
446                    &base_headers,
447                    &scenario,
448                    duration_secs,
449                    &base_output,
450                    security_testing_enabled,
451                    chunked_request_bodies,
452                    target_rps,
453                    no_keep_alive,
454                    &enhancement_code,
455                    &local_ips,
456                    &dns_policy,
457                    &geo_source_ips,
458                    &geo_source_headers,
459                )
460                .await;
461
462                progress_bar.inc(1);
463                progress_bar.finish_with_message(format!("Completed {}", target.url));
464
465                result
466            });
467
468            handles.push(handle);
469        }
470
471        // Wait for all tasks to complete and collect results
472        let mut target_results = Vec::new();
473        for (index, handle) in handles.into_iter().enumerate() {
474            match handle.await {
475                Ok(Ok(result)) => {
476                    target_results.push(result);
477                }
478                Ok(Err(e)) => {
479                    // Create error result
480                    let target_url = self.targets[index].url.clone();
481                    target_results.push(TargetResult {
482                        target_url: target_url.clone(),
483                        target_index: index,
484                        results: K6Results::default(),
485                        output_dir: self.base_output.join(format!("target_{}", index + 1)),
486                        success: false,
487                        error: Some(e.to_string()),
488                    });
489                }
490                Err(e) => {
491                    // Join error
492                    let target_url = self.targets[index].url.clone();
493                    target_results.push(TargetResult {
494                        target_url: target_url.clone(),
495                        target_index: index,
496                        results: K6Results::default(),
497                        output_dir: self.base_output.join(format!("target_{}", index + 1)),
498                        success: false,
499                        error: Some(format!("Task join error: {}", e)),
500                    });
501                }
502            }
503        }
504
505        // Sort results by target index
506        target_results.sort_by_key(|r| r.target_index);
507
508        // Calculate aggregated metrics
509        let aggregated_metrics = AggregatedMetrics::from_results(&target_results);
510
511        let successful_targets = target_results.iter().filter(|r| r.success).count();
512        let failed_targets = total_targets - successful_targets;
513
514        Ok(AggregatedResults {
515            target_results,
516            total_targets,
517            successful_targets,
518            failed_targets,
519            aggregated_metrics,
520        })
521    }
522
523    /// Resolve the effective base path for API endpoints
524    fn resolve_base_path(&self, parser: &SpecParser) -> Option<String> {
525        // CLI option takes priority (including empty string to disable)
526        if let Some(cli_base_path) = &self.base_command.base_path {
527            if cli_base_path.is_empty() {
528                return None;
529            }
530            return Some(cli_base_path.clone());
531        }
532        // Fall back to spec's base path
533        parser.get_base_path()
534    }
535
536    /// Execute a single target test (internal method that doesn't require BenchCommand)
537    #[allow(clippy::too_many_arguments)]
538    async fn execute_single_target_internal(
539        _duration: &str,
540        vus: u32,
541        _scenario_str: &str,
542        _operations: &Option<String>,
543        auth: &Option<String>,
544        _headers: &[String],
545        threshold_percentile: &str,
546        threshold_ms: u64,
547        max_error_rate: f64,
548        verbose: bool,
549        skip_tls_verify: bool,
550        base_path: Option<&String>,
551        target: &TargetConfig,
552        target_index: usize,
553        templates: &[crate::request_gen::RequestTemplate],
554        base_headers: &HashMap<String, String>,
555        scenario: &LoadScenario,
556        duration_secs: u64,
557        base_output: &Path,
558        security_testing_enabled: bool,
559        chunked_request_bodies: bool,
560        target_rps: Option<u32>,
561        no_keep_alive: bool,
562        enhancement_code: &str,
563        local_ips: &str,
564        dns_policy: &str,
565        geo_source_ips: &[String],
566        geo_source_headers: &[String],
567    ) -> Result<TargetResult> {
568        // Merge target-specific headers with base headers
569        let mut custom_headers = base_headers.clone();
570        if let Some(target_headers) = &target.headers {
571            custom_headers.extend(target_headers.clone());
572        }
573
574        // Use target-specific auth if provided, otherwise use base auth
575        let auth_header = target.auth.as_ref().or(auth.as_ref()).cloned();
576
577        // Create k6 config for this target
578        let k6_config = K6Config {
579            target_url: target.url.clone(),
580            base_path: base_path.cloned(),
581            scenario: scenario.clone(),
582            duration_secs,
583            max_vus: vus,
584            threshold_percentile: threshold_percentile.to_string(),
585            threshold_ms,
586            max_error_rate,
587            auth_header,
588            custom_headers,
589            skip_tls_verify,
590            security_testing_enabled,
591            chunked_request_bodies,
592            target_rps,
593            no_keep_alive,
594            geo_source_ips: geo_source_ips.to_vec(),
595            geo_source_headers: geo_source_headers.to_vec(),
596        };
597
598        // Generate k6 script
599        let generator = K6ScriptGenerator::new(k6_config, templates.to_vec());
600        let mut script = generator.generate()?;
601
602        // Apply pre-computed enhancement code (security definitions, etc.)
603        if !enhancement_code.is_empty() {
604            if let Some(pos) = script.find("export const options") {
605                script.insert_str(pos, enhancement_code);
606            }
607        }
608
609        // Validate script
610        let validation_errors = K6ScriptGenerator::validate_script(&script);
611        if !validation_errors.is_empty() {
612            return Err(BenchError::Other(format!(
613                "Script validation failed for target {}: {}",
614                target.url,
615                validation_errors.join(", ")
616            )));
617        }
618
619        // Create output directory for this target
620        let output_dir = base_output.join(format!("target_{}", target_index + 1));
621        std::fs::create_dir_all(&output_dir)?;
622
623        // Write script to file
624        let script_path = output_dir.join("k6-script.js");
625        std::fs::write(&script_path, script)?;
626
627        // Execute k6 with its own REST API server port per target. k6 defaults
628        // to localhost:6565 and parallel instances collide on it.
629        //
630        // Issue #79 r58 — Srikanth on 0.3.205: every one of 10 targets failed
631        // with `exit status: 106` (k6 `CannotStartRESTAPI`) and 0 requests, so
632        // NO load ran at all (which read as "--discard-response-bodies isn't
633        // helping"). The old scheme pinned each k6 to a FIXED port
634        // (6565 + index → 6566, 6567, ...), which collides whenever those
635        // ports are already taken — e.g. orphaned k6 processes left behind by
636        // a previous run that was OOM-killed (his r56/r57 SIGKILL), a second
637        // concurrent bench, or any local service. Bind an OS-assigned
638        // ephemeral port (`:0`) instead: k6 asks the kernel for a free port at
639        // start, so it can never be "already in use". We never query the REST
640        // API (results come from summary.json on disk), so a random port is
641        // fine. Verified: two concurrent k6 with `--address localhost:0` both
642        // start cleanly where the fixed port yields exit 106.
643        let api_port = 0; // ephemeral: kernel picks a free port, no collision
644                          // Issue #79 r54 — forward `--source-ip` (as k6 `--local-ips`) so each
645                          // target's VUs rotate through the configured source IP pool. Without
646                          // this, `--source-ip` was a silent no-op in multi-target mode.
647                          // Issue #79 r56 — plain multi-target load only checks status codes, so
648                          // discard response bodies to keep k6's RSS bounded on long, high-VU runs.
649                          // Without this, 10+ targets * 10 VUs * 70 min buffered every body and the
650                          // kernel OOM-killer sent k6 `signal: 9 (SIGKILL)`.
651        let executor = K6Executor::new()?
652            .with_local_ips(local_ips.to_string())
653            .with_dns_policy(dns_policy.to_string())
654            .with_discard_response_bodies(true);
655        let results = executor
656            .execute_with_port(&script_path, Some(&output_dir), verbose, Some(api_port))
657            .await;
658
659        match results {
660            Ok(k6_results) => Ok(TargetResult {
661                target_url: target.url.clone(),
662                target_index,
663                results: k6_results,
664                output_dir,
665                success: true,
666                error: None,
667            }),
668            Err(e) => Ok(TargetResult {
669                target_url: target.url.clone(),
670                target_index,
671                results: K6Results::default(),
672                output_dir,
673                success: false,
674                error: Some(e.to_string()),
675            }),
676        }
677    }
678}
679
680#[cfg(test)]
681mod tests {
682    use super::*;
683
684    #[test]
685    fn test_aggregated_metrics_from_results() {
686        let results = vec![
687            TargetResult {
688                target_url: "http://api1.com".to_string(),
689                target_index: 0,
690                results: K6Results {
691                    total_requests: 100,
692                    failed_requests: 5,
693                    avg_duration_ms: 100.0,
694                    p95_duration_ms: 200.0,
695                    p99_duration_ms: 300.0,
696                    ..Default::default()
697                },
698                output_dir: PathBuf::from("output1"),
699                success: true,
700                error: None,
701            },
702            TargetResult {
703                target_url: "http://api2.com".to_string(),
704                target_index: 1,
705                results: K6Results {
706                    total_requests: 200,
707                    failed_requests: 10,
708                    avg_duration_ms: 150.0,
709                    p95_duration_ms: 250.0,
710                    p99_duration_ms: 350.0,
711                    ..Default::default()
712                },
713                output_dir: PathBuf::from("output2"),
714                success: true,
715                error: None,
716            },
717        ];
718
719        let metrics = AggregatedMetrics::from_results(&results);
720        assert_eq!(metrics.total_requests, 300);
721        assert_eq!(metrics.total_failed_requests, 15);
722        assert_eq!(metrics.avg_duration_ms, 125.0); // (100 + 150) / 2
723    }
724
725    #[test]
726    fn test_aggregated_metrics_with_failed_targets() {
727        let results = vec![
728            TargetResult {
729                target_url: "http://api1.com".to_string(),
730                target_index: 0,
731                results: K6Results {
732                    total_requests: 100,
733                    failed_requests: 5,
734                    avg_duration_ms: 100.0,
735                    p95_duration_ms: 200.0,
736                    p99_duration_ms: 300.0,
737                    ..Default::default()
738                },
739                output_dir: PathBuf::from("output1"),
740                success: true,
741                error: None,
742            },
743            TargetResult {
744                target_url: "http://api2.com".to_string(),
745                target_index: 1,
746                results: K6Results::default(),
747                output_dir: PathBuf::from("output2"),
748                success: false,
749                error: Some("Network error".to_string()),
750            },
751        ];
752
753        let metrics = AggregatedMetrics::from_results(&results);
754        // Only successful target should be counted
755        assert_eq!(metrics.total_requests, 100);
756        assert_eq!(metrics.total_failed_requests, 5);
757        assert_eq!(metrics.avg_duration_ms, 100.0);
758    }
759
760    #[test]
761    fn test_aggregated_metrics_empty_results() {
762        let results = vec![];
763        let metrics = AggregatedMetrics::from_results(&results);
764        assert_eq!(metrics.total_requests, 0);
765        assert_eq!(metrics.total_failed_requests, 0);
766        assert_eq!(metrics.avg_duration_ms, 0.0);
767        assert_eq!(metrics.error_rate, 0.0);
768    }
769
770    #[test]
771    fn test_aggregated_metrics_error_rate_calculation() {
772        let results = vec![TargetResult {
773            target_url: "http://api1.com".to_string(),
774            target_index: 0,
775            results: K6Results {
776                total_requests: 1000,
777                failed_requests: 50,
778                avg_duration_ms: 100.0,
779                p95_duration_ms: 200.0,
780                p99_duration_ms: 300.0,
781                ..Default::default()
782            },
783            output_dir: PathBuf::from("output1"),
784            success: true,
785            error: None,
786        }];
787
788        let metrics = AggregatedMetrics::from_results(&results);
789        assert_eq!(metrics.error_rate, 5.0); // 50/1000 * 100
790    }
791
792    #[test]
793    fn test_aggregated_metrics_p95_p99_calculation() {
794        let results = vec![
795            TargetResult {
796                target_url: "http://api1.com".to_string(),
797                target_index: 0,
798                results: K6Results {
799                    total_requests: 100,
800                    failed_requests: 0,
801                    avg_duration_ms: 100.0,
802                    p95_duration_ms: 150.0,
803                    p99_duration_ms: 200.0,
804                    ..Default::default()
805                },
806                output_dir: PathBuf::from("output1"),
807                success: true,
808                error: None,
809            },
810            TargetResult {
811                target_url: "http://api2.com".to_string(),
812                target_index: 1,
813                results: K6Results {
814                    total_requests: 100,
815                    failed_requests: 0,
816                    avg_duration_ms: 200.0,
817                    p95_duration_ms: 250.0,
818                    p99_duration_ms: 300.0,
819                    ..Default::default()
820                },
821                output_dir: PathBuf::from("output2"),
822                success: true,
823                error: None,
824            },
825            TargetResult {
826                target_url: "http://api3.com".to_string(),
827                target_index: 2,
828                results: K6Results {
829                    total_requests: 100,
830                    failed_requests: 0,
831                    avg_duration_ms: 300.0,
832                    p95_duration_ms: 350.0,
833                    p99_duration_ms: 400.0,
834                    ..Default::default()
835                },
836                output_dir: PathBuf::from("output3"),
837                success: true,
838                error: None,
839            },
840        ];
841
842        let metrics = AggregatedMetrics::from_results(&results);
843        // p95 should be the 95th percentile of [150, 250, 350] = index 2 = 350
844        // p99 should be the 99th percentile of [200, 300, 400] = index 2 = 400
845        assert_eq!(metrics.p95_duration_ms, 350.0);
846        assert_eq!(metrics.p99_duration_ms, 400.0);
847    }
848}