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
use super::*;
use crate::e2e::codegen::TestBackendEmission;
fn zig_type_for_stub(ty: &crate::core::ir::TypeRef, _excluded_types: &std::collections::HashSet<&str>) -> String {
use crate::core::ir::{PrimitiveType, TypeRef};
match ty {
TypeRef::Primitive(p) => match p {
PrimitiveType::Bool => "i32".to_string(),
PrimitiveType::U8 => "u8".to_string(),
PrimitiveType::U16 => "u16".to_string(),
PrimitiveType::U32 => "u32".to_string(),
PrimitiveType::U64 | PrimitiveType::Usize => "u64".to_string(),
PrimitiveType::I8 => "i8".to_string(),
PrimitiveType::I16 => "i16".to_string(),
PrimitiveType::I32 => "i32".to_string(),
PrimitiveType::I64 | PrimitiveType::Isize => "i64".to_string(),
PrimitiveType::F32 => "f32".to_string(),
PrimitiveType::F64 => "f64".to_string(),
},
TypeRef::String | TypeRef::Char | TypeRef::Path | TypeRef::Json | TypeRef::Bytes => "[*c]const u8".to_string(),
TypeRef::Unit => "void".to_string(),
TypeRef::Optional(inner) => {
// In C FFI, optional values are passed as nullable pointers.
// For Optional[String] returning from methods, use ?[*c]const u8.
match inner.as_ref() {
TypeRef::String | TypeRef::Char | TypeRef::Path | TypeRef::Json | TypeRef::Bytes => {
"?[*c]const u8".to_string()
}
_ => format!("?{}", zig_type_for_stub(inner, _excluded_types)),
}
}
TypeRef::Vec(_inner) => {
// All collections in trait bridge stubs are marshalled as JSON: [*c]const u8.
// This includes Vec[String], Vec[Vec[f32]], Vec[Struct], etc.
"[*c]const u8".to_string()
}
TypeRef::Map(_, _v) => "[*c]const u8".to_string(),
// All Named types (structs, enums) map to opaque C FFI pointers.
// The vtable thunks pass these as [*c]const u8 to user method stubs.
TypeRef::Named(_) => "[*c]const u8".to_string(),
TypeRef::Duration => "i64".to_string(),
}
}
/// Emit FFI-appropriate default value for stub return type.
/// Stub types are C FFI types, so we use Zig/C appropriate literals.
fn zig_stub_default_value(stub_type: &str) -> String {
match stub_type {
"[*c]const u8" => "\"\"".to_string(),
"?[*c]const u8" => "null".to_string(),
"void" => "".to_string(),
"i32" | "i16" | "i8" => "0".to_string(),
"i64" => "0".to_string(),
"u8" | "u16" | "u32" | "u64" => "0".to_string(),
"f32" | "f64" => "0.0".to_string(),
_ => "undefined".to_string(),
}
}
/// Determine if a method needs JSON-encoded default values for out_result parameters.
/// This occurs for infallible (non-error) methods with complex return types that are
/// wrapped in out_result parameters at the FFI boundary.
fn method_needs_json_default(method: &crate::core::ir::MethodDef) -> bool {
// Only infallible methods need JSON defaults
if method.error_type.is_some() {
return false;
}
// Skip Unit and primitive types
use crate::core::ir::TypeRef;
match &method.return_type {
TypeRef::Unit => false,
TypeRef::Primitive(_) => false,
_ => true, // String, Vec, Named types, etc. need JSON encoding
}
}
/// Generate appropriate JSON default for a method return type.
/// For complex types that are serialized to JSON, return a sensible empty/default JSON value.
fn zig_json_default_for_type(return_type: &crate::core::ir::TypeRef) -> String {
use crate::core::ir::TypeRef;
match return_type {
TypeRef::Vec(_) => "\"[]\"".to_string(), // Empty array
TypeRef::Map(_, _) => "\"{}\"".to_string(), // Empty object
TypeRef::String => "\"\"".to_string(), // Empty string
TypeRef::Named(_) => "\"{}\"".to_string(), // Default JSON object for custom types
_ => "\"{}\"".to_string(), // Fallback to empty object
}
}
/// Emit a Zig test backend stub with excluded type handling.
///
/// Wraps `emit_test_backend_inner` with an excluded types set passed through
/// to `zig_type_for_stub` for proper type substitution in trait bridge stubs.
pub(super) fn emit_test_backend_with_excluded(
trait_bridge: &crate::core::config::TraitBridgeConfig,
methods: &[&crate::core::ir::MethodDef],
fixture: &crate::e2e::fixture::Fixture,
excluded_types: &std::collections::HashSet<&str>,
) -> TestBackendEmission {
emit_test_backend_inner(trait_bridge, methods, fixture, excluded_types)
}
/// Emit a Zig test backend stub.
///
/// Generates a Zig struct type for the stub, then builds a vtable via the
/// `make_{trait_snake}_vtable` helper and registers it.
///
/// Rules:
/// - Struct name: `TestStub_{sanitized_snake_fixture_id}`.
/// - Required methods (without `has_default_impl`) are stubbed with Zig
/// defaults from `ZigDefaults`.
/// - Super-trait `name` method returns the literal `"test"` string.
/// - The `register_fn` from `trait_bridge.register_fn` drives the
/// registration expression; snake_case convention for Zig.
pub fn emit_test_backend(
trait_bridge: &crate::core::config::TraitBridgeConfig,
methods: &[&crate::core::ir::MethodDef],
fixture: &crate::e2e::fixture::Fixture,
) -> TestBackendEmission {
let excluded_types = std::collections::HashSet::new();
emit_test_backend_inner(trait_bridge, methods, fixture, &excluded_types)
}
/// Internal implementation of test backend emission with excluded type handling.
fn emit_test_backend_inner(
trait_bridge: &crate::core::config::TraitBridgeConfig,
methods: &[&crate::core::ir::MethodDef],
fixture: &crate::e2e::fixture::Fixture,
excluded_types: &std::collections::HashSet<&str>,
) -> TestBackendEmission {
use crate::codegen::defaults::language_defaults;
use crate::core::ir::TypeRef;
let _defaults = language_defaults("zig");
let id_snake = crate::e2e::escape::sanitize_ident(&fixture.id.to_snake_case());
let struct_name = format!("TestStub_{id_snake}");
let var_name = format!("stub_{id_snake}");
let vtable_var = format!("vtable_{id_snake}");
let trait_snake = trait_bridge.trait_name.to_snake_case();
let mut setup = String::new();
// No leading indent: caller splits by lines and adds 4 spaces per line (test body indent).
let _ = writeln!(setup, "const {struct_name} = struct {{");
// Use standard defaults for super-trait methods that don't return test-specific values.
let _defaults = language_defaults("zig");
// Plugin super-trait: `name()` returns a sentinel C-string.
// Driven from IR — no method names are hardcoded.
if let Some(super_trait) = trait_bridge.super_trait.as_deref() {
for method in methods
.iter()
.filter(|m| m.trait_source.as_deref() == Some(super_trait))
{
let method_snake = method.name.to_snake_case();
if method.name == "name" {
let _ = writeln!(
setup,
" pub fn {method_snake}() ?[*:0]const u8 {{ return \"test\"; }}"
);
} else if method.name == "version" {
let _ = writeln!(
setup,
" pub fn {method_snake}() ?[*:0]const u8 {{ return \"0.0.1\"; }}"
);
} else {
// Initialize/shutdown and other super-trait methods: emit a void stub.
// Use @This() instead of struct_name to avoid self-reference inside struct definition.
let _ = writeln!(setup, " pub fn {method_snake}(_: *@This()) !void {{}}");
}
}
}
// Emit ALL trait methods (both required and optional with defaults).
// The trait-bridge vtable will call all of them, so stubs must implement them all.
for method in methods.iter() {
// Skip super-trait methods already emitted above.
if trait_bridge
.super_trait
.as_deref()
.is_some_and(|st| method.trait_source.as_deref() == Some(st))
{
continue;
}
let method_snake = method.name.to_snake_case();
let ret_ty = zig_type_for_stub(&method.return_type, excluded_types);
// For infallible methods with complex return types, use JSON-encoded defaults.
// These methods are wrapped in out_result parameters at the FFI boundary.
let default_val = if method_needs_json_default(method) {
zig_json_default_for_type(&method.return_type)
} else {
zig_stub_default_value(&ret_ty)
};
let _ = _defaults; // unused but imported for future use
// Build Zig parameter list (self first using @This(), then method params).
// Zig does not allow using a type name inside its own definition, so use @This().
let mut params = vec!["_: *@This()".to_string()];
for p in &method.params {
let p_ty = zig_type_for_stub(&p.ty, excluded_types);
params.push(format!("_: {}", p_ty)); // Mark all method params as unused with _
}
let param_list = params.join(", ");
// For trait bridge methods, emit error-union returns if the method is
// fallible in the Rust trait. This lets the vtable thunk use `if` syntax
// to handle the error union result.
let ret_sig = if method.error_type.is_some() {
if matches!(method.return_type, TypeRef::Unit) {
"!void".to_string()
} else {
format!("!{}", ret_ty)
}
} else {
if matches!(method.return_type, TypeRef::Unit) {
"void".to_string()
} else {
ret_ty.clone()
}
};
if matches!(method.return_type, TypeRef::Unit) {
let _ = writeln!(setup, " pub fn {method_snake}({param_list}) {ret_sig} {{}}");
} else {
let _ = writeln!(
setup,
" pub fn {method_snake}({param_list}) {ret_sig} {{ return {default_val}; }}"
);
}
}
let _ = writeln!(setup, "}};");
let _ = writeln!(setup, "var {var_name} = {struct_name}{{}};");
// lib. is a placeholder; the caller replaces it with the real module name.
let _ = writeln!(
setup,
"const {vtable_var} = lib.make_{trait_snake}_vtable({struct_name}, &{var_name});"
);
let out_err_var = format!("out_err_{id_snake}");
let _ = writeln!(setup, "var {out_err_var}: ?[*c]u8 = null;");
// arg_expr expands into the argument list for the registration call site:
// `<binding>.register_fn("test", vtable, &stub, @ptrCast(&out_err))`
// The caller places arg_expr into args_str, which is used as the full argument list
// of the top-level `{module}.{register_fn}(args_str)` call.
let arg_expr = format!("\"test\", {vtable_var}, &{var_name}, @ptrCast(&{out_err_var})");
TestBackendEmission {
setup_block: setup,
arg_expr,
type_imports: Vec::new(),
teardown_block: String::new(),
}
}
mod tests_trait_bridge {
/// Verify `emit_test_backend` is generic: output must not contain any
/// hardcoded domain trait or method names — only names derived from the
/// synthetic `TestTrait` / `do_work` inputs.
#[test]
fn test_emit_test_backend_is_generic_no_domain_names() {
use crate::core::config::TraitBridgeConfig;
use crate::core::ir::{MethodDef, ParamDef, ReceiverKind, TypeRef};
use crate::e2e::fixture::Fixture;
let method = MethodDef {
name: "do_work".to_string(),
params: vec![ParamDef {
name: "payload".to_string(),
ty: TypeRef::String,
optional: false,
default: None,
sanitized: false,
typed_default: None,
is_ref: false,
is_mut: false,
newtype_wrapper: None,
original_type: None,
map_is_ahash: false,
map_key_is_cow: false,
vec_inner_is_ref: false,
map_is_btree: false,
core_wrapper: crate::core::ir::CoreWrapper::None,
}],
return_type: TypeRef::String,
is_async: false,
is_static: false,
error_type: None,
doc: String::new(),
receiver: Some(ReceiverKind::Ref),
cfg: None,
sanitized: false,
trait_source: None,
returns_ref: false,
returns_cow: false,
return_newtype_wrapper: None,
has_default_impl: false,
binding_excluded: false,
binding_exclusion_reason: None,
version: Default::default(),
};
let bridge = TraitBridgeConfig {
trait_name: "TestTrait".to_string(),
super_trait: Some("Plugin".to_string()),
register_fn: Some("register_test_trait".to_string()),
..Default::default()
};
let fixture = Fixture {
docs: None,
requirements: Vec::new(),
id: "my_fixture".to_string(),
category: None,
description: "test".to_string(),
tags: vec![],
skip: None,
env: None,
setup: Vec::new(),
call: None,
input: serde_json::Value::Null,
mock_response: None,
source: String::new(),
http: None,
asyncapi: None,
websocket: None,
preserve_input_urls: false,
assertions: vec![],
visitor: None,
args: vec![],
assertion_recipes: vec![],
};
let methods = vec![&method];
let emission = super::emit_test_backend(&bridge, &methods, &fixture);
// The setup_block must contain the Zig struct with the method.
assert!(
emission.setup_block.contains("do_work"),
"setup_block should contain method 'do_work', got:\n{}",
emission.setup_block
);
// The vtable helper must use the trait snake name.
assert!(
emission.setup_block.contains("make_test_trait_vtable"),
"setup_block should invoke make_test_trait_vtable, got:\n{}",
emission.setup_block
);
// arg_expr expands into the argument list of the registration call.
// It must contain the vtable variable and @ptrCast for the out_err pointer.
assert!(
emission.arg_expr.contains("vtable_my_fixture"),
"arg_expr should reference vtable_my_fixture, got:\n{}",
emission.arg_expr
);
assert!(
emission.arg_expr.contains("@ptrCast"),
"arg_expr should contain @ptrCast for out_err, got:\n{}",
emission.arg_expr
);
// Must not contain any hardcoded domain-specific names.
for name in &[
"ImageBackend",
"RecordProvider",
"processImage",
"process_image_fn",
"sample_lib",
] {
assert!(
!emission.setup_block.contains(name),
"setup_block must not contain domain name '{name}', got:\n{}",
emission.setup_block
);
}
}
}