All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fuwjax.oss.util.assertion.Assertions Maven / Gradle / Ivy

Go to download

Java 8 Functional interface extentions, collection decorators, I/O interfaces, and assertions

The newest version!
/*
 * Copyright (C) 2015 fuwjax.org ([email protected])
 *
 * 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.fuwjax.oss.util.assertion;

import org.fuwjax.oss.util.RunWrapException;
import org.fuwjax.oss.util.collection.ReflectList;

import java.util.List;
import java.util.Objects;
import java.util.concurrent.Callable;
import java.util.function.Predicate;
import java.util.function.Supplier;

import static org.fuwjax.oss.util.assertion.Assertion.toExpected;
import static org.fuwjax.oss.util.function.Functions.runnable;

/**
 * Created by fuwjax on 1/25/15.
 */
public class Assertions {
    public static  void assertThat(T value, Assertion assertion){
        assertion.expects(value);
    }

    public static  Assertion asserts(Supplier expected, Predicate test){
        return new Assertion(){
            @Override
            public Supplier expected() {
                return expected;
            }

            @Override
            public boolean test(T value) {
                return test.test(value);
            }
        };
    }

    public static Assertion isA(Class type){
        assertThat(type, isNotNull());
        return asserts(() -> "instance of "+ toExpected(type).get(), type::isInstance);
    }

    public static Assertion is(Supplier expected, Object value){
        if(value == null){
            return isNull(expected);
        }
        assertThat(value, isA(Throwable.class).negate());
        if(value.getClass().isArray()){
            List list = ReflectList.asList(value);
            return isJustA(value.getClass()).and(asserts(expected, list::equals).of(ReflectList::asList));
        }
        return asserts(expected, t -> Objects.equals(value, t));
    }

    public static Assertion is(Object value){
        return is(toExpected(value), value);
    }

    public static Assertion isAny(){
        return asserts(() -> "is anything", o -> true);
    }

    public static Assertion isNotNull(){
        return asserts(() -> "not null", t -> t != null);
    }

    public static  Assertion notNull(Assertion assertion){
        return asserts(assertion.expected(), t -> t != null && assertion.test(t));
    }

    public static Assertion isNull(Supplier message){
        return asserts(message, t -> t == null);
    }

    public static Assertion isNull(){
        return isNull(() -> "null");
    }

    public static Assertion isJustA(Class type){
        assertThat(type, isNotNull());
        return isNotNull().and(is(type).of(() -> "direct instance of "+toExpected(type).get(), Object::getClass));
    }

    public static Assertion> isAssignableFrom(Class type){
        assertThat(type, isNotNull());
        return asserts(() -> "assignable from "+toExpected(type).get(), type::isAssignableFrom);
    }

    public static Assertion isException(Throwable expected){
        return expected == null ? isNull() : isException(is(expected.getClass()), is(expected.getMessage()), isException(expected.getCause()));
    }

    public static Assertion isException(Assertion> type, Assertion message){
        return isException(type, message, isAny());
    }

    public static Assertion isException(Assertion> type, Assertion message, Assertion cause){
        assertThat(type, isNotNull());
        assertThat(message, isNotNull());
        assertThat(cause, isNotNull());
        return notNull(type.of(() -> "instance of " + type.expected().get(), Throwable::getClass))
                .and(message.of(() -> "message is [" + message.expected().get() + "]", Throwable::getMessage))
                .and(cause.of(() -> "cause is [" + cause.expected().get() + "]", Throwable::getCause));
    }

    public static Assertion fails(){
        return failsWith(isNotNull());
    }

    public static Assertion> failsToReturn(){
        return failsToReturnWith(isNotNull());
    }

    public static Assertion failsWith(Assertion cause){
        return failsToReturnWith(cause).of(r -> () -> {r.run(); return null;});
    }

    public static Assertion> failsToReturnWith(Assertion cause){
        return new Assertion>(){
            @Override
            public boolean test(Callable value) {
                try {
                    value.call();
                    return false;
                } catch(Throwable t){
                    try {
                        cause.expects(t);
                        return true;
                    }catch(AssertionError e){
                        return false;
                    }
                }
            }

            @Override
            public Supplier expected() {
                return cause.expected();
            }

            @Override
            public void expects(Callable value) throws AssertionError {
                try{
                    value.call();
                } catch(Throwable t){
                    try {
                        cause.expects(t);
                        return;
                    }catch(AssertionError e){
                        e.initCause(t);
                        throw e;
                    }
                }
                throw cause.fail(null);
            }
        };
    }
}