org.dmfs.jems.mocks.MockFunction Maven / Gradle / Ivy
/*
* Copyright 2017 dmfs GmbH
*
*
* 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.dmfs.jems.mocks;
import org.dmfs.iterables.SingletonIterable;
import org.dmfs.iterables.composite.PairZipped;
import org.dmfs.iterables.decorators.Filtered;
import org.dmfs.jems.iterable.elementary.Seq;
import org.dmfs.iterators.Filter;
import org.dmfs.iterators.Function;
import org.dmfs.jems.pair.Pair;
import org.dmfs.jems.pair.elementary.ValuePair;
import org.dmfs.optional.First;
import org.hamcrest.Matcher;
import java.util.NoSuchElementException;
import static org.hamcrest.CoreMatchers.sameInstance;
/**
* Mock {@link Function} that can be used in tests as a convenience instead of 'manually' set up expectations for (multiple) calls.
*
* It can be set up with Argument-Value {@link Pair}s so that when it is called it returns the Value from the {@link Pair} of the matching Argument.
*
* For invocations with arguments that don't match any of the provided ones, it throws {@link AssertionError}.
*
* @author Gabor Keszthelyi
*/
public final class MockFunction implements Function
{
private final Iterable, Value>> mPairs;
public MockFunction(Iterable, Value>> pairs)
{
mPairs = pairs;
}
@SafeVarargs
public MockFunction(Pair, Value>... pairs)
{
this(new Seq<>(pairs));
}
public MockFunction(Iterable> args, Iterable values)
{
this(new PairZipped<>(args, values));
}
public MockFunction(Matcher argumentMatcher, Value value)
{
this(new SingletonIterable, Value>>(new ValuePair<>(argumentMatcher, value)));
}
public MockFunction(Argument argument, Value value)
{
this(sameInstance(argument), value);
}
@Override
public Value apply(final Argument argument)
{
try
{
return new First<>(
new Filtered<>(mPairs, new Filter, Value>>()
{
@Override
public boolean iterate(Pair, Value> pair)
{
return pair.left().matches(argument);
}
}
)).value().right();
}
catch (NoSuchElementException e)
{
throw new AssertionError("MockFunction called with unexpected argument: " + argument);
}
}
}