org.gradle.nativeplatform.test.xctest.tasks.InstallXCTestBundle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.nativeplatform.test.xctest.tasks;
import com.google.common.io.Files;
import org.apache.commons.io.FilenameUtils;
import org.gradle.api.Action;
import org.gradle.api.DefaultTask;
import org.gradle.api.Incubating;
import org.gradle.api.file.CopySpec;
import org.gradle.api.file.DirectoryProperty;
import org.gradle.api.file.RegularFile;
import org.gradle.api.file.RegularFileProperty;
import org.gradle.api.internal.file.FileOperations;
import org.gradle.api.model.ObjectFactory;
import org.gradle.api.provider.Provider;
import org.gradle.api.tasks.InputFile;
import org.gradle.api.tasks.Internal;
import org.gradle.api.tasks.Optional;
import org.gradle.api.tasks.OutputDirectory;
import org.gradle.api.tasks.PathSensitive;
import org.gradle.api.tasks.PathSensitivity;
import org.gradle.api.tasks.SkipWhenEmpty;
import org.gradle.api.tasks.TaskAction;
import org.gradle.internal.nativeintegration.filesystem.FileSystem;
import org.gradle.nativeplatform.toolchain.internal.xcode.SwiftStdlibToolLocator;
import org.gradle.process.ExecSpec;
import org.gradle.util.GFileUtils;
import javax.annotation.Nullable;
import javax.inject.Inject;
import java.io.File;
import java.io.IOException;
import java.nio.charset.Charset;
import java.util.concurrent.Callable;
/**
* Creates a XCTest bundle with a run script so it can be easily executed.
*
* @since 4.4
*/
@Incubating
public class InstallXCTestBundle extends DefaultTask {
private final DirectoryProperty installDirectory;
private final RegularFileProperty bundleBinaryFile;
public InstallXCTestBundle() {
ObjectFactory objectFactory = getProject().getObjects();
installDirectory = objectFactory.directoryProperty();
bundleBinaryFile = objectFactory.fileProperty();
// A work around for not being able to skip the task when an input _file_ does not exist
dependsOn(bundleBinaryFile);
}
@Inject
protected SwiftStdlibToolLocator getSwiftStdlibToolLocator() {
throw new UnsupportedOperationException();
}
@Inject
protected FileSystem getFileSystem() {
throw new UnsupportedOperationException();
}
@Inject
protected FileOperations getFileOperations() {
throw new UnsupportedOperationException();
}
@TaskAction
void install() throws IOException {
File bundleFile = bundleBinaryFile.get().getAsFile();
File bundleDir = installDirectory.get().file(bundleFile.getName() + ".xctest").getAsFile();
installToDir(bundleDir, bundleFile);
File runScript = getRunScriptFile().get().getAsFile();
String runScriptText =
"#!/bin/sh"
+ "\nAPP_BASE_NAME=`dirname \"$0\"`"
+ "\nXCTEST_LOCATION=`xcrun --find xctest`"
+ "\nexec \"$XCTEST_LOCATION\" \"$@\" \"$APP_BASE_NAME/" + bundleDir.getName() + "\""
+ "\n";
GFileUtils.writeFile(runScriptText, runScript);
getFileSystem().chmod(runScript, 0755);
}
private void installToDir(final File bundleDir, final File bundleFile) throws IOException {
getFileOperations().sync(new Action() {
@Override
public void execute(CopySpec copySpec) {
copySpec.from(bundleFile, new Action() {
@Override
public void execute(CopySpec copySpec) {
copySpec.into("Contents/MacOS");
}
});
copySpec.into(bundleDir);
}
});
File outputFile = new File(bundleDir, "Contents/Info.plist");
Files.asCharSink(outputFile, Charset.forName("UTF-8")).write("\n"
+ "\n"
+ "\n"
+ " \n"
+ " ");
getProject().exec(new Action() {
@Override
public void execute(ExecSpec execSpec) {
execSpec.setWorkingDir(bundleDir);
execSpec.executable(getSwiftStdlibToolLocator().find());
execSpec.args(
"--copy",
"--scan-executable", bundleFile.getAbsolutePath(),
"--destination", new File(bundleDir, "Contents/Frameworks").getAbsolutePath(),
"--platform", "macosx",
"--resource-destination", new File(bundleDir, "Contents/Resources").getAbsolutePath(),
"--scan-folder", new File(bundleDir, "Contents/Frameworks").getAbsolutePath()
);
}
}).assertNormalExitValue();
}
/**
* Returns the script file that can be used to run the install image.
*/
@Internal
public Provider getRunScriptFile() {
return installDirectory.file(getProject().provider(new Callable() {
@Override
public CharSequence call() throws Exception {
return FilenameUtils.removeExtension(bundleBinaryFile.get().getAsFile().getName());
}
}));
}
/**
* Returns the bundle binary file property.
*/
@Internal("covered by getBundleBinary()")
public RegularFileProperty getBundleBinaryFile() {
return bundleBinaryFile;
}
@SkipWhenEmpty
@Nullable
@Optional
@PathSensitive(PathSensitivity.NAME_ONLY)
@InputFile
protected File getBundleBinary() {
RegularFile bundle = getBundleBinaryFile().get();
File bundleFile = bundle.getAsFile();
if (!bundleFile.exists()) {
return null;
}
return bundleFile;
}
/**
* Returns the install directory property.
*/
@OutputDirectory
public DirectoryProperty getInstallDirectory() {
return installDirectory;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy