package org.jboss.windup.tests.bootstrap.migrate; import org.jboss.windup.tests.bootstrap.AbstractBootstrapTestWithRules; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TemporaryFolder; import java.io.IOException; import java.nio.file.Files; import static org.junit.Assert.assertTrue; public class SourceModeExplodedAppTest extends AbstractBootstrapTestWithRules { @Rule public final TemporaryFolder tmp = new TemporaryFolder(); @Test public void sourceModeExplodedApp() throws IOException { bootstrap("--input", "../test-files/src_example", "--output", tmp.getRoot().getAbsolutePath(), "--source", "eap6", "--target", "eap7", "--sourceMode", "--explodedApp"); String indexHtml = new String(Files.readAllBytes(tmp.getRoot().toPath().resolve("index.html")), "UTF-8"); assertTrue(indexHtml.contains("Java Source")); assertTrue(indexHtml.contains("Maven XML")); } }