blob: 92384f259ab1c8ac7709e6f4280b9d79e88ff1a4 [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.tests;
import org.junit.Assert;
import org.junit.Test;
import org.apache.wayang.api.JavaPlanBuilder;
import org.apache.wayang.api.dataquanta.builder.LoadCollectionDataQuantaBuilder;
import org.apache.wayang.api.dataquanta.builder.MapDataQuantaBuilder;
import org.apache.wayang.core.api.WayangContext;
import org.apache.wayang.core.util.WayangArrays;
import org.apache.wayang.java.Java;
import org.apache.wayang.spark.Spark;
import java.util.ArrayList;
import java.util.Arrays;
/**
* This class hosts and documents some tests for bugs that we encountered. Ultimately, we want to avoid re-introducing
* already encountered and fixed bugs.
*/
public class RegressionIT {
/**
* This plan revealed an issue with the {@link org.apache.wayang.core.optimizer.channels.ChannelConversionGraph.ShortestTreeSearcher}.
*/
@Test
public void testCollectionToRddAndBroadcast() {
WayangContext wayangContext = new WayangContext().with(Spark.basicPlugin()).with(Java.basicPlugin());
JavaPlanBuilder planBuilder = new JavaPlanBuilder(wayangContext, "testCollectionToRddAndBroadcast");
LoadCollectionDataQuantaBuilder<String> collection = planBuilder
.loadCollection(Arrays.asList("a", "bc", "def"))
.withTargetPlatform(Java.platform())
.withName("collection");
MapDataQuantaBuilder<String, Integer> map1 = collection
.map(String::length)
.withTargetPlatform(Spark.platform());
MapDataQuantaBuilder<Integer, Integer> map2 = planBuilder
.loadCollection(WayangArrays.asList(-1))
.map(i -> i)
.withBroadcast(collection, "broadcast")
.withTargetPlatform(Spark.platform());
ArrayList<Integer> result = new ArrayList<>(map1.union(map2).collect());
result.sort(Integer::compareTo);
Assert.assertEquals(
WayangArrays.asList(-1, 1, 2, 3),
result
);
}
}