blob: 8921a2672673dfefd3f5970ff7a3c4ac7ac57276 [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.basic.data.Tuple2;
import org.apache.wayang.core.api.WayangContext;
import org.apache.wayang.core.plan.wayangplan.WayangPlan;
import org.apache.wayang.giraph.Giraph;
import org.apache.wayang.java.Java;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;
/**
* Integration tests for the integration of Giraph with Wayang.
*/
public class GiraphIntegrationIT {
//@Test
//TODO validate if this test is helpfull
public void testPageRankWithJava() {
List<Tuple2<Character, Float>> pageRanks = new ArrayList<>();
WayangPlan wayangPlan = WayangPlans.pageRankWithDictionaryCompression(pageRanks);
WayangContext rc = new WayangContext().with(Java.basicPlugin()).with(Giraph.plugin());
rc.execute(wayangPlan);
pageRanks.stream().forEach(System.out::println);
this.check(pageRanks);
}
@Test
public void testPageRankWithoutGiraph() {
List<Tuple2<Character, Float>> pageRanks = new ArrayList<>();
WayangPlan wayangPlan = WayangPlans.pageRankWithDictionaryCompression(pageRanks);
WayangContext rc = new WayangContext()
.with(Java.basicPlugin())
.with(Java.graphPlugin());
rc.execute(wayangPlan);
this.check(pageRanks);
}
private void check(List<Tuple2<Character, Float>> pageRanks) {
final Map<Character, Float> solutions = WayangPlans.pageRankWithDictionaryCompressionSolution();
Set<Character> vertices = pageRanks.stream().map(Tuple2::getField0).collect(Collectors.toSet());
solutions.forEach((k, v) -> Assert.assertTrue(String.format("Missing page rank for %s.", k), vertices.contains(k)));
Assert.assertEquals(String.format("Illegal number of page ranks in %s.", pageRanks), solutions.size(), pageRanks.size());
}
}