Stream: git-wasmtime

Topic: wasmtime / issue #8908 How to write test


view this post on Zulip Wasmtime GitHub notifications bot (Jul 07 2024 at 05:32):

Shyam-Raghuwanshi opened issue #8908:

I have a project similar to this how can I test it ? I am able to run the guest from host but unable to figure out how to test or How to write test

guest/src/lib.rs

use wit::demo::utils::complex::Num;

mod wit {
    use wit_bindgen::generate;
    generate!({
        path:"../wit",
        world:"reactor",
    });

    use super::Guest;
    export!(Guest);
    pub use self::exports::demo::utils::inbound_http::*;
}
struct Guest;

impl wit::exports::demo::utils::inbound_http::Guest for Guest {
    fn handle_request(req: wit::Request) -> wit::Response {
        println!("Request {:?}", req);
        let sum =
            wit::demo::utils::operation::add(Num { real: 10, imag: 55 }, Num { real: 20, imag: 10 });
        // let sum = wit::demo::utils::operation::add(
        //     wit::demo::utils::complex::Num { real: 1, imag: 1 },
        //     wit::demo::utils::complex::Num { real: 2, imag: 2 },
        // );
        println!("Sum is = {:?}", sum);
        wit::Response {
            status: 200,
            headers: None,
            body: None,
        }
    }
}

host/src/main.rs

use std::env;

// use wasmtime_wasi::WasiCtx;
use std::path::PathBuf;
use wasmtime::{component::*, Module, Table};
use wasmtime::{Config, Engine, Store};
use wasmtime_wasi::bindings::{self};
use wasmtime_wasi::pipe::MemoryOutputPipe;
use wasmtime_wasi::{WasiCtx, WasiCtxBuilder, WasiView};

mod wit {
    wasmtime::component::bindgen!({
        path:"../wit",
        world:"reactor",
    });
}

struct Host {
    table: ResourceTable,
    wasi: WasiCtx,
}

// impl wit::demo::utils::host::Host for Host {
//     fn greet(&mut self) -> wasmtime::Result<u8> {
//         Ok(10)
//     }
// }

impl WasiView for Host {
    fn table(&mut self) -> &mut ResourceTable {
        &mut self.table
    }

    fn ctx(&mut self) -> &mut wasmtime_wasi::WasiCtx {
        &mut self.wasi
    }
}

use wit::demo::utils::complex::Num;
use wit::demo::utils::http_types;
use wit::demo::utils::operation;
use wit::exports::demo::utils::inbound_http;

impl wit::demo::utils::complex::Host for Host {}
impl wit::demo::utils::http_types::Host for Host {}

impl operation::Host for Host {
    fn add(&mut self, a: Num, b: Num) -> wasmtime::Result<Num> {
        Ok(Num {
            real: a.real + b.real,
            imag: a.imag + b.imag,
        })
    }
}

