1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
|
/*
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteOrder;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.stream.Stream;
import jdk.tools.jlink.internal.Archive;
import jdk.tools.jlink.internal.ImageFileCreator;
import jdk.tools.jlink.internal.ImagePluginStack;
import jdk.tools.jlink.internal.ExecutableImage;
import jdk.tools.jlink.builder.ImageBuilder;
import jdk.tools.jlink.plugin.ResourcePool;
/*
* @test
* @summary ImageFileCreator class test
* @author Jean-Francois Denise
* @modules jdk.jlink/jdk.tools.jlink.internal
* jdk.jlink/jdk.tools.jlink.builder
* jdk.jlink/jdk.tools.jlink.plugin
* java.base/jdk.internal.jimage
* @run main/othervm -verbose:gc -Xmx1g ImageFileCreatorTest
*/
public class ImageFileCreatorTest {
private static class TestArchive implements Archive {
private final String name;
private final List<Entry> entries = new ArrayList<>();
private TestArchive(String name, List<String> entries) {
this.name = name;
for (String p : entries) {
this.entries.add(new TestEntry(p, p));
}
}
@Override
public String moduleName() {
return name;
}
@Override
public Stream<Entry> entries() {
return entries.stream();
}
@Override
public Path getPath() {
return null;
}
@Override
public void open() throws IOException {
}
@Override
public void close() throws IOException {
}
private class TestEntry extends Entry {
TestEntry(String path, String name) {
super(TestArchive.this, path, name, Entry.EntryType.CLASS_OR_RESOURCE);
}
@Override
public long size() {
return 0;
}
@Override
public InputStream stream() throws IOException {
return new ByteArrayInputStream(new byte[0]);
}
}
}
public static void main(String[] args) throws Exception {
{
List<String> entries = new ArrayList<>();
entries.add("classes/class");
test(entries);
}
{
// Add an entry that is a directory, that is wrong
List<String> entries = new ArrayList<>();
entries.add("classes");
entries.add("classes/class");
test(entries);
}
{
// Add an entry that is wrongly prefixed by /
// /bad//classes/class is the resource added
// /bad/classes/class is the metadata node built.
List<String> entries = new ArrayList<>();
entries.add("/classes/class");
test(entries);
}
{
// Trailing '/' is wrong
List<String> entries = new ArrayList<>();
entries.add("classes/class/");
test(entries);
}
{
// Too much '/' characters
List<String> entries = new ArrayList<>();
entries.add("classes//class/");
test(entries);
}
{
// Too much '/' characters
List<String> entries = new ArrayList<>();
entries.add("classes/////class/");
test(entries);
}
{
// Single '/' character
List<String> entries = new ArrayList<>();
entries.add("/");
test(entries);
}
{
// 2 '/' characters
List<String> entries = new ArrayList<>();
entries.add("//");
test(entries);
}
{
// 3 '/' characters
List<String> entries = new ArrayList<>();
entries.add("///");
test(entries);
}
{
// no character
List<String> entries = new ArrayList<>();
entries.add("");
test(entries);
}
{
// all together
List<String> entries = new ArrayList<>();
entries.add("");
entries.add("///");
entries.add("//");
entries.add("/");
entries.add("classes/////class/");
entries.add("classes//class/");
entries.add("classes/class/");
entries.add("/classes/class");
entries.add("classes");
entries.add("classes/class");
test(entries);
}
}
private static void test(List<String> entries) throws Exception {
TestArchive arch = new TestArchive("bad", entries);
Set<Archive> archives = new HashSet<>();
archives.add(arch);
ImageBuilder noopBuilder = new ImageBuilder() {
@Override
public DataOutputStream getJImageOutputStream() {
return new DataOutputStream(new ByteArrayOutputStream());
}
@Override
public ExecutableImage getExecutableImage() {
return null;
}
@Override
public void storeFiles(ResourcePool content) {
}
};
ImagePluginStack stack = new ImagePluginStack(noopBuilder, Collections.emptyList(),
null, false);
ImageFileCreator.create(archives, ByteOrder.nativeOrder(), stack);
}
}
|