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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
//! Ceres liquidity locker module benchmarking.

#![cfg_attr(not(feature = "std"), no_std)]
// TODO #167: fix clippy warnings
#![allow(clippy::all)]

use ceres_liquidity_locker::AccountIdOf;
use codec::Decode;
use common::prelude::Balance;
use common::{balance, AssetName, AssetSymbol, DEXId, DEFAULT_BALANCE_PRECISION, XOR};
use frame_benchmarking::{benchmarks, impl_benchmark_test_suite};
use frame_system::RawOrigin;
use hex_literal::hex;
use sp_std::prelude::*;

use assets::Pallet as Assets;
use pallet_timestamp::Pallet as Timestamp;
use permissions::Pallet as Permissions;
use pool_xyk::Pallet as XYKPool;
use trading_pair::Pallet as TradingPair;

#[cfg(test)]
mod mock;

pub struct Pallet<T: Config>(ceres_liquidity_locker::Pallet<T>);
pub trait Config: ceres_liquidity_locker::Config + trading_pair::Config + pool_xyk::Config {}

pub const DEX: DEXId = DEXId::Polkaswap;

// Support Functions
fn alice<T: Config>() -> T::AccountId {
    let bytes = hex!("d43593c715fdd31c61141abd04a99fd6822c8558854ccde39a5684e7a56da27d");
    T::AccountId::decode(&mut &bytes[..]).expect("Failed to decode account ID")
}

#[allow(non_snake_case)]
pub fn AUTHORITY<T: frame_system::Config>() -> T::AccountId {
    let bytes = hex!("34a5b78f5fbcdc92a28767d63b579690a4b2f6a179931b3ecc87f09fc9366d47");
    AccountIdOf::<T>::decode(&mut &bytes[..]).expect("Failed to decode account ID")
}

fn setup_benchmark_assets_only<T: Config>() -> Result<(), &'static str> {
    let owner = alice::<T>();
    frame_system::Pallet::<T>::inc_providers(&owner);
    let owner_origin: <T as frame_system::Config>::RuntimeOrigin =
        RawOrigin::Signed(owner.clone()).into();
    let ceres_asset_id = common::AssetId32::from_bytes(hex!(
        "008bcfd2387d3fc453333557eecb0efe59fcba128769b2feefdd306e98e66440"
    ));

    // Grant permissions to self in case they haven't been explicitly given in genesis config
    let _ = Permissions::<T>::assign_permission(
        owner.clone(),
        &owner,
        permissions::MINT,
        permissions::Scope::Unlimited,
    );
    let _ = Permissions::<T>::assign_permission(
        owner.clone(),
        &owner,
        permissions::BURN,
        permissions::Scope::Unlimited,
    );

    let _ = Assets::<T>::register_asset_id(
        owner.clone(),
        XOR.into(),
        AssetSymbol(b"XOR".to_vec()),
        AssetName(b"SORA".to_vec()),
        DEFAULT_BALANCE_PRECISION,
        Balance::from(0u32),
        true,
        None,
        None,
    );
    let _ = Assets::<T>::register_asset_id(
        owner.clone(),
        ceres_asset_id.into(),
        AssetSymbol(b"CERES".to_vec()),
        AssetName(b"Ceres".to_vec()),
        DEFAULT_BALANCE_PRECISION,
        Balance::from(0u32),
        true,
        None,
        None,
    );

    TradingPair::<T>::register(
        owner_origin.clone(),
        DEX.into(),
        XOR.into(),
        ceres_asset_id.into(),
    )
    .unwrap();

    Assets::<T>::mint_to(&XOR.into(), &owner.clone(), &owner.clone(), balance!(50000))?;
    Assets::<T>::mint_to(
        &ceres_asset_id.into(),
        &owner.clone(),
        &owner.clone(),
        balance!(50000),
    )?;

    Ok(())
}

fn setup_benchmark<T: Config>() -> Result<(), &'static str> {
    let owner = alice::<T>();
    frame_system::Pallet::<T>::inc_providers(&owner);
    let owner_origin: <T as frame_system::Config>::RuntimeOrigin =
        RawOrigin::Signed(owner.clone()).into();
    let ceres_asset_id = common::AssetId32::from_bytes(hex!(
        "008bcfd2387d3fc453333557eecb0efe59fcba128769b2feefdd306e98e66440"
    ));

    setup_benchmark_assets_only::<T>()?;

    XYKPool::<T>::initialize_pool(
        owner_origin.clone(),
        DEX.into(),
        XOR.into(),
        ceres_asset_id.into(),
    )?;

    XYKPool::<T>::deposit_liquidity(
        owner_origin.clone(),
        DEX.into(),
        XOR.into(),
        ceres_asset_id.into(),
        balance!(2000),
        balance!(3000),
        balance!(2000),
        balance!(3000),
    )?;

    Ok(())
}

benchmarks! {
    lock_liquidity {
        setup_benchmark::<T>()?;
        let caller = alice::<T>();
        let timestamp = Timestamp::<T>::get() + 5u32.into();
        let lp_percentage = balance!(0.5);
        let ceres_asset_id: T::AssetId = common::AssetId32::from_bytes(hex!(
            "008bcfd2387d3fc453333557eecb0efe59fcba128769b2feefdd306e98e66440"
        )).into();
    }: {
        let _ = ceres_liquidity_locker::Pallet::<T>::lock_liquidity(
            RawOrigin::Signed(caller.clone()).into(),
            XOR.into(),
            ceres_asset_id,
            timestamp,
            lp_percentage,
            false
        );
    }
    verify {
        let lockups_alice = ceres_liquidity_locker::LockerData::<T>::get(caller.clone());
        assert_eq!(lockups_alice.len(), 1);
        assert_eq!(lockups_alice.get(0).unwrap().unlocking_timestamp, timestamp);
    }

    change_ceres_fee {
        setup_benchmark::<T>()?;
        let caller = AUTHORITY::<T>();
    }: {
        let _ = ceres_liquidity_locker::Pallet::<T>::change_ceres_fee(
            RawOrigin::Signed(caller.clone()).into(),
            balance!(69)
        );
    }
    verify {
        assert_eq!(ceres_liquidity_locker::FeesOptionTwoCeresAmount::<T>::get(), balance!(69));
    }
}

impl_benchmark_test_suite!(
    Pallet,
    crate::mock::ExtBuilder::default().build(),
    crate::mock::Runtime
);