// #[tokio::main]
fn main() -> wasmtime::Result<()> {
    // let engine = wasmtime::Engine::default();
    // let mut store = wasmtime::Store::new(&engine, ());
    // let bytes = std::fs::read("../target/wasm32-wasi/debug/guest.wasm")?;
    // let mut linker: wasmtime::component::Linker<WasiCtx> = wasmtime::component::Linker::new(&engine);
    env::set_var("WASMTIME_BACKTRACE_DETAILS", "1");
    let mut config = Config::new();
    config.wasm_component_model(true);
    config.async_support(false);

    //In the context of wasmtime, Engine is a struct that represents the configuration and context for compiling WebAssembly modules. It is a central part of the Wasmtime API, responsible for managing the lifecycle of compiled WebAssembly code and providing the necessary environment for execution.

    let engine = Engine::new(&config)?;

    let component =
        Component::from_file(&engine, "guest.wasm").expect("guest.wasm not found");

    let mut linker = Linker::new(&engine);

    // Create our wasi context.
    // let mut builder = WasiCtxBuilder::new();

    // let stdout = MemoryOutputPipe::new(4096);
    // let stderr = MemoryOutputPipe::new(4096);
    // builder.stdout(stdout.clone()).stderr(stderr.clone());

    bindings::cli::environment::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add environment");
    bindings::cli::exit::add_to_linker(&mut linker, |x| x).expect("Unable to add cli");
    bindings::io::error::add_to_linker(&mut linker, |x| x).expect("Unable to add io error");
    // bindings::sync::io::streams::add_to_linker(&mut linker, |x| x)
    //     .expect("Unable to add io streams");
    bindings::sync_io::io::streams::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add io streams");
    bindings::cli::stdin::add_to_linker(&mut linker, |x| x).expect("Unable to add cli stdin");
    bindings::cli::stdout::add_to_linker(&mut linker, |x| x).expect("Unable to add cli stdout");
    bindings::cli::stderr::add_to_linker(&mut linker, |x| x).expect("Unable to add cli stderr");
    bindings::clocks::wall_clock::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add clocks wallclock");
    // bindings::sync::filesystem::types::add_to_linker(&mut linker, |x| x)
    //     .expect("Unable to add filesystem types");
    bindings::sync_io::filesystem::types::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add filesystem types");
    bindings::filesystem::preopens::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add filesystem preopens");

    wit::Reactor::add_to_linker(&mut linker, |x| x)?;

    let table = ResourceTable::new();
    let wasi = WasiCtxBuilder::new().inherit_stdio().build();
    let mut store = Store::new(&engine, Host { table, wasi });

    let (reactor, instance) = wit::Reactor::instantiate(&mut store, &component, &linker)?;
    // let guest = reactor.demo_utils_guest();
    let guest = reactor.demo_utils_inbound_http();
    // let result = guest.call_get_data(&mut store)?;
    let request = inbound_http::Request {
        method: http_types::Method::Get,
        uri: "http://google.com".to_string(),
        headers: vec![(String::from("method"), String::from("get"))],
        params: vec![],
        body: None,
    };
    let result = guest.call_handle_request(&mut store, &request);
    match result {
        Ok(res) => println!("Response : {:?}", res),
        Err(err) => println!("Error occured : {:?}", err),
    };
    // let linker = wasmtime::Linker::new(&engine);
    // let module_instance = linker
    //     .instantiate(&mut store, &module)
    //     .expect("Unable to get module instance");
    // let bye = module_instance.get_typed_func::<(), u32>(&mut store, "bye")?;

    // let bye_result = bye.call(&mut store, ()).expect("Function run failed");
    // println!("From bye {}",bye_result);

    // let callme = instance.get_typed_func::<(), ()>(&mut store, "getData")?;
    // callme.call(&mut store, ())?;
    Ok(())
}

Wit files

demo.wit

package demo:utils;

world reactor {
    import operation;
    export inbound-http;
}

complex.wit

interface complex {
    record num {
        real: u16,
        imag: u16
    }
}

http-types.wit

interface http-types {
   type http-status = u16;
   type body = list<u8>;
   type headers = list<tuple<string, string>>;
   type params = list<tuple<string, string>>;
   type uri = string;

    enum method {
        get,
        post,
        put,
        delete,
        patch,
        head,
        options,
    }

    record request {
        method: method,
        uri: uri,
        headers: headers,
        params: params,
        body: option<body>,
    }

    record response {
        status: http-status,
        headers: option<headers>,
        body: option<body>,
    }

    enum http-error {
        success,
        destination-not-allowed,
        invalid-url,
        request-error,
        runtime-error,
        too-many-requests,
    }
}

inbound-http

interface inbound-http {
    use http-types.{request, response};

    handle-request: func(req: request) -> response;
}

sum.wit

interface operation {
    use complex.{num};
    add: func(a:num, b:num) -> num;
}

view this post on Zulip Wasmtime GitHub notifications bot (Jul 07 2024 at 05:50):

