buildtest.builders.base
BuilderBase class is an abstract class that defines common functions for any types of builders. Each type schema (script, compiler, spack) is implemented as separate Builder which extends BuilderBase class.
Module Contents
Classes
The BuilderBase is an abstract class that implements common functions used for building and running test. |
- class buildtest.builders.base.BuilderBase(name, recipe, buildspec, executor, buildexecutor, testdir, numprocs=None, numnodes=None, compiler=None, display=None)[source]
Bases:
abc.ABCThe BuilderBase is an abstract class that implements common functions used for building and running test.
buildtest will create a builder object which resembles a test. The builder will contains metadata that is unique to each builder that is captured in the report file upon completion of test.
The BuilderBase provides common functions for any builder. The builder is an instance of BuilderBase. The initializer method will setup the builder attributes based on input test by
nameparameter.- Parameters:
name (str) – Name of test in buildspec recipe
recipe (str) – The loaded test section from the buildspec file
buildspec (str) – Full path to buildspec file
buildexecutor (
buildtest.executors.setup.BuildExecutor) – An instance of BuildExecutor class used for accessing executorstestdir (str) – Test directory where tests are written. Must be full path on filesystem.
display (list, optional) – Display content of output/error or test.
- property dependency
- _set_metadata_values()[source]
This method sets
self.metadatathat contains metadata for each builder object.
- get_test_extension()[source]
Return the test extension, which depends on the shell type. By default we return sh file extension for all shells except for csh which will return “csh” extension.
- Returns
str: Returns test extension name for generated test.
- is_local_executor()[source]
Return True if current builder executor type is LocalExecutor otherwise returns False.
- Returns:
returns True if builder is using executor type LocalExecutor otherwise returns False
- Return type:
- is_batch_job()[source]
Return True/False if builder.job attribute is of type Job instance if not returns False. This method indicates if builder has a job submitted to queue
- start()[source]
Keep internal timer for test using class
buildtest.utils.timer.Timer. This method will start the timer for builder which is invoked upon running test.
- build(modules=None, modulepurge=None, unload_modules=None)[source]
This method is responsible for invoking setup, creating test directory and writing test. This method is called from an instance object of this class that does
builder.build().
- run(cmd, timeout=None)[source]
This is the entry point for running the test. This method will prepare test to be run, then run the test. Once test is complete, we also handle test results by capturing output and error.
- Returns:
If success, the return type is an object of type
buildtest.utils.command.BuildTestCommandIf their is a failure (non-zero) returncode we retry test and if it doesn’t pass we raise exception of
buildtest.exceptions.RuntimeFailure
- prepare_run(cmd)[source]
This method prepares the test to be run by recording starttime, setting state to running and starting the timer. In additional we will write build environment into build-env.txt which is used for debugging purposes.
- execute_run(cmd, timeout)[source]
This method will execute the test and return the instance object of type BuildTestCommand which is used by Executors for processing output and error
- execute_post_run_script()[source]
This method will execute the post run script which is invoked after test is complete. This is called if
post_runis defined in buildspec.
- _display_output_content(output, title, show_last_lines=10)[source]
This method will display content of output or error results. The
outputis content of file to display. A title is displayed at top which can be customized viatitle. We can configure number of lines to display from end of file via`show_last_lines.
- _display_test_content(filepath, title) None[source]
Display content of test file, given a path to file and title to display. :param filepath: Path to file to display content :type filepath: str :param title: Title to display before content :type title: str
- handle_run_result(command_result, timeout)[source]
This method will handle the result of running test. If the test is successful we will record endtime, copy output and error file to test directory and set state to complete. If the test fails we will retry the test based on retry count. If the test fails after retry we will mark test as failed.
- Parameters:
command_result (BuildTestCommand) – An instance object of BuildTestCommand
timeout (int) – Timeout value for test run
- record_starttime()[source]
This method will record the starttime when job starts execution by using
datetime.datetime.now()
- record_endtime()[source]
This method is called upon termination of job, we get current time using
datetime.datetime.now()and calculate runtime of job
- runtime()[source]
Calculate runtime of job by calculating delta between endtime and starttime. The unit of measure is seconds.
- failed()[source]
Mark test as failure by updating the
self._state. A fail test will not be reported in test report
- complete()[source]
Mark test as complete by updating the
self._state. A complete test assumes test ran to completion
- is_complete()[source]
If builder completes execution of test this method will return
Trueotherwise returnsFalse. A builder could fail due to job cancellation, failure to submit job or raise exception during the run phase. In those case, this method will returnFalse.
- _write_build_script(modules: List[str] = None, modulepurge: bool = None, unload_modules: List[str] = None) None[source]
Write the content of build script.
- _generate_build_script_lines(modules: List[str], modulepurge: bool, unload_modules: List[str]) List[str][source]
Generate lines for the build script.
- _write_post_run_script()[source]
This method will write the content of post run script that is run after the test is complete. The post run script is used to perform cleanup operations after test is complete. Upon creating file we set permission of builder script to 755 so test can be run.
- _write_test()[source]
This method is responsible for invoking
generate_scriptthat formulates content of testscript which is implemented in each subclass. Next we write content to file and apply 755 permission on script so it has executable permission.
- get_container_invocation()[source]
This method returns a list of lines containing the container invocation
- _emit_command()[source]
This method will return a shell command used to invoke the script that is used for tests that use local executors
- Returns:
a list to show generated command used to run test.
Test can be run without any argument with path to script:
/path/to/script.shTest can be run with shell name followed by path to script:bash /path/to/script.shTest can be run with shell name, shell options and path to script:bash -x /path/to/script.sh- Return type:
- _emit_set_command()[source]
This method will emit the set command for strict mode that will exit immediately. In bash, zsh the command is
set -eo pipefail. For csh, tcsh and sh there is no such command so we return empty string.
- _set_default_test_variables()[source]
Return a list of lines inserted in build script that define buildtest specific variables that can be referenced when writing tests. The buildtest variables all start with BUILDTEST_*
- set_scheduler_settings()[source]
This method will resolve scheduler fields: ‘sbatch’, ‘pbs’, ‘bsub’
- get_job_directives()[source]
This method returns a list of lines containing the scheduler directives
- _get_burst_buffer(burstbuffer)[source]
Get Burst Buffer directives (#BB) lines specified by
BBproperty
- _get_data_warp(datawarp)[source]
Get Cray Data Warp directives (#DW) lines specified by
DWproperty.
- _set_execute_perm(fname)[source]
Set permission to 755 for a given file. The filepath must be an absolute path to file
- _get_environment(env)[source]
Retrieve a list of environment variables defined in buildspec and return them as list with the shell equivalent command
- Parameters:
env (dict) – list of environment variables defined by
envproperty in buildspec
- _get_variables(variables)[source]
Retrieve a list of variables defined in buildspec and return them as list with the shell equivalent command.
- Parameters:
variables (dict) – list of variable defined by
varsproperty in buildspec
- _extract_line(linenum, content)[source]
Extract content based on the line number and return it as a string.
- add_metrics()[source]
This method will update the metrics field stored in
self.metadata['metrics']. Themetricsproperty can be defined in the buildspec to assign value to a metrics name based on regular expression, environment or variable assignment.
- handle_file_regex_metric(key, file_regex)[source]
Handle metrics based on file regular expressions.
- post_run_steps()[source]
This method is called after test is complete. This method will copy files from stage directory such as output, error and test script. We will check state of test and mark job is complete.
- check_test_state()[source]
This method is responsible for detecting state of test (PASS/FAIL) based on returncode or regular expression.
- _process_compiler_config()[source]
This method is responsible for setting cc, fc, cxx class variables based on compiler selection. The order of precedence is
config,default, then buildtest setting. Compiler settings in ‘config’ takes highest precedence, this overrides any configuration in ‘default’. Finally we resort to compiler configuration in buildtest setting if none defined. This method is responsible for setting cc, fc, cxx, cflags, cxxflags, fflags, ldflags, and cppflags.