1 /*
   2  * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  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.api.recorder;
  27 
  28 import java.io.IOException;
  29 import java.nio.file.Files;
  30 import java.nio.file.LinkOption;
  31 import java.nio.file.Path;
  32 
  33 import jdk.jfr.Configuration;
  34 import jdk.jfr.Recording;
  35 import jdk.test.lib.Utils;
  36 
  37 /*
  38  * @test TestStartStopRecording
  39  *
  40  * @key jfr
  41  * @library /test/lib
  42  * @run main/othervm jdk.jfr.api.recorder.TestStartStopRecording
  43  */
  44 public class TestStartStopRecording {
  45 
  46     public static void main(String... args) throws Exception {
  47         Configuration defaultConfig = Configuration.getConfiguration("default");
  48         // Memory
  49         Recording inMemory = new Recording(defaultConfig);
  50         inMemory.setToDisk(false);
  51 
  52         inMemory.start();
  53 
  54         Path memoryFile = Utils.createTempFile("start-stop-memory-recording", ".jfr");
  55         inMemory.dump(memoryFile);
  56         assertValid(memoryFile, "Not a valid memory file.");
  57         inMemory.stop();
  58         inMemory.close();
  59         // Disk
  60         Recording toDisk = new Recording(defaultConfig);
  61         toDisk.setToDisk(true);
  62 
  63         toDisk.start();
  64         toDisk.stop();
  65         Path diskFile = Utils.createTempFile("start-stop-disk-recording", ".jfr");
  66         toDisk.dump(diskFile);
  67         assertValid(diskFile, "Not a valid disk file.");
  68         toDisk.close();
  69     }
  70 
  71     private static void assertValid(Path path, String message) throws IOException {
  72         if (!Files.exists(path, LinkOption.NOFOLLOW_LINKS)) {
  73             throw new AssertionError(message + " Could not find file " + path);
  74         }
  75         if (Files.size(path) == 0) {
  76             throw new AssertionError(message + " File size = 0 for " + path);
  77         }
  78     }
  79 }