Shyam-Raghuwanshi edited issue #8908:

I have a project similar to this how can I test it ? I am able to run the guest from host but unable to figure out how to test or How to write test

guest/src/lib.rs

use wit::demo::utils::complex::Num;

mod wit {
    use wit_bindgen::generate;
    generate!({
        path:"../wit",
        world:"reactor",
    });

    use super::Guest;
    export!(Guest);
    pub use self::exports::demo::utils::inbound_http::*;
}
struct Guest;

impl wit::exports::demo::utils::inbound_http::Guest for Guest {
    fn handle_request(req: wit::Request) -> wit::Response {
        println!("Request {:?}", req);
        let sum =
            wit::demo::utils::operation::add(Num { real: 10, imag: 55 }, Num { real: 20, imag: 10 });
        // let sum = wit::demo::utils::operation::add(
        //     wit::demo::utils::complex::Num { real: 1, imag: 1 },
        //     wit::demo::utils::complex::Num { real: 2, imag: 2 },
        // );
        println!("Sum is = {:?}", sum);
        wit::Response {
            status: 200,
            headers: None,
            body: None,
        }
    }
}

host/src/main.rs

use std::env;

// use wasmtime_wasi::WasiCtx;
use std::path::PathBuf;
use wasmtime::{component::*, Module, Table};
use wasmtime::{Config, Engine, Store};
use wasmtime_wasi::bindings::{self};
use wasmtime_wasi::pipe::MemoryOutputPipe;
use wasmtime_wasi::{WasiCtx, WasiCtxBuilder, WasiView};

mod wit {
    wasmtime::component::bindgen!({
        path:"../wit",
        world:"reactor",
    });
}

struct Host {
    table: ResourceTable,
    wasi: WasiCtx,
}

// impl wit::demo::utils::host::Host for Host {
//     fn greet(&mut self) -> wasmtime::Result<u8> {
//         Ok(10)
//     }
// }

impl WasiView for Host {
    fn table(&mut self) -> &mut ResourceTable {
        &mut self.table
    }

    fn ctx(&mut self) -> &mut wasmtime_wasi::WasiCtx {
        &mut self.wasi
    }
}

use wit::demo::utils::complex::Num;
use wit::demo::utils::http_types;
use wit::demo::utils::operation;
use wit::exports::demo::utils::inbound_http;

impl wit::demo::utils::complex::Host for Host {}
impl wit::demo::utils::http_types::Host for Host {}

impl operation::Host for Host {
    fn add(&mut self, a: Num, b: Num) -> wasmtime::Result<Num> {
        Ok(Num {
            real: a.real + b.real,
            imag: a.imag + b.imag,
        })
    }
}

