Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Duniter v2S
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
nodes
rust
Duniter v2S
Merge requests
!190
Quota pallet benchmark
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Quota pallet benchmark
bgallois/duniter-v2s:pallet-quotas-benchmarks
into
master
Overview
4
Commits
4
Pipelines
42
Changes
5
All threads resolved!
Hide all comments
Merged
Benjamin Gallois
requested to merge
bgallois/duniter-v2s:pallet-quotas-benchmarks
into
master
1 year ago
Overview
4
Commits
4
Pipelines
42
Changes
1
All threads resolved!
Hide all comments
Expand
0
0
Merge request reports
Compare
version 11
version 20
81e24c6d
1 year ago
version 19
ce9c33a4
1 year ago
version 18
5bdc542e
1 year ago
version 17
cc2ac004
1 year ago
version 16
58ac953c
1 year ago
version 15
eb86c04c
1 year ago
version 14
a0b2e57e
1 year ago
version 13
db70c617
1 year ago
version 12
f8e496f6
1 year ago
version 11
0cfd0056
1 year ago
version 10
5042d06b
1 year ago
version 9
da8e289c
1 year ago
version 8
8857e186
1 year ago
version 7
c2dd6399
1 year ago
version 6
4b5ca95a
1 year ago
version 5
869af9bd
1 year ago
version 4
06bbe913
1 year ago
version 3
1e1d9cd1
1 year ago
version 2
0fe84712
1 year ago
version 1
d0397e91
1 year ago
master (base)
and
version 12
latest version
c24ee2e2
4 commits,
1 year ago
version 20
81e24c6d
4 commits,
1 year ago
version 19
ce9c33a4
4 commits,
1 year ago
version 18
5bdc542e
4 commits,
1 year ago
version 17
cc2ac004
4 commits,
1 year ago
version 16
58ac953c
4 commits,
1 year ago
version 15
eb86c04c
4 commits,
1 year ago
version 14
a0b2e57e
4 commits,
1 year ago
version 13
db70c617
3 commits,
1 year ago
version 12
f8e496f6
3 commits,
1 year ago
version 11
0cfd0056
3 commits,
1 year ago
version 10
5042d06b
2 commits,
1 year ago
version 9
da8e289c
2 commits,
1 year ago
version 8
8857e186
3 commits,
1 year ago
version 7
c2dd6399
2 commits,
1 year ago
version 6
4b5ca95a
1 commit,
1 year ago
version 5
869af9bd
10 commits,
1 year ago
version 4
06bbe913
10 commits,
1 year ago
version 3
1e1d9cd1
10 commits,
1 year ago
version 2
0fe84712
10 commits,
1 year ago
version 1
d0397e91
10 commits,
1 year ago
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
pallets/quota/src/tests.rs
+
130
−
1
Options
@@ -238,4 +238,133 @@ fn test_not_enough_treasury() {
})
}
// TODO implement a mock weight to test if refund queue processing actually stops when reached limit
/// test complete scenario with queue and process refund queue weight with available quotas
#[test]
fn
test_process_refund_queue_weight_with_quotas
()
{
new_test_ext
(
QuotaConfig
{
identities
:
vec!
[
1
,
2
,
3
],
})
.execute_with
(||
{
run_to_block
(
15
);
// give enough currency to accounts and treasury and double check
Balances
::
make_free_balance_be
(
&
account
(
1
),
1000
);
Balances
::
make_free_balance_be
(
&
account
(
2
),
1000
);
Balances
::
make_free_balance_be
(
&
account
(
3
),
1000
);
Balances
::
make_free_balance_be
(
&<
Test
as
pallet_quota
::
Config
>
::
RefundAccount
::
get
(),
10_000
,
);
assert_eq!
(
Balances
::
free_balance
(
<
Test
as
pallet_quota
::
Config
>
::
RefundAccount
::
get
()),
10_000
);
// fill in the refund queue
Quota
::
queue_refund
(
pallet_quota
::
Refund
{
account
:
account
(
1
),
identity
:
10
,
amount
:
10
,
});
Quota
::
queue_refund
(
pallet_quota
::
Refund
{
account
:
account
(
2
),
identity
:
2
,
amount
:
500
,
});
Quota
::
queue_refund
(
pallet_quota
::
Refund
{
account
:
account
(
3
),
identity
:
3
,
amount
:
666
,
});
// process it with only no weight
Quota
::
process_refund_queue
(
Weight
::
from
(
0
));
// after processing, it should be of the same size
assert_eq!
(
pallet_quota
::
RefundQueue
::
<
Test
>
::
get
()
.len
(),
3
);
// process it with only 200 allowed weight
Quota
::
process_refund_queue
(
Weight
::
from_parts
(
200u64
,
0
));
// after processing, it should be of size 1 because total_weight += 25*2 by iteration and
// limit is total_weight < 200-100 so 2 elements can be processed
assert_eq!
(
pallet_quota
::
RefundQueue
::
<
Test
>
::
get
()
.len
(),
1
);
// and we should observe the effects of refund
assert_eq!
(
Balances
::
free_balance
(
account
(
3
)),
1666
);
// 1000 initial + 666 refunded
assert_eq!
(
Balances
::
free_balance
(
account
(
2
)),
1500
);
// 1000 initial + 1500 refunded
assert_eq!
(
Balances
::
free_balance
(
account
(
1
)),
1000
);
// only initial because no available weight to process
assert_eq!
(
Balances
::
free_balance
(
<
Test
as
pallet_quota
::
Config
>
::
RefundAccount
::
get
()),
// initial minus refunds
10_000
-
666
-
500
);
// events
System
::
assert_has_event
(
RuntimeEvent
::
Quota
(
pallet_quota
::
Event
::
Refunded
{
who
:
account
(
3
),
identity
:
3
,
amount
:
666
,
}));
System
::
assert_has_event
(
RuntimeEvent
::
Quota
(
pallet_quota
::
Event
::
Refunded
{
who
:
account
(
2
),
identity
:
2
,
amount
:
500
,
}));
})
}
/// test complete scenario with queue and process refund queue weight with limited quotas
#[test]
fn
test_process_refund_queue_weight_no_quotas
()
{
new_test_ext
(
QuotaConfig
{
identities
:
vec!
[
1
,
2
],
})
.execute_with
(||
{
run_to_block
(
15
);
// give enough currency to accounts and treasury and double check
Balances
::
make_free_balance_be
(
&
account
(
1
),
1000
);
Balances
::
make_free_balance_be
(
&
account
(
2
),
1000
);
Balances
::
make_free_balance_be
(
&
account
(
3
),
1000
);
Balances
::
make_free_balance_be
(
&<
Test
as
pallet_quota
::
Config
>
::
RefundAccount
::
get
(),
10_000
,
);
assert_eq!
(
Balances
::
free_balance
(
<
Test
as
pallet_quota
::
Config
>
::
RefundAccount
::
get
()),
10_000
);
// fill in the refund queue
Quota
::
queue_refund
(
pallet_quota
::
Refund
{
account
:
account
(
1
),
identity
:
10
,
amount
:
10
,
});
Quota
::
queue_refund
(
pallet_quota
::
Refund
{
account
:
account
(
2
),
identity
:
2
,
amount
:
500
,
});
Quota
::
queue_refund
(
pallet_quota
::
Refund
{
account
:
account
(
3
),
identity
:
3
,
amount
:
666
,
});
// process it with only no weight
Quota
::
process_refund_queue
(
Weight
::
from
(
0
));
// after processing, it should be of the same size
assert_eq!
(
pallet_quota
::
RefundQueue
::
<
Test
>
::
get
()
.len
(),
3
);
// process it with only 150 allowed weight
Quota
::
process_refund_queue
(
Weight
::
from_parts
(
150u64
,
0
));
// after processing, it should be of size 2 because try_refund weight is 25 (first in the queue with no quota) then 25*2 for the 2 other elements
// limit is total_weight < 150-100 so 2 elements can be processed
assert_eq!
(
pallet_quota
::
RefundQueue
::
<
Test
>
::
get
()
.len
(),
1
);
// and we should observe the effects of refund
assert_eq!
(
Balances
::
free_balance
(
account
(
3
)),
1000
);
// 1000 initial only because no quota available
assert_eq!
(
Balances
::
free_balance
(
account
(
2
)),
1500
);
// 1000 initial + 500 refunded
assert_eq!
(
Balances
::
free_balance
(
account
(
1
)),
1000
);
// only initial because no available weight to process
assert_eq!
(
Balances
::
free_balance
(
<
Test
as
pallet_quota
::
Config
>
::
RefundAccount
::
get
()),
// initial minus refunds
10_000
-
500
);
// events
System
::
assert_has_event
(
RuntimeEvent
::
Quota
(
pallet_quota
::
Event
::
Refunded
{
who
:
account
(
2
),
identity
:
2
,
amount
:
500
,
}));
})
}
Loading