summaryrefslogtreecommitdiff
path: root/tests/Time_Service_Test.cpp
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-10-21 21:41:34 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-10-21 21:41:34 +0000
commita5fdebc5f6375078ec1763850a4ca23ec7fe6458 (patch)
treebcf0a25c3d45a209a6e3ac37b233a4812f29c732 /tests/Time_Service_Test.cpp
downloadATCD-a5fdebc5f6375078ec1763850a4ca23ec7fe6458.tar.gz
Initial revision
Diffstat (limited to 'tests/Time_Service_Test.cpp')
-rw-r--r--tests/Time_Service_Test.cpp77
1 files changed, 77 insertions, 0 deletions
diff --git a/tests/Time_Service_Test.cpp b/tests/Time_Service_Test.cpp
new file mode 100644
index 00000000000..c937ec0a006
--- /dev/null
+++ b/tests/Time_Service_Test.cpp
@@ -0,0 +1,77 @@
+// ============================================================================
+// @(#)Time_Service_Test.cpp 1.1 10/18/96
+
+//
+// = LIBRARY
+// tests
+//
+// = FILENAME
+// Time_Service_Test
+//
+// = DESCRIPTION
+// This example tests the Time Service server and clerk
+// components. The test forks and execs two processes to run both
+// the clerk and the time server. The clerk and the server
+// communicate for a short duration after which the main process
+// kills both the processes. No command line arguments are needed
+// to run the test.
+//
+// = AUTHOR
+// Prashant Jain
+//
+// ============================================================================
+
+#include "ace/OS.h"
+#include "ace/Log_Msg.h"
+#include "test_config.h"
+#include "ace/Process.h"
+
+int
+main (int argc, char *argv[])
+{
+ ACE_START_TEST;
+
+ char app[BUFSIZ];
+ char server_conf[BUFSIZ];
+ char clerk_conf[BUFSIZ];
+
+ ACE_OS::sprintf (server_conf, "%s", ACE_PLATFORM "server.conf");
+ ACE_OS::sprintf (clerk_conf, "%s", ACE_PLATFORM "clerk.conf");
+
+ ACE_OS::sprintf (app, ".." ACE_DIRECTORY_SEPARATOR_STR "netsvcs" ACE_DIRECTORY_SEPARATOR_STR
+ "servers" ACE_DIRECTORY_SEPARATOR_STR "main" ACE_PLATFORM_EXE_SUFFIX);
+
+ char *s_argv[4];
+ s_argv[0] = app;
+ s_argv[1] = "-f";
+ s_argv[2] = server_conf;
+ s_argv[3] = 0;
+
+ ACE_Process server;
+ if (server.start (s_argv) == -1)
+ ACE_ERROR_RETURN ((LM_DEBUG, "%p.\n", "Server fork failed"), 0);
+ else
+ ACE_DEBUG ((LM_DEBUG, "Server forked with pid = %d.\n", server.getpid ()));
+
+ ACE_OS::sleep (3);
+ s_argv[2] = clerk_conf;
+
+ ACE_Process clerk;
+ if (clerk.start (s_argv) == -1)
+ ACE_ERROR_RETURN ((LM_DEBUG, "%p.\n", "Server fork failed"), 0);
+ else
+ ACE_DEBUG ((LM_DEBUG, "Server forked with pid = %d.\n", clerk.getpid ()));
+
+ ACE_DEBUG ((LM_DEBUG, "Sleeping...\n"));
+ ACE_OS::sleep (10);
+
+ if (clerk.kill () == -1)
+ ACE_ERROR_RETURN ((LM_ERROR, "Kill failed.\n"), -1);
+
+ if (server.kill () == -1)
+ ACE_ERROR_RETURN ((LM_ERROR, "Kill failed.\n"), -1);
+
+ ACE_END_TEST;
+
+ return 42;
+}