chia-blockchain/tests
Jack Nelson 0d36874caa
Refactor Seeder & Crawler code + add tests (#15781)
* Cleanup seeder & mypy all files

holy crap mother of all tech debt this was horrid

* Make UDP Protocol class a dataclass & separate out functions.

* add TCP protocol class to DNS server

* Fix mypy types & other cleanup

also fix a couple bugs

* Add seeder and crawler tests

* change log levels

* re add db lock timeout

oops

* add edns & edns tests

* fix repeated shutdown on close signal

* fix binding to use both ipv6 and ipv4

whyyyyyyy

* add ipv6 and ipv4 tests + add ipv4 if windows
2023-08-11 05:25:19 -05:00
..
blockchain introduce SOFT_FORK4_HEIGHT and tie CHIP-13 to it (#15885) 2023-08-04 18:41:34 -05:00
clvm Add condition opcodes for agg sigs to condition_codes.clib (#15889) 2023-08-03 03:05:37 -05:00
cmds Skip problematic test (#15928) 2023-08-07 11:39:23 -05:00
core Refactor Seeder & Crawler code + add tests (#15781) 2023-08-11 05:25:19 -05:00
db remove leading newlines from indented code blocks (#14653) 2023-02-23 21:53:48 -06:00
farmer_harvester Farmer now returns missing signage points (#15765) 2023-07-18 21:04:03 -05:00
fee_estimation fix checking of matrix.configuration.checkout_blocks_and_plots (#15454) 2023-06-29 20:48:50 -05:00
generator Move some puzzles out of chia.wallet.puzzles (#15822) 2023-07-24 10:39:16 -05:00
plot_sync fix flake8 warnings (#15897) 2023-07-31 09:46:49 -05:00
plotting introduce SOFT_FORK4_HEIGHT and tie CHIP-13 to it (#15885) 2023-08-04 18:41:34 -05:00
pools pass consensus constants into get_name_puzzle_conditions(). (#15736) 2023-07-11 09:52:49 -05:00
simulation Unify test_create_coins_with_amounts() versions into one (#15738) 2023-07-12 11:22:01 -05:00
tools Typecheck tests/tools/test_full_sync.py (#14947) 2023-05-23 19:53:20 -05:00
util simplify db connection helper (more simply) (#15959) 2023-08-08 10:14:59 -05:00
wallet Credential Restricted CATs (#15411) 2023-08-03 19:36:21 -05:00
weight_proof Plot filter hard fork (#15336) 2023-07-12 10:26:23 -05:00
__init__.py Added tests, improved serialization 2019-08-05 14:38:16 +09:00
build-init-files.py improve ignore handling in __init__.py creation script (#15093) 2023-04-24 12:52:51 -06:00
build-job-matrix.py fixup per file matrix generation config (#15761) 2023-07-17 14:22:47 -05: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 Make sql pre-commit check work when pre-commit hooks are in non-standard locations (#14955) 2023-03-31 15:42:17 -05:00
chia-start-sim Rename src to chia. 2021-04-04 21:41:39 -07:00
conftest.py Refactor Seeder & Crawler code + add tests (#15781) 2023-08-11 05:25:19 -05:00
connection_utils.py Add support for multi node farmers (#15444) 2023-07-28 14:48:32 -05: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.