1 /*
2  * Copyright (c) 2006, 2013, 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.
8  *
9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * version 2 for more details (a copy is included in the LICENSE file that
13  * accompanied this code).
14  *
15  * You should have received a copy of the GNU General Public License version
16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  */
23 
24 /*
25  * @test
26  * @bug 6489721
27  * @summary keytool has not closed several file streams
28  * @author weijun.wang
29  * @modules java.base/sun.security.tools.keytool
30  * @compile -XDignore.symbol.file CloseFile.java
31  * @run main CloseFile
32  *
33  * This test is only useful on Windows, which fails before the fix and succeeds
34  * after it. On other platforms, it always passes.
35  */
36 
37 import java.io.*;
38 
39 public class CloseFile {
main(String[] args)40     public static void main(String[] args) throws Exception {
41         remove("f0", false);
42         remove("f1", false);
43         run("-keystore f0 -storepass changeit -keypass changeit -genkeypair -dname CN=Haha");
44         run("-keystore f0 -storepass changeit -keypass changeit -certreq -file f2");
45         remove("f2", true);
46         run("-keystore f0 -storepass changeit -keypass changeit -exportcert -file f2");
47         remove("f2", true);
48         run("-keystore f0 -storepass changeit -keypass changeit -exportcert -file f2");
49         run("-keystore f0 -storepass changeit -keypass changeit -delete -alias mykey");
50         run("-keystore f0 -storepass changeit -keypass changeit -importcert -file f2 -noprompt");
51         remove("f2", true);
52         run("-keystore f0 -storepass changeit -keypass changeit -exportcert -file f2");
53         run("-printcert -file f2");
54         remove("f2", true);
55         remove("f0", true);
56         run("-keystore f0 -storepass changeit -keypass changeit -genkeypair -dname CN=Haha");
57         run("-importkeystore -srckeystore f0 -destkeystore f1 -srcstorepass changeit -deststorepass changeit");
58         remove("f0", true);
59         remove("f1", true);
60     }
61 
run(String s)62     static void run(String s) throws Exception {
63         sun.security.tools.keytool.Main.main((s+" -debug -keyalg rsa").split(" "));
64     }
remove(String filename, boolean check)65     static void remove(String filename, boolean check) {
66         new File(filename).delete();
67         if (check && new File(filename).exists()) {
68             throw new RuntimeException("Error deleting " + filename);
69         }
70     }
71 }
72