breakup test cases

This commit is contained in:
Doug MacEachern 2008-07-19 15:02:42 +00:00
parent cafd9d83fb
commit 2df15884f2

View File

@ -156,7 +156,9 @@ public class TestPTQL extends SigarTestCase {
} }
} }
private void testOK(Sigar sigar) throws Exception { public void testValidQueries() throws Exception {
Sigar sigar = getSigar();
assertTrue(THIS_PROCESS, assertTrue(THIS_PROCESS,
runQuery(sigar, THIS_PROCESS) == 1); runQuery(sigar, THIS_PROCESS) == 1);
@ -172,20 +174,20 @@ public class TestPTQL extends SigarTestCase {
this.qf.clear(); this.qf.clear();
} }
private void testReOK(Sigar sigar) throws Exception { public void testValidRegexQueries() throws Exception {
for (int i=0; i<OK_RE_QUERIES.length; i++) { for (int i=0; i<OK_RE_QUERIES.length; i++) {
String qs = OK_RE_QUERIES[i]; String qs = OK_RE_QUERIES[i];
assertTrue(qs, assertTrue(qs,
runQuery(sigar, qs) >= 0); runQuery(getSigar(), qs) >= 0);
} }
this.qf.clear(); this.qf.clear();
} }
private void testMalformed(Sigar sigar) throws Exception { public void testMalformedQueries() throws Exception {
for (int i=0; i<MALFORMED_QUERIES.length; i++) { for (int i=0; i<MALFORMED_QUERIES.length; i++) {
String qs = MALFORMED_QUERIES[i]; String qs = MALFORMED_QUERIES[i];
try { try {
runQuery(sigar, qs); runQuery(getSigar(), qs);
fail("'" + qs + "' did not throw MalformedQueryException"); fail("'" + qs + "' did not throw MalformedQueryException");
} catch (MalformedQueryException e) { } catch (MalformedQueryException e) {
traceln(qs + ": " + e.getMessage()); traceln(qs + ": " + e.getMessage());
@ -194,15 +196,5 @@ public class TestPTQL extends SigarTestCase {
} }
this.qf.clear(); this.qf.clear();
} }
public void testCreate() throws Exception {
testOK(getSigar());
if (JDK_14_COMPAT) {
testReOK(getSigar());
}
testMalformed(getSigar());
}
} }