// #[tokio::main]
fn main() -> wasmtime::Result<()> {
    // let engine = wasmtime::Engine::default();
    // let mut store = wasmtime::Store::new(&engine, ());
    // let bytes = std::fs::read("../target/wasm32-wasi/debug/guest.wasm")?;
    // let mut linker: wasmtime::component::Linker<WasiCtx> = wasmtime::component::Linker::new(&engine);
    env::set_var("WASMTIME_BACKTRACE_DETAILS", "1");
    let mut config = Config::new();
    config.wasm_component_model(true);
    config.async_support(false);

    //In the context of wasmtime, Engine is a struct that represents the configuration and context for compiling WebAssembly modules. It is a central part of the Wasmtime API, responsible for managing the lifecycle of compiled WebAssembly code and providing the necessary environment for execution.

    let engine = Engine::new(&config)?;

    let component =
        Component::from_file(&engine, "guest.wasm").expect("guest.wasm not found");

    let mut linker = Linker::new(&engine);

    // Create our wasi context.
    // let mut builder = WasiCtxBuilder::new();

    // let stdout = MemoryOutputPipe::new(4096);
    // let stderr = MemoryOutputPipe::new(4096);
    // builder.stdout(stdout.clone()).stderr(stderr.clone());

    bindings::cli::environment::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add environment");
    bindings::cli::exit::add_to_linker(&mut linker, |x| x).expect("Unable to add cli");
    bindings::io::error::add_to_linker(&mut linker, |x| x).expect("Unable to add io error");
    // bindings::sync::io::streams::add_to_linker(&mut linker, |x| x)
    //     .expect("Unable to add io streams");
    bindings::sync_io::io::streams::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add io streams");
    bindings::cli::stdin::add_to_linker(&mut linker, |x| x).expect("Unable to add cli stdin");
    bindings::cli::stdout::add_to_linker(&mut linker, |x| x).expect("Unable to add cli stdout");
    bindings::cli::stderr::add_to_linker(&mut linker, |x| x).expect("Unable to add cli stderr");
    bindings::clocks::wall_clock::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add clocks wallclock");
    // bindings::sync::filesystem::types::add_to_linker(&mut linker, |x| x)
    //     .expect("Unable to add filesystem types");
    bindings::sync_io::filesystem::types::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add filesystem types");
    bindings::filesystem::preopens::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add filesystem preopens");

    wit::Reactor::add_to_linker(&mut linker, |x| x)?;

    let table = ResourceTable::new();
    let wasi = WasiCtxBuilder::new().inherit_stdio().build();
    let mut store = Store::new(&engine, Host { table, wasi });

    let (reactor, instance) = wit::Reactor::instantiate(&mut store, &component, &linker)?;
    // let guest = reactor.demo_utils_guest();
    let guest = reactor.demo_utils_inbound_http();
    // let result = guest.call_get_data(&mut store)?;
    let request = inbound_http::Request {
        method: http_types::Method::Get,
        uri: "http://google.com".to_string(),
        headers: vec![(String::from("method"), String::from("get"))],
        params: vec![],
        body: None,
    };
    let result = guest.call_handle_request(&mut store, &request);
    match result {
        Ok(res) => println!("Response : {:?}", res),
        Err(err) => println!("Error occured : {:?}", err),
    };
    // let linker = wasmtime::Linker::new(&engine);
    // let module_instance = linker
    //     .instantiate(&mut store, &module)
    //     .expect("Unable to get module instance");
    // let bye = module_instance.get_typed_func::<(), u32>(&mut store, "bye")?;

    // let bye_result = bye.call(&mut store, ()).expect("Function run failed");
    // println!("From bye {}",bye_result);

    // let callme = instance.get_typed_func::<(), ()>(&mut store, "getData")?;
    // callme.call(&mut store, ())?;
    Ok(())
}

Wit files

demo.wit

package demo:utils;

world reactor {
    import operation;
    export inbound-http;
}

complex.wit

interface complex {
    record num {
        real: u16,
        imag: u16
    }
}

http-types.wit

interface http-types {
   type http-status = u16;
   type body = list<u8>;
   type headers = list<tuple<string, string>>;
   type params = list<tuple<string, string>>;
   type uri = string;

    enum method {
        get,
        post,
        put,
        delete,
        patch,
        head,
        options,
    }

    record request {
        method: method,
        uri: uri,
        headers: headers,
        params: params,
        body: option<body>,
    }

    record response {
        status: http-status,
        headers: option<headers>,
        body: option<body>,
    }

    enum http-error {
        success,
        destination-not-allowed,
        invalid-url,
        request-error,
        runtime-error,
        too-many-requests,
    }
}

inbound-http

interface inbound-http {
    use http-types.{request, response};

    handle-request: func(req: request) -> response;
}

sum.wit

interface operation {
    use complex.{num};
    add: func(a:num, b:num) -> num;
}

