mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 01:11:10 +00:00
Double map and plain storage support, introduce macros (#93)
* Support custom clients. * Simplify trait bounds. * Plain and double map storage support. * Simplify more trait bounds. * Add proc macro. * Add Call, Event and Store traits. * Update proc-macros. * Add with_system for proc-macro. * proc-macro: test: support signature and extra fields. * proc-macro: test: support sharing state accross steps. * proc-macro: test: fetch state sequentially. * Elide lifetimes. * Add test for plain storage. * Run rustfmt.
This commit is contained in:
@@ -0,0 +1,497 @@
|
||||
use crate::utils;
|
||||
use proc_macro2::TokenStream;
|
||||
use quote::{
|
||||
format_ident,
|
||||
quote,
|
||||
};
|
||||
use syn::{
|
||||
parse::{
|
||||
Parse,
|
||||
ParseStream,
|
||||
},
|
||||
punctuated::Punctuated,
|
||||
};
|
||||
|
||||
mod kw {
|
||||
use syn::custom_keyword;
|
||||
|
||||
custom_keyword!(name);
|
||||
custom_keyword!(runtime);
|
||||
custom_keyword!(account);
|
||||
custom_keyword!(signature);
|
||||
custom_keyword!(extra);
|
||||
custom_keyword!(step);
|
||||
custom_keyword!(state);
|
||||
custom_keyword!(call);
|
||||
custom_keyword!(event);
|
||||
custom_keyword!(assert);
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
struct Item<K, V> {
|
||||
key: K,
|
||||
colon: syn::token::Colon,
|
||||
value: V,
|
||||
}
|
||||
|
||||
impl<K: Parse, V: Parse> Parse for Item<K, V> {
|
||||
fn parse(input: ParseStream) -> syn::Result<Self> {
|
||||
Ok(Self {
|
||||
key: input.parse()?,
|
||||
colon: input.parse()?,
|
||||
value: input.parse()?,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
struct Items<I> {
|
||||
brace: syn::token::Brace,
|
||||
items: Punctuated<I, syn::token::Comma>,
|
||||
}
|
||||
|
||||
impl<I: Parse> Parse for Items<I> {
|
||||
fn parse(input: ParseStream) -> syn::Result<Self> {
|
||||
let content;
|
||||
Ok(Self {
|
||||
brace: syn::braced!(content in input),
|
||||
items: content.parse_terminated(I::parse)?,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
type ItemTest = Items<TestItem>;
|
||||
|
||||
#[derive(Debug)]
|
||||
enum TestItem {
|
||||
Name(Item<kw::name, syn::Ident>),
|
||||
Runtime(Item<kw::runtime, syn::Type>),
|
||||
Account(Item<kw::account, syn::Ident>),
|
||||
Signature(Item<kw::signature, syn::Type>),
|
||||
Extra(Item<kw::extra, syn::Type>),
|
||||
State(Item<kw::state, ItemState>),
|
||||
Step(Item<kw::step, ItemStep>),
|
||||
}
|
||||
|
||||
impl Parse for TestItem {
|
||||
fn parse(input: ParseStream) -> syn::Result<Self> {
|
||||
if input.peek(kw::name) {
|
||||
Ok(TestItem::Name(input.parse()?))
|
||||
} else if input.peek(kw::runtime) {
|
||||
Ok(TestItem::Runtime(input.parse()?))
|
||||
} else if input.peek(kw::account) {
|
||||
Ok(TestItem::Account(input.parse()?))
|
||||
} else if input.peek(kw::signature) {
|
||||
Ok(TestItem::Signature(input.parse()?))
|
||||
} else if input.peek(kw::extra) {
|
||||
Ok(TestItem::Extra(input.parse()?))
|
||||
} else if input.peek(kw::state) {
|
||||
Ok(TestItem::State(input.parse()?))
|
||||
} else {
|
||||
Ok(TestItem::Step(input.parse()?))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
type ItemStep = Items<StepItem>;
|
||||
|
||||
#[derive(Debug)]
|
||||
enum StepItem {
|
||||
State(Item<kw::state, ItemState>),
|
||||
Call(Item<kw::call, syn::Expr>),
|
||||
Event(Item<kw::event, syn::Expr>),
|
||||
Assert(Item<kw::assert, syn::Expr>),
|
||||
}
|
||||
|
||||
impl Parse for StepItem {
|
||||
fn parse(input: ParseStream) -> syn::Result<Self> {
|
||||
if input.peek(kw::state) {
|
||||
Ok(StepItem::State(input.parse()?))
|
||||
} else if input.peek(kw::call) {
|
||||
Ok(StepItem::Call(input.parse()?))
|
||||
} else if input.peek(kw::event) {
|
||||
Ok(StepItem::Event(input.parse()?))
|
||||
} else {
|
||||
Ok(StepItem::Assert(input.parse()?))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
type ItemState = Items<StateItem>;
|
||||
type StateItem = Item<syn::Ident, syn::Expr>;
|
||||
|
||||
struct Test {
|
||||
name: syn::Ident,
|
||||
runtime: syn::Type,
|
||||
account: syn::Ident,
|
||||
signature: syn::Type,
|
||||
extra: syn::Type,
|
||||
state: Option<State>,
|
||||
steps: Vec<Step>,
|
||||
}
|
||||
|
||||
impl From<ItemTest> for Test {
|
||||
fn from(test: ItemTest) -> Self {
|
||||
let mut name = None;
|
||||
let mut runtime = None;
|
||||
let mut account = None;
|
||||
let mut signature = None;
|
||||
let mut extra = None;
|
||||
let mut state = None;
|
||||
let mut steps = vec![];
|
||||
for test_item in test.items {
|
||||
match test_item {
|
||||
TestItem::Name(item) => {
|
||||
name = Some(item.value);
|
||||
}
|
||||
TestItem::Runtime(item) => {
|
||||
runtime = Some(item.value);
|
||||
}
|
||||
TestItem::Account(item) => {
|
||||
account = Some(item.value);
|
||||
}
|
||||
TestItem::Signature(item) => {
|
||||
signature = Some(item.value);
|
||||
}
|
||||
TestItem::Extra(item) => {
|
||||
extra = Some(item.value);
|
||||
}
|
||||
TestItem::State(item) => {
|
||||
state = Some(item.value.into());
|
||||
}
|
||||
TestItem::Step(item) => {
|
||||
steps.push(item.value.into());
|
||||
}
|
||||
}
|
||||
}
|
||||
let runtime = runtime.unwrap_or_else(|| {
|
||||
let subxt = utils::use_crate("substrate-subxt");
|
||||
syn::parse2(quote!(#subxt::DefaultNodeRuntime)).unwrap()
|
||||
});
|
||||
Self {
|
||||
name: name.expect("No name specified"),
|
||||
account: account.unwrap_or_else(|| format_ident!("Alice")),
|
||||
signature: signature.unwrap_or_else(|| {
|
||||
let sp_runtime = utils::use_crate("sp-runtime");
|
||||
syn::parse2(quote!(#sp_runtime::MultiSignature)).unwrap()
|
||||
}),
|
||||
extra: extra.unwrap_or_else(|| {
|
||||
let subxt = utils::use_crate("substrate-subxt");
|
||||
syn::parse2(quote!(#subxt::DefaultExtra<#runtime>)).unwrap()
|
||||
}),
|
||||
runtime,
|
||||
state,
|
||||
steps,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Test {
|
||||
fn into_tokens(self) -> TokenStream {
|
||||
let env_logger = utils::use_crate("env_logger");
|
||||
let sp_keyring = utils::use_crate("sp-keyring");
|
||||
let subxt = utils::use_crate("substrate-subxt");
|
||||
let Test {
|
||||
name,
|
||||
runtime,
|
||||
account,
|
||||
signature,
|
||||
extra,
|
||||
state,
|
||||
steps,
|
||||
} = self;
|
||||
let step = steps
|
||||
.into_iter()
|
||||
.map(|step| step.into_tokens(&account, state.as_ref()));
|
||||
quote! {
|
||||
#[async_std::test]
|
||||
#[ignore]
|
||||
async fn #name() {
|
||||
#env_logger::try_init().ok();
|
||||
let client = #subxt::ClientBuilder::<#runtime, #signature, #extra>::new()
|
||||
.build().await.unwrap();
|
||||
#[allow(unused)]
|
||||
let alice = #sp_keyring::AccountKeyring::Alice.to_account_id();
|
||||
#[allow(unused)]
|
||||
let bob = #sp_keyring::AccountKeyring::Bob.to_account_id();
|
||||
#[allow(unused)]
|
||||
let charlie = #sp_keyring::AccountKeyring::Charlie.to_account_id();
|
||||
#[allow(unused)]
|
||||
let dave = #sp_keyring::AccountKeyring::Dave.to_account_id();
|
||||
#[allow(unused)]
|
||||
let eve = #sp_keyring::AccountKeyring::Eve.to_account_id();
|
||||
#[allow(unused)]
|
||||
let ferdie = #sp_keyring::AccountKeyring::Ferdie.to_account_id();
|
||||
|
||||
#({
|
||||
#step
|
||||
})*
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
struct Step {
|
||||
state: Option<State>,
|
||||
call: syn::Expr,
|
||||
event_name: Vec<syn::Path>,
|
||||
event: Vec<syn::Expr>,
|
||||
assert: syn::Expr,
|
||||
}
|
||||
|
||||
impl From<ItemStep> for Step {
|
||||
fn from(step: ItemStep) -> Self {
|
||||
let mut state = None;
|
||||
let mut call = None;
|
||||
let mut event_name = vec![];
|
||||
let mut event = vec![];
|
||||
let mut assert = None;
|
||||
|
||||
for step_item in step.items {
|
||||
match step_item {
|
||||
StepItem::State(item) => {
|
||||
state = Some(item.value.into());
|
||||
}
|
||||
StepItem::Call(item) => {
|
||||
call = Some(item.value);
|
||||
}
|
||||
StepItem::Event(item) => {
|
||||
event_name.push(struct_name(&item.value));
|
||||
event.push(item.value);
|
||||
}
|
||||
StepItem::Assert(item) => {
|
||||
assert = Some(item.value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Self {
|
||||
state,
|
||||
call: call.expect("Step requires a call."),
|
||||
event_name,
|
||||
event,
|
||||
assert: assert.expect("Step requires assert."),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Step {
|
||||
fn into_tokens(
|
||||
self,
|
||||
account: &syn::Ident,
|
||||
test_state: Option<&State>,
|
||||
) -> TokenStream {
|
||||
let sp_keyring = utils::use_crate("sp-keyring");
|
||||
let Step {
|
||||
state,
|
||||
call,
|
||||
event_name,
|
||||
event,
|
||||
assert,
|
||||
} = self;
|
||||
let state = state
|
||||
.as_ref()
|
||||
.unwrap_or_else(|| test_state.expect("No state for step"));
|
||||
let State {
|
||||
state_name,
|
||||
state,
|
||||
state_param,
|
||||
} = state;
|
||||
quote! {
|
||||
let xt = client.xt(#sp_keyring::AccountKeyring::#account.pair(), None).await.unwrap();
|
||||
|
||||
struct State<#(#state_param),*> {
|
||||
#(#state_name: #state_param,)*
|
||||
}
|
||||
|
||||
let pre = {
|
||||
#(
|
||||
let #state_name = client.fetch(#state, None).await.unwrap().unwrap();
|
||||
)*
|
||||
State { #(#state_name),* }
|
||||
};
|
||||
|
||||
#[allow(unused)]
|
||||
let result = xt
|
||||
.watch()
|
||||
.submit(#call)
|
||||
.await
|
||||
.unwrap();
|
||||
|
||||
#(
|
||||
assert_eq!(
|
||||
result.find_event::<#event_name<_>>().unwrap(),
|
||||
Some(#event)
|
||||
);
|
||||
)*
|
||||
|
||||
let post = {
|
||||
#(
|
||||
let #state_name = client.fetch(#state, None).await.unwrap().unwrap();
|
||||
)*
|
||||
State { #(#state_name),* }
|
||||
};
|
||||
|
||||
#assert
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
struct State {
|
||||
state_name: Vec<syn::Ident>,
|
||||
state: Vec<syn::Expr>,
|
||||
state_param: Vec<syn::Ident>,
|
||||
}
|
||||
|
||||
impl From<ItemState> for State {
|
||||
fn from(item_state: ItemState) -> Self {
|
||||
let mut state_name = vec![];
|
||||
let mut state = vec![];
|
||||
for item in item_state.items {
|
||||
state_name.push(item.key);
|
||||
state.push(item.value);
|
||||
}
|
||||
let state_param = (b'A'..b'Z')
|
||||
.map(|c| format_ident!("{}", (c as char).to_string()))
|
||||
.take(state_name.len())
|
||||
.collect::<Vec<_>>();
|
||||
Self {
|
||||
state_name,
|
||||
state,
|
||||
state_param,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn struct_name(expr: &syn::Expr) -> syn::Path {
|
||||
if let syn::Expr::Struct(syn::ExprStruct { path, .. }) = expr {
|
||||
return path.clone()
|
||||
} else {
|
||||
panic!("not a struct");
|
||||
}
|
||||
}
|
||||
|
||||
pub fn test(input: TokenStream) -> TokenStream {
|
||||
let item_test: ItemTest = syn::parse2(input).unwrap();
|
||||
Test::from(item_test).into_tokens()
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn transfer_test_case() {
|
||||
let input = quote! {{
|
||||
name: test_transfer_balance,
|
||||
runtime: KusamaRuntime,
|
||||
account: Alice,
|
||||
step: {
|
||||
state: {
|
||||
alice: AccountStore { account_id: &alice },
|
||||
bob: AccountStore { account_id: &bob },
|
||||
},
|
||||
call: TransferCall {
|
||||
to: &bob,
|
||||
amount: 10_000,
|
||||
},
|
||||
event: TransferEvent {
|
||||
from: alice.clone(),
|
||||
to: bob.clone(),
|
||||
amount: 10_000,
|
||||
},
|
||||
assert: {
|
||||
assert_eq!(pre.alice.free, post.alice.free - 10_000);
|
||||
assert_eq!(pre.bob.free, post.bob.free + 10_000);
|
||||
},
|
||||
},
|
||||
}};
|
||||
let expected = quote! {
|
||||
#[async_std::test]
|
||||
#[ignore]
|
||||
async fn test_transfer_balance() {
|
||||
env_logger::try_init().ok();
|
||||
let client = substrate_subxt::ClientBuilder::<
|
||||
KusamaRuntime,
|
||||
sp_runtime::MultiSignature,
|
||||
substrate_subxt::DefaultExtra<KusamaRuntime>
|
||||
>::new().build().await.unwrap();
|
||||
#[allow(unused)]
|
||||
let alice = sp_keyring::AccountKeyring::Alice.to_account_id();
|
||||
#[allow(unused)]
|
||||
let bob = sp_keyring::AccountKeyring::Bob.to_account_id();
|
||||
#[allow(unused)]
|
||||
let charlie = sp_keyring::AccountKeyring::Charlie.to_account_id();
|
||||
#[allow(unused)]
|
||||
let dave = sp_keyring::AccountKeyring::Dave.to_account_id();
|
||||
#[allow(unused)]
|
||||
let eve = sp_keyring::AccountKeyring::Eve.to_account_id();
|
||||
#[allow(unused)]
|
||||
let ferdie = sp_keyring::AccountKeyring::Ferdie.to_account_id();
|
||||
|
||||
{
|
||||
let xt = client.xt(sp_keyring::AccountKeyring::Alice.pair(), None).await.unwrap();
|
||||
|
||||
struct State<A, B> {
|
||||
alice: A,
|
||||
bob: B,
|
||||
}
|
||||
|
||||
let pre = {
|
||||
let alice = client
|
||||
.fetch(AccountStore { account_id: &alice }, None)
|
||||
.await
|
||||
.unwrap()
|
||||
.unwrap();
|
||||
let bob = client
|
||||
.fetch(AccountStore { account_id: &bob }, None)
|
||||
.await
|
||||
.unwrap()
|
||||
.unwrap();
|
||||
State { alice, bob }
|
||||
};
|
||||
|
||||
#[allow(unused)]
|
||||
let result = xt
|
||||
.watch()
|
||||
.submit(TransferCall {
|
||||
to: &bob,
|
||||
amount: 10_000,
|
||||
})
|
||||
.await
|
||||
.unwrap();
|
||||
|
||||
assert_eq!(
|
||||
result.find_event::<TransferEvent<_>>().unwrap(),
|
||||
Some(TransferEvent {
|
||||
from: alice.clone(),
|
||||
to: bob.clone(),
|
||||
amount: 10_000,
|
||||
})
|
||||
);
|
||||
|
||||
let post = {
|
||||
let alice = client
|
||||
.fetch(AccountStore { account_id: &alice }, None)
|
||||
.await
|
||||
.unwrap()
|
||||
.unwrap();
|
||||
let bob = client
|
||||
.fetch(AccountStore { account_id: &bob }, None)
|
||||
.await
|
||||
.unwrap()
|
||||
.unwrap();
|
||||
State { alice, bob }
|
||||
};
|
||||
|
||||
{
|
||||
assert_eq!(pre.alice.free, post.alice.free - 10_000);
|
||||
assert_eq!(pre.bob.free, post.bob.free + 10_000);
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
let result = test(input);
|
||||
utils::assert_proc_macro(result, expected);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user