< prev index next >

test/jdk/jdk/jfr/jmx/security/TestNoMonitorPermission.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 "monitor".

  38  * @library /test/lib /test/jdk
  39  * @run main/othervm/secure=java.lang.SecurityManager/java.security.policy=nomonitor.policy jdk.jfr.jmx.security.TestNoMonitorPermission
  40  */
  41 public class TestNoMonitorPermission {
  42 
  43     public static void main(String[] args) throws Throwable {
  44         try {
  45             FlightRecorderMXBean bean = JmxHelper.getFlighteRecorderMXBean();
  46 
  47             int dummyId = 1;
  48             verifySecurityException(() -> bean.getRecordings(), "getRecordings()");
  49             verifySecurityException(() -> bean.getConfigurations(), "getConfigurations()");
  50             verifySecurityException(() -> bean.getEventTypes(), "getEventTypes()");
  51             verifySecurityException(() -> bean.getRecordingOptions(dummyId), "getRecordingOptions()");
  52             verifySecurityException(() -> bean.getRecordingSettings(dummyId), "getRecordingSettings()");
  53             verifySecurityException(() -> bean.readStream(dummyId), "readStream()");
  54         } catch (Throwable t) {
  55             t.printStackTrace();
  56             throw t;
  57         }


  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 "monitor".
  38  * @requires vm.hasJFR
  39  * @library /test/lib /test/jdk
  40  * @run main/othervm/secure=java.lang.SecurityManager/java.security.policy=nomonitor.policy jdk.jfr.jmx.security.TestNoMonitorPermission
  41  */
  42 public class TestNoMonitorPermission {
  43 
  44     public static void main(String[] args) throws Throwable {
  45         try {
  46             FlightRecorderMXBean bean = JmxHelper.getFlighteRecorderMXBean();
  47 
  48             int dummyId = 1;
  49             verifySecurityException(() -> bean.getRecordings(), "getRecordings()");
  50             verifySecurityException(() -> bean.getConfigurations(), "getConfigurations()");
  51             verifySecurityException(() -> bean.getEventTypes(), "getEventTypes()");
  52             verifySecurityException(() -> bean.getRecordingOptions(dummyId), "getRecordingOptions()");
  53             verifySecurityException(() -> bean.getRecordingSettings(dummyId), "getRecordingSettings()");
  54             verifySecurityException(() -> bean.readStream(dummyId), "readStream()");
  55         } catch (Throwable t) {
  56             t.printStackTrace();
  57             throw t;
  58         }
< prev index next >