summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/unit/Notify/MC/Control/Control.cpp
blob: 264fbd4c4d486eb80a88c92ca333701bf6d387cd (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
69
70
71
72
#include "ace/Log_Msg.h"

#include "orbsvcs/Notify/MonitorControl/Control.h"

#if defined (TAO_HAS_MONITOR_FRAMEWORK) && (TAO_HAS_MONITOR_FRAMEWORK == 1)

static ACE_CString command;

class ControlTest : public TAO_NS_Control
{
public:
  ControlTest (const ACE_CString& name)
    : TAO_NS_Control (name.c_str ())
  {
  }

  virtual bool execute (const char* cmd)
  {
    command = cmd;
    return (ACE_OS::strcmp (cmd, TAO_NS_CONTROL_SHUTDOWN) == 0);
  }
};

void
error (const char* msg)
{
  ACE_ERROR ((LM_ERROR, "%s\n", msg));
  ACE_OS::exit (1);
}

#endif /* TAO_HAS_MONITOR_FRAMEWORK==1 */

int
ACE_TMAIN (int, ACE_TCHAR*[])
{
#if defined (TAO_HAS_MONITOR_FRAMEWORK) && (TAO_HAS_MONITOR_FRAMEWORK == 1)

  try
    {
      ACE_CString name ("Control Test");
      ControlTest ct (name);

      if (name != ct.name ())
        {
          error ("The TAO_NS_Control name does not work");
        }

      if (ct.execute (TAO_NS_CONTROL_REMOVE_CONSUMER))
        {
          error ("The control object should have returned false");
        }

      if (!ct.execute (TAO_NS_CONTROL_SHUTDOWN))
        {
          error ("The control object shouldn't have returned false");
        }

      if (command != TAO_NS_CONTROL_SHUTDOWN)
        {
          error ("The TAO_NS_Control callback does not work");
        }
    }
  catch(...)
    {
      error ("Caught an unexpected exception type");
    }

#endif /* TAO_HAS_MONITOR_FRAMEWORK==1 */

  return 0;
}