]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/tools/ctestfw/unicode/ctest.h
ICU-57166.0.1.tar.gz
[apple/icu.git] / icuSources / tools / ctestfw / unicode / ctest.h
index 7d554b4c860b4c3910ee9e20ae0aafaf3de8cf0d..f078703d6eafbef8c6fe49d824d64ced833bf811 100644 (file)
 /*
 /*
-*****************************************************************************************
-*
-*   Copyright (C) 1996-2000, International Business Machines
-*   Corporation and others.  All Rights Reserved.
-*
-*****************************************************************************************
-*/
-
+ ********************************************************************************
+ *
+ *   Copyright (C) 1996-2013, International Business Machines
+ *   Corporation and others.  All Rights Reserved.
+ *
+ ********************************************************************************
+ */
 
 #ifndef CTEST_H
 #define CTEST_H
 
 
 #ifndef CTEST_H
 #define CTEST_H
 
-#include "unicode/utypes.h"
-
-/*Deals with imports and exports of the dynamic library*/
-#if defined(_WIN32) || defined(U_CYGWIN)
-    #define T_CTEST_EXPORT __declspec(dllexport)
-    #define T_CTEST_IMPORT __declspec(dllimport)
-#else
-    #define T_CTEST_EXPORT
-    #define T_CTEST_IMPORT
-#endif
-
-#ifdef __cplusplus
-    #define C_CTEST_API extern "C"
-#else
-    #define C_CTEST_API
-#endif
-
-#ifdef T_CTEST_IMPLEMENTATION
-    #define T_CTEST_API C_CTEST_API  T_CTEST_EXPORT
-    #define T_CTEST_EXPORT_API T_CTEST_EXPORT
-#else
-    #define T_CTEST_API C_CTEST_API  T_CTEST_IMPORT
-    #define T_CTEST_EXPORT_API T_CTEST_IMPORT
-#endif
+#include "unicode/testtype.h"
+#include "unicode/utrace.h"
 
 
 
 
+/* prototypes *********************************/
 
 
-/* True and false for sanity. (removes ICU dependancy) */
+U_CDECL_BEGIN
+typedef void (U_CALLCONV *TestFunctionPtr)(void);
+typedef int (U_CALLCONV *ArgHandlerPtr)(int arg, int argc, const char* const argv[], void *context);
+typedef struct TestNode TestNode;
+U_CDECL_END
 
 
-#ifndef FALSE
-#define FALSE 0
-#endif
-#ifndef TRUE
-#define TRUE 1
-#endif
+/**
+ * This is use to set or get the option value for REPEAT_TESTS.
+ * Use with set/getTestOption().
+ *
+ * @internal
+ */
+#define REPEAT_TESTS_OPTION 1
 
 
+/**
+ * This is use to set or get the option value for VERBOSITY.
+ * When option is set to zero to disable log_verbose() messages.
+ * Otherwise nonzero to see log_verbose() messages.
+ * Use with set/getTestOption().
+ *
+ * @internal
+ */
+#define VERBOSITY_OPTION 2
 
 
+/**
+ * This is use to set or get the option value for ERR_MSG.
+ * Use with set/getTestOption().
+ *
+ * @internal
+ */
+#define ERR_MSG_OPTION 3
 
 
+/**
+ * This is use to set or get the option value for QUICK.
+ * When option is zero, disable some of the slower tests.
+ * Otherwise nonzero to run the slower tests.
+ * Use with set/getTestOption().
+ *
+ * @internal
+ */
+#define QUICK_OPTION 4
 
 
-/* prototypes *********************************/
+/**
+ * This is use to set or get the option value for WARN_ON_MISSING_DATA.
+ * When option is nonzero, warn on missing data.
+ * Otherwise, errors are propagated when data is not available.
+ * Affects the behavior of log_dataerr.
+ * Use with set/getTestOption().
+ *
+ * @see log_data_err
+ * @internal
+ */
+#define WARN_ON_MISSING_DATA_OPTION 5
 
 
-typedef void (*TestFunctionPtr)(void);
-typedef struct TestNode TestNode;
+/**
+ * This is use to set or get the option value for ICU_TRACE.
+ * ICU tracing level, is set by command line option.
+ * Use with set/getTestOption().
+ *
+ * @internal
+ */
+#define ICU_TRACE_OPTION 6
 
 /**
 
 /**
- * Set this to zero to disable log_verbose() messages.
- * Otherwise nonzero to see log_verbose() messages.
+ * Maximum amount of memory uprv_malloc should allocate before returning NULL.
  *
  *
- * @internal Internal APIs for testing purpose only
+ * @internal
  */
  */
