-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add component test for multi-package WIT source
- Loading branch information
1 parent
0fe4459
commit 1755cdc
Showing
8 changed files
with
328 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
90 changes: 90 additions & 0 deletions
90
crates/wit-component/tests/components/multi-package/baz/qux/component.wat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
(component | ||
(type (;0;) | ||
(instance | ||
(type (;0;) s8) | ||
(export (;1;) "x" (type (eq 0))) | ||
(type (;2;) (list string)) | ||
(type (;3;) (func (param "x" 2))) | ||
(export (;0;) "qux1" (func (type 3))) | ||
(type (;4;) (func)) | ||
(export (;1;) "qux2" (func (type 4))) | ||
(type (;5;) (func (param "x" 1))) | ||
(export (;2;) "qux3" (func (type 5))) | ||
) | ||
) | ||
(import "qux" (instance (;0;) (type 0))) | ||
(core module (;0;) | ||
(type (;0;) (func (param i32 i32))) | ||
(type (;1;) (func)) | ||
(type (;2;) (func (param i32))) | ||
(type (;3;) (func (param i32 i32 i32 i32) (result i32))) | ||
(import "qux" "qux1" (func (;0;) (type 0))) | ||
(import "qux" "qux2" (func (;1;) (type 1))) | ||
(import "qux" "qux3" (func (;2;) (type 2))) | ||
(func (;3;) (type 3) (param i32 i32 i32 i32) (result i32) | ||
unreachable | ||
) | ||
(memory (;0;) 1) | ||
(export "memory" (memory 0)) | ||
(export "cabi_realloc" (func 3)) | ||
(@producers | ||
(processed-by "wit-component" "$CARGO_PKG_VERSION") | ||
(processed-by "my-fake-bindgen" "123.45") | ||
) | ||
) | ||
(core module (;1;) | ||
(type (;0;) (func (param i32 i32))) | ||
(func $indirect-qux-qux1 (;0;) (type 0) (param i32 i32) | ||
local.get 0 | ||
local.get 1 | ||
i32.const 0 | ||
call_indirect (type 0) | ||
) | ||
(table (;0;) 1 1 funcref) | ||
(export "0" (func $indirect-qux-qux1)) | ||
(export "$imports" (table 0)) | ||
(@producers | ||
(processed-by "wit-component" "$CARGO_PKG_VERSION") | ||
) | ||
) | ||
(core module (;2;) | ||
(type (;0;) (func (param i32 i32))) | ||
(import "" "0" (func (;0;) (type 0))) | ||
(import "" "$imports" (table (;0;) 1 1 funcref)) | ||
(elem (;0;) (i32.const 0) func 0) | ||
(@producers | ||
(processed-by "wit-component" "$CARGO_PKG_VERSION") | ||
) | ||
) | ||
(core instance (;0;) (instantiate 1)) | ||
(alias core export 0 "0" (core func (;0;))) | ||
(alias export 0 "qux2" (func (;0;))) | ||
(core func (;1;) (canon lower (func 0))) | ||
(alias export 0 "qux3" (func (;1;))) | ||
(core func (;2;) (canon lower (func 1))) | ||
(core instance (;1;) | ||
(export "qux1" (func 0)) | ||
(export "qux2" (func 1)) | ||
(export "qux3" (func 2)) | ||
) | ||
(core instance (;2;) (instantiate 0 | ||
(with "qux" (instance 1)) | ||
) | ||
) | ||
(alias core export 2 "memory" (core memory (;0;))) | ||
(alias core export 2 "cabi_realloc" (core func (;3;))) | ||
(alias core export 0 "$imports" (core table (;0;))) | ||
(alias export 0 "qux1" (func (;2;))) | ||
(core func (;4;) (canon lower (func 2) (memory 0) string-encoding=utf8)) | ||
(core instance (;3;) | ||
(export "$imports" (table 0)) | ||
(export "0" (func 4)) | ||
) | ||
(core instance (;4;) (instantiate 2 | ||
(with "" (instance 3)) | ||
) | ||
) | ||
(@producers | ||
(processed-by "wit-component" "$CARGO_PKG_VERSION") | ||
) | ||
) |
13 changes: 13 additions & 0 deletions
13
crates/wit-component/tests/components/multi-package/baz/qux/component.wit.print
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package root:component; | ||
|
||
world root { | ||
import qux: interface { | ||
type x = s8; | ||
|
||
qux1: func(x: list<string>); | ||
|
||
qux2: func(); | ||
|
||
qux3: func(x: x); | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
crates/wit-component/tests/components/multi-package/baz/qux/module.wat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
(module | ||
(import "qux" "qux1" (func (param i32 i32))) | ||
(import "qux" "qux2" (func)) | ||
(import "qux" "qux3" (func (param i32))) | ||
(memory (export "memory") 1) | ||
(func (export "cabi_realloc") (param i32 i32 i32 i32) (result i32) unreachable) | ||
) |
Oops, something went wrong.