vitess-gh/test
Manan Gupta 47e2f5dfa5
Add workflow file to the filter rules (#11032)
* ci: add worklow file to the path filter for generated workflows

Signed-off-by: Manan Gupta <manan@planetscale.com>

* ci: add worklow file to the path filter for non-generated workflows

Signed-off-by: Manan Gupta <manan@planetscale.com>

Signed-off-by: Manan Gupta <manan@planetscale.com>
2022-08-18 09:24:30 -06:00
..
bin
templates Add workflow file to the filter rules (#11032) 2022-08-18 09:24:30 -06:00
vttest_schema
README.md
TestingStrategy.md
ci_workflow_gen.go Add workflow file to the filter rules (#11032) 2022-08-18 09:24:30 -06:00
client.go
client_java.sh
client_jdbc.sh
client_test.sh
config.json New explain format: VTEXPLAIN (#10556) 2022-08-02 11:41:06 +02:00
local_example.sh
region_example.sh
vthook-make_mycnf
vthook-test.sh
vthook-test_backup_error
vthook-test_backup_transform
vtop_example.sh Fix VTop Example (#10687) 2022-07-25 14:50:42 -07: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 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