Expand description
This module generates test cases for the Wasmtime component model function APIs,
e.g. wasmtime::component::func::Func
and TypedFunc
.
Each case includes a list of arbitrary interface types to use as parameters, plus another one to use as a result, and a component which exports a function and imports a function. The exported function forwards its parameters to the imported one and forwards the result back to the caller. This serves to exercise Wasmtime’s lifting and lowering code and verify the values remain intact during both processes.
Structs§
- Declarations
- Represents custom fragments of a WAT file which may be used to create a component for exercising
TestCase
s - Test
Case - Represents a test case for calling a component function
- VecIn
Range - Wraps a
Box<[T]>
and provides anArbitrary
implementation that always generates slices of length less than or equal to the longest tuple for which Wasmtime generates aComponentType
impl
Enums§
- String
Encoding - Type
- Represents a component model interface type
Constants§
- EXPORT_
FUNCTION - The name of the exported guest function which the host should call
- IMPORT_
FUNCTION - The name of the imported host function which the generated component will call
- MAX_
TYPE_ DEPTH - Wasmtime allows up to 100 type depth so limit this to just under that.
Functions§
- rust_
type - Generate a
TokenStream
containing the rust type name for a type.