blob: aa3337665b6d6f196fb0b9b0dab1e225bc664b84 [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.iejoin.operators;
import org.apache.spark.api.java.JavaSparkContext;
import org.junit.Before;
import org.apache.wayang.core.api.Configuration;
import org.apache.wayang.core.api.Job;
import org.apache.wayang.core.optimizer.DefaultOptimizationContext;
import org.apache.wayang.core.optimizer.OptimizationContext;
import org.apache.wayang.core.plan.wayangplan.Operator;
import org.apache.wayang.core.platform.ChannelInstance;
import org.apache.wayang.core.platform.CrossPlatformExecutor;
import org.apache.wayang.iejoin.test.ChannelFactory;
import org.apache.wayang.java.channels.CollectionChannel;
import org.apache.wayang.spark.channels.RddChannel;
import org.apache.wayang.spark.execution.SparkExecutor;
import org.apache.wayang.spark.operators.SparkExecutionOperator;
import org.apache.wayang.spark.platform.SparkPlatform;
import java.util.Collection;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
/**
* Test base for {@link SparkExecutionOperator} tests.
*/
public class SparkOperatorTestBase {
protected Configuration configuration;
protected SparkExecutor sparkExecutor;
protected Job job;
@Before
public void setUp() {
this.configuration = new Configuration();
this.job = mock(Job.class);
when(this.job.getConfiguration()).thenReturn(this.configuration);
DefaultOptimizationContext optimizationContext = new DefaultOptimizationContext(this.job);
when(this.job.getOptimizationContext()).thenReturn(optimizationContext);
CrossPlatformExecutor crossPlatformExecutor = new CrossPlatformExecutor(
job, this.configuration.getInstrumentationStrategyProvider().provide()
);
when(this.job.getCrossPlatformExecutor()).thenReturn(crossPlatformExecutor);
this.sparkExecutor = (SparkExecutor) SparkPlatform.getInstance().getExecutorFactory().create(this.job);
}
protected OptimizationContext.OperatorContext createOperatorContext(Operator operator) {
OptimizationContext optimizationContext = new DefaultOptimizationContext(job);
return optimizationContext.addOneTimeOperator(operator);
}
protected void evaluate(SparkExecutionOperator operator,
ChannelInstance[] inputs,
ChannelInstance[] outputs) {
operator.evaluate(inputs, outputs, this.sparkExecutor, this.createOperatorContext(operator));
}
RddChannel.Instance createRddChannelInstance() {
return ChannelFactory.createRddChannelInstance(this.configuration);
}
RddChannel.Instance createRddChannelInstance(Collection<?> collection) {
return ChannelFactory.createRddChannelInstance(collection, this.sparkExecutor, this.configuration);
}
protected CollectionChannel.Instance createCollectionChannelInstance() {
return ChannelFactory.createCollectionChannelInstance(this.configuration);
}
protected CollectionChannel.Instance createCollectionChannelInstance(Collection<?> collection) {
return ChannelFactory.createCollectionChannelInstance(collection, this.configuration);
}
public JavaSparkContext getSC() {
return this.sparkExecutor.sc;
}
}