-T_CTEST_EXPORT_API extern int REPEAT_TESTS;
+extern T_CTEST_EXPORT_API size_t MAX_MEMORY_ALLOCATION;
 
 /**
 
 /**
- * Set this to zero to disable log_verbose() messages.
- * Otherwise nonzero to see log_verbose() messages.
+ * If memory tracing was enabled, contains the number of unfreed allocations.
  *
  *
- * @internal Internal APIs for testing purpose only
+ * @internal
  */
  */
-T_CTEST_EXPORT_API extern int VERBOSITY;
+extern T_CTEST_EXPORT_API int32_t ALLOCATION_COUNT;
 
 /**
 
 /**
- * Set this to zero to disable log_verbose() messages.
- * Otherwise nonzero to see log_verbose() messages.
+ * Pass to setTestOption to decrement the test option value.
  *
  *
- * @internal Internal APIs for testing purpose only
+ * @internal
  */
  */
-T_CTEST_EXPORT_API extern int ERR_MSG;
+#define DECREMENT_OPTION_VALUE -99
 
 /**
 
 /**
- * Set this to zero to disable some of the slower tests.
- * Otherwise nonzero to run the slower tests.
+ * Gets the test option set on commandline.
  *
  *
+ * @param testOption macro definition for the individual test option
+ * @return value of test option, zero if option is not set or off
  * @internal Internal APIs for testing purpose only
  */
  * @internal Internal APIs for testing purpose only
  */
-T_CTEST_EXPORT_API extern int QUICK;
+T_CTEST_API int32_t T_CTEST_EXPORT2
+getTestOption ( int32_t testOption );
 
 /**
 
 /**
- * Set this to nonzero to warn (not error) on missing data. 
- * Otherwise, zero will cause an error to be propagated when data is not available.
- * Affects the behavior of log_dataerr.
+ * Sets the test option with value given on commandline.
  *
  *
- * @see log_data_err
+ * @param testOption macro definition for the individual test option
+ * @param value to set the test option to
  * @internal Internal APIs for testing purpose only
  */
  * @internal Internal APIs for testing purpose only
  */
-T_CTEST_EXPORT_API extern int WARN_ON_MISSING_DATA;
+T_CTEST_API void T_CTEST_EXPORT2
+setTestOption ( int32_t testOption, int32_t value);
 
 /**
  * Show the names of all nodes.
 
 /**
  * Show the names of all nodes.
@@ -103,7 +126,8 @@ T_CTEST_EXPORT_API extern int WARN_ON_MISSING_DATA;
  * @param root Subtree of tests.
  * @internal Internal APIs for testing purpose only
  */
  * @param root Subtree of tests.
  * @internal Internal APIs for testing purpose only
  */
-T_CTEST_API void showTests ( const TestNode *root);
+T_CTEST_API void T_CTEST_EXPORT2
+showTests ( const TestNode *root);
 
 /**
  * Run a subtree of tests.
 
 /**
  * Run a subtree of tests.
@@ -111,7 +135,8 @@ T_CTEST_API void showTests ( const TestNode *root);
  * @param root Subtree of tests.
  * @internal Internal APIs for testing purpose only
  */
  * @param root Subtree of tests.
  * @internal Internal APIs for testing purpose only
  */
