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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
************************************************************************/
/*___INFO__MARK_END__*/
/*
* JobInfoImplTest.java
* JUnit based test
*
* Created on November 15, 2004, 10:41 AM
*/
package com.sun.grid.drmaa;
import junit.framework.*;
import org.ggf.drmaa.*;
/**
*
* @author dan.templeton@sun.com
*/
public class JobInfoImplTest extends TestCase {
private static final String SIG = "SIGTERM";
private JobInfo ji_ok = null;
private JobInfo ji_sig = null;
private JobInfo ji_core = null;
private JobInfo ji_abort = null;
public JobInfoImplTest (java.lang.String testName) {
super (testName);
}
public static Test suite () {
TestSuite suite = new TestSuite (JobInfoImplTest.class);
return suite;
}
public void setUp () {
ji_ok = new JobInfoImpl ("12345", 0xf1,
new String[] {"cpu_time=1000","mem_usage=1024"},
null);
ji_sig = new JobInfoImpl ("12346", 0x02,
new String[] {"cpu_time=100","mem_usage=1024"},
SIG);
ji_core = new JobInfoImpl ("12348", 0x04,
new String[] {"cpu_time=100","mem_usage=2048"},
null);
ji_abort = new JobInfoImpl ("12347", 0x08, new String[] {}, null);
}
public void tearDown () {
ji_ok = null;
ji_sig = null;
ji_core = null;
ji_abort = null;
}
/** Test of getExitStatus method, of class com.sun.grid.drmaa.JobInfoImpl. */
public void testGetExitStatus () throws DrmaaException {
System.out.println ("testGetExitStatus");
assertEquals (15, ji_ok.getExitStatus ());
}
/** Test of getTerminatingSignal method, of class com.sun.grid.drmaa.JobInfoImpl. */
public void testGetTerminatingSignal () throws DrmaaException {
System.out.println ("testGetTerminatingSignal");
assertEquals (SIG, ji_sig.getTerminatingSignal ());
}
/** Test of hasCoreDump method, of class com.sun.grid.drmaa.JobInfoImpl. */
public void testHasCoreDump () throws DrmaaException {
System.out.println ("testHasCoreDump");
assertFalse (ji_ok.hasCoreDump ());
assertFalse (ji_sig.hasCoreDump ());
assertTrue (ji_core.hasCoreDump ());
assertFalse (ji_abort.hasCoreDump ());
}
/** Test of hasExited method, of class com.sun.grid.drmaa.JobInfoImpl. */
public void testHasExited () throws DrmaaException {
System.out.println ("testHasExited");
assertTrue (ji_ok.hasExited ());
assertFalse (ji_sig.hasExited ());
assertFalse (ji_core.hasExited ());
assertFalse (ji_abort.hasExited ());
}
/** Test of hasSignaled method, of class com.sun.grid.drmaa.JobInfoImpl. */
public void testHasSignaled () throws DrmaaException {
System.out.println ("testHasSignaled");
assertFalse (ji_ok.hasSignaled ());
assertTrue (ji_sig.hasSignaled ());
assertFalse (ji_core.hasSignaled ());
assertFalse (ji_abort.hasSignaled ());
}
/** Test of wasAborted method, of class com.sun.grid.drmaa.JobInfoImpl. */
public void testWasAborted () throws DrmaaException {
System.out.println ("testWasAborted");
assertFalse (ji_ok.wasAborted ());
assertFalse (ji_sig.wasAborted ());
assertFalse (ji_core.wasAborted ());
assertTrue (ji_abort.wasAborted ());
}
}
|