test/jdk/jdk/jfr/api/consumer/security/TestMissingPermission.java
author mseledtsov
Tue, 10 Sep 2019 09:21:23 -0700
branchJEP-349-branch
changeset 58076 ca625d28c580
parent 57726 6a7fa9735caf
permissions -rw-r--r--
JEP-349-branch: fixes to copyright headers
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
     1
/*
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
     2
 * Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
     4
 *
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    10
 *
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    15
 * accompanied this code).
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    16
 *
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    20
 *
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    23
 * questions.
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    24
 */
58076
ca625d28c580 JEP-349-branch: fixes to copyright headers
mseledtsov
parents: 57726
diff changeset
    25
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    26
package jdk.jfr.api.consumer.security;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    27
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    28
import java.io.IOException;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    29
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    30
import jdk.jfr.consumer.EventStream;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    31
import jdk.jfr.consumer.RecordingStream;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    32
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    33
/**
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    34
 * @test
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    35
 * @summary Tests that streaming doesn't work if
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    36
 *          FlightRecordingPermission("accessFlightRecorder") is missing
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    37
 * @key jfr
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    38
 * @requires vm.hasJFR
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    39
 * @library /test/lib
57726
6a7fa9735caf Put driver for security tests in separate file
egahlin
parents: 57717
diff changeset
    40
 *
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    41
 * @run main/othervm/secure=java.lang.SecurityManager/java.security.policy=no-permission.policy
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    42
 *      jdk.jfr.api.consumer.security.TestMissingPermission
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    43
 */
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    44
public class TestMissingPermission {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    45
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    46
    public static void main(String... args) throws Exception {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    47
        testOpenRepository();
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    48
        testRecordingStream();
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    49
    }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    50
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    51
    private static void testRecordingStream() throws IOException {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    52
        try {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    53
            try (EventStream es = EventStream.openRepository()) {
57726
6a7fa9735caf Put driver for security tests in separate file
egahlin
parents: 57717
diff changeset
    54
                throw new AssertionError("Should not be able to create EventStream without FlightRecorderPermission");
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    55
            }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    56
        } catch (SecurityException se) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    57
            // OK, as expected
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    58
        }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    59
    }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    60
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    61
    private static void testOpenRepository() throws IOException {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    62
        try {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    63
            try (RecordingStream es = new RecordingStream()) {
57726
6a7fa9735caf Put driver for security tests in separate file
egahlin
parents: 57717
diff changeset
    64
                throw new AssertionError("Should not be able to create RecordingStream without FlightRecorderPermission");
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    65
            }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    66
        } catch (SecurityException se) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    67
            // OK, as expected
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    68
        }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    69
    }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    70
}