e7e67e1a40
Closes fieldtest-form-a friction finding #4. `str_concat : (borrow Str, borrow Str) -> Str` ships in the four-site-lockstep pattern established by `str_clone` / `int_to_str` / `bool_to_str` (iter 24.1). The LLM-natural Show-MyType body `(app str_concat "label=" (app int_to_str x))` now parses, checks, builds, and runs end-to-end. Sites touched (lockstep): - runtime/str.c — `ailang_str_concat(a, b)` slab-allocates and memcpys both source payloads into a new heap-Str. - ailang-check/src/builtins.rs — `env.globals.insert("str_concat", Fn { 2x Str borrow, ret Str own, effects [] })` + `list()` row + `install_str_concat_signature` unit test. - ailang-codegen/src/lib.rs — `declare ptr @ailang_str_concat(ptr, ptr)` extern + `lower_app` arm after str_clone + `is_builtin_callable` extension + IR-pin unit test `str_concat_emits_call_to_ailang_str_concat`. - examples/show_user_adt_with_label.ail (new) + crates/ail/tests/ str_concat_e2e.rs (new) — corpus fixture exercising the LLM-natural Show body shape + E2E pin asserting check + build + run produce `Item 42\n`. Lockstep collision repaired: examples/bug_unbound_in_instance_method.ail used `str_concat` as its UNBOUND name (because that was the literal fieldtester repro). Renamed to `format_label` (LLM-author-realistic helper name that will never become a builtin) and updated the pin test `crates/ail/tests/unbound_in_instance_method_pin.rs` accordingly, preserving the regression guard's intent (instance-method-body walked through unbound-var check). DESIGN.md amended: new §"Heap-Str primitives" subsection between the milestone-24 Show-backer enumeration and the existing `Primitive output goes through ...` paragraph, cataloguing all five heap-Str primitives (`int_to_str`, `bool_to_str`, `float_to_str`, `str_clone`, `str_concat`) with signatures, iter origins, and the user-visible-vs-prelude-internal distinction. Show-backer block unchanged. IR snapshots regenerated (hello, list, max3, sum, ws_main) to absorb the new `declare ptr @ailang_str_concat(ptr, ptr)` line in the unconditional extern header — same upkeep pattern as hs.4 which regenerated the same 5 snapshots for the same reason (unconditional declares dead-stripped by clang -O2 when unused). Tests: 559 + 3 = 562 green (E2E pin + builtin-signature test + IR-pin test). Zero re-loops across all 7 tasks.
70 lines
2.3 KiB
Rust
70 lines
2.3 KiB
Rust
//! E2E pin for the `str_concat` heap-Str primitive shipped in iter
|
|
//! `str-concat`. Asserts that `ail check` + `ail build` + run on
|
|
//! `examples/show_user_adt_with_label.ail` produce stdout
|
|
//! `Item 42\n` — i.e. that the Show body's
|
|
//! `(app str_concat "Item " (app int_to_str n))` evaluates correctly
|
|
//! and `print` emits the concatenated heap-Str.
|
|
//!
|
|
//! Without `str_concat` registered as a builtin (pre-iter state), the
|
|
//! fixture fails `ail check` with `[unbound-var]: str_concat`. After
|
|
//! the iter ships, both check and build succeed and the binary
|
|
//! produces the expected stdout.
|
|
|
|
use std::path::Path;
|
|
use std::process::Command;
|
|
|
|
fn ail_bin() -> &'static str {
|
|
env!("CARGO_BIN_EXE_ail")
|
|
}
|
|
|
|
#[test]
|
|
fn str_concat_e2e_show_user_adt_with_label() {
|
|
let manifest_dir = env!("CARGO_MANIFEST_DIR");
|
|
let workspace = Path::new(manifest_dir).parent().unwrap().parent().unwrap();
|
|
let src = workspace
|
|
.join("examples")
|
|
.join("show_user_adt_with_label.ail");
|
|
assert!(src.exists(), "fixture missing: {}", src.display());
|
|
|
|
let check = Command::new(ail_bin())
|
|
.args(["check", src.to_str().unwrap()])
|
|
.output()
|
|
.expect("ail check failed to spawn");
|
|
assert_eq!(
|
|
check.status.code(),
|
|
Some(0),
|
|
"ail check must succeed; got stdout={} stderr={}",
|
|
String::from_utf8_lossy(&check.stdout),
|
|
String::from_utf8_lossy(&check.stderr)
|
|
);
|
|
|
|
let tmp = tempfile::tempdir().expect("tempdir");
|
|
let bin_path = tmp.path().join("a.out");
|
|
let build = Command::new(ail_bin())
|
|
.args([
|
|
"build",
|
|
src.to_str().unwrap(),
|
|
"-o",
|
|
bin_path.to_str().unwrap(),
|
|
])
|
|
.output()
|
|
.expect("ail build failed to spawn");
|
|
assert_eq!(
|
|
build.status.code(),
|
|
Some(0),
|
|
"ail build must succeed; got stdout={} stderr={}",
|
|
String::from_utf8_lossy(&build.stdout),
|
|
String::from_utf8_lossy(&build.stderr)
|
|
);
|
|
|
|
let run = Command::new(&bin_path)
|
|
.output()
|
|
.expect("produced binary failed to spawn");
|
|
assert_eq!(run.status.code(), Some(0), "binary must exit 0");
|
|
let stdout = String::from_utf8_lossy(&run.stdout);
|
|
assert_eq!(
|
|
stdout, "Item 42\n",
|
|
"expected `Item 42\\n` from str_concat + int_to_str + print; got {stdout:?}"
|
|
);
|
|
}
|