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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
// Copyright 2021-2022 Axiom-Team
//
// This file is part of Duniter-v2S.
//
// Duniter-v2S is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, version 3 of the License.
//
// Duniter-v2S is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with Duniter-v2S. If not, see <https://www.gnu.org/licenses/>.

#![cfg(feature = "runtime-benchmarks")]

use super::*;

use frame_benchmarking::v2::*;
use frame_benchmarking::{account, whitelisted_caller};
use frame_support::pallet_prelude::IsType;
use frame_support::traits::Get;
use frame_system::RawOrigin;
use pallet_balances::Pallet as Balances;

use crate::Pallet;

#[benchmarks(
        where
        T: pallet_balances::Config,
        T::Balance: From<u64>,
        <T::Currency as Currency<T::AccountId>>::Balance: IsType<T::Balance>+From<T::Balance>
)]
mod benchmarks {
    use super::*;

    #[benchmark]
    fn create_oneshot_account() {
        let existential_deposit = T::ExistentialDeposit::get();
        let caller = whitelisted_caller();
        let balance = existential_deposit.saturating_mul((2).into());
        let _ = T::Currency::make_free_balance_be(&caller, balance.into());
        let recipient: T::AccountId = account("recipient", 0, 1);
        let recipient_lookup: <T::Lookup as StaticLookup>::Source =
            T::Lookup::unlookup(recipient.clone());
        let transfer_amount = existential_deposit;

        #[extrinsic_call]
        _(
            RawOrigin::Signed(caller.clone()),
            recipient_lookup,
            transfer_amount.into(),
        );

        assert_eq!(Balances::<T>::free_balance(&caller), transfer_amount);
        assert_eq!(
            OneshotAccounts::<T>::get(&recipient),
            Some(transfer_amount.into())
        );
    }

    #[benchmark]
    fn consume_oneshot_account() {
        let existential_deposit = T::ExistentialDeposit::get();
        let caller: T::AccountId = whitelisted_caller();
        let balance = existential_deposit.saturating_mul((2).into());
        OneshotAccounts::<T>::insert(
            caller.clone(),
            Into::<<T::Currency as Currency<T::AccountId>>::Balance>::into(balance),
        );
        // Deposit into a normal account is more expensive than into a oneshot account
        // so we create the recipient account with an existential deposit.
        let recipient: T::AccountId = account("recipient", 0, 1);
        let recipient_lookup: <T::Lookup as StaticLookup>::Source =
            T::Lookup::unlookup(recipient.clone());
        let _ = T::Currency::make_free_balance_be(&recipient, existential_deposit.into());

        #[extrinsic_call]
        _(
            RawOrigin::Signed(caller.clone()),
            BlockNumberFor::<T>::zero(),
            Account::<<T::Lookup as StaticLookup>::Source>::Normal(recipient_lookup),
        );

        assert_eq!(OneshotAccounts::<T>::get(&caller), None);
        assert_eq!(
            Balances::<T>::free_balance(&recipient),
            existential_deposit.saturating_mul((3).into())
        );
    }

    #[benchmark]
    fn consume_oneshot_account_with_remaining() {
        let existential_deposit = T::ExistentialDeposit::get();
        let caller: T::AccountId = whitelisted_caller();
        let balance = existential_deposit.saturating_mul((2).into());
        OneshotAccounts::<T>::insert(
            caller.clone(),
            Into::<<T::Currency as Currency<T::AccountId>>::Balance>::into(balance),
        );
        // Deposit into a normal account is more expensive than into a oneshot account
        // so we create the recipient accounts with an existential deposits.
        let recipient1: T::AccountId = account("recipient1", 0, 1);
        let recipient1_lookup: <T::Lookup as StaticLookup>::Source =
            T::Lookup::unlookup(recipient1.clone());
        let _ = T::Currency::make_free_balance_be(&recipient1, existential_deposit.into());
        let recipient2: T::AccountId = account("recipient2", 1, 1);
        let recipient2_lookup: <T::Lookup as StaticLookup>::Source =
            T::Lookup::unlookup(recipient2.clone());
        let _ = T::Currency::make_free_balance_be(&recipient2, existential_deposit.into());

        #[extrinsic_call]
        _(
            RawOrigin::Signed(caller.clone()),
            BlockNumberFor::<T>::zero(),
            Account::<<T::Lookup as StaticLookup>::Source>::Normal(recipient1_lookup),
            Account::<<T::Lookup as StaticLookup>::Source>::Normal(recipient2_lookup),
            existential_deposit.into(),
        );

        assert_eq!(OneshotAccounts::<T>::get(&caller), None);
        assert_eq!(
            Balances::<T>::free_balance(&recipient1),
            existential_deposit.saturating_mul((2).into())
        );
        assert_eq!(
            Balances::<T>::free_balance(&recipient2),
            existential_deposit.saturating_mul((2).into())
        );
    }

    impl_benchmark_test_suite!(Pallet, crate::mock::new_test_ext(), crate::mock::Test);
}