From 7d483e39820b3d296eecdb75028a97202511857e Mon Sep 17 00:00:00 2001 From: Doug MacEachern Date: Wed, 8 Jul 2009 15:59:24 -0700 Subject: [PATCH] Humidor test --- .../hyperic/sigar/test/SigarTestRunner.java | 1 + .../org/hyperic/sigar/test/TestHumidor.java | 95 +++++++++++++++++++ 2 files changed, 96 insertions(+) create mode 100644 bindings/java/src/org/hyperic/sigar/test/TestHumidor.java diff --git a/bindings/java/src/org/hyperic/sigar/test/SigarTestRunner.java b/bindings/java/src/org/hyperic/sigar/test/SigarTestRunner.java index 31615f08..332e099b 100644 --- a/bindings/java/src/org/hyperic/sigar/test/SigarTestRunner.java +++ b/bindings/java/src/org/hyperic/sigar/test/SigarTestRunner.java @@ -79,6 +79,7 @@ public class SigarTestRunner extends SigarCommandBase { TestUptime.class, TestVMware.class, TestWho.class, + TestHumidor.class }; private static final Class[] WIN32_TESTS = { diff --git a/bindings/java/src/org/hyperic/sigar/test/TestHumidor.java b/bindings/java/src/org/hyperic/sigar/test/TestHumidor.java new file mode 100644 index 00000000..1336908a --- /dev/null +++ b/bindings/java/src/org/hyperic/sigar/test/TestHumidor.java @@ -0,0 +1,95 @@ +/* + * Copyright (C) [2004-2009], Hyperic, Inc. + * This file is part of SIGAR. + * + * SIGAR is free software; you can redistribute it and/or modify + * it under the terms version 2 of the GNU General Public License as + * published by the Free Software Foundation. This program is distributed + * in the hope that it will be useful, but WITHOUT ANY WARRANTY; without + * even the implied warranty of MERCHANTABILITY or FITNESS FOR A + * PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 + * USA. + */ + +package org.hyperic.sigar.test; + +import java.util.ArrayList; + +import org.hyperic.sigar.CpuPerc; +import org.hyperic.sigar.Humidor; +import org.hyperic.sigar.Sigar; +import org.hyperic.sigar.SigarException; +import org.hyperic.sigar.SigarProxy; + +public class TestHumidor extends SigarTestCase { + + public TestHumidor(String name) { + super(name); + } + + private static class HumidorThread extends Thread { + private SigarProxy sigar; + private HumidorThread(SigarProxy sigar) { + this.sigar = sigar; + } + + public void run() { + try { + getProcCpu(this.sigar); + } catch (Exception e) { + throw new IllegalArgumentException(e.getMessage()); + } + } + } + + private static void getProcCpu(SigarProxy sigar) throws Exception { + long[] pids = sigar.getProcList(); + for (int j=0; j<10; j++) { + for (int i=0; i