Skip to main content

alef_e2e/codegen/
php.rs

1//! PHP e2e test generator using PHPUnit.
2//!
3//! Generates `e2e/php/composer.json`, `e2e/php/phpunit.xml`, and
4//! `tests/{Category}Test.php` files from JSON fixtures, driven entirely by
5//! `E2eConfig` and `CallConfig`.
6
7use crate::config::E2eConfig;
8use crate::escape::{escape_php, sanitize_filename};
9use crate::field_access::{FieldResolver, PhpGetterMap};
10use crate::fixture::{
11    Assertion, CallbackAction, Fixture, FixtureGroup, HttpFixture, TemplateReturnForm, ValidationErrorExpectation,
12};
13use alef_backend_php::naming::php_autoload_namespace;
14use alef_core::backend::GeneratedFile;
15use alef_core::config::ResolvedCrateConfig;
16use alef_core::hash::{self, CommentStyle};
17use alef_core::ir::TypeRef;
18use alef_core::template_versions as tv;
19use anyhow::Result;
20use heck::{ToLowerCamelCase, ToSnakeCase, ToUpperCamelCase};
21use std::collections::{HashMap, HashSet};
22use std::fmt::Write as FmtWrite;
23use std::path::PathBuf;
24
25use super::E2eCodegen;
26use super::client;
27
28/// PHP e2e code generator.
29pub struct PhpCodegen;
30
31impl E2eCodegen for PhpCodegen {
32    fn generate(
33        &self,
34        groups: &[FixtureGroup],
35        e2e_config: &E2eConfig,
36        config: &ResolvedCrateConfig,
37        type_defs: &[alef_core::ir::TypeDef],
38        enums: &[alef_core::ir::EnumDef],
39    ) -> Result<Vec<GeneratedFile>> {
40        let lang = self.language_name();
41        let output_base = PathBuf::from(e2e_config.effective_output()).join(lang);
42
43        let mut files = Vec::new();
44
45        // Resolve top-level call config to derive class/namespace/factory — these are
46        // shared across all categories. Per-fixture call routing (function name, args)
47        // is resolved inside render_test_method via e2e_config.resolve_call().
48        let call = &e2e_config.call;
49        let overrides = call.overrides.get(lang);
50        let extension_name = config.php_extension_name();
51        let class_name = overrides
52            .and_then(|o| o.class.as_ref())
53            .cloned()
54            .map(|cn| cn.split('\\').next_back().unwrap_or(&cn).to_string())
55            .unwrap_or_else(|| extension_name.to_upper_camel_case());
56        let namespace = overrides.and_then(|o| o.module.as_ref()).cloned().unwrap_or_else(|| {
57            if extension_name.contains('_') {
58                extension_name
59                    .split('_')
60                    .map(|p| p.to_upper_camel_case())
61                    .collect::<Vec<_>>()
62                    .join("\\")
63            } else {
64                extension_name.to_upper_camel_case()
65            }
66        });
67        let empty_enum_fields = HashMap::new();
68        let enum_fields = overrides.map(|o| &o.enum_fields).unwrap_or(&empty_enum_fields);
69        let result_is_simple = overrides.is_some_and(|o| o.result_is_simple);
70        let php_client_factory = overrides.and_then(|o| o.php_client_factory.as_deref());
71        let options_via = overrides.and_then(|o| o.options_via.as_deref()).unwrap_or("array");
72
73        // Resolve package config.
74        let php_pkg = e2e_config.resolve_package("php");
75        let pkg_name = php_pkg
76            .as_ref()
77            .and_then(|p| p.name.as_ref())
78            .cloned()
79            .unwrap_or_else(|| {
80                // Derive `<org>/<module>` from the configured repository URL —
81                // alef is vendor-neutral, so we don't fall back to a fixed org.
82                let org = config
83                    .try_github_repo()
84                    .ok()
85                    .as_deref()
86                    .and_then(alef_core::config::derive_repo_org)
87                    .unwrap_or_else(|| config.name.clone());
88                format!("{org}/{}", call.module.replace('_', "-"))
89            });
90        let pkg_path = php_pkg
91            .as_ref()
92            .and_then(|p| p.path.as_ref())
93            .cloned()
94            .unwrap_or_else(|| "../../packages/php".to_string());
95        let pkg_version = php_pkg
96            .as_ref()
97            .and_then(|p| p.version.as_ref())
98            .cloned()
99            .or_else(|| config.resolved_version())
100            .unwrap_or_else(|| "0.1.0".to_string());
101
102        // Derive the e2e composer project metadata from the consumer-binding
103        // pkg_name (`<vendor>/<crate>`) and the configured PHP autoload
104        // namespace — alef is vendor-neutral, so we don't fall back to a
105        // fixed "kreuzberg" string.
106        let e2e_vendor = pkg_name.split('/').next().unwrap_or(&pkg_name).to_string();
107        let e2e_pkg_name = format!("{e2e_vendor}/e2e-php");
108        // PSR-4 autoload keys appear inside a JSON document, so each PHP
109        // namespace separator must be JSON-escaped (`\` → `\\`). The trailing
110        // pair represents the PHP-mandated trailing `\` (which itself escapes
111        // to `\\` in JSON).
112        let php_namespace_escaped = php_autoload_namespace(config).replace('\\', "\\\\");
113        let e2e_autoload_ns = format!("{php_namespace_escaped}\\\\E2e\\\\");
114
115        // Generate composer.json.
116        files.push(GeneratedFile {
117            path: output_base.join("composer.json"),
118            content: render_composer_json(
119                &e2e_pkg_name,
120                &e2e_autoload_ns,
121                &pkg_name,
122                &pkg_path,
123                &pkg_version,
124                e2e_config.dep_mode,
125            ),
126            generated_header: false,
127        });
128
129        // Generate phpunit.xml.
130        files.push(GeneratedFile {
131            path: output_base.join("phpunit.xml"),
132            content: render_phpunit_xml(),
133            generated_header: false,
134        });
135
136        // Check if any fixture needs a mock HTTP server (either http-shape or
137        // liter-llm mock_response-shape) so bootstrap.php spawns it.
138        let has_http_fixtures = groups
139            .iter()
140            .flat_map(|g| g.fixtures.iter())
141            .any(|f| f.needs_mock_server());
142
143        // Check if any fixture uses file_path or bytes args (needs chdir to test_documents).
144        let has_file_fixtures = groups.iter().flat_map(|g| g.fixtures.iter()).any(|f| {
145            let cc = e2e_config.resolve_call_for_fixture(
146                f.call.as_deref(),
147                &f.id,
148                &f.resolved_category(),
149                &f.tags,
150                &f.input,
151            );
152            cc.args
153                .iter()
154                .any(|a| a.arg_type == "file_path" || a.arg_type == "bytes")
155        });
156
157        // Generate bootstrap.php that loads both autoloaders and optionally starts the mock server.
158        files.push(GeneratedFile {
159            path: output_base.join("bootstrap.php"),
160            content: render_bootstrap(
161                &pkg_path,
162                has_http_fixtures,
163                has_file_fixtures,
164                &e2e_config.test_documents_relative_from(0),
165            ),
166            generated_header: true,
167        });
168
169        // Generate run_tests.php that loads the extension and invokes phpunit.
170        files.push(GeneratedFile {
171            path: output_base.join("run_tests.php"),
172            content: render_run_tests_php(&extension_name, config.php_cargo_crate_name()),
173            generated_header: true,
174        });
175
176        // Generate test files per category.
177        let tests_base = output_base.join("tests");
178
179        // Compute per-(type, field) getter classification for PHP.
180        // ext-php-rs 0.15.x exposes scalar fields as PHP properties via `#[php(prop)]`,
181        // but non-scalar fields (Named structs, Vec<Named>, Map, etc.) need a
182        // `#[php(getter)]` method because `get_method_props` is `todo!()` in
183        // ext-php-rs-derive 0.11.7. E2e assertions must call `->getCamelCase()` for those.
184        //
185        // The classification MUST be keyed by (owner_type, field_name) rather than
186        // bare field_name: two unrelated types can declare the same field name with
187        // different scalarness (e.g. `CrawlConfig.content: ContentConfig` vs
188        // `MarkdownResult.content: String`). A bare-name union would force every
189        // `->content` access to `->getContent()` even on types where it is a scalar
190        // property — see kreuzcrawl regression where `MarkdownResult::getContent()`
191        // does not exist.
192        let php_enum_names: HashSet<String> = enums.iter().map(|e| e.name.clone()).collect();
193
194        for group in groups {
195            let active: Vec<&Fixture> = group
196                .fixtures
197                .iter()
198                .filter(|f| super::should_include_fixture(f, lang, e2e_config))
199                .collect();
200
201            if active.is_empty() {
202                continue;
203            }
204
205            let test_class = format!("{}Test", sanitize_filename(&group.category).to_upper_camel_case());
206            let filename = format!("{test_class}.php");
207            let content = render_test_file(
208                &group.category,
209                &active,
210                e2e_config,
211                lang,
212                &namespace,
213                &class_name,
214                &test_class,
215                type_defs,
216                &php_enum_names,
217                enum_fields,
218                result_is_simple,
219                php_client_factory,
220                options_via,
221                &config.adapters,
222            );
223            files.push(GeneratedFile {
224                path: tests_base.join(filename),
225                content,
226                generated_header: true,
227            });
228        }
229
230        Ok(files)
231    }
232
233    fn language_name(&self) -> &'static str {
234        "php"
235    }
236}
237
238// ---------------------------------------------------------------------------
239// PHP scalar-type predicate
240// ---------------------------------------------------------------------------
241
242/// Returns true when a type is scalar-compatible for ext-php-rs `#[php(prop)]` —
243/// that is, the mapped Rust type implements `IntoZval` + `FromZval` automatically
244/// without a manual getter. Mirrors `is_php_prop_scalar_with_enums` from
245/// `alef-backend-php/src/gen_bindings/types.rs`.
246///
247/// Scalar-compatible: primitives, String, Char, Duration (→ u64), Path (→ String),
248/// Option<scalar>, Vec<primitive|String|Char>, unit-variant enums (mapped to String).
249/// Non-scalar: Named struct, Map, nested Vec<Named>, Json, Bytes.
250/// Build a per-`(owner_type, field_name)` PHP getter classification plus chain-resolution
251/// metadata from the IR's `TypeDef`s.
252///
253/// For each type, marks fields as needing getter syntax when their mapped Rust type
254/// is non-scalar in PHP (Named struct, Vec<Named>, Map, Json, Bytes). Also records each
255/// field's referenced `Named` inner type so the resolver can advance the current-type
256/// cursor as it walks multi-segment paths like `outer.inner.content`.
257///
258/// `root_type` is derived (best-effort) from a `result_type` override on any backend
259/// (`c`, `csharp`, `java`, `kotlin`, `go`, `php`) and otherwise inferred by matching
260/// `result_fields` against `TypeDef.fields`. When no root can be determined, chain
261/// resolution falls back to the legacy bare-name union (sound only when no field names
262/// collide across types).
263fn build_php_getter_map(
264    type_defs: &[alef_core::ir::TypeDef],
265    enum_names: &HashSet<String>,
266    call: &alef_core::config::e2e::CallConfig,
267    result_fields: &HashSet<String>,
268) -> PhpGetterMap {
269    let mut getters: HashMap<String, HashSet<String>> = HashMap::new();
270    let mut field_types: HashMap<String, HashMap<String, String>> = HashMap::new();
271    let mut all_fields: HashMap<String, HashSet<String>> = HashMap::new();
272    for td in type_defs {
273        let mut getter_fields: HashSet<String> = HashSet::new();
274        let mut field_type_map: HashMap<String, String> = HashMap::new();
275        let mut td_all_fields: HashSet<String> = HashSet::new();
276        for f in &td.fields {
277            td_all_fields.insert(f.name.clone());
278            if !is_php_scalar(&f.ty, enum_names) {
279                getter_fields.insert(f.name.clone());
280            }
281            if let Some(named) = inner_named(&f.ty) {
282                field_type_map.insert(f.name.clone(), named);
283            }
284        }
285        getters.insert(td.name.clone(), getter_fields);
286        all_fields.insert(td.name.clone(), td_all_fields);
287        if !field_type_map.is_empty() {
288            field_types.insert(td.name.clone(), field_type_map);
289        }
290    }
291    let root_type = derive_root_type(call, type_defs, result_fields);
292    PhpGetterMap {
293        getters,
294        field_types,
295        root_type,
296        all_fields,
297    }
298}
299
300/// Unwrap `Option<T>` / `Vec<T>` to the innermost `Named` type name, if any.
301/// Returns `None` for primitives, scalars, Map, Json, Bytes, and Unit.
302fn inner_named(ty: &TypeRef) -> Option<String> {
303    match ty {
304        TypeRef::Named(n) => Some(n.clone()),
305        TypeRef::Optional(inner) | TypeRef::Vec(inner) => inner_named(inner),
306        _ => None,
307    }
308}
309
310/// Derive the IR type name backing the result variable in PHP-generated assertions.
311///
312/// Lookup order:
313/// 1. `call.overrides[<lang>].result_type` for any of `php`, `c`, `csharp`, `java`,
314///    `kotlin`, `go` (first non-empty wins).
315/// 2. Type-defs whose field names form a superset of `result_fields` (when exactly
316///    one matches).
317///
318/// Returns `None` when neither yields a definitive answer; callers fall back to the
319/// legacy bare-name union behaviour.
320fn derive_root_type(
321    call: &alef_core::config::e2e::CallConfig,
322    type_defs: &[alef_core::ir::TypeDef],
323    result_fields: &HashSet<String>,
324) -> Option<String> {
325    const LOOKUP_LANGS: &[&str] = &["php", "c", "csharp", "java", "kotlin", "go"];
326    for lang in LOOKUP_LANGS {
327        if let Some(o) = call.overrides.get(*lang)
328            && let Some(rt) = o.result_type.as_deref()
329            && !rt.is_empty()
330            && type_defs.iter().any(|td| td.name == rt)
331        {
332            return Some(rt.to_string());
333        }
334    }
335    if result_fields.is_empty() {
336        return None;
337    }
338    let matches: Vec<&alef_core::ir::TypeDef> = type_defs
339        .iter()
340        .filter(|td| {
341            let names: HashSet<&str> = td.fields.iter().map(|f| f.name.as_str()).collect();
342            result_fields.iter().all(|rf| names.contains(rf.as_str()))
343        })
344        .collect();
345    if matches.len() == 1 {
346        return Some(matches[0].name.clone());
347    }
348    None
349}
350
351fn is_php_scalar(ty: &TypeRef, enum_names: &HashSet<String>) -> bool {
352    match ty {
353        TypeRef::Primitive(_) | TypeRef::String | TypeRef::Char | TypeRef::Duration | TypeRef::Path => true,
354        TypeRef::Optional(inner) => is_php_scalar(inner, enum_names),
355        TypeRef::Vec(inner) => {
356            matches!(inner.as_ref(), TypeRef::Primitive(_) | TypeRef::String | TypeRef::Char)
357                || matches!(inner.as_ref(), TypeRef::Named(n) if enum_names.contains(n))
358        }
359        TypeRef::Named(n) if enum_names.contains(n) => true,
360        TypeRef::Named(_) | TypeRef::Map(_, _) | TypeRef::Json | TypeRef::Bytes | TypeRef::Unit => false,
361    }
362}
363
364// ---------------------------------------------------------------------------
365// Rendering
366// ---------------------------------------------------------------------------
367
368fn render_composer_json(
369    e2e_pkg_name: &str,
370    e2e_autoload_ns: &str,
371    pkg_name: &str,
372    pkg_path: &str,
373    pkg_version: &str,
374    dep_mode: crate::config::DependencyMode,
375) -> String {
376    let (require_section, autoload_section) = match dep_mode {
377        crate::config::DependencyMode::Registry => {
378            let require = format!(
379                r#"  "require": {{
380    "{pkg_name}": "{pkg_version}"
381  }},
382  "require-dev": {{
383    "phpunit/phpunit": "{phpunit}",
384    "guzzlehttp/guzzle": "{guzzle}"
385  }},"#,
386                phpunit = tv::packagist::PHPUNIT,
387                guzzle = tv::packagist::GUZZLE,
388            );
389            (require, String::new())
390        }
391        crate::config::DependencyMode::Local => {
392            let require = format!(
393                r#"  "require-dev": {{
394    "phpunit/phpunit": "{phpunit}",
395    "guzzlehttp/guzzle": "{guzzle}"
396  }},"#,
397                phpunit = tv::packagist::PHPUNIT,
398                guzzle = tv::packagist::GUZZLE,
399            );
400            // For local mode, add autoload for the local package source.
401            // Extract the namespace from pkg_name (org/module) and map it to src/.
402            let pkg_namespace = pkg_name
403                .split('/')
404                .nth(1)
405                .unwrap_or(pkg_name)
406                .split('-')
407                .map(heck::ToUpperCamelCase::to_upper_camel_case)
408                .collect::<Vec<_>>()
409                .join("\\");
410            let autoload = format!(
411                r#"
412  "autoload": {{
413    "psr-4": {{
414      "{}\\": "{}/src/"
415    }}
416  }},"#,
417                pkg_namespace.replace('\\', "\\\\"),
418                pkg_path
419            );
420            (require, autoload)
421        }
422    };
423
424    crate::template_env::render(
425        "php/composer.json.jinja",
426        minijinja::context! {
427            e2e_pkg_name => e2e_pkg_name,
428            e2e_autoload_ns => e2e_autoload_ns,
429            require_section => require_section,
430            autoload_section => autoload_section,
431        },
432    )
433}
434
435fn render_phpunit_xml() -> String {
436    crate::template_env::render("php/phpunit.xml.jinja", minijinja::context! {})
437}
438
439fn render_bootstrap(
440    pkg_path: &str,
441    has_http_fixtures: bool,
442    has_file_fixtures: bool,
443    test_documents_path: &str,
444) -> String {
445    let header = hash::header(CommentStyle::DoubleSlash);
446    crate::template_env::render(
447        "php/bootstrap.php.jinja",
448        minijinja::context! {
449            header => header,
450            pkg_path => pkg_path,
451            has_http_fixtures => has_http_fixtures,
452            has_file_fixtures => has_file_fixtures,
453            test_documents_path => test_documents_path,
454        },
455    )
456}
457
458fn render_run_tests_php(extension_name: &str, cargo_crate_name: Option<&str>) -> String {
459    let header = hash::header(CommentStyle::DoubleSlash);
460    let ext_lib_name = if let Some(crate_name) = cargo_crate_name {
461        // Cargo replaces hyphens with underscores for lib names, and the crate name
462        // already includes the _php suffix.
463        format!("lib{}", crate_name.replace('-', "_"))
464    } else {
465        format!("lib{extension_name}_php")
466    };
467    format!(
468        r#"#!/usr/bin/env php
469<?php
470{header}
471declare(strict_types=1);
472
473// Determine platform-specific extension suffix.
474$extSuffix = match (PHP_OS_FAMILY) {{
475    'Darwin' => '.dylib',
476    default => '.so',
477}};
478$extPath = __DIR__ . '/../../target/release/{ext_lib_name}' . $extSuffix;
479
480// If the locally-built extension exists and we have not already restarted with it,
481// re-exec PHP with no system ini (-n) to avoid conflicts with any system-installed
482// version of the extension, then load the local build explicitly.
483if (file_exists($extPath) && !getenv('ALEF_PHP_LOCAL_EXT_LOADED')) {{
484    putenv('ALEF_PHP_LOCAL_EXT_LOADED=1');
485    $php = PHP_BINARY;
486    $phpunitPath = __DIR__ . '/vendor/bin/phpunit';
487
488    $cmd = array_merge(
489        [$php, '-n', '-d', 'extension=' . $extPath],
490        [$phpunitPath],
491        array_slice($GLOBALS['argv'], 1)
492    );
493
494    passthru(implode(' ', array_map('escapeshellarg', $cmd)), $exitCode);
495    exit($exitCode);
496}}
497
498// Extension is now loaded (via the restart above with -n flag).
499// Invoke PHPUnit normally.
500$phpunitPath = __DIR__ . '/vendor/bin/phpunit';
501if (!file_exists($phpunitPath)) {{
502    echo "PHPUnit not found at $phpunitPath. Run 'composer install' first.\n";
503    exit(1);
504}}
505
506require $phpunitPath;
507"#
508    )
509}
510
511#[allow(clippy::too_many_arguments)]
512fn render_test_file(
513    category: &str,
514    fixtures: &[&Fixture],
515    e2e_config: &E2eConfig,
516    lang: &str,
517    namespace: &str,
518    class_name: &str,
519    test_class: &str,
520    type_defs: &[alef_core::ir::TypeDef],
521    php_enum_names: &HashSet<String>,
522    enum_fields: &HashMap<String, String>,
523    result_is_simple: bool,
524    php_client_factory: Option<&str>,
525    options_via: &str,
526    adapters: &[alef_core::config::extras::AdapterConfig],
527) -> String {
528    let header = hash::header(CommentStyle::DoubleSlash);
529
530    // Determine if any handle arg has a non-null config (needs CrawlConfig import).
531    let needs_crawl_config_import = fixtures.iter().any(|f| {
532        let call =
533            e2e_config.resolve_call_for_fixture(f.call.as_deref(), &f.id, &f.resolved_category(), &f.tags, &f.input);
534        call.args.iter().filter(|a| a.arg_type == "handle").any(|a| {
535            let v = f.input.get(&a.field).unwrap_or(&serde_json::Value::Null);
536            !(v.is_null() || v.is_object() && v.as_object().is_some_and(|o| o.is_empty()))
537        })
538    });
539
540    // Determine if any fixture is an HTTP test (needs GuzzleHttp).
541    let has_http_tests = fixtures.iter().any(|f| f.is_http_test());
542
543    // Collect options_type class names that need `use` imports (one import per unique name).
544    let mut options_type_imports: Vec<String> = fixtures
545        .iter()
546        .flat_map(|f| {
547            let call = e2e_config.resolve_call_for_fixture(
548                f.call.as_deref(),
549                &f.id,
550                &f.resolved_category(),
551                &f.tags,
552                &f.input,
553            );
554            let php_override = call.overrides.get(lang);
555            let opt_type = php_override.and_then(|o| o.options_type.as_deref()).or_else(|| {
556                e2e_config
557                    .call
558                    .overrides
559                    .get(lang)
560                    .and_then(|o| o.options_type.as_deref())
561            });
562            let element_types: Vec<String> = call
563                .args
564                .iter()
565                .filter_map(|a| a.element_type.as_ref().map(|t| t.to_string()))
566                .filter(|t| !is_php_reserved_type(t))
567                .collect();
568            opt_type.map(|t| t.to_string()).into_iter().chain(element_types)
569        })
570        .collect::<std::collections::HashSet<_>>()
571        .into_iter()
572        .collect();
573    options_type_imports.sort();
574
575    // Build imports_use list
576    let mut imports_use: Vec<String> = Vec::new();
577    if needs_crawl_config_import {
578        imports_use.push(format!("use {namespace}\\CrawlConfig;"));
579    }
580    for type_name in &options_type_imports {
581        if type_name != class_name {
582            imports_use.push(format!("use {namespace}\\{type_name};"));
583        }
584    }
585
586    // Render all test methods
587    let mut fixtures_body = String::new();
588    for (i, fixture) in fixtures.iter().enumerate() {
589        if fixture.is_http_test() {
590            render_http_test_method(&mut fixtures_body, fixture, fixture.http.as_ref().unwrap());
591        } else {
592            render_test_method(
593                &mut fixtures_body,
594                fixture,
595                e2e_config,
596                lang,
597                namespace,
598                class_name,
599                type_defs,
600                php_enum_names,
601                enum_fields,
602                result_is_simple,
603                php_client_factory,
604                options_via,
605                adapters,
606            );
607        }
608        if i + 1 < fixtures.len() {
609            fixtures_body.push('\n');
610        }
611    }
612
613    crate::template_env::render(
614        "php/test_file.jinja",
615        minijinja::context! {
616            header => header,
617            namespace => namespace,
618            class_name => class_name,
619            test_class => test_class,
620            category => category,
621            imports_use => imports_use,
622            has_http_tests => has_http_tests,
623            fixtures_body => fixtures_body,
624        },
625    )
626}
627
628// ---------------------------------------------------------------------------
629// HTTP test rendering — shared-driver integration
630// ---------------------------------------------------------------------------
631
632/// Thin renderer that emits PHPUnit test methods targeting a mock server via
633/// Guzzle. Satisfies [`client::TestClientRenderer`] so the shared
634/// [`client::http_call::render_http_test`] driver drives the call sequence.
635struct PhpTestClientRenderer;
636
637impl client::TestClientRenderer for PhpTestClientRenderer {
638    fn language_name(&self) -> &'static str {
639        "php"
640    }
641
642    /// Convert a fixture id to a PHP-valid identifier (snake_case via `sanitize_filename`).
643    fn sanitize_test_name(&self, id: &str) -> String {
644        sanitize_filename(id)
645    }
646
647    /// Emit `/** {description} */ public function test_{fn_name}(): void {`.
648    ///
649    /// When `skip_reason` is `Some`, emits a `markTestSkipped(...)` body and the
650    /// shared driver calls `render_test_close` immediately after, so the closing
651    /// brace is emitted symmetrically.
652    fn render_test_open(&self, out: &mut String, fn_name: &str, description: &str, skip_reason: Option<&str>) {
653        let escaped_reason = skip_reason.map(escape_php);
654        let rendered = crate::template_env::render(
655            "php/http_test_open.jinja",
656            minijinja::context! {
657                fn_name => fn_name,
658                description => description,
659                skip_reason => escaped_reason,
660            },
661        );
662        out.push_str(&rendered);
663    }
664
665    /// Emit the closing `}` for a test method.
666    fn render_test_close(&self, out: &mut String) {
667        let rendered = crate::template_env::render("php/http_test_close.jinja", minijinja::context! {});
668        out.push_str(&rendered);
669    }
670
671    /// Emit a Guzzle request to the mock server's `/fixtures/<fixture_id>` endpoint.
672    ///
673    /// The fixture id is extracted from the path (which the mock server routes as
674    /// `/fixtures/<id>`). `$response` is bound for subsequent assertion methods.
675    fn render_call(&self, out: &mut String, ctx: &client::CallCtx<'_>) {
676        let method = ctx.method.to_uppercase();
677
678        // Build Guzzle options array.
679        let mut opts: Vec<String> = Vec::new();
680
681        if let Some(body) = ctx.body {
682            let php_body = json_to_php(body);
683            opts.push(format!("'json' => {php_body}"));
684        }
685
686        // Merge explicit headers and content_type hint.
687        let mut header_pairs: Vec<String> = Vec::new();
688        if let Some(ct) = ctx.content_type {
689            // Only emit if not already in ctx.headers (avoid duplicate Content-Type).
690            if !ctx.headers.keys().any(|k| k.to_lowercase() == "content-type") {
691                header_pairs.push(format!("\"Content-Type\" => \"{}\"", escape_php(ct)));
692            }
693        }
694        for (k, v) in ctx.headers {
695            header_pairs.push(format!("\"{}\" => \"{}\"", escape_php(k), escape_php(v)));
696        }
697        if !header_pairs.is_empty() {
698            opts.push(format!("'headers' => [{}]", header_pairs.join(", ")));
699        }
700
701        if !ctx.cookies.is_empty() {
702            let cookie_str = ctx
703                .cookies
704                .iter()
705                .map(|(k, v)| format!("{}={}", k, v))
706                .collect::<Vec<_>>()
707                .join("; ");
708            opts.push(format!("'headers' => ['Cookie' => \"{}\"]", escape_php(&cookie_str)));
709        }
710
711        if !ctx.query_params.is_empty() {
712            let pairs: Vec<String> = ctx
713                .query_params
714                .iter()
715                .map(|(k, v)| {
716                    let val_str = match v {
717                        serde_json::Value::String(s) => s.clone(),
718                        other => other.to_string(),
719                    };
720                    format!("\"{}\" => \"{}\"", escape_php(k), escape_php(&val_str))
721                })
722                .collect();
723            opts.push(format!("'query' => [{}]", pairs.join(", ")));
724        }
725
726        let path_lit = format!("\"{}\"", escape_php(ctx.path));
727
728        let rendered = crate::template_env::render(
729            "php/http_request.jinja",
730            minijinja::context! {
731                method => method,
732                path => path_lit,
733                opts => opts,
734                response_var => ctx.response_var,
735            },
736        );
737        out.push_str(&rendered);
738    }
739
740    /// Emit `$this->assertEquals(status, $response->getStatusCode())`.
741    fn render_assert_status(&self, out: &mut String, _response_var: &str, status: u16) {
742        let rendered = crate::template_env::render(
743            "php/http_assertions.jinja",
744            minijinja::context! {
745                response_var => "",
746                status_code => status,
747                headers => Vec::<std::collections::HashMap<&str, String>>::new(),
748                body_assertion => String::new(),
749                partial_body => Vec::<std::collections::HashMap<&str, String>>::new(),
750                validation_errors => Vec::<std::collections::HashMap<&str, String>>::new(),
751            },
752        );
753        out.push_str(&rendered);
754    }
755
756    /// Emit a header assertion using `$response->getHeaderLine(...)` or
757    /// `$response->hasHeader(...)`.
758    ///
759    /// Handles special tokens: `<<present>>`, `<<absent>>`, `<<uuid>>`.
760    fn render_assert_header(&self, out: &mut String, _response_var: &str, name: &str, expected: &str) {
761        let header_key = name.to_lowercase();
762        let header_key_lit = format!("\"{}\"", escape_php(&header_key));
763        let assertion_code = match expected {
764            "<<present>>" => {
765                format!("$this->assertTrue($response->hasHeader({header_key_lit}));")
766            }
767            "<<absent>>" => {
768                format!("$this->assertFalse($response->hasHeader({header_key_lit}));")
769            }
770            "<<uuid>>" => {
771                format!(
772                    "$this->assertMatchesRegularExpression('/^[0-9a-f]{{8}}-[0-9a-f]{{4}}-[0-9a-f]{{4}}-[0-9a-f]{{4}}-[0-9a-f]{{12}}$/i', $response->getHeaderLine({header_key_lit}));"
773                )
774            }
775            literal => {
776                let val_lit = format!("\"{}\"", escape_php(literal));
777                format!("$this->assertEquals({val_lit}, $response->getHeaderLine({header_key_lit}));")
778            }
779        };
780
781        let mut headers = vec![std::collections::HashMap::new()];
782        headers[0].insert("assertion_code", assertion_code);
783
784        let rendered = crate::template_env::render(
785            "php/http_assertions.jinja",
786            minijinja::context! {
787                response_var => "",
788                status_code => 0u16,
789                headers => headers,
790                body_assertion => String::new(),
791                partial_body => Vec::<std::collections::HashMap<&str, String>>::new(),
792                validation_errors => Vec::<std::collections::HashMap<&str, String>>::new(),
793            },
794        );
795        out.push_str(&rendered);
796    }
797
798    /// Emit a JSON body equality assertion.
799    ///
800    /// Plain string bodies are compared against `(string) $response->getBody()` directly;
801    /// structured bodies (objects, arrays, booleans, numbers) are decoded via `json_decode`
802    /// and compared with `assertEquals`.
803    fn render_assert_json_body(&self, out: &mut String, _response_var: &str, expected: &serde_json::Value) {
804        let body_assertion = match expected {
805            serde_json::Value::String(s) if !s.is_empty() => {
806                let php_val = format!("\"{}\"", escape_php(s));
807                format!("$this->assertEquals({php_val}, (string) $response->getBody());")
808            }
809            _ => {
810                let php_val = json_to_php(expected);
811                format!(
812                    "$body = json_decode((string) $response->getBody(), true, 512, JSON_THROW_ON_ERROR);\n        $this->assertEquals({php_val}, $body);"
813                )
814            }
815        };
816
817        let rendered = crate::template_env::render(
818            "php/http_assertions.jinja",
819            minijinja::context! {
820                response_var => "",
821                status_code => 0u16,
822                headers => Vec::<std::collections::HashMap<&str, String>>::new(),
823                body_assertion => body_assertion,
824                partial_body => Vec::<std::collections::HashMap<&str, String>>::new(),
825                validation_errors => Vec::<std::collections::HashMap<&str, String>>::new(),
826            },
827        );
828        out.push_str(&rendered);
829    }
830
831    /// Emit partial body assertions: one `assertEquals` per field in `expected`.
832    fn render_assert_partial_body(&self, out: &mut String, _response_var: &str, expected: &serde_json::Value) {
833        if let Some(obj) = expected.as_object() {
834            let mut partial_body: Vec<std::collections::HashMap<&str, String>> = Vec::new();
835            for (key, val) in obj {
836                let php_key = format!("\"{}\"", escape_php(key));
837                let php_val = json_to_php(val);
838                let assertion_code = format!("$this->assertEquals({php_val}, $body[{php_key}]);");
839                let mut entry = std::collections::HashMap::new();
840                entry.insert("assertion_code", assertion_code);
841                partial_body.push(entry);
842            }
843
844            let rendered = crate::template_env::render(
845                "php/http_assertions.jinja",
846                minijinja::context! {
847                    response_var => "",
848                    status_code => 0u16,
849                    headers => Vec::<std::collections::HashMap<&str, String>>::new(),
850                    body_assertion => String::new(),
851                    partial_body => partial_body,
852                    validation_errors => Vec::<std::collections::HashMap<&str, String>>::new(),
853                },
854            );
855            out.push_str(&rendered);
856        }
857    }
858
859    /// Emit validation-error assertions, checking each expected `msg` against the
860    /// JSON-encoded body string (PHP binding returns ProblemDetails with `errors` array).
861    fn render_assert_validation_errors(
862        &self,
863        out: &mut String,
864        _response_var: &str,
865        errors: &[ValidationErrorExpectation],
866    ) {
867        let mut validation_errors: Vec<std::collections::HashMap<&str, String>> = Vec::new();
868        for err in errors {
869            let msg_lit = format!("\"{}\"", escape_php(&err.msg));
870            let assertion_code =
871                format!("$this->assertStringContainsString({msg_lit}, json_encode($body, JSON_UNESCAPED_SLASHES));");
872            let mut entry = std::collections::HashMap::new();
873            entry.insert("assertion_code", assertion_code);
874            validation_errors.push(entry);
875        }
876
877        let rendered = crate::template_env::render(
878            "php/http_assertions.jinja",
879            minijinja::context! {
880                response_var => "",
881                status_code => 0u16,
882                headers => Vec::<std::collections::HashMap<&str, String>>::new(),
883                body_assertion => String::new(),
884                partial_body => Vec::<std::collections::HashMap<&str, String>>::new(),
885                validation_errors => validation_errors,
886            },
887        );
888        out.push_str(&rendered);
889    }
890}
891
892/// Render a PHPUnit test method for an HTTP server test fixture via the shared driver.
893///
894/// Handles the one PHP-specific pre-condition: HTTP 101 (WebSocket upgrade) causes
895/// cURL/Guzzle to fail; it is emitted as a `markTestSkipped` stub directly.
896fn render_http_test_method(out: &mut String, fixture: &Fixture, http: &HttpFixture) {
897    // HTTP 101 (WebSocket upgrade) causes cURL to treat the connection as an upgrade
898    // and fail with "empty reply from server". Skip these tests in the PHP e2e suite
899    // since Guzzle cannot assert on WebSocket upgrade responses via regular HTTP.
900    if http.expected_response.status_code == 101 {
901        let method_name = sanitize_filename(&fixture.id);
902        let description = &fixture.description;
903        out.push_str(&crate::template_env::render(
904            "php/http_test_skip_101.jinja",
905            minijinja::context! {
906                method_name => method_name,
907                description => description,
908            },
909        ));
910        return;
911    }
912
913    client::http_call::render_http_test(out, &PhpTestClientRenderer, fixture);
914}
915
916// ---------------------------------------------------------------------------
917// Function-call test rendering
918// ---------------------------------------------------------------------------
919
920#[allow(clippy::too_many_arguments)]
921fn render_test_method(
922    out: &mut String,
923    fixture: &Fixture,
924    e2e_config: &E2eConfig,
925    lang: &str,
926    namespace: &str,
927    class_name: &str,
928    type_defs: &[alef_core::ir::TypeDef],
929    php_enum_names: &HashSet<String>,
930    enum_fields: &HashMap<String, String>,
931    result_is_simple: bool,
932    php_client_factory: Option<&str>,
933    options_via: &str,
934    adapters: &[alef_core::config::extras::AdapterConfig],
935) {
936    // Resolve per-fixture call config: supports named calls via fixture.call field.
937    let call_config = e2e_config.resolve_call_for_fixture(
938        fixture.call.as_deref(),
939        &fixture.id,
940        &fixture.resolved_category(),
941        &fixture.tags,
942        &fixture.input,
943    );
944    // Build per-call PHP getter map and field resolver using the effective field sets.
945    let per_call_getter_map = build_php_getter_map(
946        type_defs,
947        php_enum_names,
948        call_config,
949        e2e_config.effective_result_fields(call_config),
950    );
951    let call_field_resolver = FieldResolver::new_with_php_getters(
952        e2e_config.effective_fields(call_config),
953        e2e_config.effective_fields_optional(call_config),
954        e2e_config.effective_result_fields(call_config),
955        e2e_config.effective_fields_array(call_config),
956        &HashSet::new(),
957        &HashMap::new(),
958        per_call_getter_map,
959    );
960    let field_resolver = &call_field_resolver;
961    let call_overrides = call_config.overrides.get(lang);
962    let has_override = call_overrides.is_some_and(|o| o.function.is_some());
963    // Per-call result_is_simple override wins over the language-level default,
964    // so calls like `speech` (returns Vec<u8>) can be marked simple even if
965    // chat/embed are not.
966    let result_is_simple = call_overrides.is_some_and(|o| o.result_is_simple) || result_is_simple;
967    let mut function_name = call_overrides
968        .and_then(|o| o.function.as_ref())
969        .cloned()
970        .unwrap_or_else(|| call_config.function.clone());
971    // The PHP facade exposes async Rust methods under their bare name (no `_async`
972    // suffix) — PHP has no surface-level async, so the facade picks the async
973    // implementation as the default and delegates to `*Async` on the native class.
974    // The `*_sync` variants stay explicit (e.g. `extract_bytes_sync` → `extractBytesSync`).
975    if !has_override {
976        function_name = function_name.to_lower_camel_case();
977    }
978    let result_var = &call_config.result_var;
979    let args = &call_config.args;
980
981    let method_name = sanitize_filename(&fixture.id);
982    let description = &fixture.description;
983    let expects_error = fixture.assertions.iter().any(|a| a.assertion_type == "error");
984
985    // Resolve options_type for this call's PHP override, with fallback to the top-level call override.
986    let call_options_type = call_overrides.and_then(|o| o.options_type.as_deref()).or_else(|| {
987        e2e_config
988            .call
989            .overrides
990            .get(lang)
991            .and_then(|o| o.options_type.as_deref())
992    });
993
994    let adapter_request_type: Option<String> = adapters
995        .iter()
996        .find(|a| a.name == call_config.function.as_str())
997        .and_then(|a| a.request_type.as_deref())
998        .map(|rt| rt.rsplit("::").next().unwrap_or(rt).to_string());
999    let (mut setup_lines, args_str) = build_args_and_setup(
1000        &fixture.input,
1001        args,
1002        class_name,
1003        enum_fields,
1004        fixture,
1005        options_via,
1006        call_options_type,
1007        adapter_request_type.as_deref(),
1008    );
1009
1010    // Check for skip_languages early
1011    let skip_test = call_config.skip_languages.iter().any(|l| l == "php");
1012    if skip_test {
1013        let rendered = crate::template_env::render(
1014            "php/test_method.jinja",
1015            minijinja::context! {
1016                method_name => method_name,
1017                description => description,
1018                client_factory => String::new(),
1019                setup_lines => Vec::<String>::new(),
1020                expects_error => false,
1021                skip_test => true,
1022                has_usable_assertions => false,
1023                call_expr => String::new(),
1024                result_var => result_var,
1025                assertions_body => String::new(),
1026            },
1027        );
1028        out.push_str(&rendered);
1029        return;
1030    }
1031
1032    // Build visitor if present and add to setup
1033    let mut options_already_created = !args_str.is_empty() && args_str == "$options";
1034    if let Some(visitor_spec) = &fixture.visitor {
1035        build_php_visitor(&mut setup_lines, visitor_spec);
1036        if !options_already_created {
1037            let options_type = call_options_type.unwrap_or("ConversionOptions");
1038            if options_via == "from_json" {
1039                // When options_via is "from_json", create options from JSON first,
1040                // then attach the visitor using with_visitor() since PHP closures can't be JSON-encoded.
1041                setup_lines.push(format!("$options = \\{namespace}\\{options_type}::from_json('{{}}');"));
1042                setup_lines.push(format!(
1043                    "$visitorHandle = \\{namespace}\\VisitorHandle::from_php_object($visitor);"
1044                ));
1045                setup_lines.push("$options = $options->with_visitor($visitorHandle);".to_string());
1046            } else {
1047                // Default builder pattern for other options_via modes
1048                setup_lines.push(format!("$builder = \\{namespace}\\{options_type}::builder();"));
1049                setup_lines.push("$options = $builder->visitor($visitor)->build();".to_string());
1050            }
1051            options_already_created = true;
1052        }
1053    }
1054
1055    let final_args = if options_already_created {
1056        if args_str.is_empty() || args_str == "$options" {
1057            "$options".to_string()
1058        } else {
1059            format!("{args_str}, $options")
1060        }
1061    } else {
1062        args_str
1063    };
1064
1065    let call_expr = if php_client_factory.is_some() {
1066        format!("$client->{function_name}({final_args})")
1067    } else {
1068        format!("{class_name}::{function_name}({final_args})")
1069    };
1070
1071    let has_mock = fixture.mock_response.is_some() || fixture.http.is_some();
1072    let api_key_var = fixture.env.as_ref().and_then(|e| e.api_key_var.as_deref());
1073    let client_factory = if let Some(factory) = php_client_factory {
1074        let fixture_id = &fixture.id;
1075        if let Some(var) = api_key_var.filter(|_| has_mock) {
1076            format!(
1077                "$apiKey = getenv('{var}');\n        $baseUrl = ($apiKey !== false && $apiKey !== '') ? null : getenv('MOCK_SERVER_URL') . '/fixtures/{fixture_id}';\n        fwrite(STDERR, \"{fixture_id}: \" . ($baseUrl === null ? 'using real API ({var} is set)' : 'using mock server ({var} not set)') . \"\\n\");\n        $client = \\{namespace}\\{class_name}::{factory}($baseUrl === null ? $apiKey : 'test-key', $baseUrl);"
1078            )
1079        } else if has_mock {
1080            let base_url_expr = if fixture.has_host_root_route() {
1081                let env_key = format!("MOCK_SERVER_{}", fixture_id.to_uppercase());
1082                format!("(getenv('{env_key}') ?: getenv('MOCK_SERVER_URL') . '/fixtures/{fixture_id}')")
1083            } else {
1084                format!("getenv('MOCK_SERVER_URL') . '/fixtures/{fixture_id}'")
1085            };
1086            format!("$client = \\{namespace}\\{class_name}::{factory}('test-key', {base_url_expr});")
1087        } else if let Some(var) = api_key_var {
1088            format!(
1089                "$apiKey = getenv('{var}');\n        if (!$apiKey) {{ $this->markTestSkipped('{var} not set'); return; }}\n        $client = \\{namespace}\\{class_name}::{factory}($apiKey);"
1090            )
1091        } else {
1092            format!("$client = \\{namespace}\\{class_name}::{factory}('test-key');")
1093        }
1094    } else {
1095        String::new()
1096    };
1097
1098    // Streaming detection (call-level `streaming` opt-out is honored).
1099    let is_streaming = crate::codegen::streaming_assertions::resolve_is_streaming(fixture, call_config.streaming);
1100
1101    // Determine if there are usable assertions.
1102    // For streaming fixtures: streaming virtual fields count as usable.
1103    let has_usable_assertions = fixture.assertions.iter().any(|a| {
1104        if a.assertion_type == "error" || a.assertion_type == "not_error" {
1105            return false;
1106        }
1107        match &a.field {
1108            Some(f) if !f.is_empty() => {
1109                if is_streaming && crate::codegen::streaming_assertions::is_streaming_virtual_field(f) {
1110                    return true;
1111                }
1112                field_resolver.is_valid_for_result(f)
1113            }
1114            _ => true,
1115        }
1116    });
1117
1118    // For streaming fixtures, emit collect snippet after the result assignment.
1119    let collect_snippet = if is_streaming {
1120        crate::codegen::streaming_assertions::StreamingFieldResolver::collect_snippet("php", result_var, "chunks")
1121            .unwrap_or_default()
1122    } else {
1123        String::new()
1124    };
1125
1126    // Collect fields_array fields that are referenced in assertions
1127    // so we can emit bindings for them (e.g., $chunks = $result->getChunks();).
1128    //
1129    // Use a BTreeMap (sorted by key) so the emitted accessor extraction lines
1130    // appear in a stable order across regens. A HashMap here previously leaked
1131    // its randomized iteration order into the generated PHP source, causing
1132    // e.g. tslp's `e2e/php/tests/ProcessTest.php` to flip the relative order
1133    // of `$imports` vs `$structure` bindings between back-to-back
1134    // `alef e2e generate` invocations.
1135    let mut fields_array_bindings: std::collections::BTreeMap<String, (String, String)> =
1136        std::collections::BTreeMap::new();
1137    for assertion in &fixture.assertions {
1138        if let Some(f) = &assertion.field {
1139            if !f.is_empty() && field_resolver.is_array(f) {
1140                // Only emit binding if not already added
1141                if !fields_array_bindings.contains_key(f.as_str()) {
1142                    let accessor = field_resolver.accessor(f, "php", &format!("${result_var}"));
1143                    let var_name = f.to_lower_camel_case();
1144                    fields_array_bindings.insert(f.clone(), (var_name, accessor));
1145                }
1146            }
1147        }
1148    }
1149
1150    // Generate field binding lines (e.g., $chunks = $result->getChunks();)
1151    // Every collected array-binding accessor needs its $var emitted; the prior
1152    // hardcoded allowlist ("chunks"/"imports"/"structure") silently dropped
1153    // bindings like $choices0MessageToolCalls and $segments, leaving
1154    // assertions that reference them to fail with "Undefined variable".
1155    // BTreeMap iteration is sorted-by-key, so this loop is deterministic.
1156    let mut field_bindings = String::new();
1157    for (var_name, accessor) in fields_array_bindings.values() {
1158        field_bindings.push_str(&format!("        ${} = {};\n", var_name, accessor));
1159    }
1160
1161    // Render assertions_body
1162    let mut assertions_body = String::new();
1163    for assertion in &fixture.assertions {
1164        render_assertion(
1165            &mut assertions_body,
1166            assertion,
1167            result_var,
1168            field_resolver,
1169            result_is_simple,
1170            call_config.result_is_array,
1171            &fields_array_bindings,
1172        );
1173    }
1174
1175    // Streaming fixtures whose only assertion is `not_error` produce an empty
1176    // assertions_body even though the stream were drained successfully.  PHPUnit
1177    // flags such tests as "risky" (no assertions performed).  Emit a minimal
1178    // structural assertion against the drained chunk list so the test records
1179    // success without false-positive reliance on `expectNotToPerformAssertions`.
1180    if is_streaming && !expects_error && assertions_body.trim().is_empty() {
1181        assertions_body.push_str("        $this->assertTrue(is_array($chunks), 'expected drained chunks list');\n");
1182    }
1183
1184    let rendered = crate::template_env::render(
1185        "php/test_method.jinja",
1186        minijinja::context! {
1187            method_name => method_name,
1188            description => description,
1189            client_factory => client_factory,
1190            setup_lines => setup_lines,
1191            expects_error => expects_error,
1192            skip_test => fixture.assertions.is_empty(),
1193            has_usable_assertions => has_usable_assertions || is_streaming,
1194            call_expr => call_expr,
1195            result_var => result_var,
1196            collect_snippet => collect_snippet,
1197            field_bindings => field_bindings,
1198            assertions_body => assertions_body,
1199        },
1200    );
1201    out.push_str(&rendered);
1202}
1203
1204/// Build setup lines (e.g. handle creation) and the argument list for the function call.
1205///
1206/// `options_via` controls how `json_object` args are passed:
1207/// - `"array"` (default): PHP array literal `["key" => value, ...]`
1208/// - `"json"`: JSON string via `json_encode([...])` — use when the Rust method accepts `Option<String>`
1209///
1210/// `options_type` is the PHP class name (e.g. `"ProcessConfig"`) used when constructing options
1211/// via `ClassName::from_json(json_encode([...]))`. Required when `options_via` is not `"json"` and
1212/// the binding accepts a typed config object.
1213///
1214/// Returns `(setup_lines, args_string)`.
1215/// Emit PHP batch item array constructors for BatchBytesItem or BatchFileItem arrays.
1216fn emit_php_batch_item_array(arr: &serde_json::Value, elem_type: &str) -> String {
1217    if let Some(items) = arr.as_array() {
1218        let item_strs: Vec<String> = items
1219            .iter()
1220            .filter_map(|item| {
1221                if let Some(obj) = item.as_object() {
1222                    match elem_type {
1223                        "BatchBytesItem" => {
1224                            let content = obj.get("content").and_then(|v| v.as_array());
1225                            let mime_type = obj.get("mime_type").and_then(|v| v.as_str()).unwrap_or("text/plain");
1226                            let content_code = if let Some(arr) = content {
1227                                let bytes: Vec<String> = arr
1228                                    .iter()
1229                                    .filter_map(|v| v.as_u64())
1230                                    .map(|n| format!("\\x{:02x}", n))
1231                                    .collect();
1232                                format!("\"{}\"", bytes.join(""))
1233                            } else {
1234                                "\"\"".to_string()
1235                            };
1236                            Some(format!(
1237                                "new {}(content: {}, mimeType: \"{}\")",
1238                                elem_type, content_code, mime_type
1239                            ))
1240                        }
1241                        "BatchFileItem" => {
1242                            let path = obj.get("path").and_then(|v| v.as_str()).unwrap_or("");
1243                            Some(format!("new {}(path: \"{}\")", elem_type, path))
1244                        }
1245                        _ => None,
1246                    }
1247                } else {
1248                    None
1249                }
1250            })
1251            .collect();
1252        format!("[{}]", item_strs.join(", "))
1253    } else {
1254        "[]".to_string()
1255    }
1256}
1257
1258#[allow(clippy::too_many_arguments)]
1259fn build_args_and_setup(
1260    input: &serde_json::Value,
1261    args: &[crate::config::ArgMapping],
1262    class_name: &str,
1263    _enum_fields: &HashMap<String, String>,
1264    fixture: &crate::fixture::Fixture,
1265    options_via: &str,
1266    options_type: Option<&str>,
1267    adapter_request_type: Option<&str>,
1268) -> (Vec<String>, String) {
1269    let fixture_id = &fixture.id;
1270    if args.is_empty() {
1271        // No args configuration: pass the whole input only if it's non-empty.
1272        // Functions with no parameters (e.g. list_models) have empty input and get no args.
1273        let is_empty_input = match input {
1274            serde_json::Value::Null => true,
1275            serde_json::Value::Object(m) => m.is_empty(),
1276            _ => false,
1277        };
1278        if is_empty_input {
1279            return (Vec::new(), String::new());
1280        }
1281        return (Vec::new(), json_to_php(input));
1282    }
1283
1284    let mut setup_lines: Vec<String> = Vec::new();
1285    let mut parts: Vec<String> = Vec::new();
1286
1287    // True when any arg after `from_idx` has a fixture value (or has no fixture
1288    // value but is required — i.e. would emit *something*). Used to decide
1289    // whether a missing optional middle arg must emit `null` to preserve the
1290    // positional argument layout, or can be safely dropped.
1291    let arg_has_emission = |arg: &crate::config::ArgMapping| -> bool {
1292        let val = if arg.field == "input" {
1293            Some(input)
1294        } else {
1295            let field = arg.field.strip_prefix("input.").unwrap_or(&arg.field);
1296            input.get(field)
1297        };
1298        match val {
1299            None | Some(serde_json::Value::Null) => !arg.optional,
1300            Some(_) => true,
1301        }
1302    };
1303    let any_later_has_emission = |from_idx: usize| -> bool { args[from_idx..].iter().any(arg_has_emission) };
1304
1305    for (idx, arg) in args.iter().enumerate() {
1306        if arg.arg_type == "mock_url" {
1307            if fixture.has_host_root_route() {
1308                let env_key = format!("MOCK_SERVER_{}", fixture_id.to_uppercase());
1309                setup_lines.push(format!(
1310                    "${} = getenv('{env_key}') ?: getenv('MOCK_SERVER_URL') . '/fixtures/{fixture_id}';",
1311                    arg.name,
1312                ));
1313            } else {
1314                setup_lines.push(format!(
1315                    "${} = getenv('MOCK_SERVER_URL') . '/fixtures/{fixture_id}';",
1316                    arg.name,
1317                ));
1318            }
1319            if let Some(req_type) = adapter_request_type {
1320                let req_var = format!("${}_req", arg.name);
1321                setup_lines.push(format!("{req_var} = new {req_type}(${});", arg.name));
1322                parts.push(req_var);
1323            } else {
1324                parts.push(format!("${}", arg.name));
1325            }
1326            continue;
1327        }
1328
1329        if arg.arg_type == "mock_url_list" {
1330            // array of URLs: each element is either a bare path (`/seed1`) — prefixed
1331            // with the per-fixture mock-server URL at runtime — or an absolute URL kept
1332            // as-is. Mirrors `mock_url` resolution: `MOCK_SERVER_<FIXTURE_ID>` first,
1333            // then `MOCK_SERVER_URL/fixtures/<id>`.
1334            let env_key = format!("MOCK_SERVER_{}", fixture_id.to_uppercase());
1335            let field = arg.field.strip_prefix("input.").unwrap_or(&arg.field);
1336            let val = input.get(field).unwrap_or(&serde_json::Value::Null);
1337            let paths: Vec<String> = if let Some(arr) = val.as_array() {
1338                arr.iter()
1339                    .filter_map(|v| v.as_str().map(|s| format!("\"{}\"", escape_php(s))))
1340                    .collect()
1341            } else {
1342                Vec::new()
1343            };
1344            let paths_literal = paths.join(", ");
1345            let name = &arg.name;
1346            setup_lines.push(format!(
1347                "${name}_base = getenv('{env_key}') ?: getenv('MOCK_SERVER_URL') . '/fixtures/{fixture_id}';"
1348            ));
1349            setup_lines.push(format!(
1350                "${name} = array_map(fn($p) => str_starts_with($p, 'http') ? $p : ${name}_base . $p, [{paths_literal}]);"
1351            ));
1352            parts.push(format!("${name}"));
1353            continue;
1354        }
1355
1356        if arg.arg_type == "handle" {
1357            // Generate a createEngine (or equivalent) call and pass the variable.
1358            let constructor_name = format!("create{}", arg.name.to_upper_camel_case());
1359            let config_value = if arg.field == "input" {
1360                input
1361            } else {
1362                let field = arg.field.strip_prefix("input.").unwrap_or(&arg.field);
1363                input.get(field).unwrap_or(&serde_json::Value::Null)
1364            };
1365            if config_value.is_null()
1366                || config_value.is_object() && config_value.as_object().is_some_and(|o| o.is_empty())
1367            {
1368                setup_lines.push(format!("${} = {class_name}::{constructor_name}(null);", arg.name,));
1369            } else {
1370                let name = &arg.name;
1371                // Use CrawlConfig::from_json() instead of direct property assignment.
1372                // ext-php-rs doesn't support writable #[php(prop)] fields for complex types,
1373                // so serialize the config to JSON and use from_json() to construct it.
1374                // Filter out empty string enum values before passing to from_json().
1375                let filtered_config = filter_empty_enum_strings(config_value);
1376                setup_lines.push(format!(
1377                    "${name}_config = CrawlConfig::from_json(json_encode({}));",
1378                    json_to_php_camel_keys(&filtered_config)
1379                ));
1380                setup_lines.push(format!(
1381                    "${} = {class_name}::{constructor_name}(${name}_config);",
1382                    arg.name,
1383                ));
1384            }
1385            parts.push(format!("${}", arg.name));
1386            continue;
1387        }
1388
1389        let val = if arg.field == "input" {
1390            Some(input)
1391        } else {
1392            let field = arg.field.strip_prefix("input.").unwrap_or(&arg.field);
1393            input.get(field)
1394        };
1395
1396        // Bytes args: fixture stores either a fixture-relative path string (load
1397        // with file_get_contents at runtime, mirroring the go/python convention)
1398        // or an inline byte array (encode as a "\xNN" escape string).
1399        if arg.arg_type == "bytes" {
1400            match val {
1401                None | Some(serde_json::Value::Null) => {
1402                    if arg.optional {
1403                        parts.push("null".to_string());
1404                    } else {
1405                        parts.push("\"\"".to_string());
1406                    }
1407                }
1408                Some(serde_json::Value::String(s)) => {
1409                    let var_name = format!("{}Bytes", arg.name);
1410                    setup_lines.push(format!(
1411                        "${var_name} = file_get_contents(\"{path}\");\n        if (${var_name} === false) {{ $this->fail(\"failed to read fixture: {path}\"); }}",
1412                        path = s.replace('"', "\\\"")
1413                    ));
1414                    parts.push(format!("${var_name}"));
1415                }
1416                Some(serde_json::Value::Array(arr)) => {
1417                    let bytes: String = arr
1418                        .iter()
1419                        .filter_map(|v| v.as_u64())
1420                        .map(|n| format!("\\x{:02x}", n))
1421                        .collect();
1422                    parts.push(format!("\"{bytes}\""));
1423                }
1424                Some(other) => {
1425                    parts.push(json_to_php(other));
1426                }
1427            }
1428            continue;
1429        }
1430
1431        match val {
1432            None | Some(serde_json::Value::Null) if arg.arg_type == "json_object" && arg.name == "config" => {
1433                // Special case: ExtractionConfig and similar config objects with no fixture value
1434                // should default to an empty instance (e.g., ExtractionConfig::from_json('{}'))
1435                // to satisfy required parameters. This check happens BEFORE the optional check
1436                // so that config args are always provided, even if marked optional in alef.toml.
1437                // Infer the type name from the arg name and capitalize it (e.g., "config" -> "ExtractionConfig").
1438                let type_name = if arg.name == "config" {
1439                    "ExtractionConfig".to_string()
1440                } else {
1441                    format!("{}Config", arg.name.to_upper_camel_case())
1442                };
1443                parts.push(format!("{type_name}::from_json('{{}}')"));
1444                continue;
1445            }
1446            None | Some(serde_json::Value::Null) if arg.optional => {
1447                // Optional arg with no fixture value. If a later arg WILL emit
1448                // something, we must keep this slot in place by passing `null`
1449                // so the positional argument layout matches the PHP signature.
1450                // Otherwise drop the trailing optional argument entirely.
1451                if any_later_has_emission(idx + 1) {
1452                    parts.push("null".to_string());
1453                }
1454                continue;
1455            }
1456            None | Some(serde_json::Value::Null) => {
1457                // Required arg with no fixture value: pass a language-appropriate default.
1458                let default_val = match arg.arg_type.as_str() {
1459                    "string" => "\"\"".to_string(),
1460                    "int" | "integer" => "0".to_string(),
1461                    "float" | "number" => "0.0".to_string(),
1462                    "bool" | "boolean" => "false".to_string(),
1463                    "json_object" if options_via == "json" => "null".to_string(),
1464                    _ => "null".to_string(),
1465                };
1466                parts.push(default_val);
1467            }
1468            Some(v) => {
1469                if arg.arg_type == "json_object" && !v.is_null() {
1470                    // Check for batch item arrays first
1471                    if let Some(elem_type) = &arg.element_type {
1472                        if (elem_type == "BatchBytesItem" || elem_type == "BatchFileItem") && v.is_array() {
1473                            parts.push(emit_php_batch_item_array(v, elem_type));
1474                            continue;
1475                        }
1476                        // When element_type is a scalar/primitive and value is an array,
1477                        // pass it directly as a PHP array (e.g. ["python"]) rather than
1478                        // wrapping in a typed config constructor.
1479                        if v.is_array() && is_php_reserved_type(elem_type) {
1480                            parts.push(json_to_php(v));
1481                            continue;
1482                        }
1483                    }
1484                    match options_via {
1485                        "json" => {
1486                            // Pass as JSON string via json_encode(); the Rust method accepts Option<String>.
1487                            // Filter out empty string enum values.
1488                            let filtered_v = filter_empty_enum_strings(v);
1489
1490                            // If the config is empty after filtering, pass null instead.
1491                            if let serde_json::Value::Object(obj) = &filtered_v {
1492                                if obj.is_empty() {
1493                                    parts.push("null".to_string());
1494                                    continue;
1495                                }
1496                            }
1497
1498                            parts.push(format!("json_encode({})", json_to_php_camel_keys(&filtered_v)));
1499                            continue;
1500                        }
1501                        _ => {
1502                            if let Some(type_name) = options_type {
1503                                // Use TypeName::from_json(json_encode([...])) to construct the
1504                                // typed config object. ext-php-rs structs expose a from_json()
1505                                // static method that accepts a JSON string.
1506                                // Filter out empty string enum values before passing to from_json().
1507                                let filtered_v = filter_empty_enum_strings(v);
1508
1509                                // For empty objects, construct with from_json('{}') to get the
1510                                // type's defaults rather than passing null (which fails for non-optional params).
1511                                if let serde_json::Value::Object(obj) = &filtered_v {
1512                                    if obj.is_empty() {
1513                                        let arg_var = format!("${}", arg.name);
1514                                        setup_lines.push(format!("{arg_var} = {type_name}::from_json('{{}}');"));
1515                                        parts.push(arg_var);
1516                                        continue;
1517                                    }
1518                                }
1519
1520                                let arg_var = format!("${}", arg.name);
1521                                // PHP binding's serde wrapper applies `rename_all` per the per-language
1522                                // wire-case registry (`ResolvedCrateConfig::serde_rename_all_for_language`),
1523                                // which is camelCase for PHP — emit camelCase keys to match.
1524                                setup_lines.push(format!(
1525                                    "{arg_var} = {type_name}::from_json(json_encode({}));",
1526                                    json_to_php_camel_keys(&filtered_v)
1527                                ));
1528                                parts.push(arg_var);
1529                                continue;
1530                            }
1531                            // Fallback: builder pattern or from_json when no options_type is configured.
1532                            // This path is kept for backwards compatibility with projects
1533                            // that use a builder-style API without explicit options_type.
1534                            if options_via == "from_json" {
1535                                // When options_via = "from_json", construct via from_json(json_encode([...]))
1536                                if let Some(_obj) = v.as_object() {
1537                                    let camel_keys_array = json_to_php_camel_keys(v);
1538                                    setup_lines.push(format!(
1539                                        "$options = \\HtmlToMarkdown\\ConversionOptions::from_json(json_encode({}));",
1540                                        camel_keys_array
1541                                    ));
1542                                    parts.push("$options".to_string());
1543                                    continue;
1544                                }
1545                            }
1546                            if let Some(obj) = v.as_object() {
1547                                setup_lines.push("$builder = $this->createDefaultOptionsBuilder();".to_string());
1548                                for (k, vv) in obj {
1549                                    let snake_key = k.to_snake_case();
1550                                    if snake_key == "preprocessing" {
1551                                        if let Some(prep_obj) = vv.as_object() {
1552                                            let enabled =
1553                                                prep_obj.get("enabled").and_then(|v| v.as_bool()).unwrap_or(true);
1554                                            let preset =
1555                                                prep_obj.get("preset").and_then(|v| v.as_str()).unwrap_or("Minimal");
1556                                            let remove_navigation = prep_obj
1557                                                .get("remove_navigation")
1558                                                .and_then(|v| v.as_bool())
1559                                                .unwrap_or(true);
1560                                            let remove_forms =
1561                                                prep_obj.get("remove_forms").and_then(|v| v.as_bool()).unwrap_or(true);
1562                                            setup_lines.push(format!(
1563                                                "$preprocessing = $this->createPreprocessingOptions({}, {}, {}, {});",
1564                                                if enabled { "true" } else { "false" },
1565                                                json_to_php(&serde_json::Value::String(preset.to_string())),
1566                                                if remove_navigation { "true" } else { "false" },
1567                                                if remove_forms { "true" } else { "false" }
1568                                            ));
1569                                            setup_lines.push(
1570                                                "$builder = $builder->preprocessing($preprocessing);".to_string(),
1571                                            );
1572                                        }
1573                                    }
1574                                }
1575                                setup_lines.push("$options = $builder->build();".to_string());
1576                                parts.push("$options".to_string());
1577                                continue;
1578                            }
1579                        }
1580                    }
1581                }
1582                parts.push(json_to_php(v));
1583            }
1584        }
1585    }
1586
1587    (setup_lines, parts.join(", "))
1588}
1589
1590fn render_assertion(
1591    out: &mut String,
1592    assertion: &Assertion,
1593    result_var: &str,
1594    field_resolver: &FieldResolver,
1595    result_is_simple: bool,
1596    result_is_array: bool,
1597    fields_array_bindings: &std::collections::BTreeMap<String, (String, String)>,
1598) {
1599    // Handle synthetic / derived fields before the is_valid_for_result check
1600    // so they are never treated as struct property accesses on the result.
1601    if let Some(f) = &assertion.field {
1602        match f.as_str() {
1603            "chunks_have_content" => {
1604                let pred = format!(
1605                    "array_reduce(${result_var}->chunks ?? [], fn($carry, $c) => $carry && !empty($c->content), true)"
1606                );
1607                out.push_str(&crate::template_env::render(
1608                    "php/synthetic_assertion.jinja",
1609                    minijinja::context! {
1610                        assertion_kind => "chunks_content",
1611                        assertion_type => assertion.assertion_type.as_str(),
1612                        pred => pred,
1613                        field_name => f,
1614                    },
1615                ));
1616                return;
1617            }
1618            "chunks_have_embeddings" => {
1619                let pred = format!(
1620                    "array_reduce(${result_var}->chunks ?? [], fn($carry, $c) => $carry && !empty($c->embedding), true)"
1621                );
1622                out.push_str(&crate::template_env::render(
1623                    "php/synthetic_assertion.jinja",
1624                    minijinja::context! {
1625                        assertion_kind => "chunks_embeddings",
1626                        assertion_type => assertion.assertion_type.as_str(),
1627                        pred => pred,
1628                        field_name => f,
1629                    },
1630                ));
1631                return;
1632            }
1633            // ---- EmbedResponse virtual fields ----
1634            // embed_texts returns array<array<float>> in PHP — no wrapper object.
1635            // $result_var is the embedding matrix; use it directly.
1636            "embeddings" => {
1637                let php_val = assertion.value.as_ref().map(json_to_php).unwrap_or_default();
1638                out.push_str(&crate::template_env::render(
1639                    "php/synthetic_assertion.jinja",
1640                    minijinja::context! {
1641                        assertion_kind => "embeddings",
1642                        assertion_type => assertion.assertion_type.as_str(),
1643                        php_val => php_val,
1644                        result_var => result_var,
1645                    },
1646                ));
1647                return;
1648            }
1649            "embedding_dimensions" => {
1650                let expr = format!("(empty(${result_var}) ? 0 : count(${result_var}[0]))");
1651                let php_val = assertion.value.as_ref().map(json_to_php).unwrap_or_default();
1652                out.push_str(&crate::template_env::render(
1653                    "php/synthetic_assertion.jinja",
1654                    minijinja::context! {
1655                        assertion_kind => "embedding_dimensions",
1656                        assertion_type => assertion.assertion_type.as_str(),
1657                        expr => expr,
1658                        php_val => php_val,
1659                    },
1660                ));
1661                return;
1662            }
1663            "embeddings_valid" | "embeddings_finite" | "embeddings_non_zero" | "embeddings_normalized" => {
1664                let pred = match f.as_str() {
1665                    "embeddings_valid" => {
1666                        format!("array_reduce(${result_var}, fn($carry, $e) => $carry && count($e) > 0, true)")
1667                    }
1668                    "embeddings_finite" => {
1669                        format!(
1670                            "array_reduce(${result_var}, fn($carry, $e) => $carry && array_reduce($e, fn($c, $v) => $c && is_finite($v), true), true)"
1671                        )
1672                    }
1673                    "embeddings_non_zero" => {
1674                        format!(
1675                            "array_reduce(${result_var}, fn($carry, $e) => $carry && count(array_filter($e, fn($v) => $v !== 0.0)) > 0, true)"
1676                        )
1677                    }
1678                    "embeddings_normalized" => {
1679                        format!(
1680                            "array_reduce(${result_var}, fn($carry, $e) => $carry && abs(array_sum(array_map(fn($v) => $v * $v, $e)) - 1.0) < 1e-3, true)"
1681                        )
1682                    }
1683                    _ => unreachable!(),
1684                };
1685                let assertion_kind = format!("embeddings_{}", f.strip_prefix("embeddings_").unwrap_or(f));
1686                out.push_str(&crate::template_env::render(
1687                    "php/synthetic_assertion.jinja",
1688                    minijinja::context! {
1689                        assertion_kind => assertion_kind,
1690                        assertion_type => assertion.assertion_type.as_str(),
1691                        pred => pred,
1692                        field_name => f,
1693                    },
1694                ));
1695                return;
1696            }
1697            // ---- keywords / keywords_count ----
1698            // PHP ExtractionResult does not expose extracted_keywords; skip.
1699            "keywords" | "keywords_count" => {
1700                out.push_str(&crate::template_env::render(
1701                    "php/synthetic_assertion.jinja",
1702                    minijinja::context! {
1703                        assertion_kind => "keywords",
1704                        field_name => f,
1705                    },
1706                ));
1707                return;
1708            }
1709            _ => {}
1710        }
1711    }
1712
1713    // Streaming virtual fields: intercept before is_valid_for_result so they are
1714    // never skipped.  These fields resolve against the `$chunks` collected-list variable.
1715    if let Some(f) = &assertion.field {
1716        if !f.is_empty() && crate::codegen::streaming_assertions::is_streaming_virtual_field(f) {
1717            if let Some(expr) =
1718                crate::codegen::streaming_assertions::StreamingFieldResolver::accessor(f, "php", "chunks")
1719            {
1720                let line = match assertion.assertion_type.as_str() {
1721                    "count_min" => {
1722                        if let Some(n) = assertion.value.as_ref().and_then(|v| v.as_u64()) {
1723                            format!(
1724                                "        $this->assertGreaterThanOrEqual({n}, count({expr}), 'expected >= {n} chunks');\n"
1725                            )
1726                        } else {
1727                            String::new()
1728                        }
1729                    }
1730                    "count_equals" => {
1731                        if let Some(n) = assertion.value.as_ref().and_then(|v| v.as_u64()) {
1732                            format!("        $this->assertCount({n}, {expr});\n")
1733                        } else {
1734                            String::new()
1735                        }
1736                    }
1737                    "equals" => {
1738                        if let Some(serde_json::Value::String(s)) = &assertion.value {
1739                            let escaped = s.replace('\\', "\\\\").replace('\'', "\\'");
1740                            format!("        $this->assertEquals('{escaped}', {expr});\n")
1741                        } else if let Some(n) = assertion.value.as_ref().and_then(|v| v.as_u64()) {
1742                            format!("        $this->assertEquals({n}, {expr});\n")
1743                        } else {
1744                            String::new()
1745                        }
1746                    }
1747                    "not_empty" => format!("        $this->assertNotEmpty({expr});\n"),
1748                    "is_empty" => format!("        $this->assertEmpty({expr});\n"),
1749                    "is_true" => format!("        $this->assertTrue({expr});\n"),
1750                    "is_false" => format!("        $this->assertFalse({expr});\n"),
1751                    "greater_than" => {
1752                        if let Some(n) = assertion.value.as_ref().and_then(|v| v.as_u64()) {
1753                            format!("        $this->assertGreaterThan({n}, {expr});\n")
1754                        } else {
1755                            String::new()
1756                        }
1757                    }
1758                    "greater_than_or_equal" => {
1759                        if let Some(n) = assertion.value.as_ref().and_then(|v| v.as_u64()) {
1760                            format!("        $this->assertGreaterThanOrEqual({n}, {expr});\n")
1761                        } else {
1762                            String::new()
1763                        }
1764                    }
1765                    "contains" => {
1766                        if let Some(serde_json::Value::String(s)) = &assertion.value {
1767                            let escaped = s.replace('\\', "\\\\").replace('\'', "\\'");
1768                            format!("        $this->assertStringContainsString('{escaped}', {expr});\n")
1769                        } else {
1770                            String::new()
1771                        }
1772                    }
1773                    _ => format!(
1774                        "        // streaming field '{f}': assertion type '{}' not rendered\n",
1775                        assertion.assertion_type
1776                    ),
1777                };
1778                if !line.is_empty() {
1779                    out.push_str(&line);
1780                }
1781            }
1782            return;
1783        }
1784    }
1785
1786    // Skip assertions on fields that don't exist on the result type.
1787    if let Some(f) = &assertion.field {
1788        if !f.is_empty() && !field_resolver.is_valid_for_result(f) {
1789            out.push_str(&crate::template_env::render(
1790                "php/synthetic_assertion.jinja",
1791                minijinja::context! {
1792                    assertion_kind => "skipped",
1793                    field_name => f,
1794                },
1795            ));
1796            return;
1797        }
1798    }
1799
1800    // When result_is_simple, skip assertions that reference non-content fields
1801    // (e.g., metadata, document, structure) since the binding returns a plain value.
1802    if result_is_simple {
1803        if let Some(f) = &assertion.field {
1804            let f_lower = f.to_lowercase();
1805            if !f.is_empty()
1806                && f_lower != "content"
1807                && (f_lower.starts_with("metadata")
1808                    || f_lower.starts_with("document")
1809                    || f_lower.starts_with("structure"))
1810            {
1811                out.push_str(&crate::template_env::render(
1812                    "php/synthetic_assertion.jinja",
1813                    minijinja::context! {
1814                        assertion_kind => "result_is_simple",
1815                        field_name => f,
1816                    },
1817                ));
1818                return;
1819            }
1820        }
1821    }
1822
1823    let field_expr = match &assertion.field {
1824        // When result_is_simple, the result is a scalar (bytes/string/etc.) — any
1825        // field access on it would fail. Treat all assertions as referring to the
1826        // result itself.
1827        _ if result_is_simple => format!("${result_var}"),
1828        Some(f) if !f.is_empty() => {
1829            // Check if this field_array field has been bound to a variable
1830            if let Some((var_name, _)) = fields_array_bindings.get(f) {
1831                format!("${}", var_name)
1832            } else {
1833                field_resolver.accessor(f, "php", &format!("${result_var}"))
1834            }
1835        }
1836        _ => format!("${result_var}"),
1837    };
1838
1839    // Detect if this field is an array type
1840    // When there's no field, default to result_is_array (the result itself is the array)
1841    let field_is_array = assertion.field.as_ref().map_or(result_is_array, |f| {
1842        if f.is_empty() {
1843            result_is_array
1844        } else {
1845            field_resolver.is_array(f)
1846        }
1847    });
1848
1849    // For string equality, trim trailing whitespace to handle trailing newlines.
1850    // Only apply trim() when the expected value is a string — calling trim() on int/bool
1851    // throws TypeError in PHP 8.4+.
1852    let trimmed_field_expr_for = |expected: &serde_json::Value| -> String {
1853        if expected.is_string() {
1854            format!("trim({})", field_expr)
1855        } else {
1856            field_expr.clone()
1857        }
1858    };
1859
1860    // Prepare template context.
1861    let assertion_type = assertion.assertion_type.as_str();
1862    let has_php_val = assertion.value.is_some();
1863    // serde collapses `"value": null` to `None`, but `equals` against null is a real
1864    // assertion (e.g. `result.message.content == null`). Default to PHP `null` in that
1865    // case so the rendered code compiles instead of producing `assertEquals(, ...)`.
1866    let php_val = match assertion.value.as_ref() {
1867        Some(v) => json_to_php(v),
1868        None if assertion_type == "equals" => "null".to_string(),
1869        None => String::new(),
1870    };
1871    let trimmed_field_expr = trimmed_field_expr_for(assertion.value.as_ref().unwrap_or(&serde_json::Value::Null));
1872    let is_string_val = assertion.value.as_ref().is_some_and(|v| v.is_string());
1873    // values_php is consumed by `contains`, `contains_all`, and `not_contains` loops.
1874    // Fall back to wrapping the singular `value` so single-entry fixtures still emit one
1875    // assertion call per value instead of an empty loop.
1876    let values_php: Vec<String> = assertion
1877        .values
1878        .as_ref()
1879        .map(|vals| vals.iter().map(json_to_php).collect::<Vec<_>>())
1880        .or_else(|| assertion.value.as_ref().map(|v| vec![json_to_php(v)]))
1881        .unwrap_or_default();
1882    let contains_any_checks: Vec<String> = assertion
1883        .values
1884        .as_ref()
1885        .map_or(Vec::new(), |vals| vals.iter().map(json_to_php).collect());
1886    let n = assertion.value.as_ref().and_then(|v| v.as_u64()).unwrap_or(0);
1887
1888    // For method_result assertions.
1889    let call_expr = if let Some(method_name) = &assertion.method {
1890        build_php_method_call(result_var, method_name, assertion.args.as_ref())
1891    } else {
1892        String::new()
1893    };
1894    let check = assertion.check.as_deref().unwrap_or("is_true");
1895    let has_php_check_val = matches!(assertion.assertion_type.as_str(), "method_result") && assertion.value.is_some();
1896    let php_check_val = if matches!(assertion.assertion_type.as_str(), "method_result") {
1897        assertion.value.as_ref().map(json_to_php).unwrap_or_default()
1898    } else {
1899        String::new()
1900    };
1901    let check_n = assertion.value.as_ref().and_then(|v| v.as_u64()).unwrap_or(0);
1902    let is_bool_val = assertion.value.as_ref().is_some_and(|v| v.is_boolean());
1903    let bool_is_true = assertion.value.as_ref().and_then(|v| v.as_bool()).unwrap_or(false);
1904
1905    // Early returns for non-template-renderable assertions.
1906    if matches!(assertion_type, "not_error" | "error") {
1907        if assertion_type == "not_error" {
1908            // Already handled by the call succeeding without exception.
1909        }
1910        // "error" is handled at the test method level.
1911        return;
1912    }
1913
1914    let rendered = crate::template_env::render(
1915        "php/assertion.jinja",
1916        minijinja::context! {
1917            assertion_type => assertion_type,
1918            field_expr => field_expr,
1919            php_val => php_val,
1920            has_php_val => has_php_val,
1921            trimmed_field_expr => trimmed_field_expr,
1922            is_string_val => is_string_val,
1923            field_is_array => field_is_array,
1924            values_php => values_php,
1925            contains_any_checks => contains_any_checks,
1926            n => n,
1927            call_expr => call_expr,
1928            check => check,
1929            php_check_val => php_check_val,
1930            has_php_check_val => has_php_check_val,
1931            check_n => check_n,
1932            is_bool_val => is_bool_val,
1933            bool_is_true => bool_is_true,
1934        },
1935    );
1936    let _ = write!(out, "        {}", rendered);
1937}
1938
1939/// Build a PHP call expression for a `method_result` assertion.
1940///
1941/// Uses generic instance method dispatch: `$result_var->method_name(args...)`.
1942/// Args from the fixture JSON object are emitted as positional PHP arguments in
1943/// insertion order, using best-effort type conversion (strings → PHP string literals,
1944/// numbers and booleans → verbatim literals).
1945fn build_php_method_call(result_var: &str, method_name: &str, args: Option<&serde_json::Value>) -> String {
1946    let extra_args = if let Some(args_val) = args {
1947        args_val
1948            .as_object()
1949            .map(|obj| {
1950                obj.values()
1951                    .map(|v| match v {
1952                        serde_json::Value::String(s) => format!("\"{}\"", s.replace('\\', "\\\\").replace('"', "\\\"")),
1953                        serde_json::Value::Bool(true) => "true".to_string(),
1954                        serde_json::Value::Bool(false) => "false".to_string(),
1955                        serde_json::Value::Number(n) => n.to_string(),
1956                        serde_json::Value::Null => "null".to_string(),
1957                        other => format!("\"{}\"", other.to_string().replace('\\', "\\\\").replace('"', "\\\"")),
1958                    })
1959                    .collect::<Vec<_>>()
1960                    .join(", ")
1961            })
1962            .unwrap_or_default()
1963    } else {
1964        String::new()
1965    };
1966
1967    if extra_args.is_empty() {
1968        format!("${result_var}->{method_name}()")
1969    } else {
1970        format!("${result_var}->{method_name}({extra_args})")
1971    }
1972}
1973
1974/// Filters out empty string enum values from JSON objects before rendering.
1975/// When a field has an empty string value, it's treated as a missing/null enum field
1976/// and should not be included in the PHP array.
1977fn filter_empty_enum_strings(value: &serde_json::Value) -> serde_json::Value {
1978    match value {
1979        serde_json::Value::Object(map) => {
1980            let filtered: serde_json::Map<String, serde_json::Value> = map
1981                .iter()
1982                .filter_map(|(k, v)| {
1983                    // Skip empty string values (typically represent missing enum variants)
1984                    if let serde_json::Value::String(s) = v {
1985                        if s.is_empty() {
1986                            return None;
1987                        }
1988                    }
1989                    // Recursively filter nested objects and arrays
1990                    Some((k.clone(), filter_empty_enum_strings(v)))
1991                })
1992                .collect();
1993            serde_json::Value::Object(filtered)
1994        }
1995        serde_json::Value::Array(arr) => {
1996            let filtered: Vec<serde_json::Value> = arr.iter().map(filter_empty_enum_strings).collect();
1997            serde_json::Value::Array(filtered)
1998        }
1999        other => other.clone(),
2000    }
2001}
2002
2003/// Convert a `serde_json::Value` to a PHP literal string.
2004fn json_to_php(value: &serde_json::Value) -> String {
2005    match value {
2006        serde_json::Value::String(s) => format!("\"{}\"", escape_php(s)),
2007        serde_json::Value::Bool(true) => "true".to_string(),
2008        serde_json::Value::Bool(false) => "false".to_string(),
2009        serde_json::Value::Number(n) => n.to_string(),
2010        serde_json::Value::Null => "null".to_string(),
2011        serde_json::Value::Array(arr) => {
2012            let items: Vec<String> = arr.iter().map(json_to_php).collect();
2013            format!("[{}]", items.join(", "))
2014        }
2015        serde_json::Value::Object(map) => {
2016            let items: Vec<String> = map
2017                .iter()
2018                .map(|(k, v)| format!("\"{}\" => {}", escape_php(k), json_to_php(v)))
2019                .collect();
2020            format!("[{}]", items.join(", "))
2021        }
2022    }
2023}
2024
2025/// Like `json_to_php` but recursively converts all object keys to lowerCamelCase.
2026/// Used when generating PHP option arrays passed to `from_json()` — the PHP binding
2027/// structs use `#[serde(rename_all = "camelCase")]` so snake_case fixture keys
2028/// (e.g. `remove_forms`) must become `removeForms` in the generated test code.
2029fn json_to_php_camel_keys(value: &serde_json::Value) -> String {
2030    match value {
2031        serde_json::Value::Object(map) => {
2032            let items: Vec<String> = map
2033                .iter()
2034                .map(|(k, v)| {
2035                    let camel_key = k.to_lower_camel_case();
2036                    format!("\"{}\" => {}", escape_php(&camel_key), json_to_php_camel_keys(v))
2037                })
2038                .collect();
2039            format!("[{}]", items.join(", "))
2040        }
2041        serde_json::Value::Array(arr) => {
2042            let items: Vec<String> = arr.iter().map(json_to_php_camel_keys).collect();
2043            format!("[{}]", items.join(", "))
2044        }
2045        _ => json_to_php(value),
2046    }
2047}
2048
2049// ---------------------------------------------------------------------------
2050// Visitor generation
2051// ---------------------------------------------------------------------------
2052
2053/// Build a PHP visitor object and add setup lines. The visitor is assigned to $visitor variable.
2054fn build_php_visitor(setup_lines: &mut Vec<String>, visitor_spec: &crate::fixture::VisitorSpec) {
2055    setup_lines.push("$visitor = new class {".to_string());
2056    for (method_name, action) in &visitor_spec.callbacks {
2057        emit_php_visitor_method(setup_lines, method_name, action);
2058    }
2059    setup_lines.push("};".to_string());
2060}
2061
2062/// Emit a PHP visitor method for a callback action.
2063fn emit_php_visitor_method(setup_lines: &mut Vec<String>, method_name: &str, action: &CallbackAction) {
2064    let params = match method_name {
2065        "visit_link" => "$ctx, $href, $text, $title",
2066        "visit_image" => "$ctx, $src, $alt, $title",
2067        "visit_heading" => "$ctx, $level, $text, $id",
2068        "visit_code_block" => "$ctx, $lang, $code",
2069        "visit_code_inline"
2070        | "visit_strong"
2071        | "visit_emphasis"
2072        | "visit_strikethrough"
2073        | "visit_underline"
2074        | "visit_subscript"
2075        | "visit_superscript"
2076        | "visit_mark"
2077        | "visit_button"
2078        | "visit_summary"
2079        | "visit_figcaption"
2080        | "visit_definition_term"
2081        | "visit_definition_description" => "$ctx, $text",
2082        "visit_text" => "$ctx, $text",
2083        "visit_list_item" => "$ctx, $ordered, $marker, $text",
2084        "visit_blockquote" => "$ctx, $content, $depth",
2085        "visit_table_row" => "$ctx, $cells, $isHeader",
2086        "visit_custom_element" => "$ctx, $tagName, $html",
2087        "visit_form" => "$ctx, $actionUrl, $method",
2088        "visit_input" => "$ctx, $input_type, $name, $value",
2089        "visit_audio" | "visit_video" | "visit_iframe" => "$ctx, $src",
2090        "visit_details" => "$ctx, $isOpen",
2091        "visit_element_end" | "visit_table_end" | "visit_definition_list_end" | "visit_figure_end" => "$ctx, $output",
2092        "visit_list_start" => "$ctx, $ordered",
2093        "visit_list_end" => "$ctx, $ordered, $output",
2094        _ => "$ctx",
2095    };
2096
2097    let (action_type, action_value, return_form) = match action {
2098        CallbackAction::Skip => ("skip", String::new(), "dict"),
2099        CallbackAction::Continue => ("continue", String::new(), "dict"),
2100        CallbackAction::PreserveHtml => ("preserve_html", String::new(), "dict"),
2101        CallbackAction::Custom { output } => ("custom", escape_php(output), "dict"),
2102        CallbackAction::CustomTemplate { template, return_form } => {
2103            let form = match return_form {
2104                TemplateReturnForm::Dict => "dict",
2105                TemplateReturnForm::BareString => "bare_string",
2106            };
2107            ("custom_template", escape_php(template), form)
2108        }
2109    };
2110
2111    let rendered = crate::template_env::render(
2112        "php/visitor_method.jinja",
2113        minijinja::context! {
2114            method_name => method_name,
2115            params => params,
2116            action_type => action_type,
2117            action_value => action_value,
2118            return_form => return_form,
2119        },
2120    );
2121    for line in rendered.lines() {
2122        setup_lines.push(line.to_string());
2123    }
2124}
2125
2126/// Returns true if the type name is a PHP reserved/primitive type that cannot be imported.
2127fn is_php_reserved_type(name: &str) -> bool {
2128    matches!(
2129        name.to_ascii_lowercase().as_str(),
2130        "string"
2131            | "int"
2132            | "integer"
2133            | "float"
2134            | "double"
2135            | "bool"
2136            | "boolean"
2137            | "array"
2138            | "object"
2139            | "null"
2140            | "void"
2141            | "callable"
2142            | "iterable"
2143            | "never"
2144            | "self"
2145            | "parent"
2146            | "static"
2147            | "true"
2148            | "false"
2149            | "mixed"
2150    )
2151}