blob: 7d389512521f4052e3269e560e68549df6dee240 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.wayang.java.test;
import static org.mockito.Mockito.mock;
import java.util.Collection;
import java.util.stream.Stream;
import org.apache.wayang.core.api.Configuration;
import org.apache.wayang.core.plan.executionplan.Channel;
import org.apache.wayang.java.channels.CollectionChannel;
import org.apache.wayang.java.channels.StreamChannel;
import org.apache.wayang.java.execution.JavaExecutor;
import org.junit.Before;
/**
* Utility to create {@link Channel}s in tests.
*/
public class ChannelFactory {
private static JavaExecutor executor;
@Before
public void setUp() {
executor = mock(JavaExecutor.class);
}
public static StreamChannel.Instance createStreamChannelInstance(Configuration configuration) {
return (StreamChannel.Instance) StreamChannel.DESCRIPTOR
.createChannel(null, configuration)
.createInstance(executor, null, -1);
}
public static StreamChannel.Instance createStreamChannelInstance(Stream<?> stream, Configuration configuration) {
StreamChannel.Instance instance = createStreamChannelInstance(configuration);
instance.accept(stream);
return instance;
}
public static CollectionChannel.Instance createCollectionChannelInstance(Configuration configuration) {
return (CollectionChannel.Instance) CollectionChannel.DESCRIPTOR
.createChannel(null, configuration)
.createInstance(executor, null, -1);
}
public static CollectionChannel.Instance createCollectionChannelInstance(Collection<?> collection, Configuration configuration) {
CollectionChannel.Instance instance = createCollectionChannelInstance(configuration);
instance.accept(collection);
return instance;
}
}