-T_CTEST_API void runTests ( const TestNode* root);
+T_CTEST_API void T_CTEST_EXPORT2
+runTests ( const TestNode* root);
 
 /**
  * Add a test to the subtree.
 
 /**
  * Add a test to the subtree.
@@ -125,11 +150,19 @@ T_CTEST_API void runTests ( const TestNode* root);
  * @param path Path from root under which test will be placed. Ex. '/a/b/mytest'
  * @internal Internal APIs for testing purpose only
  */
  * @param path Path from root under which test will be placed. Ex. '/a/b/mytest'
  * @internal Internal APIs for testing purpose only
  */
-T_CTEST_API void addTest ( TestNode** root,
-           TestFunctionPtr test,
-           const char *path);
+T_CTEST_API void T_CTEST_EXPORT2
+addTest(TestNode** root,
+        TestFunctionPtr test,
+        const char *path);
 
 
-T_CTEST_API void cleanUpTestTree(TestNode *tn);
+/**
+ * Clean up any allocated memory.
+ * Conditions for calling this function are the same as u_cleanup().
+ * @see u_cleanup
+ * @internal Internal APIs for testing purpose only
+ */
+T_CTEST_API void T_CTEST_EXPORT2
+cleanUpTestTree(TestNode *tn);
 
 /**
  * Retreive a specific subtest. (subtree).
 
 /**
  * Retreive a specific subtest. (subtree).
@@ -139,8 +172,9 @@ T_CTEST_API void cleanUpTestTree(TestNode *tn);
  * @return The subtest, or NULL on failure.
  * @internal Internal APIs for testing purpose only
  */
  * @return The subtest, or NULL on failure.
  * @internal Internal APIs for testing purpose only
  */
-T_CTEST_API const TestNode* getTest (const TestNode* root,
-                                     const char *path);
+T_CTEST_API const TestNode* T_CTEST_EXPORT2
+getTest(const TestNode* root,
+        const char *path);
 
 
 /**
 
 
 /**
@@ -148,14 +182,28 @@ T_CTEST_API const TestNode* getTest (const TestNode* root,
  * @param pattern printf-style format string
  * @internal Internal APIs for testing purpose only
  */
  * @param pattern printf-style format string
  * @internal Internal APIs for testing purpose only
  */
-T_CTEST_API void log_err(const char* pattern, ...);
+T_CTEST_API void T_CTEST_EXPORT2
+log_err(const char* pattern, ...);
 
 
+T_CTEST_API void T_CTEST_EXPORT2
+log_err_status(UErrorCode status, const char* pattern, ...);
 /**
  * Log an informational message. (printf style)
  * @param pattern printf-style format string
  * @internal Internal APIs for testing purpose only
  */
 /**
  * Log an informational message. (printf style)
  * @param pattern printf-style format string
  * @internal Internal APIs for testing purpose only
  */
-T_CTEST_API void log_info(const char* pattern, ...);
+T_CTEST_API void T_CTEST_EXPORT2
+log_info(const char* pattern, ...);
+
+/**
+ * Log an informational message. (vprintf style)
+ * @param prefix a string that is output before the pattern and without formatting
+ * @param pattern printf-style format string
+ * @param ap variable-arguments list
+ * @internal Internal APIs for testing purpose only
+ */
+T_CTEST_API void T_CTEST_EXPORT2
+vlog_info(const char *prefix, const char *pattern, va_list ap);
 
 /**
  * Log a verbose informational message. (printf style)
 
 /**
  * Log a verbose informational message. (printf style)
@@ -163,7 +211,8 @@ T_CTEST_API void log_info(const char* pattern, ...);
  * @param pattern printf-style format string
  * @internal Internal APIs for testing purpose only
  */
  * @param pattern printf-style format string
  * @internal Internal APIs for testing purpose only
  */
