test/jdk/jdk/jfr/api/consumer/security/TestStreamingFile.java
author mseledtsov
Mon, 23 Sep 2019 09:16:05 -0700
branchJEP-349-branch
changeset 58271 e47423f1318b
parent 58076 ca625d28c580
permissions -rw-r--r--
Test fixes: more logging, typos, fixes to at-run targets
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.nio.file.Paths;
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
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
58271
e47423f1318b Test fixes: more logging, typos, fixes to at-run targets
mseledtsov
parents: 58076
diff changeset
    34
 * @summary Test that an event file stream can't be opened without permissions
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    35
 * @key jfr
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    36
 * @requires vm.hasJFR
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    37
 * @library /test/lib
57726
6a7fa9735caf Put driver for security tests in separate file
egahlin
parents: 57717
diff changeset
    38
 *
6a7fa9735caf Put driver for security tests in separate file
egahlin
parents: 57717
diff changeset
    39
 * @run driver jdk.jfr.api.consumer.security.DriverRecordingDumper
6a7fa9735caf Put driver for security tests in separate file
egahlin
parents: 57717
diff changeset
    40
 *      test-streaming-file.jfr
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.TestStreamingFile
57726
6a7fa9735caf Put driver for security tests in separate file
egahlin
parents: 57717
diff changeset
    43
 *      test-streaming-file.jfr
57717
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 class TestStreamingFile {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    46
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    47
    public static void main(String... args) throws Exception {
57726
6a7fa9735caf Put driver for security tests in separate file
egahlin
parents: 57717
diff changeset
    48
        try (EventStream es = EventStream.openFile(Paths.get(args[0]))) {
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    49
            throw new AssertionError("Expected SecurityException");
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    50
        } catch (SecurityException se) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    51
            // OK, as expected
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    52
            return;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    53
        }
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
}