io.activej.promise.TestUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of activej-promise Show documentation
Show all versions of activej-promise Show documentation
A convenient way to organize asynchronous code.
Promises are a faster and more efficient version of JavaScript's Promise and Java's CompletionStage's.
/*
* Copyright (C) 2020 ActiveJ LLC.
*
* 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 io.activej.promise;
import io.activej.eventloop.Eventloop;
import io.activej.reactor.Reactor;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
public class TestUtils {
public static T await(Promise promise) {
try {
return compute(promise);
} catch (ExecutionException e) {
throw new AssertionError(e.getCause());
}
}
@SafeVarargs
public static Void await(Promise... promises) {
return await(Promises.all(promises));
}
@SuppressWarnings("unchecked")
public static E awaitException(Promise promise) {
try {
compute(promise);
} catch (ExecutionException e) {
return (E) e.getCause();
} catch (Exception e) {
return (E) e;
}
throw new AssertionError("Promise did not fail");
}
@SafeVarargs
public static E awaitException(Promise... promises) {
return awaitException(Promises.all(promises));
}
private static T compute(Promise promise) throws ExecutionException {
Future future = promise.toCompletableFuture();
Eventloop eventloop = Reactor.getCurrentReactor();
eventloop.run();
try {
return future.get();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
throw new AssertionError(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy