-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing
where
bounds for rpc_gen (#726)
- Loading branch information
1 parent
203d839
commit 04408b8
Showing
7 changed files
with
120 additions
and
16 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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 |
---|---|---|
|
@@ -107,5 +107,5 @@ fn main() { | |
assert_eq!(result, ()); | ||
} | ||
|
||
println!("All tests passed!") | ||
println!("All tests passed!"); | ||
} |
99 changes: 99 additions & 0 deletions
99
module-system/sov-modules-macros/tests/rpc/derive_rpc_with_where.rs
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,99 @@ | ||
use std::hash::Hasher; | ||
|
||
use jsonrpsee::core::RpcResult; | ||
use sov_modules_api::default_context::ZkDefaultContext; | ||
use sov_modules_api::macros::rpc_gen; | ||
use sov_modules_api::{Context, ModuleInfo}; | ||
use sov_state::{WorkingSet, ZkStorage}; | ||
|
||
#[derive(ModuleInfo)] | ||
pub struct TestStruct<C: ::sov_modules_api::Context, D> | ||
where | ||
D: std::hash::Hash | ||
+ std::clone::Clone | ||
+ borsh::BorshSerialize | ||
+ borsh::BorshDeserialize | ||
+ serde::Serialize | ||
+ serde::de::DeserializeOwned | ||
+ 'static, | ||
{ | ||
#[address] | ||
pub(crate) address: C::Address, | ||
#[state] | ||
pub(crate) data: ::sov_state::StateValue<D>, | ||
} | ||
|
||
#[rpc_gen(client, server, namespace = "test")] | ||
impl<C: sov_modules_api::Context, D> TestStruct<C, D> | ||
where | ||
D: std::hash::Hash | ||
+ std::clone::Clone | ||
+ borsh::BorshSerialize | ||
+ borsh::BorshDeserialize | ||
+ serde::Serialize | ||
+ serde::de::DeserializeOwned | ||
+ 'static, | ||
{ | ||
#[rpc_method(name = "firstMethod")] | ||
pub fn first_method(&self, _working_set: &mut WorkingSet<C::Storage>) -> RpcResult<u32> { | ||
Ok(11) | ||
} | ||
|
||
#[rpc_method(name = "secondMethod")] | ||
pub fn second_method( | ||
&self, | ||
result: D, | ||
_working_set: &mut WorkingSet<C::Storage>, | ||
) -> RpcResult<(D, u64)> { | ||
let mut hasher = std::collections::hash_map::DefaultHasher::new(); | ||
let value = result.clone(); | ||
value.hash(&mut hasher); | ||
let hashed_value = hasher.finish(); | ||
|
||
Ok((value, hashed_value)) | ||
} | ||
} | ||
|
||
pub struct TestRuntime<C: Context> { | ||
test_struct: TestStruct<C, u32>, | ||
} | ||
|
||
// This is generated by a macro annotating the state transition runner, | ||
// but we do not have that in scope here so generating the struct manually. | ||
struct RpcStorage<C: Context> { | ||
pub storage: C::Storage, | ||
} | ||
|
||
impl TestStructRpcImpl<ZkDefaultContext, u32> for RpcStorage<ZkDefaultContext> { | ||
fn get_working_set( | ||
&self, | ||
) -> ::sov_state::WorkingSet<<ZkDefaultContext as ::sov_modules_api::Spec>::Storage> { | ||
::sov_state::WorkingSet::new(self.storage.clone()) | ||
} | ||
} | ||
|
||
fn main() { | ||
let storage = ZkStorage::new([1u8; 32]); | ||
let r: RpcStorage<ZkDefaultContext> = RpcStorage { | ||
storage: storage.clone(), | ||
}; | ||
{ | ||
let result = | ||
<RpcStorage<ZkDefaultContext> as TestStructRpcServer<ZkDefaultContext, u32>>::first_method( | ||
&r, | ||
) | ||
.unwrap(); | ||
assert_eq!(result, 11); | ||
} | ||
|
||
{ | ||
let result = | ||
<RpcStorage<ZkDefaultContext> as TestStructRpcServer<ZkDefaultContext, u32>>::second_method( | ||
&r, 22, | ||
) | ||
.unwrap(); | ||
assert_eq!(result, (22, 15733059416522709050)); | ||
} | ||
|
||
println!("All tests passed!"); | ||
} |