summaryrefslogtreecommitdiff
path: root/java/tests/ServiceConfigurator/suspendTest.java
blob: ab12d06f2f52591150d26194f8b201633a308b73 (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
73
74
75
76
77
78
79
80
/*************************************************
 *
 * = PACKAGE
 *    tests.ServiceConfigurator
 *
 * = FILENAME
 *    mainTest.java
 *
 *@author Prashant Jain, Everett Anderson
 *
 *************************************************/
package tests.ServiceConfigurator;

import JACE.ServiceConfigurator.*;
import JACE.OS.*;
import java.io.*;

public class suspendTest
{

  public static void main (String args [])
  {
    ServiceConfig daemon = new ServiceConfig ();
    ACE.enableDebugging();

    try
      {
	String args1 = "-f suspendTest1.conf";
	String[] argv1 = OS.createStringArray(args1, " ");

	daemon.open (argv1);

	Thread.sleep (10000);


	System.err.println("Suspending");
	String args2 = "-f suspendTest2.conf";
	String[] argv2 = OS.createStringArray(args2, " ");
	
	daemon.open (argv2);

	Thread.sleep (10000);

	System.err.println("Resuming");
	String args3 = "-f suspendTest3.conf";
	String[] argv3 = OS.createStringArray(args3, " ");

	daemon.open (argv3);

	Thread.sleep(10000);
      }
    catch (InterruptedException e)
      {
	ACE.ERROR (e);
      }
    catch (FileNotFoundException e)
      {
	ACE.ERROR (e);
      }
    catch (IOException e)
      {
	ACE.ERROR (e);
      } 
    catch (ClassNotFoundException e)
      {
	ACE.ERROR (e + "foo");
      }
    catch (IllegalAccessException e)
      {
	ACE.ERROR (e);	
      }
    catch (InstantiationException e)
      {
	ACE.ERROR (e);
      }

    System.err.println("End of suspendTest");
  }

}