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
|
/*
* Copyright (c) 2015, 2018, 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.nio.file.Path;
import java.util.ArrayList;
import java.util.Collections;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import jdk.tools.jlink.internal.PluginRepository;
import jdk.tools.jlink.plugin.Plugin;
import jdk.tools.jlink.plugin.PluginException;
import jdk.tools.jlink.plugin.ResourcePool;
import jdk.tools.jlink.plugin.ResourcePoolBuilder;
import tests.Helper;
/*
* @test
* @summary Test plugins enabled by default
* @author Jean-Francois Denise
* @requires vm.compMode != "Xcomp"
* @library ../lib
* @modules java.base/jdk.internal.jimage
* jdk.jdeps/com.sun.tools.classfile
* jdk.jlink/jdk.tools.jlink.internal
* jdk.jlink/jdk.tools.jlink.plugin
* jdk.jlink/jdk.tools.jmod
* jdk.jlink/jdk.tools.jimage
* jdk.compiler
* @build tests.*
* @run main/othervm DefaultProviderTest
*/
public class DefaultProviderTest {
private static final String NAME = "disable-toto";
private final static Map<String, Object> expectedOptions = new HashMap<>();
static {
expectedOptions.put("disable-toto", "false");
expectedOptions.put("option1", "value1");
expectedOptions.put("option2", "value2");
}
private static class Custom implements Plugin {
private boolean enabled = true;
@Override
public Set<State> getState() {
return enabled ? EnumSet.of(State.AUTO_ENABLED, State.FUNCTIONAL)
: EnumSet.of(State.DISABLED);
}
@Override
public ResourcePool transform(ResourcePool in, ResourcePoolBuilder out) {
if (!enabled) {
throw new PluginException(NAME + " was set");
}
DefaultProviderTest.isNewPluginsCalled = true;
in.transformAndCopy(content -> {
return content;
}, out);
return out.build();
}
@Override
public String getName() {
return NAME;
}
@Override
public String getDescription() {
return NAME;
}
@Override
public boolean hasArguments() {
return true;
}
@Override
public void configure(Map<String, String> config) {
if (config.containsKey(NAME)) {
enabled = !Boolean.parseBoolean(config.get(NAME));
}
if (enabled) {
DefaultProviderTest.receivedOptions = config;
} else {
DefaultProviderTest.receivedOptions = null;
}
}
}
private static boolean isNewPluginsCalled;
private static Map<String, String> receivedOptions;
private static void reset() {
isNewPluginsCalled = false;
receivedOptions = null;
}
public static void main(String[] args) throws Exception {
Helper helper = Helper.newHelper();
if (helper == null) {
System.err.println("Test not run");
return;
}
helper.generateDefaultModules();
test(helper, new Custom());
}
private static void test(Helper helper, Plugin plugin) throws Exception {
PluginRepository.registerPlugin(plugin);
{
String[] userOptions = {};
Path imageDir = helper.generateDefaultImage(userOptions, "composite2").assertSuccess();
helper.checkImage(imageDir, "composite2", null, null);
if (!isNewPluginsCalled) {
throw new Exception("Should have been called");
}
reset();
}
{
String[] userOptions = {"--disable-toto=false:option1=value1:option2=value2"};
Path imageDir = helper.generateDefaultImage(userOptions, "composite2").assertSuccess();
helper.checkImage(imageDir, "composite2", null, null);
if (!isNewPluginsCalled) {
throw new Exception("Should have been called");
}
if (!receivedOptions.equals(expectedOptions)) {
throw new Exception("Optional options " + receivedOptions + " are not expected one "
+ expectedOptions);
}
System.err.println("OPTIONS " + receivedOptions);
reset();
}
{
String[] userOptions = {"--disable-toto=true:option1=value1"};
Path imageDir = helper.generateDefaultImage(userOptions, "composite2").assertSuccess();
helper.checkImage(imageDir, "composite2", null, null);
if (isNewPluginsCalled) {
throw new Exception("Should not have been called");
}
if (receivedOptions != null) {
throw new Exception("Optional options are not expected");
}
reset();
}
}
}
|