```[tasklist]

Tasks

~~~

view this post on Zulip Wasmtime GitHub notifications bot (Jul 07 2024 at 05:51):

Shyam-Raghuwanshi edited issue #8908:

I have a project similar to this how can I test it ? I am able to run the guest from host but unable to figure out how to test or How to write test

guest/src/lib.rs

use wit::demo::utils::complex::Num;

mod wit {
    use wit_bindgen::generate;
    generate!({
        path:"../wit",
        world:"reactor",
    });

    use super::Guest;
    export!(Guest);
    pub use self::exports::demo::utils::inbound_http::*;
}
struct Guest;

impl wit::exports::demo::utils::inbound_http::Guest for Guest {
    fn handle_request(req: wit::Request) -> wit::Response {
        println!("Request {:?}", req);
        let sum =
            wit::demo::utils::operation::add(Num { real: 10, imag: 55 }, Num { real: 20, imag: 10 });
        // let sum = wit::demo::utils::operation::add(
        //     wit::demo::utils::complex::Num { real: 1, imag: 1 },
        //     wit::demo::utils::complex::Num { real: 2, imag: 2 },
        // );
        println!("Sum is = {:?}", sum);
        wit::Response {
            status: 200,
            headers: None,
            body: None,
        }
    }
}

host/src/main.rs

use std::env;

// use wasmtime_wasi::WasiCtx;
use std::path::PathBuf;
use wasmtime::{component::*, Module, Table};
use wasmtime::{Config, Engine, Store};
use wasmtime_wasi::bindings::{self};
use wasmtime_wasi::pipe::MemoryOutputPipe;
use wasmtime_wasi::{WasiCtx, WasiCtxBuilder, WasiView};

mod wit {
    wasmtime::component::bindgen!({
        path:"../wit",
        world:"reactor",
    });
}

struct Host {
    table: ResourceTable,
    wasi: WasiCtx,
}

// impl wit::demo::utils::host::Host for Host {
//     fn greet(&mut self) -> wasmtime::Result<u8> {
//         Ok(10)
//     }
// }

impl WasiView for Host {
    fn table(&mut self) -> &mut ResourceTable {
        &mut self.table
    }

    fn ctx(&mut self) -> &mut wasmtime_wasi::WasiCtx {
        &mut self.wasi
    }
}

use wit::demo::utils::complex::Num;
use wit::demo::utils::http_types;
use wit::demo::utils::operation;
use wit::exports::demo::utils::inbound_http;

impl wit::demo::utils::complex::Host for Host {}
impl wit::demo::utils::http_types::Host for Host {}

impl operation::Host for Host {
    fn add(&mut self, a: Num, b: Num) -> wasmtime::Result<Num> {
        Ok(Num {
            real: a.real + b.real,
            imag: a.imag + b.imag,
        })
    }
}

// #[tokio::main]
fn main() -> wasmtime::Result<()> {
    // let engine = wasmtime::Engine::default();
    // let mut store = wasmtime::Store::new(&engine, ());
    // let bytes = std::fs::read("../target/wasm32-wasi/debug/guest.wasm")?;
    // let mut linker: wasmtime::component::Linker<WasiCtx> = wasmtime::component::Linker::new(&engine);
    env::set_var("WASMTIME_BACKTRACE_DETAILS", "1");
    let mut config = Config::new();
    config.wasm_component_model(true);
    config.async_support(false);

    //In the context of wasmtime, Engine is a struct that represents the configuration and context for compiling WebAssembly modules. It is a central part of the Wasmtime API, responsible for managing the lifecycle of compiled WebAssembly code and providing the necessary environment for execution.

    let engine = Engine::new(&config)?;

    let component =
        Component::from_file(&engine, "guest.wasm").expect("guest.wasm not found");

    let mut linker = Linker::new(&engine);

    // Create our wasi context.
    // let mut builder = WasiCtxBuilder::new();

    // let stdout = MemoryOutputPipe::new(4096);
    // let stderr = MemoryOutputPipe::new(4096);
    // builder.stdout(stdout.clone()).stderr(stderr.clone());

    bindings::cli::environment::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add environment");
    bindings::cli::exit::add_to_linker(&mut linker, |x| x).expect("Unable to add cli");
    bindings::io::error::add_to_linker(&mut linker, |x| x).expect("Unable to add io error");
    // bindings::sync::io::streams::add_to_linker(&mut linker, |x| x)
    //     .expect("Unable to add io streams");
    bindings::sync_io::io::streams::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add io streams");
    bindings::cli::stdin::add_to_linker(&mut linker, |x| x).expect("Unable to add cli stdin");
    bindings::cli::stdout::add_to_linker(&mut linker, |x| x).expect("Unable to add cli stdout");
    bindings::cli::stderr::add_to_linker(&mut linker, |x| x).expect("Unable to add cli stderr");
    bindings::clocks::wall_clock::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add clocks wallclock");
    // bindings::sync::filesystem::types::add_to_linker(&mut linker, |x| x)
    //     .expect("Unable to add filesystem types");
    bindings::sync_io::filesystem::types::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add filesystem types");
    bindings::filesystem::preopens::add_to_linker(&mut linker, |x| x)
        .expect("Unable to add filesystem preopens");

    wit::Reactor::add_to_linker(&mut linker, |x| x)?;

    let table = ResourceTable::new();
    let wasi = WasiCtxBuilder::new().inherit_stdio().build();
    let mut store = Store::new(&engine, Host { table, wasi });

    let (reactor, instance) = wit::Reactor::instantiate(&mut store, &component, &linker)?;
    // let guest = reactor.demo_utils_guest();
    let guest = reactor.demo_utils_inbound_http();
    // let result = guest.call_get_data(&mut store)?;
    let request = inbound_http::Request {
        method: http_types::Method::Get,
        uri: "http://google.com".to_string(),
        headers: vec![(String::from("method"), String::from("get"))],
        params: vec![],
        body: None,
    };
    let result = guest.call_handle_request(&mut store, &request);
    match result {
        Ok(res) => println!("Response : {:?}", res),
        Err(err) => println!("Error occured : {:?}", err),
    };
    // let linker = wasmtime::Linker::new(&engine);
    // let module_instance = linker
    //     .instantiate(&mut store, &module)
    //     .expect("Unable to get module instance");
    // let bye = module_instance.get_typed_func::<(), u32>(&mut store, "bye")?;

    // let bye_result = bye.call(&mut store, ()).expect("Function run failed");
    // println!("From bye {}",bye_result);

    // let callme = instance.get_typed_func::<(), ()>(&mut store, "getData")?;
    // callme.call(&mut store, ())?;
    Ok(())
}

Wit files

demo.wit

package demo:utils;

world reactor {
    import operation;
    export inbound-http;
}

complex.wit

interface complex {
    record num {
        real: u16,
        imag: u16
    }
}

http-types.wit

interface http-types {
   type http-status = u16;
   type body = list<u8>;
   type headers = list<tuple<string, string>>;
   type params = list<tuple<string, string>>;
   type uri = string;

    enum method {
        get,
        post,
        put,
        delete,
        patch,
        head,
        options,
    }

    record request {
        method: method,
        uri: uri,
        headers: headers,
        params: params,
        body: option<body>,
    }

    record response {
        status: http-status,
        headers: option<headers>,
        body: option<body>,
    }

    enum http-error {
        success,
        destination-not-allowed,
        invalid-url,
        request-error,
        runtime-error,
        too-many-requests,
    }
}

inbound-http

interface inbound-http {
    use http-types.{request, response};

    handle-request: func(req: request) -> response;
}

sum.wit

interface operation {
    use complex.{num};
    add: func(a:num, b:num) -> num;
}

view this post on Zulip Wasmtime GitHub notifications bot (Jul 08 2024 at 18:13):

alexcrichton commented on issue #8908:

"how to write test" is a pretty general and broad question, do you have something more specific you'd like to ask? For example one way to test would be to take fn main() and wrap it up in a helper function and then invoke that in individual tests. Whether or not that solves your use case though I'm not sure.


Last updated: Oct 23 2024 at 20:03 UTC