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
#![cfg(feature = "runtime-benchmarks")]
use super::*;
use crate as NFT;
use frame_benchmarking::{account, benchmarks, vec};
use frame_support::traits::{tokens::nonfungibles::InspectEnumerable, Currency, Get};
use frame_system::RawOrigin;
use pallet_uniques as UNQ;
use sp_runtime::traits::UniqueSaturatedInto;
use sp_std::convert::TryInto;
const SEED: u32 = 0;
const ENDOWMENT: u128 = 100_000_000_000_000_000_000;
const COLLECTION_ID_0: u32 = 1_000_000;
fn create_account<T: Config>(name: &'static str, index: u32) -> T::AccountId {
let caller: T::AccountId = account(name, index, SEED);
<T as pallet_uniques::Config>::Currency::deposit_creating(&caller, ENDOWMENT.unique_saturated_into());
caller
}
fn do_create_collection<T: Config>(caller: T::AccountId, collection_id: T::NftCollectionId) {
let metadata: BoundedVec<_, _> = vec![0; <T as UNQ::Config>::StringLimit::get() as usize]
.try_into()
.unwrap();
assert!(NFT::Pallet::<T>::create_collection(
RawOrigin::Signed(caller).into(),
collection_id,
Default::default(),
metadata
)
.is_ok());
}
fn do_mint<T: Config>(caller: T::AccountId, collection_id: T::NftCollectionId, item_id: T::NftItemId) {
let metadata: BoundedVec<_, _> = vec![0; <T as UNQ::Config>::StringLimit::get() as usize]
.try_into()
.unwrap();
assert!(NFT::Pallet::<T>::mint(RawOrigin::Signed(caller).into(), collection_id, item_id, metadata).is_ok());
}
benchmarks! {
create_collection {
let caller = create_account::<T>("caller", 0);
let metadata: BoundedVec<_, _> = vec![0; <T as UNQ::Config>::StringLimit::get() as usize].try_into().unwrap();
}: _(RawOrigin::Signed(caller.clone()), COLLECTION_ID_0.into(), Default::default(), metadata)
verify {
assert_eq!(UNQ::Pallet::<T>::collection_owner(T::NftCollectionId::from(COLLECTION_ID_0).into()), Some(caller));
}
mint {
let caller = create_account::<T>("caller", 0);
do_create_collection::<T>(caller.clone(), 1_000_000u32.into());
let metadata: BoundedVec<_, _> = vec![0; <T as UNQ::Config>::StringLimit::get() as usize].try_into().unwrap();
}: _(RawOrigin::Signed(caller.clone()), COLLECTION_ID_0.into(), 0u32.into(), metadata)
verify {
assert_eq!(UNQ::Pallet::<T>::owner(T::NftCollectionId::from(COLLECTION_ID_0).into(), T::NftItemId::from(0u32).into()), Some(caller));
}
transfer {
let caller = create_account::<T>("caller", 1);
do_create_collection::<T>(caller.clone(), COLLECTION_ID_0.into());
let caller_lookup = T::Lookup::unlookup(caller.clone());
let caller2 = create_account::<T>("caller2", 1);
let caller2_lookup = T::Lookup::unlookup(caller2.clone());
do_mint::<T>(caller.clone(), COLLECTION_ID_0.into(), 0u32.into());
}: _(RawOrigin::Signed(caller), COLLECTION_ID_0.into(), 0u32.into(), caller2_lookup)
verify {
assert_eq!(UNQ::Pallet::<T>::owner(T::NftCollectionId::from(COLLECTION_ID_0).into(), T::NftItemId::from(0u32).into()), Some(caller2));
}
destroy_collection {
let caller = create_account::<T>("caller", 1);
do_create_collection::<T>(caller.clone(), COLLECTION_ID_0.into());
}: _(RawOrigin::Signed(caller), COLLECTION_ID_0.into())
verify {
assert_eq!(UNQ::Pallet::<T>::collections().count(), 0);
}
burn {
let caller = create_account::<T>("caller", 1);
do_create_collection::<T>(caller.clone(), COLLECTION_ID_0.into());
do_mint::<T>(caller.clone(), COLLECTION_ID_0.into(), 0u32.into());
}: _(RawOrigin::Signed(caller.clone()), COLLECTION_ID_0.into(), 0u32.into())
verify {
assert_eq!(UNQ::Pallet::<T>::owned(&caller).count(), 0);
}
}
#[cfg(test)]
mod tests {
use super::Pallet;
use crate::mock::*;
use frame_benchmarking::impl_benchmark_test_suite;
impl_benchmark_test_suite!(Pallet, super::ExtBuilder::default().build(), super::Test);
}