test/jdk/jdk/jfr/api/consumer/security/TestMissingPermission.java
author egahlin
Tue, 13 Aug 2019 14:07:04 +0200
branchJEP-349-branch
changeset 57726 6a7fa9735caf
parent 57717 4ce66d271065
child 58076 ca625d28c580
permissions -rw-r--r--
Put driver for security tests in separate file
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
 */
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    25
package jdk.jfr.api.consumer.security;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    26
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    27
import java.io.IOException;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    28
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    29
import jdk.jfr.consumer.EventStream;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    30
import jdk.jfr.consumer.RecordingStream;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    31
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
 * @test
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    34
 * @summary Tests that streaming doesn't work if
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    35
 *          FlightRecordingPermission("accessFlightRecorder") is missing
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    36
 * @key jfr
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    37
 * @requires vm.hasJFR
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    38
 * @library /test/lib
57726
6a7fa9735caf Put driver for security tests in separate file
egahlin
parents: 57717
diff changeset
    39
 *
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    40
 * @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
    41
 *      jdk.jfr.api.consumer.security.TestMissingPermission
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    42
 */
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    43
public class TestMissingPermission {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    44
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    45
    public static void main(String... args) throws Exception {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    46
        testOpenRepository();
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    47
        testRecordingStream();
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    48
    }
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
    private static void testRecordingStream() throws IOException {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    51
        try {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    52
            try (EventStream es = EventStream.openRepository()) {
57726
6a7fa9735caf Put driver for security tests in separate file
egahlin
parents: 57717
diff changeset
    53
                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
    54
            }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    55
        } catch (SecurityException se) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    56
            // OK, as expected
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    57
        }
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
    private static void testOpenRepository() throws IOException {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    61
        try {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    62
            try (RecordingStream es = new RecordingStream()) {
57726
6a7fa9735caf Put driver for security tests in separate file
egahlin
parents: 57717
diff changeset
    63
                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
    64
            }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    65
        } catch (SecurityException se) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    66
            // OK, as expected
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    67
        }
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
}