Skip to content

Commit

Permalink
Fix importing contract crates into other crates for testing (#1364)
Browse files Browse the repository at this point in the history
### What

Change two locations of the soroban-sdk-macros which were gated on the
contract crates `testutils` feature, to be gated on the SDK's
`testutils` feature.

### Why

Recently I introduced a bug into the sdk across two changes:
- #1344
- #1336

The bug was that I changed how some code was gated to be gated on
whether the contract's `testutils` feature was enabled, rather than on
the SDKs.

Sometime ago in the following issue I changed how all of a contract's
testutils are enabled/disabled, by being enabled/disabled by the SDK's
testutils feature:
- #1301

That change was good, it fixed a horrid issue with testing contracts
where you could have some contracts in testutils mode, and others not,
leading to strange errors when importing native contracts for testing.

However, when I worked on the two issues above, I inadvertently forgot
that we had changed the structure of how testutils code got enabled, and
I introduced across those two PRs two new locations where we followed
the old pattern and gated on the contract feature set, not the SDKs.

For most users this will have presented no issues because there all of
these testutilities are always enabled in a contract's own tests. This
masked the issue in all of our own tests, but broke setups like fuzzing
where the contract gets imported. All of our fuzz projects unfortunately
don't currently build the fuzz components, and so this got missed until
someone (me) tried to use them.

### Known limitations

This change doesn't introduce a test to detect this type of breakage. I
think the way we can detect this in the future is have our pre-existing
test vector build as part of CI. This issue is tracking that follow up
work:
- #1363

### Merging

This fix is targeting main, but we need a similar fix to target v21,
because part of this bug was introduced into v21.7.2. Once this change
merges to main, I will partially cherry-pick it into a backport patch
release.
  • Loading branch information
leighmcculloch authored Oct 8, 2024
1 parent 2320068 commit 1eaa5d8
Showing 1 changed file with 23 additions and 13 deletions.
36 changes: 23 additions & 13 deletions soroban-sdk-macros/src/derive_fn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,24 @@ pub fn derive_pub_fn(
return Err(quote! { #(#compile_errors)* });
}

let testutils_only_code = if cfg!(feature = "testutils") {
Some(quote! {
#[deprecated(note = #deprecated_note)]
pub fn invoke_raw_slice(
env: #crate_path::Env,
args: &[#crate_path::Val],
) -> #crate_path::Val {
if args.len() != #arg_count {
panic!("invalid number of input arguments: {} expected, got {}", #arg_count, args.len());
}
#[allow(deprecated)]
invoke_raw(env, #(#slice_args),*)
}
})
} else {
None
};

// Generated code.
Ok(quote! {
#[doc(hidden)]
Expand All @@ -146,18 +164,7 @@ pub fn derive_pub_fn(
)
}

#[cfg(any(test, feature = "testutils"))]
#[deprecated(note = #deprecated_note)]
pub fn invoke_raw_slice(
env: #crate_path::Env,
args: &[#crate_path::Val],
) -> #crate_path::Val {
if args.len() != #arg_count {
panic!("invalid number of input arguments: {} expected, got {}", #arg_count, args.len());
}
#[allow(deprecated)]
invoke_raw(env, #(#slice_args),*)
}
#testutils_only_code

#[deprecated(note = #deprecated_note)]
#[cfg_attr(target_family = "wasm", export_name = #wrap_export_name)]
Expand All @@ -178,6 +185,10 @@ pub fn derive_contract_function_registration_ctor<'a>(
trait_ident: Option<&Ident>,
methods: impl Iterator<Item = &'a syn::ImplItemFn>,
) -> TokenStream2 {
if cfg!(not(feature = "testutils")) {
return quote!();
}

let (idents, wrap_idents): (Vec<_>, Vec<_>) = methods
.map(|m| {
let ident = format!("{}", m.sig.ident);
Expand All @@ -193,7 +204,6 @@ pub fn derive_contract_function_registration_ctor<'a>(

quote! {
#[doc(hidden)]
#[cfg(any(test, feature = "testutils"))]
#[#crate_path::reexports_for_macros::ctor::ctor]
#[allow(non_snake_case)]
fn #ctor_ident() {
Expand Down

0 comments on commit 1eaa5d8

Please sign in to comment.