testasyouthink.execution.Execution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-as-you-think-core Show documentation
Show all versions of test-as-you-think-core Show documentation
The TestAsYouThink Core is a DSL style fluent API in Java to promote good coding practices in tests.
/*-
* #%L
* Test As You Think
* %%
* Copyright (C) 2017 Xavier Pigeon and TestAsYouThink contributors
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
package testasyouthink.execution;
import testasyouthink.function.CheckedConsumer;
import testasyouthink.function.CheckedFunction;
import testasyouthink.function.CheckedSupplier;
import testasyouthink.function.CheckedSuppliers.CheckedArraySupplier;
import testasyouthink.function.Functions;
import testasyouthink.preparation.PreparationError;
import java.util.Optional;
import java.util.function.Supplier;
public class Execution<$SystemUnderTest, $Result> {
public static final String EXECUTION_FAILURE_MESSAGE = "Fails to execute the target method " //
+ "of the system under test because of an unexpected failure!";
private static final Functions FUNCTIONS = Functions.INSTANCE;
private final Event<$SystemUnderTest, $Result> event;
public Execution(Supplier<$SystemUnderTest> givenSutStep, CheckedFunction<$SystemUnderTest, $Result> whenStep) {
event = new Event<>(givenSutStep, whenStep);
}
public Execution(Supplier<$SystemUnderTest> givenSutStep, CheckedConsumer<$SystemUnderTest> whenStep) {
event = new Event<>(givenSutStep, FUNCTIONS.toFunction(whenStep));
}
public static <$Result> Execution of(CheckedSupplier<$Result> whenStep) {
return new Execution<>(noExplicitSut(), FUNCTIONS.toCheckedFunction(whenStep));
}
public static <$Element> Execution of(CheckedArraySupplier<$Element> whenStep) {
return new Execution<>(noExplicitSut(), FUNCTIONS.toCheckedFunction(whenStep));
}
private static Supplier noExplicitSut() {
return () -> null;
}
public Optional<$Result> run() {
try {
return Optional.ofNullable(event.happen());
} catch (PreparationError preparationError) {
throw preparationError;
} catch (Throwable throwable) {
throw new ExecutionError(EXECUTION_FAILURE_MESSAGE, throwable);
}
}
}