diff --git a/tycho-core/src/main/java/org/eclipse/tycho/p2/tools/director/shared/DirectorRuntime.java b/tycho-core/src/main/java/org/eclipse/tycho/p2/tools/director/shared/DirectorRuntime.java index bf3eb04b1e..40d88c6895 100644 --- a/tycho-core/src/main/java/org/eclipse/tycho/p2/tools/director/shared/DirectorRuntime.java +++ b/tycho-core/src/main/java/org/eclipse/tycho/p2/tools/director/shared/DirectorRuntime.java @@ -77,14 +77,35 @@ public interface Command { /** * Computes the destination of a director install based on a target environment - * + *

+ * Currently, this implements special handling for macOS and behaves as follows: + *

+ * * @param baseLocation + * the base location * @param env - * @return + * the target environment + * @return the adjusted location to conform to layouts required by the target environment */ public static File getDestination(File baseLocation, TargetEnvironment env) { - if (PlatformPropertiesUtils.OS_MACOSX.equals(env.getOs()) && !hasRequiredMacLayout(baseLocation)) { - return new File(baseLocation, "Eclipse.app/Contents/Eclipse/"); + if (PlatformPropertiesUtils.OS_MACOSX.equals(env.getOs())) { + if (hasRequiredMacLayout(baseLocation)) { + return baseLocation; + } else if (isMacOsAppBundleRoot(baseLocation)) { + return new File(baseLocation, "Contents/Eclipse/"); + } else { + return new File(baseLocation, "Eclipse.app/Contents/Eclipse/"); + } } return baseLocation; } @@ -100,9 +121,14 @@ private static boolean hasRequiredMacLayout(File folder) { File folder2 = folder.getParentFile(); if (folder2 != null && "Contents".equals(folder2.getName())) { File parent = folder2.getParentFile(); - return parent != null && parent.getName().endsWith(".app"); + return parent != null && isMacOsAppBundleRoot(parent); } } return false; } + + private static boolean isMacOsAppBundleRoot(File folder) { + return folder.getName().endsWith(".app"); + } + } diff --git a/tycho-its/projects/tycho-p2-director-plugin/director-goal-standalone/pom.xml b/tycho-its/projects/tycho-p2-director-plugin/director-goal-standalone/pom.xml index 9577921acf..ad63103197 100644 --- a/tycho-its/projects/tycho-p2-director-plugin/director-goal-standalone/pom.xml +++ b/tycho-its/projects/tycho-p2-director-plugin/director-goal-standalone/pom.xml @@ -7,28 +7,206 @@ 0.1.0-SNAPSHOT pom - - - - org.eclipse.tycho - tycho-p2-director-plugin - ${tycho-version} - - - run-director - - director - - package - - ${target-platform} - org.eclipse.osgi - target/dummy - - - - - - + + + director-windows + + + + org.eclipse.tycho + tycho-p2-director-plugin + ${tycho-version} + + + run-director-windows + + director + + package + + ${target-platform} + org.eclipse.osgi + target/productwindows + win32 + win32 + x86_64 + + + + + + + + + director-linux + + + + org.eclipse.tycho + tycho-p2-director-plugin + ${tycho-version} + + + run-director-linux + + director + + package + + ${target-platform} + org.eclipse.osgi + target/productlinux + linux + gtk + x86_64 + + + + + + + + + director-macos-destination-with-app-suffix + + + + org.eclipse.tycho + tycho-p2-director-plugin + ${tycho-version} + + + run-director-macos-destination-with-app-suffix + + director + + package + + ${target-platform} + org.eclipse.osgi + target/productmacos.app + macosx + cocoa + x86_64 + + + + + + + + + director-macos-destination-without-app-suffix + + + + org.eclipse.tycho + tycho-p2-director-plugin + ${tycho-version} + + + run-director-macos-destinationout-with-app-suffix + + director + + package + + ${target-platform} + org.eclipse.osgi + target/productmacos + macosx + cocoa + x86_64 + + + + + + + + + director-macos-destination-with-full-bundle-path + + + + org.eclipse.tycho + tycho-p2-director-plugin + ${tycho-version} + + + run-director-macos-destination-with-full-bundle-path + + director + + package + + ${target-platform} + org.eclipse.osgi + target/productmacos.app/Contents/Eclipse + macosx + cocoa + x86_64 + + + + + + + + + director-running-environment + + + + org.eclipse.tycho + tycho-p2-director-plugin + ${tycho-version} + + + run-director-running-environment + + director + + package + + ${target-platform} + org.eclipse.osgi + target/product + + + + + + + + + director-iconsistent-p2-arguments + + + + org.eclipse.tycho + tycho-p2-director-plugin + ${tycho-version} + + + run-director-iconsistent-p2-arguments + + director + + package + + ${target-platform} + org.eclipse.osgi + target/product + win32 + + + + + + + + + \ No newline at end of file diff --git a/tycho-its/src/test/java/org/eclipse/tycho/test/P2DirectorPluginTest.java b/tycho-its/src/test/java/org/eclipse/tycho/test/P2DirectorPluginTest.java index 9844723f5c..f288b47e02 100644 --- a/tycho-its/src/test/java/org/eclipse/tycho/test/P2DirectorPluginTest.java +++ b/tycho-its/src/test/java/org/eclipse/tycho/test/P2DirectorPluginTest.java @@ -1,15 +1,99 @@ package org.eclipse.tycho.test; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + +import java.nio.file.Files; +import java.nio.file.Path; + +import org.apache.maven.it.VerificationException; import org.apache.maven.it.Verifier; +import org.eclipse.tycho.TargetEnvironment; import org.junit.Test; public class P2DirectorPluginTest extends AbstractTychoIntegrationTest { @Test - public void testDirectorStandalone() throws Exception { + public void testDirectorStandaloneWindows() throws Exception { + Verifier verifier = getVerifier("tycho-p2-director-plugin/director-goal-standalone", true, true); + verifier.addCliOption("-Pdirector-windows"); + verifier.executeGoal("package"); + verifier.verifyErrorFreeLog(); + + assertTrue(Files.isDirectory(Path.of(verifier.getBasedir(), "target", "productwindows", "plugins"))); + } + + @Test + public void testDirectorStandaloneLinux() throws Exception { + Verifier verifier = getVerifier("tycho-p2-director-plugin/director-goal-standalone", true, true); + verifier.addCliOption("-Pdirector-linux"); + verifier.executeGoal("package"); + verifier.verifyErrorFreeLog(); + + assertTrue(Files.isDirectory(Path.of(verifier.getBasedir(), "target", "productlinux", "plugins"))); + } + + @Test + public void testDirectorStandaloneMacOsDestinationWithAppSuffix() throws Exception { + Verifier verifier = getVerifier("tycho-p2-director-plugin/director-goal-standalone", true, true); + verifier.addCliOption("-Pdirector-macos-destination-with-app-suffix"); + verifier.executeGoal("package"); + verifier.verifyErrorFreeLog(); + + assertTrue(Files.isDirectory( + Path.of(verifier.getBasedir(), "target", "productmacos.app", "Contents", "Eclipse", "plugins"))); + } + + @Test + public void testDirectorStandaloneMacOsDestinationWithoutAppSuffix() throws Exception { Verifier verifier = getVerifier("tycho-p2-director-plugin/director-goal-standalone", true, true); + verifier.addCliOption("-Pdirector-macos-destination-without-app-suffix"); verifier.executeGoal("package"); verifier.verifyErrorFreeLog(); + + assertTrue(Files.isDirectory(Path.of(verifier.getBasedir(), "target", "productmacos", "Eclipse.app", "Contents", + "Eclipse", "plugins"))); + } + + @Test + public void testDirectorStandaloneMacOsDestinationWithFullBundlePath() throws Exception { + Verifier verifier = getVerifier("tycho-p2-director-plugin/director-goal-standalone", true, true); + verifier.addCliOption("-Pdirector-macos-destination-with-full-bundle-path"); + verifier.executeGoal("package"); + verifier.verifyErrorFreeLog(); + + assertTrue(Files.isDirectory( + Path.of(verifier.getBasedir(), "target", "productmacos.app", "Contents", "Eclipse", "plugins"))); + } + + @Test + public void testDirectorStandaloneUsingRunningEnvironment() throws Exception { + Verifier verifier = getVerifier("tycho-p2-director-plugin/director-goal-standalone", true, true); + verifier.addCliOption("-Pdirector-running-environment"); + verifier.executeGoal("package"); + verifier.verifyErrorFreeLog(); + + if ("macosx".equals(TargetEnvironment.getRunningEnvironment().getOs())) { + assertTrue(Files.isDirectory(Path.of(verifier.getBasedir(), "target", "product", "Eclipse.app", "Contents", + "Eclipse", "plugins"))); + } else { + assertTrue(Files.isDirectory(Path.of(verifier.getBasedir(), "target", "product", "plugins"))); + } + } + + @Test + public void testDirectorStandaloneInconsistentP2Options() throws Exception { + Verifier verifier = getVerifier("tycho-p2-director-plugin/director-goal-standalone", true, true); + verifier.addCliOption("-Pdirector-iconsistent-p2-arguments"); + try { + verifier.executeGoal("package"); + fail(VerificationException.class.getName() + " expected"); + } catch (VerificationException e) { + } + verifier.verifyTextInLog( + "p2os / p2ws / p2arch must be mutually specified, p2os=win32 given, p2ws missing, p2arch missing"); + assertFalse(Files.isDirectory(Path.of(verifier.getBasedir(), "target", "product"))); } } diff --git a/tycho-p2-director-plugin/src/main/java/org/eclipse/tycho/plugins/p2/director/DirectorMojo.java b/tycho-p2-director-plugin/src/main/java/org/eclipse/tycho/plugins/p2/director/DirectorMojo.java index 617939ccbf..466c684c45 100644 --- a/tycho-p2-director-plugin/src/main/java/org/eclipse/tycho/plugins/p2/director/DirectorMojo.java +++ b/tycho-p2-director-plugin/src/main/java/org/eclipse/tycho/plugins/p2/director/DirectorMojo.java @@ -101,6 +101,23 @@ public class DirectorMojo extends AbstractMojo { /** * The folder in which the targeted product is located. + *

+ * Note: This applies special handling for macOS ({@link #p2os} macosx) and behaves + * as follows: + *

+ * This intentionally deviates from the stand-alone behavior of + * eclipse -application org.eclipse.equinox.p2.director in order to simplify + * cross-mojo workflows within Tycho (e.g. the same logic is applied by + * tycho-surefire-plugin:integration-test. */ @Parameter(property = "destination", required = true) private File destination; @@ -258,18 +275,32 @@ public class DirectorMojo extends AbstractMojo { /** * The OS to use when the profile is created. + *

+ * If this is specified, {@link #p2ws} and {@link #p2arch} must also be specified for + * consistency. + *

+ * If none of them are specified, the values are derived from the running environment. */ @Parameter(property = "p2.os") private String p2os; /** * The windowing system to use when the profile is created. + *

+ * If this is specified, {@link #p2os} and {@link #p2arch} must also be specified for + * consistency. + *

+ * If none of them are specified, the values are derived from the running environment. */ @Parameter(property = "p2.ws") private String p2ws; /** * The architecture to use when the profile is created. + *

+ * If this is specified, {@link #p2os} and {@link #p2ws} must also be specified for consistency. + *

+ * If none of them are specified, the values are derived from the running environment. */ @Parameter(property = "p2.arch") private String p2arch; @@ -359,9 +390,14 @@ public class DirectorMojo extends AbstractMojo { @Override public void execute() throws MojoExecutionException, MojoFailureException { + checkMutualP2Args(); + + TargetEnvironment targetEnv = this.p2os == null ? TargetEnvironment.getRunningEnvironment() + : new TargetEnvironment(p2os, p2ws, p2arch); + File adjustedDestination = DirectorRuntime.getDestination(this.destination, targetEnv); + CommandLineArguments args = new CommandLineArguments(); - args.addNonNull("-destination", - DirectorRuntime.getDestination(destination, TargetEnvironment.getRunningEnvironment())); + args.addNonNull("-destination", adjustedDestination); args.addNonNull("-metadatarepository", metadatarepositories); args.addNonNull("-artifactrepository", artifactrepositories); args.addNonNull("-repository", getRepositories()); @@ -400,6 +436,27 @@ public void execute() throws MojoExecutionException, MojoFailureException { args.addNonNull("-trustedAuthorities", trustedAuthorities); args.addNonNull("-trustedPGPKeys", trustedPGPKeys); args.addNonNull("-trustedCertificates", trustedCertificates); + + runDirector(args); + } + + private void checkMutualP2Args() throws MojoExecutionException { + Map mutualP2Options = new LinkedHashMap<>(); + mutualP2Options.put("p2os", p2os); + mutualP2Options.put("p2ws", p2ws); + mutualP2Options.put("p2arch", p2arch); + if (mutualP2Options.values().stream().anyMatch(Objects::nonNull)) { + if (mutualP2Options.values().stream().anyMatch(Objects::isNull)) { + String msg = "p2os / p2ws / p2arch must be mutually specified, " + // + mutualP2Options.entrySet().stream().map( + e -> e.getKey() + (e.getValue() == null ? " missing" : "=" + e.getValue() + " given")) + .collect(Collectors.joining(", ")); + throw new MojoExecutionException(msg); + } + } + } + + protected void runDirector(CommandLineArguments args) throws MojoFailureException { try { //FIXME forcefully init OSGi unless we have a fix for https://github.com/eclipse-equinox/p2/pull/439 agent.getService(IMetadataRepositoryManager.class); diff --git a/tycho-p2-director-plugin/src/test/java/org/eclipse/tycho/plugins/p2/director/DirectorMojoTest.java b/tycho-p2-director-plugin/src/test/java/org/eclipse/tycho/plugins/p2/director/DirectorMojoTest.java new file mode 100644 index 0000000000..7d5f24fc55 --- /dev/null +++ b/tycho-p2-director-plugin/src/test/java/org/eclipse/tycho/plugins/p2/director/DirectorMojoTest.java @@ -0,0 +1,166 @@ +package org.eclipse.tycho.plugins.p2.director; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + +import java.io.File; +import java.lang.reflect.Field; +import java.util.List; + +import org.apache.maven.plugin.MojoExecutionException; +import org.apache.maven.plugin.MojoFailureException; +import org.codehaus.plexus.util.ReflectionUtils; +import org.eclipse.tycho.p2.CommandLineArguments; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.TemporaryFolder; + +public class DirectorMojoTest { + + private DirectorMojo directorMojo; + + private CommandLineArguments recordedArgs; + + @Rule + public TemporaryFolder tempFolder = new TemporaryFolder(); + + @Before + public void setUp() throws Exception { + directorMojo = new DirectorMojo() { + @Override + protected void runDirector(CommandLineArguments args) throws MojoFailureException { + recordedArgs = args; + } + }; + } + + @Test + public void testMutualP2Options_NonePresent() throws Exception { + directorMojo.execute(); + + assertTrue(recordedArgs.asList().isEmpty()); + } + + @Test + public void testMutualP2Options_AllPresent() throws Exception { + setParameter(directorMojo, "p2os", "win32"); + setParameter(directorMojo, "p2ws", "win32"); + setParameter(directorMojo, "p2arch", "x86_64"); + + directorMojo.execute(); + + assertEquals(List.of("-p2.os", "win32", "-p2.ws", "win32", "-p2.arch", "x86_64"), recordedArgs.asList()); + } + + @Test + public void testMutualP2Options_OsMissing() throws Exception { + setParameter(directorMojo, "p2ws", "win32"); + setParameter(directorMojo, "p2arch", "x86_64"); + + try { + directorMojo.execute(); + fail(MojoExecutionException.class.getName() + " expected"); + } catch (MojoExecutionException e) { + assertEquals( + "p2os / p2ws / p2arch must be mutually specified, p2os missing, p2ws=win32 given, p2arch=x86_64 given", + e.getMessage()); + } + } + + @Test + public void testMutualP2Options_WsMissing() throws Exception { + setParameter(directorMojo, "p2os", "win32"); + setParameter(directorMojo, "p2arch", "x86_64"); + + try { + directorMojo.execute(); + fail(MojoExecutionException.class.getName() + " expected"); + } catch (MojoExecutionException e) { + assertEquals( + "p2os / p2ws / p2arch must be mutually specified, p2os=win32 given, p2ws missing, p2arch=x86_64 given", + e.getMessage()); + } + } + + @Test + public void testMutualP2Options_ArchAndOsMissing() throws Exception { + setParameter(directorMojo, "p2ws", "win32"); + + try { + directorMojo.execute(); + fail(MojoExecutionException.class.getName() + " expected"); + } catch (MojoExecutionException e) { + assertEquals( + "p2os / p2ws / p2arch must be mutually specified, p2os missing, p2ws=win32 given, p2arch missing", + e.getMessage()); + } + } + + @Test + public void testDestination_ArchLinux() throws Exception { + setParameter(directorMojo, "p2os", "linux"); + setParameter(directorMojo, "p2ws", "gtk"); + setParameter(directorMojo, "p2arch", "x86_64"); + setParameter(directorMojo, "destination", tempFolder.newFolder("work")); + + directorMojo.execute(); + + assertEquals(List.of("-destination", new File(tempFolder.getRoot(), "work").getAbsolutePath()), + recordedArgs.asList().subList(0, 2)); + } + + @Test + public void testDestination_ArchMacOs_acOS_NoAppBundleGiven() throws Exception { + setParameter(directorMojo, "p2os", "macosx"); + setParameter(directorMojo, "p2ws", "cocoa"); + setParameter(directorMojo, "p2arch", "x86_64"); + setParameter(directorMojo, "destination", tempFolder.newFolder("work")); + + directorMojo.execute(); + + assertEquals( + List.of("-destination", + new File(tempFolder.getRoot(), "work/Eclipse.app/Contents/Eclipse").getAbsolutePath()), + recordedArgs.asList().subList(0, 2)); + } + + @Test + public void testDestination_ArchMacOs_AppBundleRootGiven() throws Exception { + setParameter(directorMojo, "p2os", "macosx"); + setParameter(directorMojo, "p2ws", "cocoa"); + setParameter(directorMojo, "p2arch", "x86_64"); + setParameter(directorMojo, "destination", tempFolder.newFolder("work/Foo.app")); + + directorMojo.execute(); + + assertEquals( + List.of("-destination", + new File(tempFolder.getRoot(), "work/Foo.app/Contents/Eclipse").getAbsolutePath()), + recordedArgs.asList().subList(0, 2)); + } + + @Test + public void testDestination_ArchMacOs_InstallAreaInsideAppBundleGiven() throws Exception { + setParameter(directorMojo, "p2os", "macosx"); + setParameter(directorMojo, "p2ws", "cocoa"); + setParameter(directorMojo, "p2arch", "x86_64"); + setParameter(directorMojo, "destination", tempFolder.newFolder("work/Foo.app/Contents/Eclipse")); + + directorMojo.execute(); + + assertEquals( + List.of("-destination", + new File(tempFolder.getRoot(), "work/Foo.app/Contents/Eclipse").getAbsolutePath()), + recordedArgs.asList().subList(0, 2)); + } + + private static void setParameter(Object object, String variable, Object value) + throws IllegalArgumentException, IllegalAccessException { + Field field = ReflectionUtils.getFieldByNameIncludingSuperclasses(variable, object.getClass()); + field.setAccessible(true); + field.set(object, value); + } + +} diff --git a/tycho-surefire/tycho-surefire-plugin/src/main/java/org/eclipse/tycho/surefire/AbstractEclipseTestMojo.java b/tycho-surefire/tycho-surefire-plugin/src/main/java/org/eclipse/tycho/surefire/AbstractEclipseTestMojo.java index e357d68ede..31a46a97ab 100644 --- a/tycho-surefire/tycho-surefire-plugin/src/main/java/org/eclipse/tycho/surefire/AbstractEclipseTestMojo.java +++ b/tycho-surefire/tycho-surefire-plugin/src/main/java/org/eclipse/tycho/surefire/AbstractEclipseTestMojo.java @@ -442,7 +442,11 @@ public abstract class AbstractEclipseTestMojo extends AbstractTestMojo { * that require a fully p2-provisioned installation. To install a product IU, add it as extra * requirement to the test bundle (see example below). Note that this installation mode comes * with a certain performance overhead for executing the provisioning operations otherwise not - * required. + * required. Also note, that in this mode, in case the primary installation target environment + * is macOS, {@link #work} is post-processed to ensure a proper macOS layout. That is, + * Eclipse.app/Contents/Eclipse is automatically appended (or only + * Contents/Eclipse, if work already ends with + * .app). * * * Example configuration which will install product IU under test "example.product.id" using p2: @@ -690,9 +694,9 @@ private EquinoxInstallation createProvisionedInstallation() throws MojoExecution File workingDir = new File(project.getBuild().getDirectory(), "p2temp"); workingDir.mkdirs(); installationBuilder.setWorkingDir(workingDir); - installationBuilder.setDestination(work); List list = getTestTargetEnvironments(); TargetEnvironment testEnvironment = list.get(0); + installationBuilder.setDestination(work, testEnvironment); if (installAllEnvironments) { TargetPlatformConfiguration configuration = projectManager.getTargetPlatformConfiguration(project); List targetEnvironments = configuration.getEnvironments(); diff --git a/tycho-surefire/tycho-surefire-plugin/src/main/java/org/eclipse/tycho/surefire/provisioning/ProvisionedInstallationBuilder.java b/tycho-surefire/tycho-surefire-plugin/src/main/java/org/eclipse/tycho/surefire/provisioning/ProvisionedInstallationBuilder.java index 7be66e98b8..dad47150e2 100644 --- a/tycho-surefire/tycho-surefire-plugin/src/main/java/org/eclipse/tycho/surefire/provisioning/ProvisionedInstallationBuilder.java +++ b/tycho-surefire/tycho-surefire-plugin/src/main/java/org/eclipse/tycho/surefire/provisioning/ProvisionedInstallationBuilder.java @@ -73,14 +73,8 @@ public void addIUsToBeInstalled(List ius) { this.ius.addAll(ius); } - public void setDestination(File destination) { - // For new MacOS layouts turn a given 'RCP.app' dir into 'RCP.app/Contents/Eclipse' - // This is what is expected from Eclipse runtime as install root anyways. - if (destination.getName().endsWith(".app")) { - this.effectiveDestination = new File(destination, "Contents/Eclipse"); - } else { - this.effectiveDestination = destination; - } + public void setDestination(File destination, TargetEnvironment mainEnvironment) { + this.effectiveDestination = DirectorRuntime.getDestination(destination, mainEnvironment); } public File getEffectiveDestination() { @@ -99,7 +93,7 @@ public EquinoxInstallation install(TargetEnvironment main) throws Exception { validate(); publishPlainBundleJars(); executeDirector(main); - return new ProvisionedEquinoxInstallation(DirectorRuntime.getDestination(effectiveDestination, main)); + return new ProvisionedEquinoxInstallation(effectiveDestination); } private void publishPlainBundleJars() throws Exception { @@ -126,7 +120,7 @@ private void executeDirector(TargetEnvironment env) throws MojoFailureException for (String iu : ius) { command.addUnitToInstall(iu); } - command.setDestination(DirectorRuntime.getDestination(effectiveDestination, env)); + command.setDestination(effectiveDestination); command.setProfileName(profileName); command.setInstallFeatures(installFeatures); command.setEnvironment(env); diff --git a/tycho-surefire/tycho-surefire-plugin/src/test/java/org/eclipse/tycho/surefire/provisioning/ProvisionedInstallationBuilderTest.java b/tycho-surefire/tycho-surefire-plugin/src/test/java/org/eclipse/tycho/surefire/provisioning/ProvisionedInstallationBuilderTest.java index 65d734ce59..a0f6aff834 100644 --- a/tycho-surefire/tycho-surefire-plugin/src/test/java/org/eclipse/tycho/surefire/provisioning/ProvisionedInstallationBuilderTest.java +++ b/tycho-surefire/tycho-surefire-plugin/src/test/java/org/eclipse/tycho/surefire/provisioning/ProvisionedInstallationBuilderTest.java @@ -16,12 +16,19 @@ import java.io.File; +import org.eclipse.tycho.PlatformPropertiesUtils; +import org.eclipse.tycho.TargetEnvironment; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TemporaryFolder; public class ProvisionedInstallationBuilderTest { + private static final TargetEnvironment ENV_LINUX = new TargetEnvironment(PlatformPropertiesUtils.OS_LINUX, + PlatformPropertiesUtils.WS_GTK, PlatformPropertiesUtils.ARCH_X86_64); + private static final TargetEnvironment ENV_MACOS = new TargetEnvironment(PlatformPropertiesUtils.OS_MACOSX, + PlatformPropertiesUtils.WS_COCOA, PlatformPropertiesUtils.ARCH_X86_64); + @Rule public TemporaryFolder tempDir = new TemporaryFolder(); @@ -30,18 +37,37 @@ public void setDestination_LayoutNormal() throws Exception { ProvisionedInstallationBuilder builder = new ProvisionedInstallationBuilder(null, null); File work = tempDir.newFolder("work"); - builder.setDestination(work); + builder.setDestination(work, ENV_LINUX); assertEquals(work, builder.getEffectiveDestination()); } @Test - public void setDestination_LayoutMacOS() throws Exception { + public void setDestination_LayoutMacOS_NoAppBundleGiven() throws Exception { + ProvisionedInstallationBuilder builder = new ProvisionedInstallationBuilder(null, null); + + File work = tempDir.newFolder("work"); + builder.setDestination(work, ENV_MACOS); + File destinationExpected = new File(work, "Eclipse.app/Contents/Eclipse"); + assertEquals(destinationExpected, builder.getEffectiveDestination()); + } + + @Test + public void setDestination_LayoutMacOS_AppBundleRootGiven() throws Exception { ProvisionedInstallationBuilder builder = new ProvisionedInstallationBuilder(null, null); File work = tempDir.newFolder("work.app"); - builder.setDestination(work); + builder.setDestination(work, ENV_MACOS); File destinationExpected = new File(work, "Contents/Eclipse"); assertEquals(destinationExpected, builder.getEffectiveDestination()); } + @Test + public void setDestination_LayoutMacOS_InstallAreaInsideAppBundleGiven() throws Exception { + ProvisionedInstallationBuilder builder = new ProvisionedInstallationBuilder(null, null); + + File work = tempDir.newFolder("work.app/Contents/Eclipse"); + builder.setDestination(work, ENV_MACOS); + assertEquals(work, builder.getEffectiveDestination()); + } + }