1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
//! Dart ordinary function-call e2e test rendering.
use crate::core::config::ResolvedCrateConfig;
use crate::e2e::codegen::resolve_field;
use crate::e2e::config::E2eConfig;
use crate::e2e::field_access::FieldResolver;
use crate::e2e::fixture::Fixture;
use std::collections::{HashMap, HashSet};
use std::fmt::Write as FmtWrite;
use super::assertions::{render_assertion_dart, render_streaming_assertion_dart, snake_to_camel};
use super::stubs::emit_test_backend;
use super::values::{escape_dart, mime_from_extension, type_name_to_create_from_json_dart};
pub(super) struct DartTestCaseContext<'a> {
pub(super) e2e_config: &'a E2eConfig,
pub(super) lang: &'a str,
pub(super) bridge_class: &'a str,
pub(super) dart_first_class_map: &'a crate::e2e::field_access::DartFirstClassMap,
pub(super) adapters: &'a [crate::core::config::extras::AdapterConfig],
pub(super) config: &'a ResolvedCrateConfig,
pub(super) type_defs: &'a [crate::core::ir::TypeDef],
pub(super) enums: &'a [crate::core::ir::EnumDef],
}
pub(super) fn render_test_case(out: &mut String, fixture: &Fixture, context: DartTestCaseContext<'_>) {
let DartTestCaseContext {
e2e_config,
lang,
bridge_class,
dart_first_class_map,
adapters,
config,
type_defs,
enums,
} = context;
// HTTP fixtures: hit the mock server.
if let Some(http) = &fixture.http {
super::http::render_http_test_case(out, fixture, http);
return;
}
// Non-HTTP fixtures: render a call-based test using the resolved call config.
let call_config = e2e_config.resolve_call_for_fixture(
fixture.call.as_deref(),
&fixture.id,
&fixture.resolved_category(),
&fixture.tags,
&fixture.input,
);
let call_recipe = crate::e2e::codegen::recipe::E2eCallRecipe::resolve(lang, fixture, call_config, type_defs);
// Build per-call field resolver using the effective field sets for this call.
let call_field_resolver = FieldResolver::new_with_dart_first_class(
e2e_config.effective_fields(call_config),
e2e_config.effective_fields_optional(call_config),
e2e_config.effective_result_fields(call_config),
e2e_config.effective_fields_array(call_config),
e2e_config.effective_fields_method_calls(call_config),
&HashMap::new(),
dart_first_class_map.clone(),
)
.with_dart_root_type(super::dart_call_result_type(call_config).or_else(|| dart_first_class_map.root_type.clone()));
let field_resolver = &call_field_resolver;
let enum_fields_base = e2e_config.effective_fields_enum(call_config);
// Merge per-language enum_fields from the Dart override into the effective enum set so that
// fields like "status" (BatchStatus on BatchObject) are treated as enum-typed
// even when they are not globally listed in fields_enum (they are context-
// dependent — BatchStatus on BatchObject but plain String on ResponseObject).
let effective_enum_fields: HashSet<String> = {
let dart_overrides = call_config.overrides.get("dart");
if let Some(overrides) = dart_overrides {
let mut merged = enum_fields_base.clone();
merged.extend(overrides.enum_fields.keys().cloned());
merged
} else {
enum_fields_base.clone()
}
};
let enum_fields = &effective_enum_fields;
let call_overrides = call_config.overrides.get(lang);
let mut function_name = call_overrides
.and_then(|o| o.function.as_ref())
.cloned()
.unwrap_or_else(|| call_config.function.clone());
// Convert snake_case function names to camelCase for Dart conventions.
function_name = function_name
.split('_')
.enumerate()
.map(|(i, part)| {
if i == 0 {
part.to_string()
} else {
let mut chars = part.chars();
match chars.next() {
None => String::new(),
Some(first) => first.to_uppercase().collect::<String>() + chars.as_str(),
}
}
})
.collect::<Vec<_>>()
.join("");
let result_var = &call_config.result_var;
let description = escape_dart(&fixture.description);
let fixture_id = &fixture.id;
// `is_async` retained for future use (e.g. non-FRB backends); unused with FRB since
// all wrappers return Future<T>.
let _is_async = call_overrides.and_then(|o| o.r#async).unwrap_or(call_config.r#async);
let expects_error = fixture.assertions.iter().any(|a| a.assertion_type == "error");
let is_streaming =
crate::e2e::codegen::streaming_assertions::resolve_is_streaming(fixture, call_config.streaming_enabled());
// `result_is_simple = true` means the dart return is a scalar/bytes value
// (e.g. `Uint8List` for speech/file_content), not a struct. Field-based
// assertions like `audio.not_empty` collapse to whole-result checks so we
// don't emit `result.audio` against a `Uint8List` receiver.
let result_is_simple = call_overrides.is_some_and(|o| o.result_is_simple) || call_config.result_is_simple;
// Resolve options_type and options_via from per-fixture → per-call → default.
// These drive how `json_object` args are constructed:
// options_via = "from_json" — call `createTypeNameFromJson(json: r'...')` bridge
// helper and pass the result as a named parameter `req:`.
// All other values (or absent) — existing behaviour (batch arrays, config objects,
// generic JSON arrays, or nothing).
let options_type: Option<&str> = call_recipe.options_type;
let options_via: &str = call_recipe.options_via;
// Build argument list from fixture.input and resolved args (fixture.args or call_config.args).
// Use `resolve_field` (respects the `field` path like "input.data") rather than
// looking up by `arg_def.name` directly — the name and the field key may differ.
//
// For `extract_file_sync` / `extract_file` fixtures that omit `mime_type`,
// derive the MIME from the path extension so `extractBytesSync`/`extractBytes`
// can be called (both require an explicit MIME type).
let file_path_for_mime: Option<&str> = fixture
.resolved_args(call_config)
.iter()
.find(|a| a.arg_type == "file_path")
.and_then(|a| resolve_field(&fixture.input, &a.field).as_str());
// Detect whether this call converts a file_path arg to bytes at test-run time.
// Most dart fixtures take the bytes path historically (`extractFile` →
// `extractBytes`), but source-code files need the path-based variant to reach
// CodeExtractor's `extract_file` implementation (its `extract_bytes` path
// requires a shebang line for language detection, so `code/hello.py` fed as
// bytes errors out with "Cannot detect programming language from content").
// We therefore keep the bytes remap for ordinary file types and skip it for
// source-code extensions, letting the binding's own `extractFileSync` /
// `extractFile` accept the path directly.
let has_file_path_arg = fixture
.resolved_args(call_config)
.iter()
.any(|a| a.arg_type == "file_path");
let routes_to_source_code = file_path_for_mime
.and_then(mime_from_extension)
.map(|m| m == "text/x-source-code")
.unwrap_or(false);
// Apply the remap only when no per-fixture dart override has already specified the
// function — if the fixture author set a dart-specific function name we trust it.
let caller_supplied_override = call_overrides.and_then(|o| o.function.as_ref()).is_some();
if has_file_path_arg && !caller_supplied_override && !routes_to_source_code {
function_name = match function_name.as_str() {
"extractFile" => "extractBytes".to_string(),
"extractFileSync" => "extractBytesSync".to_string(),
other => other.to_string(),
};
}
// Resolve client_factory early so the per-arg builders below can pick the
// calling convention. When `client_factory` is set the test calls methods on
// an FRB-generated client instance, and FRB
// emits every non-`config` parameter as a Dart named-required parameter. When
// unset the call routes through a hand-written facade whose required args are
// positional. See the `"string"` arg handler below.
let client_factory_for_args: Option<&str> =
call_overrides.and_then(|o| o.client_factory.as_deref()).or_else(|| {
e2e_config
.call
.overrides
.get(lang)
.and_then(|o| o.client_factory.as_deref())
});
// Dart e2e currently emits all args positionally; FRB-direct-call named-arg dispatch
// is parked behind this flag until the codegen can distinguish facade vs bridge call
// shapes precisely.
let is_frb_bridge_call = false;
// Resolve adapter request type for streaming methods.
let adapter = adapters.iter().find(|a| a.name == call_config.function.as_str());
let adapter_request_type: Option<String> = adapter
.and_then(|a| a.request_type.as_deref())
.map(|rt| rt.rsplit("::").next().unwrap_or(rt).to_string());
// setup_lines holds per-test statements that must precede the main call:
// engine construction (handle args) and URL building (mock_url args).
let mut setup_lines: Vec<String> = Vec::new();
let mut args = Vec::new();
for arg_def in call_recipe.args {
match arg_def.arg_type.as_str() {
"mock_url" => {
let name = arg_def.name.clone();
setup_lines.push(format!(r#"final {name} = _fixtureUrl("{fixture_id}");"#));
// For streaming adapters with a request_type, wrap the URL in the request constructor.
if let Some(ref req_type) = adapter_request_type {
let req_var = format!("{}Req", name);
// Extract just the type name (last segment after ::).
let req_type_name = req_type.rsplit("::").next().unwrap_or(req_type.as_str());
setup_lines.push(format!("final {req_var} = {req_type_name}(url: {name});"));
args.push(req_var);
} else {
args.push(name);
}
continue;
}
"handle" => {
let name = arg_def.name.clone();
let field = arg_def.field.strip_prefix("input.").unwrap_or(&arg_def.field);
let config_value = fixture.input.get(field).cloned().unwrap_or(serde_json::Value::Null);
// Derive the create-function name: "engine" → "createEngine".
let create_fn = {
let mut chars = name.chars();
let pascal = match chars.next() {
None => String::new(),
Some(first) => first.to_uppercase().collect::<String>() + chars.as_str(),
};
format!("create{pascal}")
};
if config_value.is_null()
|| config_value.is_object() && config_value.as_object().is_some_and(|o| o.is_empty())
{
setup_lines.push(format!("final {name} = await {bridge_class}.{create_fn}();"));
} else {
let json_str = serde_json::to_string(&config_value).unwrap_or_default();
let config_var = format!("{name}Config");
// Derive the createFromJson function name from the config TYPE, not the handle name.
// E.g., for ExtractionConfig → "createExtractionConfigFromJson",
// for RerankerConfig → "createRerankerConfigFromJson", etc.
// FRB-generated free function deserializes JSON into the config struct via the
// Rust `create_<type>_from_json` helper emitted by the dart backend.
// This avoids relying on a Dart-side `fromJson` constructor (FRB classes don't expose one).
let config_type_name = call_recipe.handle_config_type(arg_def).unwrap_or(&arg_def.name);
let create_from_json_fn = type_name_to_create_from_json_dart(config_type_name);
setup_lines.push(format!(
"final {config_var} = await {create_from_json_fn}(json: r'{json_str}');"
));
// Dart wrapper exposes config parameter as a named optional `{ConfigType? config}`
// (more idiomatic Dart than positional optional). Emit named-argument syntax.
setup_lines.push(format!(
"final {name} = await {bridge_class}.{create_fn}(config: {config_var});"
));
}
args.push(name);
continue;
}
"mock_url_list" => {
// List<String> of URLs: each element is either a bare path (`/seed1`) — prefixed
// with the SUT URL at runtime — or an absolute URL kept as-is.
let field = arg_def.field.strip_prefix("input.").unwrap_or(&arg_def.field);
let val = fixture.input.get(field).unwrap_or(&serde_json::Value::Null);
let paths: Vec<String> = if let Some(arr) = val.as_array() {
arr.iter()
.filter_map(|v| v.as_str())
.map(|s| format!("'{}'", escape_dart(s)))
.collect()
} else {
Vec::new()
};
let var_name = &arg_def.name;
let paths_literal = paths.join(", ");
setup_lines.push(format!(r#"final {var_name}Base = _fixtureUrl("{fixture_id}");"#));
setup_lines.push(format!(
r#"final {var_name} = <String>[{paths_literal}].map((p) => p.startsWith('http') ? p : {var_name}Base + p).toList();"#
));
// For streaming adapters with a request_type, wrap the URL list in the request constructor.
if let Some(ref req_type) = adapter_request_type {
let req_var = format!("{}Req", var_name);
// Extract just the type name (last segment after ::).
let req_type_name = req_type.rsplit("::").next().unwrap_or(req_type.as_str());
setup_lines.push(format!("final {req_var} = {req_type_name}(urls: {var_name});"));
args.push(req_var);
} else {
args.push(var_name.to_string());
}
continue;
}
"test_backend" => {
if let Some(trait_name) = &arg_def.trait_name {
if let Some(trait_bridge) = config.trait_bridges.iter().find(|tb| tb.trait_name == *trait_name) {
let methods: Vec<&crate::core::ir::MethodDef> = type_defs
.iter()
.find(|t| t.name == *trait_name)
.map(|t| t.methods.iter().collect())
.unwrap_or_default();
let emission = emit_test_backend(trait_bridge, &methods, fixture, enums);
// Dart class definitions are emitted at module-level (before void main)
// in collect_dart_test_stub_classes, so we only push the instantiation here.
args.push(emission.arg_expr);
continue;
}
}
let emission = crate::e2e::codegen::TestBackendEmission::unimplemented("dart");
setup_lines.push(format!("// {}", emission.arg_expr));
args.push("null".to_string());
continue;
}
_ => {}
}
let arg_value = resolve_field(&fixture.input, &arg_def.field);
match arg_def.arg_type.as_str() {
"bytes" | "file_path" => {
// `bytes`: value is a file path string; load file contents at test-run time.
// `file_path`: for dart, normally remapped to bytes via the extract
// facade convention. The exception is source-code paths — those
// route through extractFile/extractFileSync directly (see
// `routes_to_source_code` above), so the path string must be
// passed verbatim instead of materialised as bytes.
if let serde_json::Value::String(file_path) = arg_value {
let arg_expr = if arg_def.arg_type == "file_path" && routes_to_source_code {
format!("'{file_path}'")
} else {
format!("File('{}').readAsBytesSync()", file_path)
};
if is_frb_bridge_call {
let dart_param_name = snake_to_camel(&arg_def.name);
args.push(format!("{dart_param_name}: {arg_expr}"));
} else {
args.push(arg_expr);
}
}
}
"int" | "integer" | "i64" => {
// Scalar integer argument. Direct FRB calls use named parameters.
let dart_param_name = snake_to_camel(&arg_def.name);
match arg_value {
serde_json::Value::Number(n) => {
if is_frb_bridge_call {
args.push(format!("{dart_param_name}: {}", n));
} else {
args.push(n.to_string());
}
}
serde_json::Value::Null if arg_def.optional => {
// Optional int absent: omit it.
}
_ => {
// Required int with no fixture value: emit 0 as default.
if is_frb_bridge_call {
args.push(format!("{dart_param_name}: 0"));
} else {
args.push("0".to_string());
}
}
}
}
"float" | "number" => {
// Scalar float/number argument. Direct FRB calls use named parameters.
let dart_param_name = snake_to_camel(&arg_def.name);
match arg_value {
serde_json::Value::Number(n) => {
if is_frb_bridge_call {
args.push(format!("{dart_param_name}: {}", n));
} else {
args.push(n.to_string());
}
}
serde_json::Value::Null if arg_def.optional => {
// Optional float absent: omit it.
}
_ => {
// Required float with no fixture value: emit 0.0 as default.
if is_frb_bridge_call {
args.push(format!("{dart_param_name}: 0.0"));
} else {
args.push("0.0".to_string());
}
}
}
}
"bool" | "boolean" => {
// Scalar boolean argument. Direct FRB calls use named parameters.
let dart_param_name = snake_to_camel(&arg_def.name);
match arg_value {
serde_json::Value::Bool(b) => {
let bool_str = if *b { "true" } else { "false" };
if is_frb_bridge_call {
args.push(format!("{dart_param_name}: {bool_str}"));
} else {
args.push(bool_str.to_string());
}
}
serde_json::Value::Null if arg_def.optional => {
// Optional bool absent: omit it.
}
_ => {
// Required bool with no fixture value: emit false as default.
if is_frb_bridge_call {
args.push(format!("{dart_param_name}: false"));
} else {
args.push("false".to_string());
}
}
}
}
"string" => {
// Dart FRB bridge methods emit all parameters as named-required.
// Hand-written facades use positional required and named optional.
// Direct FRB bridge calls (is_frb_bridge_call = true) should emit all as named.
// Facade methods (extractBytes, extractFile) keep required args positional.
//
// The `mime_type` parameter is special: it's positional in facade extract methods
// but named in direct FRB bridge calls. The `client_factory` path is for stateful
// clients (e.g., demo-client) which always use named parameters.
let dart_param_name = snake_to_camel(&arg_def.name);
let mime_type_is_positional =
arg_def.name == "mime_type" && !is_frb_bridge_call && client_factory_for_args.is_none();
match arg_value {
serde_json::Value::String(s) => {
let literal = format!("'{}'", escape_dart(s));
// Direct FRB bridge calls: all parameters are named-required.
// Client factory methods: all non-config parameters are named-required.
// Facade methods: required positional, optional named.
if is_frb_bridge_call || client_factory_for_args.is_some() || arg_def.optional {
if !mime_type_is_positional {
args.push(format!("{dart_param_name}: {literal}"));
} else {
args.push(literal);
}
} else {
args.push(literal);
}
}
serde_json::Value::Null
if arg_def.optional
// Optional string absent from fixture — try to infer MIME from path
// when the arg name looks like a MIME-type parameter.
&& arg_def.name == "mime_type" =>
{
let inferred = file_path_for_mime
.and_then(mime_from_extension)
.unwrap_or("application/octet-stream");
// Direct FRB bridge calls and client factory use named parameters.
// Facades use positional for mime_type.
if mime_type_is_positional {
args.push(format!("'{inferred}'"));
} else {
args.push(format!("{dart_param_name}: '{inferred}'"));
}
}
// Other optional strings with null value are omitted.
_ => {}
}
}
"json_object" => {
if let Some(elem_type) = &arg_def.element_type {
if elem_type == "String" && arg_value.is_array() {
// Scalar string array. Direct FRB bridge calls require named parameters.
// Facades can declare these as required positional.
let items: Vec<String> = arg_value
.as_array()
.unwrap()
.iter()
.filter_map(|v| v.as_str())
.map(|s| format!("'{}'", escape_dart(s)))
.collect();
let list_literal = format!("<String>[{}]", items.join(", "));
if is_frb_bridge_call {
let dart_param_name = snake_to_camel(&arg_def.name);
args.push(format!("{dart_param_name}: {list_literal}"));
} else {
args.push(list_literal);
}
} else if arg_value.is_array() {
// Generic typed array (e.g. `actions: [PageAction]` for interact,
// or `items: [BatchBytesItem]` for batch). Decode via jsonDecode at
// test-run time and convert to typed instances.
let json_str = serde_json::to_string(&arg_value).unwrap_or_default();
let var_name = arg_def.name.clone();
if elem_type == "PageAction" {
setup_lines.push(format!(
"final {var_name} = (jsonDecode(r'{json_str}') as List<dynamic>).map((e) => _parsePageAction(e as Map<String, dynamic>)).toList();"
));
} else {
// FRB-generated `create<ElementType>FromJson(json:)` factory
// takes a JSON string per item. Map each map to its typed
// instance and await the futures together so the typed list
// matches the binding's parameter type (e.g. List<BatchBytesItem>).
let dart_fn = type_name_to_create_from_json_dart(elem_type);
setup_lines.push(format!(
"final {var_name} = await Future.wait((jsonDecode(r'{json_str}') as List<dynamic>).cast<Map<String, dynamic>>().map((m) => {dart_fn}(json: jsonEncode(m))));"
));
}
// For generic arrays, emit named parameter if it's a direct FRB call
if is_frb_bridge_call {
let dart_param_name = snake_to_camel(&arg_def.name);
args.push(format!("{dart_param_name}: {var_name}"));
} else {
args.push(var_name);
}
}
} else if options_via == "from_json" {
// `from_json` path: construct a typed mirror-struct via the generated
// `create<TypeName>FromJson(json: '...')` bridge helper, then pass it
// as the named FRB parameter `req: _var`.
//
// The helper is generated by `emit_from_json_fn` in the dart bridge-crate
// generator and made available as a top-level function via the exported
// the generated bridge package. The parameter name used in the
// bridge method call is always `req:` for single-request-object methods
// (derived from the Rust IR param name).
if let Some(opts_type) = options_type {
if !arg_value.is_null() {
let json_str = serde_json::to_string(&arg_value).unwrap_or_default();
// Escape for Dart single-quoted string literal (handles embedded quotes,
// backslashes, and interpolation markers).
let escaped_json = escape_dart(&json_str);
let var_name = format!("_{}", arg_def.name);
let dart_fn = type_name_to_create_from_json_dart(opts_type);
setup_lines.push(format!("final {var_name} = await {dart_fn}(json: '{escaped_json}');"));
// FRB bridge method param name is `req` for all single-request methods.
// Use `req:` as the named argument label.
args.push(format!("req: {var_name}"));
}
}
} else if call_recipe.should_materialize_json_object(arg_def, arg_value) && arg_value.is_null() {
if let Some(opts_type) = options_type {
let var_name = format!("_{}", arg_def.name);
let dart_fn = type_name_to_create_from_json_dart(opts_type);
setup_lines.push(format!("final {var_name} = await {dart_fn}(json: '{{}}');"));
// Facade methods (e.g. `embedTextsAsync`, `rerankAsync`, `classifyText`)
// declare config as a required positional parameter; extraction
// facades declare it as a named optional. Emit positional when the
// resolved options type indicates a required positional config.
let is_config_positional = opts_type.contains("Embedding")
|| opts_type.contains("Reranker")
|| opts_type.contains("Classification")
|| opts_type.contains("Translation")
|| opts_type.contains("Keyword")
|| opts_type.contains("Redaction");
if is_config_positional {
args.push(var_name);
} else {
let dart_param_name = snake_to_camel(&arg_def.name);
args.push(format!("{dart_param_name}: {var_name}"));
}
}
} else if arg_def.name == "config" {
// Helper to check if a config type should be emitted as positional in Dart.
// Config parameters are positional-required in facades like rerankAsync,
// embedTextsAsync, classifyText, etc. They are named-optional in extraction facades
// like extractBytes which declare { ExtractionConfig? config }.
let is_config_positional = |opts_type: &str| -> bool {
opts_type.contains("Embedding")
|| opts_type.contains("Reranker")
|| opts_type.contains("Classification")
|| opts_type.contains("Translation")
|| opts_type.contains("Keyword")
|| opts_type.contains("Redaction")
};
if let serde_json::Value::Object(map) = &arg_value {
if !map.is_empty() {
// Round-trip object config JSON through a generated helper.
// Resolve config type from explicit element_type first, then fall back
// to options_type from the call recipe, then to the arg name as a last resort.
let opts_type = arg_def
.element_type
.as_deref()
.or(options_type)
.unwrap_or(&arg_def.name);
let json_str = serde_json::to_string(&arg_value).unwrap_or_default();
let escaped_json = escape_dart(&json_str);
let var_name = format!("_{}", arg_def.name);
let dart_fn = type_name_to_create_from_json_dart(opts_type);
setup_lines.push(format!("final {var_name} = await {dart_fn}(json: '{escaped_json}');"));
if is_config_positional(opts_type) {
args.push(var_name);
} else {
let dart_param_name = snake_to_camel(&arg_def.name);
args.push(format!("{dart_param_name}: {var_name}"));
}
} else {
// Empty config object: construct a default instance via FRB's
// `create<Type>FromJson(json: '{}')` helper (supports all
// configured config types). This ensures the
// call signature matches the binding, which expects a required
// config parameter even when all fields use their defaults.
// Resolve config type from element_type, options_type, or arg name.
let opts_type = arg_def.element_type.as_deref().or(options_type);
if let Some(opts_type) = opts_type {
let var_name = format!("_{}", arg_def.name);
let dart_fn = type_name_to_create_from_json_dart(opts_type);
setup_lines.push(format!("final {var_name} = await {dart_fn}(json: '{{}}');"));
if is_config_positional(opts_type) {
args.push(var_name);
} else {
let dart_param_name = snake_to_camel(&arg_def.name);
args.push(format!("{dart_param_name}: {var_name}"));
}
}
}
} else if arg_def.optional {
// Fixture has no config block (null/absent) but the Dart facade
// declares the arg as a required-positional non-nullable type
// (e.g. `embed_texts_async(texts, settings)` with `SampleSettings`).
// Construct a default instance via FRB's
// `create<Type>FromJson(json: '{}')` helper when IR metadata says
// the configured type has a default.
let opts_type = arg_def.element_type.as_deref().or(options_type);
if let Some(opts_type) = opts_type.filter(|_| {
call_recipe.json_object_arg_has_default(arg_def)
|| call_recipe.should_materialize_json_object(arg_def, arg_value)
}) {
let var_name = format!("_{}", arg_def.name);
let dart_fn = type_name_to_create_from_json_dart(opts_type);
setup_lines.push(format!("final {var_name} = await {dart_fn}(json: '{{}}');"));
if is_config_positional(opts_type) {
args.push(var_name);
} else {
let dart_param_name = snake_to_camel(&arg_def.name);
args.push(format!("{dart_param_name}: {var_name}"));
}
}
}
} else if arg_value.is_array() {
// Generic JSON array (e.g. batch_urls: ["/page1", "/page2"]).
// Decode via jsonDecode and cast to List<String> at test-run time.
let json_str = serde_json::to_string(&arg_value).unwrap_or_default();
let var_name = arg_def.name.clone();
setup_lines.push(format!(
"final {var_name} = (jsonDecode(r'{json_str}') as List<dynamic>).cast<String>();"
));
// Direct FRB bridge calls use named parameters
if is_frb_bridge_call {
let dart_param_name = snake_to_camel(&arg_def.name);
args.push(format!("{dart_param_name}: {var_name}"));
} else {
args.push(var_name);
}
} else if let serde_json::Value::Object(map) = &arg_value {
// Generic options-style json_object arg (for APIs whose
// a typed options arg). When the
// fixture provides input.options and the call config declares an
// `options_type`, build the mirror struct via the FRB-generated
// `create<OptionsType>FromJson(json: '...')` helper. Use the arg's
// original name (e.g. `options`) as the named parameter label.
//
// When the fixture also carries a visitor spec, swap to the
// `create<OptionsType>FromJsonWithVisitor(json, visitor)` helper
// (emitted by `alef-backend-dart` for trait bridges with `type_alias`
// + `options_field` binding). The `_visitor` variable is materialised
// in the visitor block below — its setup line is inserted ahead of
// this options call by `build_dart_visitor`.
if !map.is_empty() {
if let Some(opts_type) = options_type {
let json_str = serde_json::to_string(&arg_value).unwrap_or_default();
let escaped_json = escape_dart(&json_str);
let dart_param_name = snake_to_camel(&arg_def.name);
let var_name = format!("_{}", arg_def.name);
let dart_fn = type_name_to_create_from_json_dart(opts_type);
if fixture.visitor.is_some() {
setup_lines.push(format!(
"final {var_name} = await {dart_fn}WithVisitor(json: '{escaped_json}', visitor: _visitor);"
));
} else {
setup_lines
.push(format!("final {var_name} = await {dart_fn}(json: '{escaped_json}');"));
}
// Dart bridge method declares options as keyword-only parameter.
// Always emit as named argument regardless of optionality.
args.push(format!("{dart_param_name}: {var_name}"));
}
}
}
}
_ => {}
}
}
// Fixture-driven visitor handle. When `fixture.visitor` is set we build a
// `_visitor` via the generated visitor factory (emitted by
// `alef-backend-dart`'s trait-bridge generator in the `type_alias` mode)
// and thread it into the options blob via the
// `create<OptionsType>FromJsonWithVisitor(json, visitor)` helper (handled
// a few lines above in the json_object arg branch).
//
// The visitor setup line is INSERTED at the front of `setup_lines` so
// `_visitor` is defined before any `_options` line that references it.
// Fixtures without an `options` json_object in input still need an options
// blob to carry the visitor through to the configured call — we synthesise an empty
// options call with the configured options type here when no `options` arg was emitted in the loop
// above.
if let Some(visitor_spec) = &fixture.visitor {
let mut visitor_setup: Vec<String> = Vec::new();
let visitor_config = crate::e2e::codegen::dart_visitors::resolve_dart_visitor_config(
config,
call_overrides,
type_defs,
visitor_spec,
);
let _ =
crate::e2e::codegen::dart_visitors::build_dart_visitor(&mut visitor_setup, visitor_spec, &visitor_config);
// Prepend the visitor block so `_visitor` is in scope by the time the
// options call (which may reference it) runs.
for line in visitor_setup.into_iter().rev() {
setup_lines.insert(0, line);
}
// If no `options` arg was emitted by the loop above (the fixture has no
// input.options block), build an empty options-with-visitor and add it as
// an `options:` named arg so the visitor reaches the convert call.
let already_has_options = args.iter().any(|a| a.starts_with("options:") || a == "_options");
if !already_has_options {
if let Some(opts_type) = options_type {
let dart_fn = type_name_to_create_from_json_dart(opts_type);
setup_lines.push(format!(
"final _options = await {dart_fn}WithVisitor(json: '{{}}', visitor: _visitor);"
));
args.push("options: _options".to_string());
}
} else if let Some(opts_type) = options_type {
// The args loop already emitted a non-WithVisitor options call (e.g.
// for `options: {}` or `options: {some: value}`). Without the visitor
// attached the convert call ignores `_visitor` — rewrite the
// emitted call to its `WithVisitor` sibling so the visitor reaches
// the converter.
let dart_fn = type_name_to_create_from_json_dart(opts_type);
let needle = format!("await {dart_fn}(json:");
let replacement = format!("await {dart_fn}WithVisitor(visitor: _visitor, json:");
for line in setup_lines.iter_mut() {
if line.contains(&needle) {
*line = line.replace(&needle, &replacement);
}
}
}
}
// Resolve client_factory: when set, tests create a client instance and call
// methods on it rather than using static bridge-class calls. This mirrors the
// go/python/zig pattern for stateful clients (e.g. demo-client).
let client_factory: Option<&str> = call_overrides.and_then(|o| o.client_factory.as_deref()).or_else(|| {
e2e_config
.call
.overrides
.get(lang)
.and_then(|o| o.client_factory.as_deref())
});
// Convert factory name to camelCase (same rule as function_name above).
let client_factory_camel: Option<String> = client_factory.map(|f| {
f.split('_')
.enumerate()
.map(|(i, part)| {
if i == 0 {
part.to_string()
} else {
let mut chars = part.chars();
match chars.next() {
None => String::new(),
Some(first) => first.to_uppercase().collect::<String>() + chars.as_str(),
}
}
})
.collect::<Vec<_>>()
.join("")
});
// All bridge methods return Future<T> because FRB v2 wraps every Rust
// function as async in Dart — even "sync" Rust functions. Always emit an async
// test body and await the call so the test framework waits for the future.
let _ = writeln!(out, " test('{description}', () async {{");
let args_str = args.join(", ");
let receiver_class = call_overrides
.and_then(|o| o.class.as_ref())
.cloned()
.unwrap_or_else(|| bridge_class.to_string());
// When client_factory is set, determine the mock URL and emit client instantiation.
// The mock URL derivation follows the same has_host_root_route / plain-fixture split
// used by the mock_url arg handler above.
let (receiver, extra_setup): (String, Option<String>) = if let Some(factory) = &client_factory_camel {
let has_mock_url = fixture
.resolved_args(call_config)
.iter()
.any(|a| a.arg_type == "mock_url");
let mock_url_setup = if !has_mock_url {
// No explicit mock_url arg — derive the URL inline.
Some(format!(r#"final _mockUrl = _fixtureUrl("{fixture_id}");"#))
} else {
None
};
let url_expr = if has_mock_url {
// A mock_url arg was emitted into setup_lines already — reuse the variable name
// from the first mock_url arg definition so we don't duplicate the URL.
call_config
.args
.iter()
.find(|a| a.arg_type == "mock_url")
.map(|a| a.name.clone())
.unwrap_or_else(|| "_mockUrl".to_string())
} else {
"_mockUrl".to_string()
};
let create_line = format!("final _client = await {receiver_class}.{factory}('test-key', baseUrl: {url_expr});");
let full_setup = if let Some(url_line) = mock_url_setup {
Some(format!("{url_line}\n {create_line}"))
} else {
Some(create_line)
};
("_client".to_string(), full_setup)
} else {
(receiver_class.clone(), None)
};
if expects_error && (!setup_lines.is_empty() || extra_setup.is_some()) {
// Wrap setup + call in an async lambda so any exception at any step is caught.
// flutter_rust_bridge 2.x decodes Rust errors as raw String values (not Exception
// subtypes), so throwsException will not match. Use throwsA(anything) instead.
let _ = writeln!(out, " await expectLater(() async {{");
for line in &setup_lines {
// Handle multi-line setup blocks (e.g., class definitions from emit_test_backend).
// Each embedded newline in `line` needs proper indentation.
for inner_line in line.lines() {
let _ = writeln!(out, " {inner_line}");
}
}
if let Some(extra) = &extra_setup {
for line in extra.lines() {
let _ = writeln!(out, " {line}");
}
}
if is_streaming {
let _ = writeln!(out, " return {receiver}.{function_name}({args_str}).toList();");
} else {
let _ = writeln!(out, " return {receiver}.{function_name}({args_str});");
}
let _ = writeln!(out, " }}(), throwsA(anything));");
} else if expects_error {
// No setup lines, direct call — same throwsA(anything) rationale as above.
if let Some(extra) = &extra_setup {
for line in extra.lines() {
let _ = writeln!(out, " {line}");
}
}
if is_streaming {
let _ = writeln!(
out,
" await expectLater({receiver}.{function_name}({args_str}).toList(), throwsA(anything));"
);
} else {
let _ = writeln!(
out,
" await expectLater({receiver}.{function_name}({args_str}), throwsA(anything));"
);
}
} else {
for line in &setup_lines {
// Handle multi-line setup blocks (e.g., class definitions from emit_test_backend).
// Each embedded newline in `line` needs proper indentation.
for inner_line in line.lines() {
let _ = writeln!(out, " {inner_line}");
}
}
if let Some(extra) = &extra_setup {
for line in extra.lines() {
let _ = writeln!(out, " {line}");
}
}
if is_streaming {
let _ = writeln!(
out,
" final {result_var} = await {receiver}.{function_name}({args_str}).toList();"
);
} else {
let _ = writeln!(
out,
" final {result_var} = await {receiver}.{function_name}({args_str});"
);
}
for assertion in &fixture.assertions {
if is_streaming {
render_streaming_assertion_dart(out, assertion, result_var);
} else {
render_assertion_dart(
out,
assertion,
result_var,
result_is_simple,
field_resolver,
enum_fields,
);
}
}
}
let _ = writeln!(out, " }});");
let _ = writeln!(out);
}