Implemented contract instantiation and invocation for integration tests#1988
Merged
cmichi merged 43 commits intouse-ink:masterfrom Jan 9, 2025
Merged
Conversation
# Conflicts: # crates/env/src/lib.rs # crates/env/src/reflect/event.rs # crates/ink/codegen/Cargo.toml
Moved reflection, contract, arithmetic, and miscellaneous types from ink_env to ink_primitives.
This reverts commit 2d1950a.
…tation # Conflicts: # crates/engine/src/database.rs
This was referenced Nov 13, 2023
10 tasks
Collaborator
|
@Helios-vmg Could you merge |
…ation # Conflicts: # CHANGELOG.md # crates/engine/src/database.rs # crates/env/Cargo.toml # crates/env/src/call/call_builder.rs # crates/env/src/call/create_builder.rs # crates/env/src/engine/off_chain/impls.rs # crates/env/src/engine/off_chain/mod.rs # crates/env/src/engine/on_chain/impls/pallet_contracts.rs # crates/env/src/lib.rs # crates/ink/codegen/Cargo.toml # crates/ink/macro/Cargo.toml # crates/primitives/Cargo.toml
Contributor
Author
|
@cmichi Done. Some notes:
Likewise, running |
Collaborator
|
@Helios-vmg Thanks a lot for the PR and the merge of |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
cargo-contractorpallet-contracts?This PR implements instantiate_contract(), invoke_contract(), invoke_contract_delegate() and a few other functions for the integration testing environment. More specifically, it permits calling these functions from inside contracts transparently, as if the contract was running on the blockchain.
Description
(), instead of!. A further modification was needed on execute_dispatchable() to avoid a compiler error when return_value() doesn't return!. When test_instantiate is enabled, AnOk(())is added at the end of the functions (for constructor as well as for message dispatch), thus allowing the test-case to proceed.CHANGELOG.mdOther notes
To test a contract that uses instantiate_contract() in the off-chain environment, use
cargo test --features test_instantiate.Regarding the build errors in the doc tests, I've been trying to resolve them, but it's difficult without any way to see the macro expansion. When I move the code inside the comments to an actual contract it compiles correctly. Is there any way to move forward with this? Can I mark the comments as no_compile and add equivalent integration tests to catch breaking changes?