nebula.test.functional.internal.DefaultGradleRunner.groovy Maven / Gradle / Ivy
/*
* Copyright 2012 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 nebula.test.functional.internal
import groovy.transform.CompileStatic
import nebula.test.functional.ExecutionResult
import nebula.test.functional.GradleRunner
import nebula.test.functional.PreExecutionAction
@CompileStatic
class DefaultGradleRunner implements GradleRunner {
private final GradleHandleFactory handleFactory;
public DefaultGradleRunner(GradleHandleFactory handleFactory) {
this.handleFactory = handleFactory;
}
@Override
public ExecutionResult run(File projectDir, List arguments, List jvmArguments = [], List preExecutionActions = []) {
return handle(projectDir, arguments, jvmArguments, preExecutionActions).run();
}
@Override
public GradleHandle handle(File projectDir, List arguments, List jvmArguments = [], List preExecutionActions = []) {
preExecutionActions?.each { it.execute(projectDir, arguments, jvmArguments) }
return handleFactory.start(projectDir, arguments, jvmArguments);
}
}