< prev index next >

test/jdk/jdk/jfr/jmx/TestPredefinedConfigurationInvalid.java

Print this page
rev 51054 : imported patch 9000013-aixDisableJFR-requires.patch


  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.jfr.jmx;
  27 
  28 import jdk.jfr.Configuration;
  29 import jdk.management.jfr.FlightRecorderMXBean;
  30 import jdk.test.lib.Asserts;
  31 import jdk.test.lib.jfr.CommonHelper;
  32 import jdk.test.lib.jfr.VoidFunction;
  33 
  34 /*
  35  * @test
  36  * @key jfr

  37  * @library /test/lib /test/jdk
  38  * @run main/othervm jdk.jfr.jmx.TestPredefinedConfigurationInvalid
  39  */
  40 public class TestPredefinedConfigurationInvalid {
  41     public static void main(String[] args) throws Throwable {
  42         FlightRecorderMXBean bean = JmxHelper.getFlighteRecorderMXBean();
  43 
  44         long recId = bean.newRecording();
  45 
  46         // Test invalid named configs.
  47         verifyNullPointer(()->{ bean.setPredefinedConfiguration(recId, null); }, "setNamedConfig(null)");
  48         setInvalidConfigName(recId, "");
  49         setInvalidConfigName(recId, "invalidname");
  50 
  51         // Verify we can set named config after failed attempts.
  52         Configuration config = Configuration.getConfigurations().get(0);
  53         bean.setPredefinedConfiguration(recId, config.getName());
  54         JmxHelper.verifyMapEquals(bean.getRecordingSettings(recId), config.getSettings());
  55     }
  56 


  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package jdk.jfr.jmx;
  27 
  28 import jdk.jfr.Configuration;
  29 import jdk.management.jfr.FlightRecorderMXBean;
  30 import jdk.test.lib.Asserts;
  31 import jdk.test.lib.jfr.CommonHelper;
  32 import jdk.test.lib.jfr.VoidFunction;
  33 
  34 /**
  35  * @test
  36  * @key jfr
  37  * @requires vm.hasJFR
  38  * @library /test/lib /test/jdk
  39  * @run main/othervm jdk.jfr.jmx.TestPredefinedConfigurationInvalid
  40  */
  41 public class TestPredefinedConfigurationInvalid {
  42     public static void main(String[] args) throws Throwable {
  43         FlightRecorderMXBean bean = JmxHelper.getFlighteRecorderMXBean();
  44 
  45         long recId = bean.newRecording();
  46 
  47         // Test invalid named configs.
  48         verifyNullPointer(()->{ bean.setPredefinedConfiguration(recId, null); }, "setNamedConfig(null)");
  49         setInvalidConfigName(recId, "");
  50         setInvalidConfigName(recId, "invalidname");
  51 
  52         // Verify we can set named config after failed attempts.
  53         Configuration config = Configuration.getConfigurations().get(0);
  54         bean.setPredefinedConfiguration(recId, config.getName());
  55         JmxHelper.verifyMapEquals(bean.getRecordingSettings(recId), config.getSettings());
  56     }
  57 
< prev index next >