Runtime Test Services: Difference between revisions
No edit summary |
No edit summary |
||
(47 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | |||
The Runtime Test Services (declared in '''srtest.h''') are a set of APIs in the Stride Runtime that facilitate the writing of target based test code. These APIs make up an optional portion of the Stride Runtime and can be used to communicate additional information about tests to the host based reporting mechanism. These APIs also allow target test code to create additional test suites and test cases dynamically at runtime. | |||
There are two ways of accessing these APIs: through C-based functions, or through a C++ base class from which you may derive your C++ test class. These are discussed below in [[#C Test Functions|C Test Functions]], and [[#C++ Test Classes|C++ Test Classes]] sections below. | |||
= C Test Functions = | |||
The following C APIs are provided: | |||
*'''[[#srTestGetParam|srTestGetParam]]''': returns an input parameters value. | |||
*'''[[#srTestSuiteAddCase|srTestSuiteAddCase]]''': creates an additional test case at runtime. | |||
*'''[[#srTestSuiteAddAnnotation|srTestSuiteAddAnnotation]]''': creates a suite annotation at runtime. | |||
*'''[[#srTestSuiteSetData|srTestSuiteSetData]]''': associates a custom name|value. | |||
*'''[[#srTestCaseSetStatus|srTestCaseSetStatus]]''': explicitly sets the status for the specified test case. | *'''[[#srTestCaseSetStatus|srTestCaseSetStatus]]''': explicitly sets the status for the specified test case. | ||
*'''[[#srTestCaseAddAnnotation|srTestCaseAddAnnotation]]''': creates a test case annotation at runtime. | *'''[[#srTestCaseAddAnnotation|srTestCaseAddAnnotation]]''': creates a test case annotation at runtime. | ||
*'''[[#srTestSuiteSetData|srTestSuiteSetData]]''': associates a custom name|value pair with the specified test case. | |||
*'''[[#srTestAnnotationAddComment|srTestAnnotationAddComment]]''': adds a comment to the specified annotation. | *'''[[#srTestAnnotationAddComment|srTestAnnotationAddComment]]''': adds a comment to the specified annotation. | ||
== | == srTestGetParam == | ||
The | The srTestGetParam() function is used to get the value of a named parameter as a string. | ||
<source lang=c> | <source lang=c> | ||
srWORD srTestGetParam(const srCHAR * szName, srCHAR * szValue, srDWORD dwSize, const srCHAR * szDefValue); | |||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 36: | Line 32: | ||
| '''Type''' | | '''Type''' | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | szName | ||
| Input | | Input | ||
| | | Pointer to a null-terminated string that represents the name of the parameter. Cannot be null. | ||
|- | |- | ||
| | | szValue | ||
| Output | |||
| Pointer to a block of memory to store the value of the parameter with a maximum size of <i>dwSize</i> chars | |||
|- | |||
| dwSize | |||
| Input | | Input | ||
| Pointer to a null-terminated string that represents the | | Size in chars of the buffer pointed to by <i>szValue</i> | ||
|- | |||
| szDefValue | |||
| Input (optional) | |||
| Pointer to a null-terminated string that represents a default value in case the parameter is not specified. By setting this value to srNULL (or omitting it), you can use <i>srTestGetParam()</i> to test for the existence of a named parameter. If the named parameter doesn't exist, the function will return <i>srERR_HANDLE_INVALID</i>. | |||
|} | |} | ||
<br> | <br> | ||
Line 50: | Line 54: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srOK | ||
| | | Success | ||
|- | |||
| srERR | |||
| Null or empty szName string passed in. | |||
|- | |||
| srERR_HANDLE_INVALID | |||
| The named parameter is not found and <i>szDefValue</i> is set to srNULL. | |||
|} | |} | ||
<source lang=c> | <source lang=c> | ||
#include <srtest.h> | #include <srtest.h> | ||
void | #define MAX_VALUE_LEN 128 | ||
void tfsuite_getParam(void) | |||
{ | { | ||
srCHAR szValue[MAX_VALUE_LEN] = {0}; | |||
srWORD wRet = srTestGetParam("ParamName", szValue, MAX_VALUE_LEN, "default value"); | |||
} | } | ||
#ifdef _SCL | #ifdef _SCL | ||
#pragma scl_test_flist( | #pragma scl_test_flist("testfunc", tfsuite_getParam) | ||
#endif | #endif | ||
</source> | </source> | ||
== | |||
The | == srTestGetParamLong == | ||
The srTestGetParamLong() function is used to get the value of a named parameter as a long. | |||
<source lang=c> | <source lang=c> | ||
srLONG srTestGetParamLong(const srCHAR * szName, srLONG lDefValue); | |||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 79: | Line 94: | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | szName | ||
| Input | | Input | ||
| | | Pointer to a null-terminated string that represents the name of the parameter. | ||
|- | |- | ||
| | | lDefValue | ||
| Input | | Input | ||
| | | Default value that is returned if the parameter is not found. | ||
|} | |} | ||
<br> | <br> | ||
Line 92: | Line 107: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srLONG | ||
| | | Parameter value, or value specified by <i>lDefValue</i> if parameter isn't found. | ||
|} | |} | ||
<source lang=c> | <source lang=c> | ||
#include <srtest.h> | #include <srtest.h> | ||
void | void tfsuite_getParam(void) | ||
{ | { | ||
srLONG lVal = srTestGetParamLong("ParamName", -1); | |||
} | } | ||
#ifdef _SCL | #ifdef _SCL | ||
#pragma scl_test_flist( | #pragma scl_test_flist("testfunc", tfsuite_getParam) | ||
#endif | #endif | ||
</source> | </source> | ||
== | |||
The | == srTestGetParamDouble == | ||
The srTestGetParamDouble() function is used to get the value of a named parameter as a double. | |||
<source lang=c> | <source lang=c> | ||
double srTestGetParamDouble(const srCHAR * szName, double dbDefValue); | |||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 129: | Line 138: | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | szName | ||
| Input | | Input | ||
| | | Pointer to a null-terminated string that represents the name of the parameter. | ||
|- | |- | ||
| | | dbDefValue | ||
| Input | | Input | ||
| | | Default value that is returned if the parameter is not found. | ||
|} | |} | ||
<br> | <br> | ||
Line 142: | Line 151: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | double | ||
| | | Parameter value, or value specified by <i>dbDefValue</i> if parameter isn't found. | ||
|} | |} | ||
<source lang=c> | <source lang=c> | ||
#include <srtest.h> | #include <srtest.h> | ||
void | |||
void tfsuite_getParam(void) | |||
{ | { | ||
double dbVal = srTestGetParamDouble("ParamName", 0.5772156649); | |||
} | } | ||
#ifdef _SCL | #ifdef _SCL | ||
#pragma scl_test_flist( | #pragma scl_test_flist("testfunc", tfsuite_getParam) | ||
#endif | #endif | ||
</source> | </source> | ||
The srTestSuiteAddCase() | == srTestSuiteAddCase == | ||
The srTestSuiteAddCase() routine is used to add a new test case to the specified test suite. | |||
<source lang=c> | <source lang=c> | ||
srTestCaseHandle_t srTestSuiteAddCase( | srTestCaseHandle_t srTestSuiteAddCase(const srCHAR * szName, const srCHAR * szDescr) | ||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 178: | Line 181: | ||
| '''Type''' | | '''Type''' | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| szName | | szName | ||
| Input | | Input | ||
| Pointer to a null-terminated string that represents the name of test case. If null, the default host naming scheme will be used. | | Pointer to a null-terminated string that represents the name of the new test case. If null, the default host naming scheme will be used. | ||
|- | |||
| szDescr | |||
| Input | |||
| Pointer to a null-terminated string representing the description of the new test case. If null, description will be empty. | |||
|} | |} | ||
<br> | <br> | ||
Line 193: | Line 196: | ||
|- | |- | ||
| srTestCaseHandle_t | | srTestCaseHandle_t | ||
| Handle of the newly created test case. srTEST_CASE_INVALID indicates failure to create test case. | | Handle of the newly created test case. srTEST_CASE_INVALID indicates failure to create a test case. | ||
|} | |} | ||
<source lang=c> | <source lang=c> | ||
#include <srtest.h> | #include <srtest.h> | ||
#include <stdio.h> | |||
void tfsuite_addCase(void) | void tfsuite_addCase(void) | ||
Line 205: | Line 210: | ||
char szName[25]; | char szName[25]; | ||
sprintf(szName, "dynamic test case %d", count); | sprintf(szName, "dynamic test case %d", count); | ||
srTestCaseHandle_t test = srTestSuiteAddCase( | srTestCaseHandle_t test = srTestSuiteAddCase(szName, "this is a dynamic test case"); | ||
srTestCaseSetStatus(test, srTEST_PASS, 0); | |||
} | } | ||
} | } | ||
#ifdef _SCL | #ifdef _SCL | ||
#pragma scl_test_flist( | #pragma scl_test_flist("testfunc", tfsuite_addCase) | ||
#endif | #endif | ||
</source> | </source> | ||
== | |||
The | == srTestSuiteAddAnnotation == | ||
The srTestSuiteAddAnnotation() routine is used to add a new annotation to the specified test suite. | |||
<source lang=c> | <source lang=c> | ||
srTestAnnotationHandle_t srTestSuiteAddAnnotation(srTestAnnotationLevel_e eLevel, | |||
const srCHAR * szName, | |||
const srCHAR * szFmtDescr, ...) | |||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 226: | Line 235: | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | eLevel | ||
| Input | | Input | ||
| | | Annotation level. | ||
* srTEST_ANNOTATION_LEVEL_TRACE, | |||
* srTEST_ANNOTATION_LEVEL_DEBUG, | |||
* srTEST_ANNOTATION_LEVEL_INFO, | |||
* srTEST_ANNOTATION_LEVEL_WARN, | |||
* srTEST_ANNOTATION_LEVEL_ERROR, | |||
* srTEST_ANNOTATION_LEVEL_FATAL | |||
|- | |- | ||
| szName | | szName | ||
| Input | | Input | ||
| Pointer to a null-terminated string representing the name of | | Pointer to a null-terminated string representing the name of the new annotation. If null, the default host naming scheme will be used. | ||
|- | |||
| szFmtDescr | |||
| Input | |||
| Pointer to a null-terminated string representing the description of the new annotation. Cannot be null. | |||
|- | |||
| ... | |||
| Input (Optional) | |||
| Variable argument list to format szFmtDescr. | |||
|} | |} | ||
<br> | <br> | ||
Line 239: | Line 263: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srTestAnnotationHandle_t | ||
| | | Handle of the newly created test annotation. srTEST_ANNOTATION_INVALID indicates failure to create a test annotation. | ||
|} | |} | ||
<source lang=c> | <source lang=c> | ||
#include <srtest.h> | #include <srtest.h> | ||
void | void tfsuite_addAnnotation(void) | ||
{ | { | ||
for (int count = 0; count < 5; ++count) | |||
{ | |||
char szName[25]; | |||
sprintf(szName, "annotation %d", count); | |||
srTestAnnotationHandle_t annot = | |||
srTestSuiteAddAnnotation(srTEST_ANNOTATION_LEVEL_ERROR, | |||
szName, | |||
"description of annotation"); | |||
} | |||
} | } | ||
#ifdef _SCL | #ifdef _SCL | ||
#pragma scl_test_flist( | #pragma scl_test_flist("testfunc", tfsuite_addAnnotation) | ||
#endif | #endif | ||
</source> | </source> | ||
== srTestSuiteSetData == | |||
The srTestSuiteSetData() routine is used to associate a custom name|value pair with a test suite. | |||
<source lang=c> | <source lang=c> | ||
srWORD srTestSuiteSetData(const srCHAR * szName, const srCHAR * szFmtValue, ...) | |||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 327: | Line 302: | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | szName | ||
| Input | | Input | ||
| | | Pointer to a null-terminated string representing the name of the custom pair. Cannot be null. | ||
|- | |- | ||
| | | szFmtValue | ||
| Input | | Input | ||
| Pointer to a null-terminated string | | Pointer to a null-terminated string representing the value of the custom pair. Cannot be null. | ||
|- | |- | ||
| ... | | ... | ||
| Input (Optional) | | Input (Optional) | ||
| Variable argument list to format | | Variable argument list to format szFmtValue. | ||
|} | |} | ||
<br> | <br> | ||
Line 348: | Line 319: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srWORD | ||
| | | srOK on success, srERR_HANDLE_INVALID on invalid handle. | ||
|} | |} | ||
<source lang=c> | <source lang=c> | ||
#include <srtest.h> | #include <srtest.h> | ||
void | void tfcase_setData(void) | ||
{ | { | ||
srTestSuiteSetData("MyName", "my value"); | |||
} | } | ||
#ifdef _SCL | #ifdef _SCL | ||
#pragma scl_test_flist( | #pragma scl_test_flist("testfunc", tfcase_setData) | ||
#endif | #endif | ||
</source> | </source> | ||
== srTestCaseSetStatus == | |||
The srTestCaseSetStatus() routine is used to set the result of test case. | The srTestCaseSetStatus() routine is used to set the result of test case. | ||
<source lang=c> | <source lang=c> | ||
srWORD srTestCaseSetStatus(srTestCaseHandle_t tTestCase, srTestStatus_e eStatus, srDWORD dwDuration) | srWORD srTestCaseSetStatus(srTestCaseHandle_t tTestCase, srTestStatus_e eStatus, srDWORD dwDuration) | ||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 392: | Line 356: | ||
| eStatus | | eStatus | ||
| Input | | Input | ||
| Result of the test. | | Result of the test. Possible values are: | ||
* '''srTEST_FAIL''' | |||
* '''srTEST_PASS''' | |||
* '''srTEST_NOTINUSE''' | |||
* '''srTEST_INPROGRESS''' | |||
* '''srTEST_DONE''' - applicable to dynamic cases - sets the status to '''pass''' unless already set to '''fail''' or '''not-in-use''' | |||
|- | |- | ||
| dwDuration | | dwDuration | ||
| Input | | Input | ||
| The duration of the test in clock ticks. Using | | The duration of the test in clock ticks. Using "0" allows the Stride Runtime (Intercept Module) to set the time automatically. | ||
|} | |} | ||
<br> | <br> | ||
Line 403: | Line 372: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srWORD | ||
| | | srOK on success, srERR_HANDLE_INVALID on invalid handle. | ||
|} | |} | ||
<source lang=c> | <source lang=c> | ||
Line 419: | Line 386: | ||
#ifdef _SCL | #ifdef _SCL | ||
#pragma scl_test_flist( | #pragma scl_test_flist("testfunc", tfcase_setStatus) | ||
#endif | #endif | ||
</source> | </source> | ||
== srTestCaseSetStatusEx == | |||
The srTestCaseSetStatusEx() routine is used to set the result of test case and allow specification of an extendedFailureCode. | The srTestCaseSetStatusEx() routine is used to set the result of test case and allow specification of an extendedFailureCode. | ||
<source lang=c> | <source lang=c> | ||
srWORD srTestCaseSetStatus(srTestCaseHandle_t tTestCase, srTestStatus_e eStatus, srDWORD dwDuration, srLONG lExtendedFailureCode) | srWORD srTestCaseSetStatus(srTestCaseHandle_t tTestCase, srTestStatus_e eStatus, srDWORD dwDuration, srLONG lExtendedFailureCode) | ||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 440: | Line 409: | ||
| eStatus | | eStatus | ||
| Input | | Input | ||
| Result of the test. dwDuration Input The duration of the test in clock ticks. Using | | Result of the test. | ||
|- | |||
| dwDuration | |||
| Input | |||
| The duration of the test in clock ticks. Using "0" allows the Stride Runtime (Intercept Module) to set the time automatically. | |||
|- | |- | ||
| lExtendedFailureCode | | lExtendedFailureCode | ||
Line 451: | Line 424: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srWORD | ||
| | | srOK on success, srERR_HANDLE_INVALID on invalid handle. | ||
|} | |} | ||
<source lang=c> | <source lang=c> | ||
Line 467: | Line 438: | ||
#ifdef _SCL | #ifdef _SCL | ||
#pragma scl_test_flist( | #pragma scl_test_flist("testfunc", tfcase_setStatusEx) | ||
#endif | #endif | ||
</source> | </source> | ||
== | |||
The | == srTestCaseAddAnnotation == | ||
The srTestCaseAddAnnotation() routine is used to add a new annotation to the specified test case. | |||
<source lang=c> | <source lang=c> | ||
srTestAnnotationHandle_t | srTestAnnotationHandle_t srTestCaseAddAnnotation(rTestCaseHandle_t tTestCase, srTestAnnotationLevel_e eLevel, const srCHAR * szName, const srCHAR * szFmtDescr, ...) | ||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 482: | Line 455: | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | tTestCase | ||
| Input | | Input | ||
| Handle to the parent test | | Handle to the parent test case to which new test annotation is to be added. srTEST_CASE_DEFAULT can be used for the default test case. | ||
|- | |- | ||
| eLevel | | eLevel | ||
| Input | | Input | ||
| Annotation level. | | Annotation level. | ||
* srTEST_ANNOTATION_LEVEL_TRACE, | |||
* srTEST_ANNOTATION_LEVEL_DEBUG, | |||
* srTEST_ANNOTATION_LEVEL_INFO, | |||
* srTEST_ANNOTATION_LEVEL_WARN, | |||
* srTEST_ANNOTATION_LEVEL_ERROR, | |||
* srTEST_ANNOTATION_LEVEL_FATAL | |||
|- | |- | ||
| szName | | szName | ||
| Input | | Input | ||
| Pointer to a null-terminated string | | Pointer to a null-terminated string representing the name of the new annotation. If null, the default host naming scheme will be used. | ||
|- | |- | ||
| | | szFmtDescr | ||
| Input | | Input | ||
| Pointer to a null-terminated string representing the description of annotation. | | Pointer to a null-terminated string representing the description of the new annotation. Cannot be null. | ||
|- | |||
| ... | |||
| Input (Optional) | |||
| Variable argument list to format szFmtDescr. | |||
|} | |} | ||
<br> | <br> | ||
Line 504: | Line 488: | ||
|- | |- | ||
| srTestAnnotationHandle_t | | srTestAnnotationHandle_t | ||
| | | Handle of the newly created test annotation. srTEST_ANNOTATION_INVALID indicates failure to create a test annotation. | ||
|} | |} | ||
<source lang=c> | <source lang=c> | ||
#include <srtest.h> | #include <srtest.h> | ||
void | void tfcase_addAnnotation(void) | ||
{ | { | ||
for (int count = 0; count < 5; ++count) | for (int count = 0; count < 5; ++count) | ||
Line 517: | Line 502: | ||
sprintf(szName, "annotation %d", count); | sprintf(szName, "annotation %d", count); | ||
srTestAnnotationHandle_t annot = | srTestAnnotationHandle_t annot = | ||
srTestCaseAddAnnotation(srTEST_CASE_DEFAULT, | |||
srTEST_ANNOTATION_LEVEL_ERROR, | |||
szName, | |||
"description of annotation"); | |||
} | } | ||
} | } | ||
#ifdef _SCL | #ifdef _SCL | ||
#pragma scl_test_flist( | #pragma scl_test_flist("testfunc", tfcase_addAnnotation) | ||
#endif | #endif | ||
</source> | </source> | ||
== | |||
The | == srTestCaseSetData == | ||
The srTestCaseSetData() routine is used to associate a custom name|value pair with a test case. | |||
<source lang=c> | <source lang=c> | ||
srWORD srTestCaseSetData(srTestCaseHandle_t tTestCase, const srCHAR * szName, const srCHAR * szFmtValue, ...); | |||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 540: | Line 527: | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | tTestCase | ||
| Input | | Input | ||
| Handle to | | Handle to a test case. srTEST_CASE_DEFAULT can be used for the default test case. | ||
|- | |- | ||
| | | szName | ||
| Input | | Input | ||
| | | Pointer to a null-terminated string representing the name of the custom pair. Cannot be null. | ||
|- | |- | ||
| | | szFmtValue | ||
| Input | | Input | ||
| Pointer to a null-terminated string | | Pointer to a null-terminated string representing the value of the custom pair. Cannot be null. | ||
|- | |- | ||
| | | ... | ||
| Input | | Input (Optional) | ||
| | | Variable argument list to format szFmtValue. | ||
|} | |} | ||
<br> | <br> | ||
Line 561: | Line 548: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srWORD | ||
| | | srOK on success, srERR_HANDLE_INVALID on invalid handle. | ||
|} | |} | ||
<source lang=c> | <source lang=c> | ||
#include <srtest.h> | #include <srtest.h> | ||
void | void tfcase_setData(void) | ||
{ | { | ||
srTestCaseSetData(srTEST_CASE_DEFAULT, "MyName", "my value"); | |||
} | } | ||
#ifdef _SCL | #ifdef _SCL | ||
#pragma scl_test_flist( | #pragma scl_test_flist("testfunc", tfcase_setData) | ||
#endif | #endif | ||
</source> | </source> | ||
The srTestAnnotationAddComment() routine is used to add a comment (aka a log) to | == srTestAnnotationAddComment == | ||
The srTestAnnotationAddComment() routine is used to add a comment (aka a log) to a test annotation. | |||
<source lang=c> | <source lang=c> | ||
srWORD srTestAnnotationAddComment(srTestAnnotationHandle_t tTestAnnotation, const srCHAR * szLabel, const srCHAR * szFmtComment, ...) | srWORD srTestAnnotationAddComment(srTestAnnotationHandle_t tTestAnnotation, const srCHAR * szLabel, const srCHAR * szFmtComment, ...) | ||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 600: | Line 581: | ||
| tTestAnnotation | | tTestAnnotation | ||
| Input | | Input | ||
| Handle to | | Handle to a test annotation. | ||
|- | |- | ||
| szLabel | | szLabel | ||
Line 608: | Line 589: | ||
| szFmtComment | | szFmtComment | ||
| Input | | Input | ||
| Pointer to a null-terminated string | | Pointer to a null-terminated string representing the new comment. Cannot be null. | ||
|- | |- | ||
| ... | | ... | ||
| Input (Optional) | | Input (Optional) | ||
| Variable argument list to format | | Variable argument list to format szFmtComment. | ||
|} | |} | ||
<br> | <br> | ||
Line 619: | Line 600: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srWORD | ||
| srOK on success, srERR on null string or invalid formatted string, srERR_HANDLE_INVALID on invalid handle, srERR_STR_TRUNCATED on truncated string. | |||
| srERR | |||
|} | |} | ||
<source lang=c> | <source lang=c> | ||
Line 638: | Line 611: | ||
{ | { | ||
srTestAnnotationHandle_t annot = | srTestAnnotationHandle_t annot = | ||
srTestSuiteAddAnnotation( | srTestSuiteAddAnnotation(srTEST_ANNOTATION_LEVEL_ERROR, | ||
"annot", | |||
"annot description"); | |||
srTestAnnotationAddComment(annot, | srTestAnnotationAddComment(annot, | ||
srNULL, | srNULL, | ||
Line 648: | Line 620: | ||
#ifdef _SCL | #ifdef _SCL | ||
#pragma scl_test_flist( | #pragma scl_test_flist("testfunc", tfsuiteAnnotation_addComment) | ||
#endif | #endif | ||
</source> | </source> | ||
= C++ Test Classes = | |||
The Runtime Test Services C APIs work equally well from C test functions and C++ test classes. If, however, you are using C++ it might be more convinient for you to derive your C++ test classes from the Runtime Test Services C++ base class, ''srTest''. That way you will have access to a set of simpler to use C++ classes. | The Runtime Test Services C APIs work equally well from C test functions and C++ test classes. If, however, you are using C++ it might be more convinient for you to derive your C++ test classes from the Runtime Test Services C++ base class, ''srTest''. That way you will have access to a set of simpler to use C++ classes. | ||
The following C++ classes are provided: | The following C++ classes are provided: | ||
* '''[[#class srTest|class srTest]]''' - base test class | * '''[[#class srTest|class srTest]]''' - base test class | ||
* '''[[#class srTestCase|class srTestCase]]''' - represents a test case | * '''[[#class srTestCase|class srTestCase]]''' - represents a test case | ||
* '''[[#class srTestAnnotation|class srTestAnnotation]]''' - represents a test annotation | * '''[[#class srTestAnnotation|class srTestAnnotation]]''' - represents a test annotation | ||
== class srTest == | |||
The srTest class provides the folowing methods: | The srTest class provides one member object ''testCase'' of [[#class srTestCase|class srTestCase]] and the folowing methods: | ||
=== method GetParam === | |||
This overload of the GetParam() method is used to get the value of a named parameter as a string. | |||
<source lang=cpp> | <source lang=cpp> | ||
static srWORD GetParam(const srCHAR * name, srCHAR * value, srDWORD size, const srCHAR * defval = srNULL) | |||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 679: | Line 649: | ||
| '''Type''' | | '''Type''' | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | name | ||
| Input ( | | Input | ||
| Pointer to null-terminated string that represents the | | Pointer to a null-terminated string that represents the name of the parameter. Cannot be null. | ||
|- | |||
| value | |||
| Output | |||
| Pointer to a block of memory to store the value of the parameter with a maximum size of <i>size</i> chars | |||
|- | |||
| size | |||
| Input | |||
| Size in chars of the buffer pointed to by <i>value</i> | |||
|- | |||
| defvalue | |||
| Input (optional) | |||
| Pointer to a null-terminated string that represents a default value in case the parameter is not specified. By setting this value to srNULL (or omitting it), you can use <i>GetParam()</i> to test for the existence of a named parameter. If the named parameter doesn't exist, the function will return <i>srERR_HANDLE_INVALID</i>. | |||
|} | |} | ||
<br> | <br> | ||
Line 689: | Line 671: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srWORD | ||
| | | srOK on success, error otherwise. | ||
|} | |} | ||
<source lang=cpp> | <source lang=cpp> | ||
Line 699: | Line 682: | ||
{ | { | ||
public: | public: | ||
void | void getParam() | ||
{ | { | ||
GetParam("ParamName", szValue, MAX_VALUE_LEN, "default value"); | |||
} | } | ||
}; | }; | ||
Line 710: | Line 693: | ||
</source> | </source> | ||
=== method GetParam === | |||
This overload of the GetParam() method is used to get the value of a named parameter as a long. | |||
<source lang=cpp> | <source lang=cpp> | ||
static long GetParam(const srCHAR * name, srLONG defval = 0) | |||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 720: | Line 705: | ||
| '''Type''' | | '''Type''' | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | name | ||
| Input | |||
| Pointer to a null-terminated string that represents the name of the parameter. | |||
|- | |||
| defvalue | |||
| Input | | Input | ||
| | | Default value that is returned if the parameter is not found. | ||
|} | |} | ||
<br> | <br> | ||
Line 730: | Line 719: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srLONG | ||
| | | Parameter value, or value specified by <i>defvalue</i> if parameter isn't found. | ||
|} | |} | ||
<source lang=cpp> | <source lang=cpp> | ||
Line 749: | Line 730: | ||
{ | { | ||
public: | public: | ||
void | void getParam() | ||
{ | { | ||
srLONG lValue = GetParam("ParamName", -1); | |||
} | } | ||
}; | }; | ||
Line 757: | Line 738: | ||
#ifdef _SCL | #ifdef _SCL | ||
#pragma scl_test_class(srtest_class) | #pragma scl_test_class(srtest_class) | ||
#endif | #endif</source> | ||
</source> | |||
=== method GetParam === | |||
This overload of the GetParam() method is used to get the value of a named parameter as a double. | |||
<source lang=cpp> | <source lang=cpp> | ||
static double GetParam(const srCHAR * name, const double& defval) | |||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 770: | Line 752: | ||
| '''Type''' | | '''Type''' | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | name | ||
| Input | |||
| Pointer to a null-terminated string that represents the name of the parameter. | |||
|- | |||
| defvalue | |||
| Input | | Input | ||
| | | Default value that is returned if the parameter is not found. | ||
|} | |} | ||
<br> | <br> | ||
Line 780: | Line 766: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | double | ||
| | | Parameter value, or value specified by <i>defvalue</i> if parameter isn't found. | ||
|} | |} | ||
<source lang=cpp> | <source lang=cpp> | ||
Line 799: | Line 777: | ||
{ | { | ||
public: | public: | ||
void | void getParam() | ||
{ | { | ||
double dbVal = GetParam("ParamName", 0.5772156649); | |||
} | } | ||
}; | }; | ||
Line 807: | Line 785: | ||
#ifdef _SCL | #ifdef _SCL | ||
#pragma scl_test_class(srtest_class) | #pragma scl_test_class(srtest_class) | ||
#endif | #endif</source> | ||
</source> | |||
=== method AddCase === | |||
The AddCase method is used to add a new test case to test suite. | The AddCase method is used to add a new test case to the test suite. | ||
<source lang=cpp> | <source lang=cpp> | ||
srTestCase AddCase(const srCHAR * | srTestCase AddCase(const srCHAR * name, const srCHAR * descr = srNULL) | ||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 821: | Line 800: | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | name | ||
| Input | |||
| Pointer to null-terminated string that represents the name of the new test case. If empty, the default host naming scheme will be used. | |||
|- | |||
| descr | |||
| Input (Optional) | | Input (Optional) | ||
| Pointer to null-terminated string | | Pointer to null-terminated string representing the description of the new test case. If empty, description will be blank. | ||
|} | |} | ||
<br> | <br> | ||
Line 831: | Line 814: | ||
|- | |- | ||
| srTestCase | | srTestCase | ||
| Newly created test case | | Newly created test case instance. | ||
|} | |} | ||
<br> | <br> | ||
Line 849: | Line 832: | ||
std::stringstream strm; | std::stringstream strm; | ||
strm << prefix << count; | strm << prefix << count; | ||
stride::srTestCase tc = | stride::srTestCase tc = AddCase(strm.str().c_str()); | ||
tc.SetStatus(srTEST_PASS); | tc.SetStatus(srTEST_PASS); | ||
} | } | ||
Line 861: | Line 843: | ||
</source> | </source> | ||
The AddAnnotation method is used to add a new annotation to test suite. | === method AddAnnotation === | ||
The AddAnnotation method is used to add a new test annotation to the test suite. | |||
<source lang=cpp> | <source lang=cpp> | ||
srTestAnnotation AddAnnotation(srTestAnnotationLevel_e level, const srCHAR * name, const srCHAR * descr, ...) | |||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 872: | Line 856: | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | level | ||
| Input | | Input | ||
| Annotation level. | | Annotation level. | ||
* srTEST_ANNOTATION_LEVEL_TRACE, | |||
* srTEST_ANNOTATION_LEVEL_DEBUG, | |||
* srTEST_ANNOTATION_LEVEL_INFO, | |||
* srTEST_ANNOTATION_LEVEL_WARN, | |||
* srTEST_ANNOTATION_LEVEL_ERROR, | |||
* srTEST_ANNOTATION_LEVEL_FATAL | |||
|- | |- | ||
| | | name | ||
| Input | | Input | ||
| Pointer to null-terminated string that represents the name of annotation. If empty, the default host naming scheme will be used. | | Pointer to null-terminated string that represents the name of the new annotation. If empty, the default host naming scheme will be used. | ||
|- | |- | ||
| | | descr | ||
| Input | | Input | ||
| Pointer to null-terminated string | | Pointer to null-terminated string representing the description of the new annotation. Cannot be null. | ||
|} | |} | ||
<br> | <br> | ||
Line 890: | Line 881: | ||
|- | |- | ||
| srTestAnnotation | | srTestAnnotation | ||
| Newly created annotation | | Newly created annotation instance. | ||
|} | |} | ||
<source lang=cpp> | <source lang=cpp> | ||
Line 908: | Line 900: | ||
strmName << "annotation " << count; | strmName << "annotation " << count; | ||
strmDescr << "description of annotation " << count; | strmDescr << "description of annotation " << count; | ||
stride::srTestAnnotation ta = | stride::srTestAnnotation ta = AddAnnotation(srTEST_ANNOTATION_LEVEL_INFO, | ||
strmName.str().c_str(), | |||
strmDescr.str().c_str()); | |||
} | } | ||
} | } | ||
Line 921: | Line 912: | ||
</source> | </source> | ||
=== method SetData === | |||
The | The SetData method is used to associate a custom name|value pair with the test suite. | ||
<source lang=cpp> | <source lang=cpp> | ||
srWORD | srWORD SetData(const srCHAR * name, const srCHAR * value, ...) | ||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 935: | Line 925: | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | name | ||
| Input | | Input | ||
| Pointer to null-terminated string representing the name of | | Pointer to a null-terminated string representing the name of the custom pair. Cannot be null. | ||
|- | |||
| value | |||
| Input | |||
| Pointer to a null-terminated string representing the value of the custom pair. Cannot be null. | |||
|} | |} | ||
<br> | <br> | ||
Line 944: | Line 938: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srWORD | ||
| | | srOK on success, srERR_HANDLE_INVALID on invalid handle. | ||
|} | |} | ||
<br> | |||
'''Example''' | |||
<source lang=cpp> | <source lang=cpp> | ||
#include <srtest.h> | #include <srtest.h> | ||
#include <sstream> | |||
class srtest_class : public stride::srTest | class srtest_class : public stride::srTest | ||
{ | { | ||
public: | public: | ||
void | void suiteSetData() | ||
{ | { | ||
SetData("MyName", "my value"); | |||
} | } | ||
}; | }; | ||
Line 974: | Line 961: | ||
</source> | </source> | ||
== class srTestCase == | |||
The srTestCase class provides the following methods: | |||
=== method SetStatus === | |||
The SetStatus method is used to set the result of the default test case. | |||
<source lang=cpp> | <source lang=cpp> | ||
srWORD SetStatus(srTestStatus_e status, srDWORD duration = 0) | |||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 1,035: | Line 977: | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | status | ||
| Input | | Input | ||
| | | Result of the test. Possible values are: | ||
* '''srTEST_FAIL''' | |||
* '''srTEST_PASS''' | |||
* '''srTEST_NOTINUSE''' | |||
* '''srTEST_INPROGRESS''' | |||
* '''srTEST_DONE''' - applicable to dynamic cases - sets the status to '''pass''' unless already set to '''fail''' or '''not-in-use''' | |||
|- | |- | ||
| | | duration | ||
| Input (Optional) | | Input (Optional) | ||
| | | The duration of the test in clock ticks. The default is 0. | ||
|} | |} | ||
<br> | <br> | ||
Line 1,048: | Line 995: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srWORD | ||
| | | srOK on success, srERR_HANDLE_INVALID on invalid handle. | ||
|} | |} | ||
<source lang=cpp> | <source lang=cpp> | ||
Line 1,067: | Line 1,006: | ||
{ | { | ||
public: | public: | ||
void | void caseSetStatus() | ||
{ | { | ||
testCase. | testCase.SetStatus(srTEST_NOTINUSE); | ||
} | } | ||
}; | }; | ||
Line 1,078: | Line 1,017: | ||
</source> | </source> | ||
The | === method AddAnnotation === | ||
The AddAnnotation method is used to add a new test annotation to the test case. | |||
<source lang=cpp> | <source lang=cpp> | ||
srTestAnnotation AddAnnotation(srTestAnnotationLevel_e level, const srCHAR * name, const srCHAR * descr, ...) | |||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 1,089: | Line 1,030: | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | level | ||
| Input | | Input | ||
| | | Annotation level. | ||
|- | |||
| | * srTEST_ANNOTATION_LEVEL_TRACE, | ||
| Input | * srTEST_ANNOTATION_LEVEL_DEBUG, | ||
| | * srTEST_ANNOTATION_LEVEL_INFO, | ||
* srTEST_ANNOTATION_LEVEL_WARN, | |||
* srTEST_ANNOTATION_LEVEL_ERROR, | |||
* srTEST_ANNOTATION_LEVEL_FATAL | |||
|- | |||
| name | |||
| Input | |||
| Pointer to null-terminated string that represents the name of the new annotation. If null, the default host naming scheme will be used. | |||
|- | |||
| descr | |||
| Input | |||
| Pointer to null-terminated string representing the description of the new annotation. Cannot be null. | |||
|} | |} | ||
<br> | <br> | ||
Line 1,102: | Line 1,054: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srTestAnnotation | ||
| | | Newly created annotation instance. | ||
|} | |} | ||
<source lang=cpp> | <source lang=cpp> | ||
#include <srtest.h> | #include <srtest.h> | ||
#include <sstream> | |||
class srtest_class : public stride::srTest | class srtest_class : public stride::srTest | ||
{ | { | ||
public: | public: | ||
void | void caseAddAnnotation() | ||
{ | { | ||
testCase. | for (int count = 0; count < 5; ++count) | ||
{ | |||
std::stringstream strmName; | |||
std::stringstream strmDescr; | |||
strmName << "annotation " << count; | |||
strmDescr << "description of annotation " << count; | |||
stride::srTestAnnotation ta = | |||
testCase.AddAnnotation(srTEST_ANNOTATION_LEVEL_INFO, | |||
strmName.str().c_str(), | |||
strmDescr.str().c_str()); | |||
} | |||
} | } | ||
}; | }; | ||
Line 1,126: | Line 1,087: | ||
</source> | </source> | ||
The | === method SetData === | ||
The SetData method is used to associate a custom name|value pair with the test case. | |||
<source lang=cpp> | <source lang=cpp> | ||
srWORD SetData(const srCHAR * name, const srCHAR * value, ...) | |||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 1,137: | Line 1,100: | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | name | ||
| Input | | Input | ||
| | | Pointer to a null-terminated string representing the name of the custom pair. Cannot be null. | ||
|- | |- | ||
| | | value | ||
| Input | | Input | ||
| Pointer to null-terminated string | | Pointer to a null-terminated string representing the value of the custom pair. Cannot be null. | ||
|} | |} | ||
<br> | <br> | ||
Line 1,154: | Line 1,113: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srWORD | ||
| | | srOK on success, srERR_HANDLE_INVALID on invalid handle. | ||
|} | |} | ||
<source lang=cpp> | <source lang=cpp> | ||
#include <srtest.h> | #include <srtest.h> | ||
class srtest_class : public stride::srTest | class srtest_class : public stride::srTest | ||
{ | { | ||
public: | public: | ||
void | void caseSetData() | ||
{ | { | ||
testCase.SetData("MyName", "my value"); | |||
} | } | ||
}; | }; | ||
Line 1,186: | Line 1,135: | ||
</source> | </source> | ||
== class srTestAnnotation == | |||
The srTestAnnotation class provides the following methods: | The srTestAnnotation class provides the following methods: | ||
The AddComment method is used to add a comment to | === method AddComment === | ||
The AddComment method is used to add a comment to the test annotation. | |||
<source lang=cpp> | <source lang=cpp> | ||
srWORD AddComment(const srCHAR * | srWORD AddComment(const srCHAR * label, const srCHAR * comment, ...) | ||
</source> | </source> | ||
{| border="1" cellspacing="0" cellpadding="10" style="align:left;" | {| border="1" cellspacing="0" cellpadding="10" style="align:left;" | ||
Line 1,200: | Line 1,152: | ||
| '''Description''' | | '''Description''' | ||
|- | |- | ||
| | | label | ||
| Input | | Input | ||
| Pointer to null-terminated string for the label. If null, the default label will be applied. | | Pointer to null-terminated string for the label. If null, the default label will be applied. | ||
|- | |- | ||
| | | comment | ||
| Input | | Input | ||
| Pointer to null-terminated string | | Pointer to null-terminated string representing the new comment. Cannot be empty. | ||
|} | |} | ||
<br> | <br> | ||
Line 1,217: | Line 1,165: | ||
| ''' Description''' | | ''' Description''' | ||
|- | |- | ||
| | | srWORD | ||
| srOK on success, srERR on null string or invalid formatted string, srERR_HANDLE_INVALID on invalid handle, srERR_STR_TRUNCATED on truncated string. | |||
| srERR | |||
|} | |} | ||
<source lang=cpp> | <source lang=cpp> | ||
Line 1,250: | Line 1,190: | ||
#endif | #endif | ||
</source> | </source> | ||
Latest revision as of 19:54, 7 July 2015
The Runtime Test Services (declared in srtest.h) are a set of APIs in the Stride Runtime that facilitate the writing of target based test code. These APIs make up an optional portion of the Stride Runtime and can be used to communicate additional information about tests to the host based reporting mechanism. These APIs also allow target test code to create additional test suites and test cases dynamically at runtime.
There are two ways of accessing these APIs: through C-based functions, or through a C++ base class from which you may derive your C++ test class. These are discussed below in C Test Functions, and C++ Test Classes sections below.
C Test Functions
The following C APIs are provided:
- srTestGetParam: returns an input parameters value.
- srTestSuiteAddCase: creates an additional test case at runtime.
- srTestSuiteAddAnnotation: creates a suite annotation at runtime.
- srTestSuiteSetData: associates a custom name|value.
- srTestCaseSetStatus: explicitly sets the status for the specified test case.
- srTestCaseAddAnnotation: creates a test case annotation at runtime.
- srTestSuiteSetData: associates a custom name|value pair with the specified test case.
- srTestAnnotationAddComment: adds a comment to the specified annotation.
srTestGetParam
The srTestGetParam() function is used to get the value of a named parameter as a string.
srWORD srTestGetParam(const srCHAR * szName, srCHAR * szValue, srDWORD dwSize, const srCHAR * szDefValue);
Parameters | Type | Description |
szName | Input | Pointer to a null-terminated string that represents the name of the parameter. Cannot be null. |
szValue | Output | Pointer to a block of memory to store the value of the parameter with a maximum size of dwSize chars |
dwSize | Input | Size in chars of the buffer pointed to by szValue |
szDefValue | Input (optional) | Pointer to a null-terminated string that represents a default value in case the parameter is not specified. By setting this value to srNULL (or omitting it), you can use srTestGetParam() to test for the existence of a named parameter. If the named parameter doesn't exist, the function will return srERR_HANDLE_INVALID. |
Return Value | Description |
srOK | Success |
srERR | Null or empty szName string passed in. |
srERR_HANDLE_INVALID | The named parameter is not found and szDefValue is set to srNULL. |
#include <srtest.h>
#define MAX_VALUE_LEN 128
void tfsuite_getParam(void)
{
srCHAR szValue[MAX_VALUE_LEN] = {0};
srWORD wRet = srTestGetParam("ParamName", szValue, MAX_VALUE_LEN, "default value");
}
#ifdef _SCL
#pragma scl_test_flist("testfunc", tfsuite_getParam)
#endif
srTestGetParamLong
The srTestGetParamLong() function is used to get the value of a named parameter as a long.
srLONG srTestGetParamLong(const srCHAR * szName, srLONG lDefValue);
Parameters | Type | Description |
szName | Input | Pointer to a null-terminated string that represents the name of the parameter. |
lDefValue | Input | Default value that is returned if the parameter is not found. |
Return Value | Description |
srLONG | Parameter value, or value specified by lDefValue if parameter isn't found. |
#include <srtest.h>
void tfsuite_getParam(void)
{
srLONG lVal = srTestGetParamLong("ParamName", -1);
}
#ifdef _SCL
#pragma scl_test_flist("testfunc", tfsuite_getParam)
#endif
srTestGetParamDouble
The srTestGetParamDouble() function is used to get the value of a named parameter as a double.
double srTestGetParamDouble(const srCHAR * szName, double dbDefValue);
Parameters | Type | Description |
szName | Input | Pointer to a null-terminated string that represents the name of the parameter. |
dbDefValue | Input | Default value that is returned if the parameter is not found. |
Return Value | Description |
double | Parameter value, or value specified by dbDefValue if parameter isn't found. |
#include <srtest.h>
void tfsuite_getParam(void)
{
double dbVal = srTestGetParamDouble("ParamName", 0.5772156649);
}
#ifdef _SCL
#pragma scl_test_flist("testfunc", tfsuite_getParam)
#endif
srTestSuiteAddCase
The srTestSuiteAddCase() routine is used to add a new test case to the specified test suite.
srTestCaseHandle_t srTestSuiteAddCase(const srCHAR * szName, const srCHAR * szDescr)
Parameters | Type | Description |
szName | Input | Pointer to a null-terminated string that represents the name of the new test case. If null, the default host naming scheme will be used. |
szDescr | Input | Pointer to a null-terminated string representing the description of the new test case. If null, description will be empty. |
Return Value | Description |
srTestCaseHandle_t | Handle of the newly created test case. srTEST_CASE_INVALID indicates failure to create a test case. |
#include <srtest.h>
#include <stdio.h>
void tfsuite_addCase(void)
{
for (int count = 0; count < 5; ++count)
{
char szName[25];
sprintf(szName, "dynamic test case %d", count);
srTestCaseHandle_t test = srTestSuiteAddCase(szName, "this is a dynamic test case");
srTestCaseSetStatus(test, srTEST_PASS, 0);
}
}
#ifdef _SCL
#pragma scl_test_flist("testfunc", tfsuite_addCase)
#endif
srTestSuiteAddAnnotation
The srTestSuiteAddAnnotation() routine is used to add a new annotation to the specified test suite.
srTestAnnotationHandle_t srTestSuiteAddAnnotation(srTestAnnotationLevel_e eLevel,
const srCHAR * szName,
const srCHAR * szFmtDescr, ...)
Parameters | Type | Description |
eLevel | Input | Annotation level.
|
szName | Input | Pointer to a null-terminated string representing the name of the new annotation. If null, the default host naming scheme will be used. |
szFmtDescr | Input | Pointer to a null-terminated string representing the description of the new annotation. Cannot be null. |
... | Input (Optional) | Variable argument list to format szFmtDescr. |
Return Value | Description |
srTestAnnotationHandle_t | Handle of the newly created test annotation. srTEST_ANNOTATION_INVALID indicates failure to create a test annotation. |
#include <srtest.h>
void tfsuite_addAnnotation(void)
{
for (int count = 0; count < 5; ++count)
{
char szName[25];
sprintf(szName, "annotation %d", count);
srTestAnnotationHandle_t annot =
srTestSuiteAddAnnotation(srTEST_ANNOTATION_LEVEL_ERROR,
szName,
"description of annotation");
}
}
#ifdef _SCL
#pragma scl_test_flist("testfunc", tfsuite_addAnnotation)
#endif
srTestSuiteSetData
The srTestSuiteSetData() routine is used to associate a custom name|value pair with a test suite.
srWORD srTestSuiteSetData(const srCHAR * szName, const srCHAR * szFmtValue, ...)
Parameters | Type | Description |
szName | Input | Pointer to a null-terminated string representing the name of the custom pair. Cannot be null. |
szFmtValue | Input | Pointer to a null-terminated string representing the value of the custom pair. Cannot be null. |
... | Input (Optional) | Variable argument list to format szFmtValue. |
Return Value | Description |
srWORD | srOK on success, srERR_HANDLE_INVALID on invalid handle. |
#include <srtest.h>
void tfcase_setData(void)
{
srTestSuiteSetData("MyName", "my value");
}
#ifdef _SCL
#pragma scl_test_flist("testfunc", tfcase_setData)
#endif
srTestCaseSetStatus
The srTestCaseSetStatus() routine is used to set the result of test case.
srWORD srTestCaseSetStatus(srTestCaseHandle_t tTestCase, srTestStatus_e eStatus, srDWORD dwDuration)
Parameters | Type | Description |
tTestCase | Input | Handle to a test case. srTEST_CASE_DEFAULT can be used for the default test case. |
eStatus | Input | Result of the test. Possible values are:
|
dwDuration | Input | The duration of the test in clock ticks. Using "0" allows the Stride Runtime (Intercept Module) to set the time automatically. |
Return Value | Description |
srWORD | srOK on success, srERR_HANDLE_INVALID on invalid handle. |
#include <srtest.h>
void tfcase_setStatus(void)
{
srTestCaseSetStatus(srTEST_CASE_DEFAULT, srTEST_PASS, 0);
}
#ifdef _SCL
#pragma scl_test_flist("testfunc", tfcase_setStatus)
#endif
srTestCaseSetStatusEx
The srTestCaseSetStatusEx() routine is used to set the result of test case and allow specification of an extendedFailureCode.
srWORD srTestCaseSetStatus(srTestCaseHandle_t tTestCase, srTestStatus_e eStatus, srDWORD dwDuration, srLONG lExtendedFailureCode)
Parameters | Type | Description |
tTestCase | Input | Handle to a test case. srTEST_CASE_DEFAULT can be used for the default test case. |
eStatus | Input | Result of the test. |
dwDuration | Input | The duration of the test in clock ticks. Using "0" allows the Stride Runtime (Intercept Module) to set the time automatically. |
lExtendedFailureCode | Input | The Stride framework uses the extendedFailureCode to capture the numeric results of test method when the test method fails via a numeric (non-void, nonbool) return type. |
Return Value | Description |
srWORD | srOK on success, srERR_HANDLE_INVALID on invalid handle. |
#include <srtest.h>
void tfcase_setStatusEx(void)
{
srTestCaseSetStatusEx(srTEST_CASE_DEFAULT, srTEST_FAIL, 0, -5);
}
#ifdef _SCL
#pragma scl_test_flist("testfunc", tfcase_setStatusEx)
#endif
srTestCaseAddAnnotation
The srTestCaseAddAnnotation() routine is used to add a new annotation to the specified test case.
srTestAnnotationHandle_t srTestCaseAddAnnotation(rTestCaseHandle_t tTestCase, srTestAnnotationLevel_e eLevel, const srCHAR * szName, const srCHAR * szFmtDescr, ...)
Parameters | Type | Description |
tTestCase | Input | Handle to the parent test case to which new test annotation is to be added. srTEST_CASE_DEFAULT can be used for the default test case. |
eLevel | Input | Annotation level.
|
szName | Input | Pointer to a null-terminated string representing the name of the new annotation. If null, the default host naming scheme will be used. |
szFmtDescr | Input | Pointer to a null-terminated string representing the description of the new annotation. Cannot be null. |
... | Input (Optional) | Variable argument list to format szFmtDescr. |
Return Value | Description |
srTestAnnotationHandle_t | Handle of the newly created test annotation. srTEST_ANNOTATION_INVALID indicates failure to create a test annotation. |
#include <srtest.h>
void tfcase_addAnnotation(void)
{
for (int count = 0; count < 5; ++count)
{
char szName[25];
sprintf(szName, "annotation %d", count);
srTestAnnotationHandle_t annot =
srTestCaseAddAnnotation(srTEST_CASE_DEFAULT,
srTEST_ANNOTATION_LEVEL_ERROR,
szName,
"description of annotation");
}
}
#ifdef _SCL
#pragma scl_test_flist("testfunc", tfcase_addAnnotation)
#endif
srTestCaseSetData
The srTestCaseSetData() routine is used to associate a custom name|value pair with a test case.
srWORD srTestCaseSetData(srTestCaseHandle_t tTestCase, const srCHAR * szName, const srCHAR * szFmtValue, ...);
Parameters | Type | Description |
tTestCase | Input | Handle to a test case. srTEST_CASE_DEFAULT can be used for the default test case. |
szName | Input | Pointer to a null-terminated string representing the name of the custom pair. Cannot be null. |
szFmtValue | Input | Pointer to a null-terminated string representing the value of the custom pair. Cannot be null. |
... | Input (Optional) | Variable argument list to format szFmtValue. |
Return Value | Description |
srWORD | srOK on success, srERR_HANDLE_INVALID on invalid handle. |
#include <srtest.h>
void tfcase_setData(void)
{
srTestCaseSetData(srTEST_CASE_DEFAULT, "MyName", "my value");
}
#ifdef _SCL
#pragma scl_test_flist("testfunc", tfcase_setData)
#endif
srTestAnnotationAddComment
The srTestAnnotationAddComment() routine is used to add a comment (aka a log) to a test annotation.
srWORD srTestAnnotationAddComment(srTestAnnotationHandle_t tTestAnnotation, const srCHAR * szLabel, const srCHAR * szFmtComment, ...)
Parameters | Type | Description |
tTestAnnotation | Input | Handle to a test annotation. |
szLabel | Input | Pointer to a null-terminated string for the label. If null, the default label will be applied. |
szFmtComment | Input | Pointer to a null-terminated string representing the new comment. Cannot be null. |
... | Input (Optional) | Variable argument list to format szFmtComment. |
Return Value | Description |
srWORD | srOK on success, srERR on null string or invalid formatted string, srERR_HANDLE_INVALID on invalid handle, srERR_STR_TRUNCATED on truncated string. |
#include <srtest.h>
void tfsuiteAnnotation_addComment(void)
{
srTestAnnotationHandle_t annot =
srTestSuiteAddAnnotation(srTEST_ANNOTATION_LEVEL_ERROR,
"annot",
"annot description");
srTestAnnotationAddComment(annot,
srNULL,
"this comment should print %s", "A STRING");
}
#ifdef _SCL
#pragma scl_test_flist("testfunc", tfsuiteAnnotation_addComment)
#endif
C++ Test Classes
The Runtime Test Services C APIs work equally well from C test functions and C++ test classes. If, however, you are using C++ it might be more convinient for you to derive your C++ test classes from the Runtime Test Services C++ base class, srTest. That way you will have access to a set of simpler to use C++ classes.
The following C++ classes are provided:
- class srTest - base test class
- class srTestCase - represents a test case
- class srTestAnnotation - represents a test annotation
class srTest
The srTest class provides one member object testCase of class srTestCase and the folowing methods:
method GetParam
This overload of the GetParam() method is used to get the value of a named parameter as a string.
static srWORD GetParam(const srCHAR * name, srCHAR * value, srDWORD size, const srCHAR * defval = srNULL)
Parameters | Type | Description |
name | Input | Pointer to a null-terminated string that represents the name of the parameter. Cannot be null. |
value | Output | Pointer to a block of memory to store the value of the parameter with a maximum size of size chars |
size | Input | Size in chars of the buffer pointed to by value |
defvalue | Input (optional) | Pointer to a null-terminated string that represents a default value in case the parameter is not specified. By setting this value to srNULL (or omitting it), you can use GetParam() to test for the existence of a named parameter. If the named parameter doesn't exist, the function will return srERR_HANDLE_INVALID. |
Return Value | Description |
srWORD | srOK on success, error otherwise. |
#include <srtest.h>
class srtest_class : public stride::srTest
{
public:
void getParam()
{
GetParam("ParamName", szValue, MAX_VALUE_LEN, "default value");
}
};
#ifdef _SCL
#pragma scl_test_class(srtest_class)
#endif
method GetParam
This overload of the GetParam() method is used to get the value of a named parameter as a long.
static long GetParam(const srCHAR * name, srLONG defval = 0)
Parameters | Type | Description |
name | Input | Pointer to a null-terminated string that represents the name of the parameter. |
defvalue | Input | Default value that is returned if the parameter is not found. |
Return Value | Description |
srLONG | Parameter value, or value specified by defvalue if parameter isn't found. |
#include <srtest.h>
class srtest_class : public stride::srTest
{
public:
void getParam()
{
srLONG lValue = GetParam("ParamName", -1);
}
};
#ifdef _SCL
#pragma scl_test_class(srtest_class)
#endif
method GetParam
This overload of the GetParam() method is used to get the value of a named parameter as a double.
static double GetParam(const srCHAR * name, const double& defval)
Parameters | Type | Description |
name | Input | Pointer to a null-terminated string that represents the name of the parameter. |
defvalue | Input | Default value that is returned if the parameter is not found. |
Return Value | Description |
double | Parameter value, or value specified by defvalue if parameter isn't found. |
#include <srtest.h>
class srtest_class : public stride::srTest
{
public:
void getParam()
{
double dbVal = GetParam("ParamName", 0.5772156649);
}
};
#ifdef _SCL
#pragma scl_test_class(srtest_class)
#endif
method AddCase
The AddCase method is used to add a new test case to the test suite.
srTestCase AddCase(const srCHAR * name, const srCHAR * descr = srNULL)
Parameters | Type | Description |
name | Input | Pointer to null-terminated string that represents the name of the new test case. If empty, the default host naming scheme will be used. |
descr | Input (Optional) | Pointer to null-terminated string representing the description of the new test case. If empty, description will be blank. |
Return Value | Description |
srTestCase | Newly created test case instance. |
Example
#include <srtest.h>
#include <sstream>
class srtest_class : public stride::srTest
{
public:
void suiteAddSuite()
{
const std::string prefix("dynamic test case ");
for (int count = 0; count < 5; ++count)
{
std::stringstream strm;
strm << prefix << count;
stride::srTestCase tc = AddCase(strm.str().c_str());
tc.SetStatus(srTEST_PASS);
}
}
};
#ifdef _SCL
#pragma scl_test_class(srtest_class)
#endif
method AddAnnotation
The AddAnnotation method is used to add a new test annotation to the test suite.
srTestAnnotation AddAnnotation(srTestAnnotationLevel_e level, const srCHAR * name, const srCHAR * descr, ...)
Parameters | Type | Description |
level | Input | Annotation level.
|
name | Input | Pointer to null-terminated string that represents the name of the new annotation. If empty, the default host naming scheme will be used. |
descr | Input | Pointer to null-terminated string representing the description of the new annotation. Cannot be null. |
Return Value | Description |
srTestAnnotation | Newly created annotation instance. |
#include <srtest.h>
#include <sstream>
class srtest_class : public stride::srTest
{
public:
void suiteAddAnnotation()
{
for (int count = 0; count < 5; ++count)
{
std::stringstream strmName;
std::stringstream strmDescr;
strmName << "annotation " << count;
strmDescr << "description of annotation " << count;
stride::srTestAnnotation ta = AddAnnotation(srTEST_ANNOTATION_LEVEL_INFO,
strmName.str().c_str(),
strmDescr.str().c_str());
}
}
};
#ifdef _SCL
#pragma scl_test_class(srtest_class)
#endif
method SetData
The SetData method is used to associate a custom name|value pair with the test suite.
srWORD SetData(const srCHAR * name, const srCHAR * value, ...)
Parameters | Type | Description |
name | Input | Pointer to a null-terminated string representing the name of the custom pair. Cannot be null. |
value | Input | Pointer to a null-terminated string representing the value of the custom pair. Cannot be null. |
Return Value | Description |
srWORD | srOK on success, srERR_HANDLE_INVALID on invalid handle. |
Example
#include <srtest.h>
#include <sstream>
class srtest_class : public stride::srTest
{
public:
void suiteSetData()
{
SetData("MyName", "my value");
}
};
#ifdef _SCL
#pragma scl_test_class(srtest_class)
#endif
class srTestCase
The srTestCase class provides the following methods:
method SetStatus
The SetStatus method is used to set the result of the default test case.
srWORD SetStatus(srTestStatus_e status, srDWORD duration = 0)
Parameters | Type | Description |
status | Input | Result of the test. Possible values are:
|
duration | Input (Optional) | The duration of the test in clock ticks. The default is 0. |
Return Value | Description |
srWORD | srOK on success, srERR_HANDLE_INVALID on invalid handle. |
#include <srtest.h>
class srtest_class : public stride::srTest
{
public:
void caseSetStatus()
{
testCase.SetStatus(srTEST_NOTINUSE);
}
};
#ifdef _SCL
#pragma scl_test_class(srtest_class)
#endif
method AddAnnotation
The AddAnnotation method is used to add a new test annotation to the test case.
srTestAnnotation AddAnnotation(srTestAnnotationLevel_e level, const srCHAR * name, const srCHAR * descr, ...)
Parameters | Type | Description |
level | Input | Annotation level.
|
name | Input | Pointer to null-terminated string that represents the name of the new annotation. If null, the default host naming scheme will be used. |
descr | Input | Pointer to null-terminated string representing the description of the new annotation. Cannot be null. |
Return Value | Description |
srTestAnnotation | Newly created annotation instance. |
#include <srtest.h>
#include <sstream>
class srtest_class : public stride::srTest
{
public:
void caseAddAnnotation()
{
for (int count = 0; count < 5; ++count)
{
std::stringstream strmName;
std::stringstream strmDescr;
strmName << "annotation " << count;
strmDescr << "description of annotation " << count;
stride::srTestAnnotation ta =
testCase.AddAnnotation(srTEST_ANNOTATION_LEVEL_INFO,
strmName.str().c_str(),
strmDescr.str().c_str());
}
}
};
#ifdef _SCL
#pragma scl_test_class(srtest_class)
#endif
method SetData
The SetData method is used to associate a custom name|value pair with the test case.
srWORD SetData(const srCHAR * name, const srCHAR * value, ...)
Parameters | Type | Description |
name | Input | Pointer to a null-terminated string representing the name of the custom pair. Cannot be null. |
value | Input | Pointer to a null-terminated string representing the value of the custom pair. Cannot be null. |
Return Value | Description |
srWORD | srOK on success, srERR_HANDLE_INVALID on invalid handle. |
#include <srtest.h>
class srtest_class : public stride::srTest
{
public:
void caseSetData()
{
testCase.SetData("MyName", "my value");
}
};
#ifdef _SCL
#pragma scl_test_class(srtest_class)
#endif
class srTestAnnotation
The srTestAnnotation class provides the following methods:
method AddComment
The AddComment method is used to add a comment to the test annotation.
srWORD AddComment(const srCHAR * label, const srCHAR * comment, ...)
Parameters | Type | Description |
label | Input | Pointer to null-terminated string for the label. If null, the default label will be applied. |
comment | Input | Pointer to null-terminated string representing the new comment. Cannot be empty. |
Return Value | Description |
srWORD | srOK on success, srERR on null string or invalid formatted string, srERR_HANDLE_INVALID on invalid handle, srERR_STR_TRUNCATED on truncated string. |
#include <srtest.h>
class srtest_class : public stride::srTest
{
public:
void suiteAnnotationAddComment()
{
stride::srTestAnnotation ta =
testSuite.AddAnnotation(srTEST_ANNOTATION_LEVEL_INFO,
"annot",
"annot description");
ta.AddComment("this comment on annotation should print %s", "A STRING");
}
};
#ifdef _SCL
#pragma scl_test_class(srtest_class)
#endif