Testplan Reference

In Fuego, a testplan is used to specify a set of tests to execute, and the settings to use for each one.

filename and location [edit section]

A testplan is in json format, and can be located in two places:

A testplan file name should start with the prefix "testplan_", and end with the extension ".json".

A testplan here document should be preceded by a line starting with BATCH_TESTPLAN= and followed by a line starting with "END_TESTPLAN".

top level attributes [edit section]

The top level objects that may be defined in a testplan are:

Each of these attributes, except for 'tests' has a value that is a string. Here are their meaninings and legal values:

The testPlanName is the name of this testplan. It must match the filename that holds this testplan (without the "testplan_" prefix or ".json" extension. This object is required.

'tests' is a list of tests that are part of this testplan. See below for a detailed description of the format of an element in the 'tests' list. This object is required.

default test settings [edit section]

The testplan may also include a set of default values for test settings. The test settings for which defaults may be specified are:

These values are used if the related setting is not specified in the individual test definition.

For example, the testplan might define a default_timeout of "15m" (meaning 15 minutes). The plan could indicate timeouts different from this (say 5 minutes or 30 minutes) for individual tests, but if a test in the testplan doesn't indicate its own timout it would default to the one specified as the default at the top level of the testplan.

The ability to specify per-plan and per-test settings makes it easier to manage these settings to fit the needs of your Fuego board or lab.

Note that if neither the individual test nor the testplan provide a default value is not provided, then a Fuego global default value for that setting will be used.

Note that the default_spec specifies the name of the test spec to use for the test (if one is not is specified for the individual test definition). The name should match a spec that is defined for every test listed in the plan. Usually this will be something like "default", but it could be something that is common for a set of tests, like 'mmc' or 'usb' for filesystem tests.

See the individual test definitions for descriptions of these different test settings objects.

individual test definitions [edit section]

The 'tests' object is a list of objects, each of which indicates a test that is part of the plan. The objects included in each list element are:

All object values are strings.

testName [edit section]

The 'testName' object has the name of a Fuego test included in this plan. It should be the fully-qualified name of the test (that is, it should include the "Benchmark." or "Functional." prefix.) This attribute of the test element is required.

spec [edit section]

The 'spec' object has the name of the spec to use for this test. It should match the name of a valid test spec for this test. If 'spec' is not specified, then the value of "default_spec" for this testplan will be used.

timeout [edit section]

The timeout object has a string indicating the timeout to use for a test. The string is positive integer followed by a single-character units-suffix. The units suffixes available are:

Most commonly, a number of minutes is specified, like so:

If no 'timeout' is specified, then the value of 'default_timeout' for this testplan is used.

reboot [edit section]

The 'reboot' object has a string indicating whether to reboot the board prior to the test. It should have a string value of 'true' or 'false'.

rebuild [edit section]

The 'rebuild' object has a string indicating whether to rebuild the test software, prior to executing the test. The object value must be a string of either 'true' or 'false'.

If the value is 'false', then Fuego will do the following, when executing the test:

If the value is 'true', then Fuego will do the following:

precleanup [edit section]

The 'precleanup' flag indicates whether to remove all previous test materials on the target board, prior to deploying and executing the test. The object value must be a string of either 'true' or 'false'.

postcleanup [edit section]

The 'postcleanup' flag indicates whether to remove all test materials on the target board, after the test is executed. The flag value must be a string of either 'true' or 'false.

test setting precedence [edit section]

Note that the test settings are used by the plan at job creation time, to set the command line arguments that will be passed to 'ftc run-test' by the Jenkins job, when it is eventually run.

A user can always edit a Jenkins job (for a Fuego test), to override the test settings for that job.

The precedence of the settings encoded into the job definition at job creation time are:

The precedence of settings at job execution time are: