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
183
184
185
186
187
188
// This file is part of the SORA network and Polkaswap app.

// Copyright (c) 2020, 2021, Polka Biome Ltd. All rights reserved.
// SPDX-License-Identifier: BSD-4-Clause

// Redistribution and use in source and binary forms, with or without modification,
// are permitted provided that the following conditions are met:

// Redistributions of source code must retain the above copyright notice, this list
// of conditions and the following disclaimer.
// Redistributions in binary form must reproduce the above copyright notice, this
// list of conditions and the following disclaimer in the documentation and/or other
// materials provided with the distribution.
//
// All advertising materials mentioning features or use of this software must display
// the following acknowledgement: This product includes software developed by Polka Biome
// Ltd., SORA, and Polkaswap.
//
// Neither the name of the Polka Biome Ltd. nor the names of its contributors may be used
// to endorse or promote products derived from this software without specific prior written permission.

// THIS SOFTWARE IS PROVIDED BY Polka Biome Ltd. AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Polka Biome Ltd. BE LIABLE FOR ANY
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
// USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

//! Liquidity Proxy benchmarking module.

#![cfg_attr(not(feature = "std"), no_std)]
#![cfg(feature = "runtime-benchmarks")]

use common::{
    balance, DEXId, DexInfoProvider, FilterMode, LiquidityRegistry, LiquiditySourceFilter,
    LiquiditySourceType, VAL, XOR, XSTUSD,
};
use frame_benchmarking::benchmarks;
use frame_system::{EventRecord, RawOrigin};
use liquidity_proxy::ExchangePath;
use sp_std::prelude::*;

pub const DEX: DEXId = DEXId::Polkaswap;

#[cfg(test)]
mod mock;

#[cfg(any(feature = "runtime-benchmarks", test, feature = "std"))]
fn assert_last_event<T: liquidity_proxy::Config>(
    generic_event: <T as liquidity_proxy::Config>::RuntimeEvent,
) {
    let events = frame_system::Pallet::<T>::events();
    let system_event: <T as frame_system::Config>::RuntimeEvent = generic_event.into();
    // compare to the last event record
    let EventRecord { event, .. } = &events[events.len() - 1];
    assert_eq!(event, &system_event);
}

pub struct Pallet<T: Config>(liquidity_proxy::Pallet<T>);
pub trait Config:
    liquidity_proxy::Config
    + pool_xyk::Config
    + multicollateral_bonding_curve_pool::Config
    + price_tools::Config
{
}

benchmarks! {
    enable_liquidity_source {
        liquidity_proxy::Pallet::<T>::disable_liquidity_source(
            RawOrigin::Root.into(),
            LiquiditySourceType::XSTPool
        )?;
    }: {
        liquidity_proxy::Pallet::<T>::enable_liquidity_source(
            RawOrigin::Root.into(),
            LiquiditySourceType::XSTPool
        ).unwrap();
    }
    verify {
        assert_last_event::<T>(
            liquidity_proxy::Event::<T>::LiquiditySourceEnabled(
                LiquiditySourceType::XSTPool
            ).into()
        );
    }

    disable_liquidity_source {
    }: {
        liquidity_proxy::Pallet::<T>::disable_liquidity_source(
            RawOrigin::Root.into(),
            LiquiditySourceType::XSTPool
        ).unwrap();
    }
    verify {
        assert_last_event::<T>(
            liquidity_proxy::Event::<T>::LiquiditySourceDisabled(
                LiquiditySourceType::XSTPool
            ).into()
        );
    }

    check_indivisible_assets {
        let from_asset: T::AssetId = XOR.into();
        let to_asset: T::AssetId = VAL.into();
    }: {
        liquidity_proxy::Pallet::<T>::check_indivisible_assets(
            &from_asset,
            &to_asset
        ).unwrap();
    }
    verify {
    }

    new_trivial {
        let dex_info = <T as trading_pair::Config>::DexInfoProvider::get_dex_info(&DEX.into())?;
        let from_asset: T::AssetId = XSTUSD.into();
        let to_asset: T::AssetId = VAL.into();
    }: {
        ExchangePath::<T>::new_trivial(
            &dex_info,
            from_asset,
            to_asset
        ).unwrap();
    }
    verify {
    }

    is_forbidden_filter {
        let from_asset: T::AssetId = XOR.into();
        let to_asset: T::AssetId = VAL.into();
        let sources = vec![LiquiditySourceType::XYKPool, LiquiditySourceType::MulticollateralBondingCurvePool, LiquiditySourceType::XSTPool];
        let filter = FilterMode::Disabled;
    }: {
        liquidity_proxy::Pallet::<T>::is_forbidden_filter(&from_asset, &to_asset, &sources, &filter);
    }
    verify {
    }

    list_liquidity_sources {
        let from_asset: T::AssetId = XOR.into();
        let to_asset: T::AssetId = VAL.into();
        let filter = LiquiditySourceFilter::<T::DEXId, LiquiditySourceType>::with_allowed(
            DEX.into(),
            [
                LiquiditySourceType::XYKPool,
                LiquiditySourceType::MulticollateralBondingCurvePool,
                LiquiditySourceType::XSTPool,
            ]
            .to_vec()
        );
    }: {
        T::LiquidityRegistry::list_liquidity_sources(&from_asset, &to_asset, filter).unwrap();
    }
    verify {
    }

    set_adar_commission_ratio {
    }: {
        liquidity_proxy::Pallet::<T>::set_adar_commission_ratio(
            RawOrigin::Root.into(),
            balance!(0.5)
        ).unwrap();
    }
    verify {
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::mock::{ExtBuilder, Runtime};
    use frame_support::assert_ok;

    #[test]
    fn test_benchmarks() {
        ExtBuilder::default().build().execute_with(|| {
            assert_ok!(Pallet::<Runtime>::test_benchmark_enable_liquidity_source());
            assert_ok!(Pallet::<Runtime>::test_benchmark_disable_liquidity_source());
            assert_ok!(Pallet::<Runtime>::test_benchmark_check_indivisible_assets());
            assert_ok!(Pallet::<Runtime>::test_benchmark_new_trivial());
            assert_ok!(Pallet::<Runtime>::test_benchmark_is_forbidden_filter());
            assert_ok!(Pallet::<Runtime>::test_benchmark_list_liquidity_sources());
        });
    }
}