summaryrefslogtreecommitdiff
path: root/TAO/tests/Portable_Interceptors/PolicyFactory/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Portable_Interceptors/PolicyFactory/server.cpp')
-rw-r--r--TAO/tests/Portable_Interceptors/PolicyFactory/server.cpp103
1 files changed, 103 insertions, 0 deletions
diff --git a/TAO/tests/Portable_Interceptors/PolicyFactory/server.cpp b/TAO/tests/Portable_Interceptors/PolicyFactory/server.cpp
new file mode 100644
index 00000000000..50181bc40e1
--- /dev/null
+++ b/TAO/tests/Portable_Interceptors/PolicyFactory/server.cpp
@@ -0,0 +1,103 @@
+// -*- C++ -*-
+
+#include "Server_ORBInitializer.h"
+
+#include "tao/ORBInitializer_Registry.h"
+#include "testC.h"
+
+#include "tao/PortableServer/PortableServer.h"
+#include "ace/Log_Msg.h"
+
+ACE_RCSID (PolicyFactory,
+ server,
+ "$Id$")
+
+int
+main (int argc, char *argv[])
+{
+ try
+ {
+ PortableInterceptor::ORBInitializer_ptr temp_initializer =
+ PortableInterceptor::ORBInitializer::_nil ();
+
+ ACE_NEW_RETURN (temp_initializer,
+ Server_ORBInitializer,
+ -1); // No CORBA exceptions yet!
+ PortableInterceptor::ORBInitializer_var orb_initializer =
+ temp_initializer;
+
+ PortableInterceptor::register_orb_initializer (orb_initializer.in ());
+
+ CORBA::ORB_var orb = CORBA::ORB_init (argc,
+ argv,
+ "test_orb");
+
+ // Create the test policy.
+
+ const CORBA::ULong val = 40442;
+ CORBA::Any any;
+ any <<= val;
+
+ CORBA::Policy_var p (orb->create_policy (Test::POLICY_TYPE,
+ any));
+
+ const CORBA::PolicyType ptype =
+ p->policy_type ();
+
+ // Sanity check.
+ if (ptype != Test::POLICY_TYPE)
+ throw CORBA::INTERNAL ();
+
+ Test::Policy_var policy (Test::Policy::_narrow (p.in ()));
+
+ const CORBA::ULong pval = policy->value ();
+
+ // Sanity check.
+ if (val != pval)
+ throw CORBA::INTERNAL ();
+
+ CORBA::Object_var obj =
+ orb->resolve_initial_references ("RootPOA");
+
+ PortableServer::POA_var root_poa =
+ PortableServer::POA::_narrow (obj.in ());
+
+ if (CORBA::is_nil (root_poa.in ()))
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "Unable to obtain RootPOA reference.\n"),
+ -1);
+
+ PortableServer::POAManager_var poa_manager =
+ root_poa->the_POAManager ();
+
+ CORBA::PolicyList policies (1);
+ policies.length (1);
+
+ policies[0] = policy->copy ();
+
+ PortableServer::POA_var poa =
+ root_poa->create_POA ("Test POA",
+ poa_manager.in (),
+ policies);
+
+ policy->destroy ();
+
+ poa_manager->activate ();
+
+ root_poa->destroy (1, 1);
+
+ orb->destroy ();
+
+ ACE_DEBUG ((LM_INFO,
+ "\n"
+ "PolicyFactory test succeeded.\n"));
+ }
+ catch (const CORBA::Exception& ex)
+ {
+ ex._tao_print_exception ("PolicyFactory test:");
+
+ return -1;
+ }
+
+ return 0;
+}