chia-blockchain/tests
Almog De Paz 5b39e71842
Dl plugin service (#14883)
* generic downloader

* add s3 Downloader

* tests

* pre commit

* create uploader protocol, factor out upload code

* fix pre commit

* add s3 uploader

* add add helper for testing with real bucket

* typing

* lint

* logs

* start service separation

* working aiohttp s3 service

* lint

* multiple instances config

* break if failed to write

* better error handling

* update from conf before checking

* lint

* redundant config

* also update bucket

* improve exception handling

* remove old tests

* uae multiple uploaders

* Update chia/data_layer/data_layer.py

pr comments

Co-authored-by: Kyle Altendorf <sda@fstab.net>

* pr comments

* Apply typos fixes from code review

Co-authored-by: Kyle Altendorf <sda@fstab.net>

* Update chia/data_layer/s3_plugin_service.py

Co-authored-by: Kyle Altendorf <sda@fstab.net>

* scheme in conf

* use byte32 for store_ids list

* use dataclass instead of tuple for return value

* initial config handling for uploaders and downloaders

---------

Co-authored-by: Kyle Altendorf <sda@fstab.net>
Co-authored-by: Earle Lowe <30607889+emlowe@users.noreply.github.com>
Co-authored-by: Earle Lowe <e.lowe@chia.net>
2023-04-12 11:33:41 -06:00
..
blockchain update black to 23.3.0 (#14537) 2023-04-04 12:50:58 -05:00
clvm tests: Reuse puzzle_utils.make_create_coin_condition in test_puzzles (#15018) 2023-04-12 11:30:57 -06:00
cmds Check Wallet DB integrity (#14401) 2023-02-21 18:35:15 -06:00
core Dl plugin service (#14883) 2023-04-12 11:33:41 -06:00
db remove leading newlines from indented code blocks (#14653) 2023-02-23 21:53:48 -06:00
farmer_harvester configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
fee_estimation optimize Mempool.add_to_pool() (#14988) 2023-04-07 12:09:46 -05:00
generator Remove no longer needed cost_per_byte cases (#14850) 2023-03-24 18:29:50 -05:00
plot_sync server: peer_host + peer_port -> peer_info in WSChiaConnection (#14151) 2023-04-12 11:14:38 -06:00
plotting configure isort to add the future annotations import (#13327) 2022-09-30 03:40:22 -05:00
pools Remove no longer needed cost_per_byte cases (#14850) 2023-03-24 18:29:50 -05:00
simulation types: Use IPAddress instead of str in PeerInfo (#14167) 2023-02-22 12:03:41 -06:00
tools tools: Implement and test tools/legacy_keyring.py (#13947) 2022-12-03 23:31:51 -06:00
util Small improvements to trusted peer check to include IPv6 addresses and add tests (#14626) 2023-04-11 14:36:37 -06:00
wallet Add new coin_type & metadata to coin_records (#15013) 2023-04-12 11:30:08 -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 skip empty directories pre-commit (#14973) 2023-04-03 13:31:11 -05: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 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 enable soft-fork2 conditions (incl. ASSERT_BEFORE) (#14733) 2023-03-23 11:30:10 -05: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.