Skip to content
This repository was archived by the owner on Dec 4, 2024. It is now read-only.

Files

Latest commit

 

History

History

test

Addon Tests

In this directory you will find go tests which cover integration testing of the addons in this repo.

This uses the KSphere Testing Framework.

Developer Notes

When working on the tests, you may find that some symbols in the kubeaddons package appear to be unresolvable. This is due to the use of experimental features in the kubeaddons library. To avoid these problems in vim and other editors, make sure your local environment is set with the experimental build tag:

export GOFLAGS="-tags=experimental"

New Addon Tests

When addons are added to the repository, CI will fail on validation if tests (that pass) are not provided for them.

In order to add tests for a new addon you'll need to add it to an existing (or new) testing group in the groups.yaml configuration file.

If you create a new testing group, you must update the test functions in addons_test.go to cover the new testing group.

At it's simplest, a test of a testing group may look like the following:

func TestGeneralGroup(t *testing.T) {
	if err := testgroup(t, "general"); err != nil {
		t.Fatal(err)
	}
}

Where "general" is a testing group containing several addons to test.

From here, you can expand your tests within this function.