/* * Copyright (c) 2002-2020 Manorrock.com. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holder nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ package cloud.piranha.microprofile.jwt.tck.extension; import org.jboss.arquillian.container.test.spi.client.deployment.ApplicationArchiveProcessor; import org.jboss.arquillian.test.spi.TestClass; import org.jboss.shrinkwrap.api.Archive; import org.jboss.shrinkwrap.api.Node; import org.jboss.shrinkwrap.api.spec.WebArchive; public class ConfigPropertiesAdder implements ApplicationArchiveProcessor { @Override public void process(Archive<?> archive, TestClass testClass) { if (!(archive instanceof WebArchive)) { return; } process((WebArchive) archive); } public void process(WebArchive webArchive) { Node metaInfConfig = webArchive.get("/META-INF/microprofile-config.properties"); if (metaInfConfig == null) { if (webArchive.get("/WEB-INF/classes/publicKey.pem") != null) { webArchive.addAsResource("META-INF/public-key.properties", "META-INF/microprofile-config.properties"); } else { webArchive.addAsResource("META-INF/microprofile-config.properties"); } } else { webArchive.addAsResource(metaInfConfig.getAsset(), "META-INF/microprofile-config.properties"); webArchive.delete("/META-INF/microprofile-config.properties"); } System.out.printf("WebArchive: %s\n", webArchive.toString(true)); } }