< prev index next >

test/jdk/jdk/jfr/jcmd/TestJcmdStartReadOnlyFile.java

Print this page
rev 51054 : imported patch 9000013-aixDisableJFR-requires.patch


  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.jcmd;
  27 
  28 import java.nio.file.Path;
  29 import java.nio.file.Paths;
  30 
  31 import jdk.test.lib.jfr.FileHelper;
  32 import jdk.test.lib.process.OutputAnalyzer;
  33 
  34 /*
  35  * @test
  36  * @summary Verify error when starting with read-only file.
  37  * @key jfr

  38  * @library /test/lib /test/jdk
  39  * @run main/othervm jdk.jfr.jcmd.TestJcmdStartReadOnlyFile
  40  */
  41 public class TestJcmdStartReadOnlyFile {
  42 
  43     public static void main(String[] args) throws Exception {
  44         String name = "TestJcmdStartReadOnlyFile";
  45         Path readonlyFile = FileHelper.createReadOnlyFile(Paths.get(".", name + ".jfr"));
  46         if (!FileHelper.isReadOnlyPath(readonlyFile)) {
  47             System.out.println("Could not create read-only file. Ignoring test.");
  48             return;
  49         }
  50 
  51         OutputAnalyzer output = JcmdHelper.jcmd("JFR.start",
  52                 "name=" + name,
  53                 "duration=10s",
  54                 "filename=" + readonlyFile.toAbsolutePath());
  55         JcmdAsserts.assertNotAbleToWriteToFile(output);
  56         JcmdHelper.assertRecordingNotExist(name);
  57     }


  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.jcmd;
  27 
  28 import java.nio.file.Path;
  29 import java.nio.file.Paths;
  30 
  31 import jdk.test.lib.jfr.FileHelper;
  32 import jdk.test.lib.process.OutputAnalyzer;
  33 
  34 /**
  35  * @test
  36  * @summary Verify error when starting with read-only file.
  37  * @key jfr
  38  * @requires vm.hasJFR
  39  * @library /test/lib /test/jdk
  40  * @run main/othervm jdk.jfr.jcmd.TestJcmdStartReadOnlyFile
  41  */
  42 public class TestJcmdStartReadOnlyFile {
  43 
  44     public static void main(String[] args) throws Exception {
  45         String name = "TestJcmdStartReadOnlyFile";
  46         Path readonlyFile = FileHelper.createReadOnlyFile(Paths.get(".", name + ".jfr"));
  47         if (!FileHelper.isReadOnlyPath(readonlyFile)) {
  48             System.out.println("Could not create read-only file. Ignoring test.");
  49             return;
  50         }
  51 
  52         OutputAnalyzer output = JcmdHelper.jcmd("JFR.start",
  53                 "name=" + name,
  54                 "duration=10s",
  55                 "filename=" + readonlyFile.toAbsolutePath());
  56         JcmdAsserts.assertNotAbleToWriteToFile(output);
  57         JcmdHelper.assertRecordingNotExist(name);
  58     }
< prev index next >