vitess-gh/test
Shlomi Noach 2ea57f0cdb supply force flags for versionupgrade test
Signed-off-by: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com>
2021-01-17 10:18:04 +02:00
..
bin checked in the binary for testing 2020-07-11 00:19:59 +05:30
templates Descriptive names for CI checks 2021-01-12 11:17:34 -08:00
vttest_schema added vttest schema back 2020-03-17 17:19:38 +05:30
README.md Minor refactor, initial README 2021-01-10 22:42:47 +01:00
TestingStrategy.md Update func and md and txt 2019-01-29 21:30:03 -05:00
ci_workflow_gen.go Minor refactor, initial README 2021-01-10 22:42:47 +01:00
client.go Fix client_test breakage 2020-02-08 14:12:15 -08:00
client_java.sh Fix client_test 2020-02-08 14:53:55 -08:00
client_jdbc.sh Fix client_test 2020-02-08 14:53:55 -08:00
client_test.sh Removed python grpc client test 2020-03-06 13:05:27 +05:30
config.json supply force flags for versionupgrade test 2021-01-17 10:18:04 +02:00
legacy_local_example.sh operator example: fix local example test 2020-05-12 16:37:35 -07:00
local_example.sh Revert local changes to local example script 2020-12-26 19:39:18 +01:00
region_example.sh region_sharding: working resharding example 2020-08-14 06:09:20 -07:00
vthook-make_mycnf test: update license 2019-10-22 13:12:59 +08:00
vthook-test.sh test: update license 2019-10-22 13:12:59 +08:00
vthook-test_backup_error test: update license 2019-10-22 13:12:59 +08:00
vthook-test_backup_transform test: update license 2019-10-22 13:12:59 +08:00

README.md

##Github CI Workflows

This document has a short outline of how tests are run in CI, how to add new tests and where these are configured.

Adding a new test

Unit tests are run by the unit test runner, one per platform, currently percona56, mysql57, mysql80, mariadb101, mariadb102, mariadb103. The workflow first installs the required database server before calling make unit_test.

To add a new end-to-end (e2e) test (also called cluster end to end tests):

  • Add a new object to test/config.json
  • If you are creating a new test shard:
    • update clusterList in ci_workflow_gen.go
    • make generate_ci_workflows
  • If you are adding a new database platform, update the templates\unit_test.tpl to add the platform specific packages and update unitTestDatabases

Vitess test runner

The .github/workflows directory contains one yaml file per workflow. e2e tests are run using the test.go script in the repository root.

This script invokes the vitess e2e test framework using a json configuration file test/config.json which has one object per test. Each test is of the form:

"vtgate": {
			"File": "unused.go",
			"Args": ["vitess.io/vitess/go/test/endtoend/vtgate"],
			"Command": [],
			"Manual": false,
			"Shard": 17,
			"RetryMax": 0,
			"Tags": []
		},

The important parameters here are Args which define the arguments to go test and the Shard which says which Test VM should run this test. All tests which have a common Shard value are run in the same test vm.

Known Issue

  • Each VM does not seem to be able to create a lot of vttablets. For this reason we have had to split a few VReplication e2e tests across Shards. We need to identify and if possible fix this limitation so that we can reduce the number of test Shards