< prev index next >

test/serviceability/dcmd/vm/SystemPropertiesTest.java

Print this page




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import org.testng.annotations.Test;
  25 
  26 import jdk.test.lib.OutputAnalyzer;
  27 import jdk.test.lib.dcmd.CommandExecutor;
  28 import jdk.test.lib.dcmd.JMXExecutor;
  29 
  30 /*
  31  * @test
  32  * @summary Test of diagnostic command VM.system_properties
  33  * @library /testlibrary
  34  * @modules java.base/jdk.internal.misc
  35  *          java.compiler
  36  *          java.management
  37  *          jdk.jvmstat/sun.jvmstat.monitor
  38  * @build jdk.test.lib.*
  39  * @build jdk.test.lib.dcmd.*
  40  * @run testng SystemPropertiesTest
  41  */
  42 public class SystemPropertiesTest {
  43     private final static String PROPERTY_NAME  = "SystemPropertiesTestPropertyName";
  44     private final static String PROPERTY_VALUE = "SystemPropertiesTestPropertyValue";
  45 
  46     public void run(CommandExecutor executor) {
  47         System.setProperty(PROPERTY_NAME, PROPERTY_VALUE);
  48 
  49         OutputAnalyzer output = executor.execute("VM.system_properties");
  50         output.shouldContain(PROPERTY_NAME + "=" + PROPERTY_VALUE);
  51     }
  52 
  53     @Test
  54     public void jmx() {
  55         run(new JMXExecutor());
  56     }
  57 }


   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import org.testng.annotations.Test;
  25 
  26 import jdk.test.lib.process.OutputAnalyzer;
  27 import jdk.test.lib.dcmd.CommandExecutor;
  28 import jdk.test.lib.dcmd.JMXExecutor;
  29 
  30 /*
  31  * @test
  32  * @summary Test of diagnostic command VM.system_properties
  33  * @library /test/lib
  34  * @modules java.base/jdk.internal.misc
  35  *          java.compiler
  36  *          java.management
  37  *          jdk.jvmstat/sun.jvmstat.monitor


  38  * @run testng SystemPropertiesTest
  39  */
  40 public class SystemPropertiesTest {
  41     private final static String PROPERTY_NAME  = "SystemPropertiesTestPropertyName";
  42     private final static String PROPERTY_VALUE = "SystemPropertiesTestPropertyValue";
  43 
  44     public void run(CommandExecutor executor) {
  45         System.setProperty(PROPERTY_NAME, PROPERTY_VALUE);
  46 
  47         OutputAnalyzer output = executor.execute("VM.system_properties");
  48         output.shouldContain(PROPERTY_NAME + "=" + PROPERTY_VALUE);
  49     }
  50 
  51     @Test
  52     public void jmx() {
  53         run(new JMXExecutor());
  54     }
  55 }
< prev index next >