alef 0.25.49

Opinionated polyglot binding generator for Rust libraries
Documentation
use super::*;
use crate::core::config::HostCapsuleTypeConfig;
use std::collections::{HashMap, HashSet};

fn get_language_fn() -> FunctionDef {
    FunctionDef {
        name: "get_language".to_string(),
        rust_path: "sample_capsule::get_language".to_string(),
        original_rust_path: String::new(),
        params: vec![ParamDef {
            name: "name".to_string(),
            ty: TypeRef::String,
            optional: false,
            default: None,
            sanitized: false,
            typed_default: None,
            is_ref: true,
            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::Named("Language".to_string()),
        is_async: false,
        error_type: None,
        doc: String::new(),
        cfg: None,
        sanitized: false,
        return_sanitized: false,
        returns_ref: false,
        returns_cow: false,
        return_newtype_wrapper: None,
        binding_excluded: false,
        binding_exclusion_reason: None,
        version: Default::default(),
    }
}

#[test]
fn emit_function_constructs_host_language_for_capsule_return() {
    let f = get_language_fn();
    let mut capsule_types: HashMap<String, HostCapsuleTypeConfig> = HashMap::new();
    capsule_types.insert(
        "Language".to_string(),
        HostCapsuleTypeConfig {
            host_type: "?*const tree_sitter.Language".to_string(),
            package: "https://github.com/tree-sitter/zig-tree-sitter".to_string(),
            package_version: String::new(),
            construct_expr: String::new(),
        },
    );
    let mut out = String::new();
    emit_function(
        &f,
        "tsp",
        &[],
        &HashSet::new(),
        &HashSet::new(),
        &HashMap::new(),
        &capsule_types,
        &mut out,
    );
    assert!(
        out.contains("?*const tree_sitter.Language"),
        "capsule fn must return the host Language type. Got:\n{out}"
    );
    assert!(
        out.contains("tree_sitter.Language.fromRaw(@ptrCast(_result))"),
        "capsule fn must construct via fromRaw. Got:\n{out}"
    );
    assert!(
        out.contains("c.tsp_get_language("),
        "capsule fn must call the C symbol. Got:\n{out}"
    );
}