summaryrefslogtreecommitdiff
path: root/TAO/tests/Exposed_Policies/Policy_Tester.h
blob: 540b61f890bec2c98c57faa3e68e2a43aa3477d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// $Id$
//
// ============================================================================
//
// = LIBRARY
//    TAO/tests/Exposed_Policies
//
// = FILENAME
//    Policy_Verifier.h
//
// = DESCRIPTION
//     This class verifies that the policy are correctly embedded
//     in the IOR.
//
// = AUTHOR
//     Angelo Corsaro <corsaro@cs.wustl.edu>
//
// ============================================================================

#ifndef POLICY_TESTER_H_
#define POLICY_TESTER_H_

// -- App. Specific Include --
#include "RT_Properties.h"

// -- TAO Include --
#include "tao/corba.h"

class Policy_Tester
{
public:
  // Ctor/Dtor.
  Policy_Tester (void);
  ~Policy_Tester (void);
  
  void run (CORBA::Environment &ACE_TRY_ENV 
            = TAO_default_environment ());
  // Runs the test.

  int init (int argc, 
            char *argv[],
            CORBA::Environment &ACE_TRY_ENV 
            = TAO_default_environment ());

  void shutdown (CORBA::Environment &ACE_TRY_ENV 
                 = TAO_default_environment ());  
private:
  // Helper method used internally.
  int create_objects (CORBA::Environment &ACE_TRY_ENV 
                       = TAO_default_environment ());
public:
  
  static CORBA::Boolean check_reference (CORBA::Object_ptr object, 
                                         const char *msg);
  
private:
  
  int is_initialized_;

  RTCORBA::RTORB_var rt_orb_;
  CORBA::ORB_var orb_;
  PortableServer::POA_var poa_;
  PortableServer::POA_var child_poa_;
  RT_Properties *rt_object_properties_;
  RT_Properties *rt_poa_properties_;
};

#endif