test/jdk/jdk/jfr/api/consumer/security/TestStreamingLocal.java
author egahlin
Mon, 28 Oct 2019 17:33:38 +0100
branchJEP-349-branch
changeset 58820 8412a437a4bc
parent 58076 ca625d28c580
permissions -rw-r--r--
Exception should use FileAccess to get file length
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.time.Instant;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    29
import java.util.concurrent.CountDownLatch;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    30
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    31
import jdk.jfr.Recording;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    32
import jdk.jfr.consumer.EventStream;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    33
import jdk.test.lib.jfr.EventNames;
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    34
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    35
/**
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    36
 * @test
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    37
 * @summary Tests that local streaming works using only
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    38
 *          FlightRecordingPermission("accessFlightRecorder")
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    39
 * @key jfr
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    40
 * @requires vm.hasJFR
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    41
 * @library /test/lib
57726
6a7fa9735caf Put driver for security tests in separate file
egahlin
parents: 57717
diff changeset
    42
 *
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    43
 * @run main/othervm/secure=java.lang.SecurityManager/java.security.policy=local-streaming.policy
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    44
 *      jdk.jfr.api.consumer.security.TestStreamingLocal
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 class TestStreamingLocal {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    47
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    48
    public static void main(String... args) throws Exception {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    49
        CountDownLatch latch = new CountDownLatch(1);
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    50
        try (Recording r = new Recording()) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    51
            // Enable JVM event, no write permission needed
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    52
            r.enable(EventNames.JVMInformation);
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    53
            r.start();
58820
8412a437a4bc Exception should use FileAccess to get file length
egahlin
parents: 58076
diff changeset
    54
            try (Recording r2 = new Recording()){
8412a437a4bc Exception should use FileAccess to get file length
egahlin
parents: 58076
diff changeset
    55
                r2.start();
8412a437a4bc Exception should use FileAccess to get file length
egahlin
parents: 58076
diff changeset
    56
                r2.stop();
8412a437a4bc Exception should use FileAccess to get file length
egahlin
parents: 58076
diff changeset
    57
            }
57717
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    58
            r.stop();
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    59
            try (EventStream es = EventStream.openRepository()) {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    60
                es.setStartTime(Instant.EPOCH);
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    61
                es.onEvent("jdk.JVMInformation", e -> {
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    62
                    latch.countDown();
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    63
                });
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    64
                es.startAsync();
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    65
                latch.await();
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    66
            }
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
    }
4ce66d271065 Security handling, but two tests fails with driver
egahlin
parents:
diff changeset
    70
}