chia-blockchain/tests
Kyle Altendorf 55f5e371b3
Block and transaction processing helpers (#11535)
* Block and transaction processing helpers

* flake8

* more and hints

* More

* separate tests of the simulator from tests using the simulator

* move fixture to conftest

* amounts are uint64

* remove unneeded while loop

* backoff instead of fixed sleep times

* .farm_blocks() only forces tx blocks when needed

* fix test_wallet_create_hit_max_send_amount

* fix test_wallet_tx_reorg

* fix test_address_sliding_window

* rename to farm_blocks_to_wallet

* rename to farm_rewards_to_wallet

* undo changes to protocol endpoints

* reword farm_blocks_to_wallet() loop

* rename process_blocks() to farm_blocks_to_puzzlehash() for now

* timeouts

* debug

* debug

* debug... for 3,7

* fix

* up timeout per block to 2 seconds

* increase transaction processing default timeout

* make debug maybe ok to leave around

* tidy

* intersperse sleeps again for wallet progression

* remove debug code

* review tidy

* cheat on uint64() type

* Update tests/simulation/test_simulator.py

* another import fix

* more fixes

* farm_blocks_to_puzzlehash

* more

* tweak

* fix the two-tx-blocks-instead-of-one dilemma

thanks to almog for figuring this out

* fix

* fixup

* rework since it was still broken on 3.7/3.8...

* oops

* yucky timeout

* more timeout

* cleanup todos

* add balance assertion after reorg before resubmission processing

* Apply suggestions from code review

* rename funds to expected_confirmed_balance

* catchup
2022-12-19 16:40:58 -06:00
..
blockchain create_bundle_from_mempool() doesn't need to be async (#14114) 2022-12-13 17:11:12 -06:00
clvm isort: Remove all tests exceptions and sort the related files 2022-12-05 02:06:00 +01:00
core Block and transaction processing helpers (#11535) 2022-12-19 16:40:58 -06:00
db add a transactional reader as DBWrapper2.reader() (#13468) 2022-09-30 17:41:33 -05:00
farmer_harvester configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
fee_estimation Create logger object in module instead of passing it in (#14173) 2022-12-16 20:52:47 -06:00
generator isort: Remove all tests exceptions and sort the related files 2022-12-05 02:06:00 +01:00
plot_sync server: Replace WSChiaConnection.__getattr__ with call_api (#14052) 2022-12-13 00:35:42 -06:00
plotting configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
pools isort: Remove all tests exceptions and sort the related files 2022-12-05 02:06:00 +01:00
simulation Block and transaction processing helpers (#11535) 2022-12-19 16:40:58 -06:00
tools tools: Implement and test tools/legacy_keyring.py (#13947) 2022-12-03 23:31:51 -06:00
util Wrap Union[IPv4Address, IPv6Address] in the class IPAddress (#14136) 2022-12-14 17:11:08 -06:00
wallet Block and transaction processing helpers (#11535) 2022-12-19 16:40:58 -06:00
weight_proof isort: Remove all tests exceptions and sort the related files 2022-12-05 02:06:00 +01:00
__init__.py Added tests, improved serialization 2019-08-05 14:38:16 +09:00
build-init-files.py isort: Remove all tests exceptions and sort the related files 2022-12-05 02:06:00 +01:00
build-job-matrix.py tools: Implement and test tools/legacy_keyring.py (#13947) 2022-12-03 23:31:51 -06:00
check_pytest_monitor_output.py configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
check_sql_statements.py configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
chia-start-sim Rename src to chia. 2021-04-04 21:41:39 -07:00
conftest.py Block and transaction processing helpers (#11535) 2022-12-19 16:40:58 -06:00
connection_utils.py add system and os dependent timeout adjustments (#13778) 2022-12-15 20:00:00 -06:00
README.md Improve style consistency in root directory docs files (#4493) 2021-05-12 13:12:30 -07:00
testconfig.py reusable workflow for a single test workflow (#11722) 2022-06-03 16:56:52 -05:00

Test CI Job generation

The CI jobs for these tests are managed by build-workflows.py.

If you add a test file, or move one to another directory, please run build-workflows.py. Tests are recognized by the file glob test_*.py. Changing the contents of a file does not require running build-workflows.py.

We currently use github actions. Default runners have two vcpus. The workflows are located in ../.github/workflows/.

The inputs to build-workflows.py are the templates in runner-templates, the file testconfig.py in this directory, and the optional config.py files in some test subdirectories. Files in the template directory ending in include.yml are included in jobs based on the per-directory settings.

The generated workflows are output to ../.github/workflows/.

Each subdirectory below the directories root_test_dirs in testconfig.py becomes a job in the github workflow matrix. If your jobs run too long, simply move some tests into new subdirectories and run build-workflows.py. A workflow built from a parent directory does not include the tests in its subdirectories. The subdirectory jobs do not include the tests from their parents.

testconfig.py

In the top tests directory, testconfig.py contains the application settings and the per-directory default settings.

config.py

Each directory has an optional config.py file, which can override the per-directory default settings.

Per directory settings defaults:

parallel = False
checkout_blocks_and_plots = True
install_timelord = True
job_timeout = 30

Parallel test execution

If you are certain that all the tests in a directory can run in parallel, set parallel = True in config.py inside that directory.

Optional job stages

Set checkout_blocks_and_plots to False to omit checking out the test-cache repo.

Set install_timelord to False to omit the step of installing a Time Lord for your directory's job.

Job Timeout

Set job_timeout to the number of minutes you want the CI system to wait before it kills your job. Add two or three minutes to allow for job setup.