1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
use crate::info_extractor::ItemTraitInfo;
use quote::quote;
use syn::export::TokenStream2;

impl ItemTraitInfo {
    /// Generate code that wrapps external calls.
    pub fn wrapped_module(&self) -> TokenStream2 {
        let mut result = TokenStream2::new();
        for method in &self.methods {
            result.extend(method.method_wrapper());
        }
        let mod_name = &self.mod_name;
        quote! {
            mod #mod_name {
                use super::*;
                use near_bindgen::{Gas, Balance, AccountId, Promise};
                use std::string::ToString;
                #result
            }
        }
    }
}

// Rustfmt removes comas.
#[rustfmt::skip]
#[cfg(test)]
mod tests {
    use syn::ItemTrait;
    use quote::quote;
    use crate::info_extractor::ItemTraitInfo;

    #[test]
    fn standard() {
        let mut t: ItemTrait = syn::parse2(
            quote!{
                    pub trait ExternalCrossContract {
                        fn merge_sort(&self, arr: Vec<u8>) -> PromiseOrValue<Vec<u8>>;
                        fn merge(
                            &self,
                            #[callback]
                            #[serializer(borsh)]
                            data0: Vec<u8>,
                            #[callback]
                            #[serializer(borsh)]
                            data1: Vec<u8>,
                        ) -> Vec<u8>;
                    }
            }
        ).unwrap();
        let info = ItemTraitInfo::new(&mut t, None).unwrap();
        let actual = info.wrapped_module();

        let expected = quote! {
            mod external_cross_contract {
                use super::*;
                use near_bindgen::{Gas, Balance, AccountId, Promise};
                use std::string::ToString;
                pub fn merge_sort<T: ToString>(
                    arr: Vec<u8>,
                    __account_id: &T,
                    __balance: near_bindgen::Balance,
                    __gas: near_bindgen::Gas
                ) -> near_bindgen::Promise {
                    #[derive(serde :: Deserialize, serde :: Serialize)]
                    struct Input {
                        arr: Vec<u8>,
                    }
                    let args = Input { arr, };
                    let args = serde_json::to_vec(&args)
                        .expect("Failed to serialize the cross contract args using JSON.");
                    near_bindgen::Promise::new(__account_id.to_string()).function_call(
                        b"merge_sort".to_vec(),
                        args,
                        __balance,
                        __gas,
                    )
                }
                pub fn merge<T: ToString>(__account_id: &T, __balance: near_bindgen::Balance, __gas: near_bindgen::Gas) -> near_bindgen::Promise {
                    let args = vec![];
                    near_bindgen::Promise::new(__account_id.to_string()).function_call(
                        b"merge".to_vec(),
                        args,
                        __balance,
                        __gas,
                    )
                }
            }
        };
        assert_eq!(actual.to_string(), expected.to_string());
    }
}