-T_CTEST_API void log_verbose(const char* pattern, ...);
+T_CTEST_API void T_CTEST_EXPORT2
+log_verbose(const char* pattern, ...);
 
 /**
  * Log an error message concerning missing data. (printf style)
 
 /**
  * Log an error message concerning missing data. (printf style)
@@ -172,7 +221,26 @@ T_CTEST_API void log_verbose(const char* pattern, ...);
  * @param pattern printf-style format string
  * @internal Internal APIs for testing purpose only
  */
  * @param pattern printf-style format string
  * @internal Internal APIs for testing purpose only
  */
-T_CTEST_API void log_data_err(const char *pattern, ...);
+T_CTEST_API void T_CTEST_EXPORT2
+log_data_err(const char *pattern, ...);
+
+/**
+ * Log a known issue.
+ * @param ticket ticket number such as "12345" for ICU tickets or "cldrbug:6636" for CLDR tickets.
+ * @param fmt ...  sprintf-style format, optional message. can be NULL.
+ * @return TRUE if known issue test should be skipped, FALSE if it should be run
+ */
+T_CTEST_API UBool
+T_CTEST_EXPORT2
+log_knownIssue(const char *ticket, const char *fmt, ...);
+
+/**
+ * Initialize the variables above. This allows the test to set up accordingly
+ * before running the tests.
+ * This must be called before runTests.
+ */
+T_CTEST_API int T_CTEST_EXPORT2 
+initArgs( int argc, const char* const argv[], ArgHandlerPtr argHandler, void *context);
 
 /**
  * Processes the command line arguments.
 
 /**
  * Processes the command line arguments.
@@ -187,15 +255,58 @@ T_CTEST_API void log_data_err(const char *pattern, ...);
  * @return positive for error count, 0 for success, negative for illegal argument
  * @internal Internal APIs for testing purpose only
  */
  * @return positive for error count, 0 for success, negative for illegal argument
  * @internal Internal APIs for testing purpose only
  */
+T_CTEST_API int T_CTEST_EXPORT2 
+runTestRequest(const TestNode* root,
+            int argc,
+            const char* const argv[]);
+
+
+T_CTEST_API const char* T_CTEST_EXPORT2
+getTestName(void);
+
+/**
+ * Append a time delta to str if it is significant (>5 ms) otherwise no change
+ * @param delta a delta in millis
+ * @param str a string to append to.
+ */
+T_CTEST_API void T_CTEST_EXPORT2
+str_timeDelta(char *str, UDate delta);
 
 
-T_CTEST_API int processArgs(const TestNode* root,
-                             int argc,
-                             const char* const argv[]);
 
 
+/* ======== XML (JUnit output) ========= */
 
 
-T_CTEST_API 
-const char* getTestName(void);
+/**
+ * Set the filename for the XML output. 
+ * @param fileName file name. Caller must retain storage.
+ * @return 0 on success, 1 on failure.
+ */
+T_CTEST_API int32_t T_CTEST_EXPORT2
+ctest_xml_setFileName(const char *fileName);
 
 
 
 
+/**
+ * Init XML subsystem. Call ctest_xml_setFileName first
+ * @param rootName the test root name to be written
+ * @return 0 on success, 1 on failure.
+ */
+T_CTEST_API int32_t T_CTEST_EXPORT2
+ctest_xml_init(const char *rootName);
+
+
+/**
+ * Set the filename for the XML output. Caller must retain storage.
+ * @return 0 on success, 1 on failure.
+ */
+T_CTEST_API int32_t T_CTEST_EXPORT2
+ctest_xml_fini(void);
+
+
+/**
+ * report a test case
+ * @return 0 on success, 1 on failure.
+ */
+T_CTEST_API int32_t
+T_CTEST_EXPORT2
+ctest_xml_testcase(const char *classname, const char *name, const char *time, const char *failMsg);
 
 #endif
 
 #endif