jdk/test/javax/sound/midi/Gervill/RiffReaderWriter/HasNextChunk.java
changeset 45341 b7cc7f639ecf
parent 31448 1066345d2a8a
equal deleted inserted replaced
45023:323c0edaa17b 45341:b7cc7f639ecf
     1 /*
     1 /*
     2  * Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2007, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    26    @modules java.desktop/com.sun.media.sound
    26    @modules java.desktop/com.sun.media.sound
    27 */
    27 */
    28 
    28 
    29 import java.io.File;
    29 import java.io.File;
    30 import java.io.FileInputStream;
    30 import java.io.FileInputStream;
       
    31 import java.nio.file.Files;
       
    32 import java.nio.file.Paths;
    31 
    33 
    32 import javax.sound.sampled.*;
    34 import com.sun.media.sound.RIFFReader;
    33 
    35 import com.sun.media.sound.RIFFWriter;
    34 import com.sun.media.sound.*;
       
    35 
    36 
    36 public class HasNextChunk {
    37 public class HasNextChunk {
    37 
    38 
    38     private static void assertEquals(Object a, Object b) throws Exception
    39     private static void assertEquals(Object a, Object b) throws Exception
    39     {
    40     {
    65             readchunk.readByte();
    66             readchunk.readByte();
    66             readchunk.close();
    67             readchunk.close();
    67             assertTrue(!reader.hasNextChunk());
    68             assertTrue(!reader.hasNextChunk());
    68             fis.close();
    69             fis.close();
    69             reader = null;
    70             reader = null;
    70 
       
    71 
       
    72         }
    71         }
    73         finally
    72         finally
    74         {
    73         {
    75             if(writer != null)
    74             if(writer != null)
    76                 writer.close();
    75                 writer.close();
    77             if(reader != null)
    76             if(reader != null)
    78                 reader.close();
    77                 reader.close();
    79 
    78             Files.delete(Paths.get(tempfile.getAbsolutePath()));
    80             if(tempfile.exists())
       
    81                 if(!tempfile.delete())
       
    82                     tempfile.deleteOnExit();
       
    83         }
    79         }
    84     }
    80     }
    85 }
    81 }