< prev index next >

test/jdk/jdk/jfr/jmx/security/TestNoControlPermission.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.security;
  27 
  28 import jdk.jfr.jmx.JmxHelper;
  29 
  30 import jdk.management.jfr.FlightRecorderMXBean;
  31 import jdk.test.lib.jfr.CommonHelper;
  32 import jdk.test.lib.jfr.VoidFunction;
  33 
  34 /*
  35  * @test
  36  * @key jfr
  37  * @summary Verify we get SecurityExceptions when missing management permission "control".

  38  * @library /test/lib /test/jdk
  39  * @run main/othervm/secure=java.lang.SecurityManager/java.security.policy=nocontrol.policy jdk.jfr.jmx.security.TestNoControlPermission
  40  */
  41 public class TestNoControlPermission {
  42 
  43     public static void main(String[] args) throws Throwable {
  44         try {
  45             FlightRecorderMXBean bean = JmxHelper.getFlighteRecorderMXBean();
  46 
  47             int dummyId = 1;
  48             java.util.Map<String, String> dummyMap = new java.util.HashMap<>();
  49 
  50             verifySecurityException(() -> bean.takeSnapshot(), "takeSnapshot()");
  51             verifySecurityException(() -> bean.newRecording(), "newRecording()");
  52             verifySecurityException(() -> bean.startRecording(dummyId), "startRecording()");
  53             verifySecurityException(() -> bean.stopRecording(dummyId), "stopRecording()");
  54             verifySecurityException(() -> bean.closeRecording(dummyId), "closeRecording()");
  55             verifySecurityException(() -> bean.openStream(dummyId, null), "openStream()");
  56             verifySecurityException(() -> bean.closeStream(dummyId), "closeStream()");
  57             verifySecurityException(() -> bean.setConfiguration(dummyId, "dummy"), "setConfiguration()");


  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.security;
  27 
  28 import jdk.jfr.jmx.JmxHelper;
  29 
  30 import jdk.management.jfr.FlightRecorderMXBean;
  31 import jdk.test.lib.jfr.CommonHelper;
  32 import jdk.test.lib.jfr.VoidFunction;
  33 
  34 /**
  35  * @test
  36  * @key jfr
  37  * @summary Verify we get SecurityExceptions when missing management permission "control".
  38  * @requires vm.hasJFR
  39  * @library /test/lib /test/jdk
  40  * @run main/othervm/secure=java.lang.SecurityManager/java.security.policy=nocontrol.policy jdk.jfr.jmx.security.TestNoControlPermission
  41  */
  42 public class TestNoControlPermission {
  43 
  44     public static void main(String[] args) throws Throwable {
  45         try {
  46             FlightRecorderMXBean bean = JmxHelper.getFlighteRecorderMXBean();
  47 
  48             int dummyId = 1;
  49             java.util.Map<String, String> dummyMap = new java.util.HashMap<>();
  50 
  51             verifySecurityException(() -> bean.takeSnapshot(), "takeSnapshot()");
  52             verifySecurityException(() -> bean.newRecording(), "newRecording()");
  53             verifySecurityException(() -> bean.startRecording(dummyId), "startRecording()");
  54             verifySecurityException(() -> bean.stopRecording(dummyId), "stopRecording()");
  55             verifySecurityException(() -> bean.closeRecording(dummyId), "closeRecording()");
  56             verifySecurityException(() -> bean.openStream(dummyId, null), "openStream()");
  57             verifySecurityException(() -> bean.closeStream(dummyId), "closeStream()");
  58             verifySecurityException(() -> bean.setConfiguration(dummyId, "dummy"), "setConfiguration()");
< prev index next >