1. Functional Test cases 2. Negative Test cases Change-Id: Ifb851ce261a996feda1c547426f583eb3f1d57a9
HIP Tests - with Catch2
Intro and Motivation
HIP Tests were using HIT framework (a custom framework tailored for HIP) to add, build and run tests. As time progressed the frame got big and took substantial amount of effort to maintain and extend. It also took substantial amount of time to configure. We took this oppurtunity to rewrite the HIP's testing framework and porting the test infra to Catch2 format.
How to write tests
Tests in Catch2 are declared via TEST_CASE.
Please read the Catch2 documentation on how to write test cases
Taking care of existing features
- Don’t build on platform: EXCLUDE_(HIP_PLATFORM/HIP_RUNTIME), can be done via CMAKE. Adding source in if(HIP_PLATFORM == amd/nvidia).
- HIPCC_OPTIONS/CLANG Options: Can be done via: set_source_files_properties(src.cc PROPERTIES COMPILE_FLAGS “…”).
- Additional libraries: Can be done via target_link_libraries()
- Multiple runs with different args: This can be done by Catch’s Feature: GENERATE(…) Running Subtest: ctest –R “...” (Regex to match the subtest name)
New Features
- Skip test without recompiling tests, by addition of a json file. Default name is
config.json, this can be overridden by using the variableHT_CONFIG_FILE=some_config.json. - Json file supports regex. Ex: All tests which has the word ‘Memset’ can be skipped using ‘Memset’
- Support multiple skip test list which can be set via environment variable, so you can have multiple files containing different skip test lists and can pick and choose among them depending on your platform and os.
- Better CI integration via xunit compatible output
Testing Context
HIP testing framework gives you a context for each test. This context will have useful information about the environment your test is running.
Some useful functions are:
bool isWindows(): true if os is windowsbool isLinux(): true if os is linuxbool isAmd(): true if platform is AMDbool isNvidia(): true if platform is NVIDIA
This information can be accessed in any test via using: TestContext::get().isAmd().
Config file schema
Some tests can be skipped using a config file placed in hipTestMain/config folder. Multiple config files can be defined for different configurations. The naming convention for the file needs to be "config_platform_os_archname.json" Platform and os are mandatory, "all" for os if the tests needs to be skipped for all OS. Arch name is optional and takes precedence while loading the json file.
example: config_amd_windows.json config_nvidia_windows.json
The schema of the json file is as follows:
{
"DisabledTests":
[
"TestName1",
"TestName2",
...
]
}
Env Variables
HT_CONFIG_FILE: This variable can be set to the config file name or full path. Disabled tests will be read from this.HT_LOG_ENABLE: This is for debugging the HIP Test Framework itself. Setting it to 1, allLogPrintfwill be printed on screen
Enabling New Tests
Initially, the new tests can be enabled via using -DHIP_CATCH_TEST=ON. After porting existing tests, this will be turned on by default.
Building a single test
hipcc <path_to_test.cpp> -I<HIP_SRC_DIR>/tests/newTests/include <HIP_SRC_DIR>/tests/newTests/hipTestMain/standalone_main.cc -I<HIP_SRC_DIR>/tests/newTests/external/Catch2 -g -o <out_file_name>
Debugging support
Catch2 allows multiple ways in which you can debug the test case.
-boptions breaks into a debugger as soon as there is a failure encountered Catch2 Options Reference- Catch2 provided logging macro that print useful information on test case failure
- User can also call CATCH_BREAK_INTO_DEBUGGER macro to break at a certain point in a test case.
- User can also mention filename.cc:LineNumber to break into a test case via gdb.
External Libs being used
Testing Guidelines
Tests fall in 5 categories and its file name prefix are as follows:
- Unit tests (Prefix: Unit_*API*_*Optional Scenario*, example : Unit_hipMalloc_Negative or Unit_hipMalloc): Unit Tests are simplest test for an API, the target here is to test the API with different types of input and different ways of calling.
- Application Behavior Modelling tests (Prefix: ABM_*Intent*_*Optional Scenario*, example: ABM_ModuleLoadAndRun): ABM tests are used to model a specific use case of HIP APIs, either seen in a customer app or a general purpose app. It mimics the calling behavior seen in aforementioned app.
- Stress/Scale tests (Prefix: Stress_*API**Intent**Optional Scenario*, example: Stress_hipMemset_ExhaustVRAM): These tests are used to see the behavior of HIP APIs in edge scenarios, for example what happens when we have exhausted vram and do a hipMalloc or run many instances of same API in parallel.
- Multi Process tests (Prefix: MultiProc_*API*_*Optional Scenario*, example: MultiProc_hipIPCMemHandle_GetDataFromProc): These tests are multi process tests and will only run on linux. They are used to test HIP APIs in multi process environment
- Performance tests(Prefix: Perf_*Intent*_*Optional Scenario*, example: Perf_DispatchLatenc y): Performance tests are used to get results of HIP APIs.
There is a special interface available for process isolation. hip::SpawnProc in hip_test_process.hh. Using this interface test can spawn of process and place passing conditions on its return value or its output to stdout. This can be useful for testing printf tests.
Sample Usage:
hip::SpawnProc proc(<relative path of exe with test folder>, <optional bool value, if output is to be recorded>);
REQUIRE(0 == proc.run()); // Test of return value of the proc
REQUIRE(exepctedOutput == proc.getOutput()); // Test on expected output of the process
The process can be a standalone exe (see tests/catch/unit/printfExe for more information).
General Guidelines:
- Do not use the catch2 tags. Tags wont be used for filtering
- Add as many INFO() as you can in tests which prints state of the t est, this will help the debugger when the test fails (INFO macro only prints when the test fails)
- Check return of each HIP API and fail whenever there is a misma tch with hipSuccess or hiprtcSuccess.
- Each Category of test will hav e its own exe and catch_discover_test macro will be called on it to discover its tests
- Optional Scenario in test names are optional. For example you can test all Scenarios of hipMalloc API in one file, you can name the file Unit_hipMalloc, if you are having a file just for negative scenarios you can name it as Unit_hipMalloc_Negative.