summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Log/Basic_Log_Test/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Log/Basic_Log_Test/client.cpp')
-rw-r--r--TAO/orbsvcs/tests/Log/Basic_Log_Test/client.cpp115
1 files changed, 115 insertions, 0 deletions
diff --git a/TAO/orbsvcs/tests/Log/Basic_Log_Test/client.cpp b/TAO/orbsvcs/tests/Log/Basic_Log_Test/client.cpp
new file mode 100644
index 00000000000..8e43cf7f64c
--- /dev/null
+++ b/TAO/orbsvcs/tests/Log/Basic_Log_Test/client.cpp
@@ -0,0 +1,115 @@
+/* -*- C++ -*- $Id$ */
+
+#include "Basic_Log_Test.h"
+
+int
+main(int argc, char *argv[])
+{
+ BasicLog_Test log_test;
+
+ ACE_DEBUG((LM_DEBUG, "\nBasic Log test \n\n"));
+
+ if (log_test.init(argc, argv) == -1)
+ {
+ ACE_ERROR_RETURN((LM_ERROR,
+ "xx - Failed initializing BasicLog_Test.\n"),-1);
+ }
+
+ // We may want to replace this with a run on the BasicLog_Test.
+ // If we cannot create a log, there is no use continuing.
+ // Create a log with max size (octets) of 1000.
+ if (log_test.test_CreateLog(1000) == -1)
+ {
+ ACE_ERROR_RETURN((LM_ERROR,
+ "xx - Failed creating log and bailing out.\n"),-1);
+ }
+ else
+ {
+ ACE_DEBUG((LM_ERROR,"** - The creating log test succeeded.\n\n"));
+ }
+
+ // go easy until this works
+ //@@ use ACE_U64_TO_U32 to convert ULongLong to ULong
+ //in call to test_retrieval
+ /* if (log_test.test_retrieval(10) == -1)
+ {
+ ACE_DEBUG((LM_ERROR,"The test of retrieval failed.\n"));
+ }
+ else
+ {
+ ACE_DEBUG((LM_ERROR,"The test of retrieval succeeded.\n"));
+ }
+*/
+ if (log_test.test_log_destroy() == -1)
+ {
+ ACE_ERROR_RETURN((LM_ERROR,
+ "xx - Failed destroying log.\n\n"),-1);
+ }
+ else
+ {
+ ACE_DEBUG((LM_ERROR,"** - The destroying log test succeeded.\n\n"));
+ }
+
+ if (log_test.test_CreateLog(1000) == -1)
+ {
+ ACE_ERROR_RETURN((LM_ERROR,
+ "xx - Failed creating log and bailing out.\n\n"),-1);
+ }
+
+ if (log_test.test_capacity_alarm_threshold() == -1)
+ {
+ ACE_DEBUG((LM_ERROR,"xx - The capacity alarm threshold test failed.\n\n"));
+ }
+ else
+ {
+ ACE_DEBUG((LM_ERROR,"** - The capacity alarm threshold test succeeded.\n\n"));
+ }
+
+ if (log_test.test_LogAction() == -1)
+ {
+ ACE_DEBUG((LM_ERROR,"xx - The log action test failed.\n\n"));
+ }
+ else
+ {
+ ACE_DEBUG((LM_ERROR,"** - The log action test succeeded.\n\n"));
+ }
+
+ if (log_test.test_adminState() == -1)
+ {
+ ACE_DEBUG((LM_ERROR,"xx - The administration test failed.\n\n"));
+ }
+ else
+ {
+ ACE_DEBUG((LM_ERROR,"** - The administration test succeeded.\n\n"));
+ }
+
+ if (log_test.test_logSize() == -1)
+ {
+ ACE_DEBUG((LM_ERROR,"xx - The log size test failed.\n\n"));
+ }
+ else
+ {
+ ACE_DEBUG((LM_ERROR,"** - The log size test succeeded.\n\n"));
+ }
+
+ /* if (log_test.test_logCompaction(30) == -1)
+ {
+ ACE_DEBUG((LM_ERROR,"xx - The test of log compaction failed.\n\n"));
+ }
+ else
+ {
+ ACE_DEBUG((LM_ERROR,"** - The test of log compaction succeeded.\n\n"));
+ }
+ */
+
+ if (log_test.test_week_mask() == -1)
+ {
+ ACE_DEBUG((LM_ERROR,"xx - The week mask test failed.\n\n"));
+ }
+ else
+ {
+ ACE_DEBUG((LM_ERROR,"** - The week mask test succeeded.\n\n"));
+ }
+
+ return 0;
+}