Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
test-tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
hive
test-tools
Commits
db6781c5
Commit
db6781c5
authored
7 months ago
by
Radosław Masłowski
Browse files
Options
Downloads
Patches
Plain Diff
Make test_creation_of_huge_number_of_accounts_and_import_keys
parent
1d272f21
No related branches found
No related tags found
1 merge request
!206
Implement new wallet based on beekeeper
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/functional_tests/wallet_tests/test_api_helper_methods.py
+32
-0
32 additions, 0 deletions
.../functional_tests/wallet_tests/test_api_helper_methods.py
with
32 additions
and
0 deletions
tests/functional_tests/wallet_tests/test_api_helper_methods.py
+
32
−
0
View file @
db6781c5
...
...
@@ -60,3 +60,35 @@ def test_creation_of_huge_number_of_accounts(node: tt.InitNode, wallet: tt.Walle
assert
len
(
created_accounts
)
==
amount_of_accounts_to_create
assert
len
(
accounts_after
.
difference
(
accounts_before
))
==
amount_of_accounts_to_create
@pytest.mark.node_shared_file_size
(
"
16G
"
)
def
test_creation_of_huge_number_of_accounts_and_import_keys
(
node
:
tt
.
InitNode
,
wallet
:
tt
.
Wallet
)
->
None
:
"""
Time: 03m 52s.
Hardware:
MEMORY: 16GiB DIMM DDR4 Synchronous Unbuffered (Unregistered) 2133 MHz (0,5 ns)
STORAGE: Samsung SSD 980 1TB NVMe disk
PROCESSOR: AMD Ryzen 7 5700G with Radeon Graphics 8 core, 16 threads.
"""
amount_of_accounts_to_create
=
200_000
# This is required to make possible pushing 21 trxs per block after 21'th block
wallet
.
api
.
update_witness
(
witness_name
=
"
initminer
"
,
url
=
"
https://initminer.com
"
,
block_signing_key
=
tt
.
Account
(
"
initminer
"
).
public_key
,
props
=
{
"
account_creation_fee
"
:
tt
.
Asset
.
TestT
(
amount
=
1
),
"
maximum_block_size
"
:
2097152
,
"
hbd_interest_rate
"
:
0
,
},
)
tt
.
logger
.
info
(
"
Wait 42 blocks for change of account_creation_fee
"
)
node
.
wait_for_block_with_number
(
42
)
wallet
.
create_accounts
(
amount_of_accounts_to_create
,
import_keys
=
True
)
assert
len
(
wallet
.
api
.
list_keys
())
-
1
==
amount_of_accounts_to_create
,
"
Keys was not imported correctly
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment