This project has retired. For details please refer to its Attic page.
TestStrictRandomAccessEdges xref
View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *     http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing, software
13   * distributed under the License is distributed on an "AS IS" BASIS,
14   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   * See the License for the specific language governing permissions and
16   * limitations under the License.
17   */
18  
19  package org.apache.giraph.edge;
20  
21  import com.google.common.collect.Lists;
22  import org.apache.hadoop.io.DoubleWritable;
23  import org.apache.hadoop.io.LongWritable;
24  import org.junit.Before;
25  import org.junit.Test;
26  
27  import java.util.Collection;
28  import java.util.List;
29  
30  import static org.apache.giraph.graph.TestVertexAndEdges.instantiateOutEdges;
31  import static org.junit.Assert.assertEquals;
32  import static org.junit.Assert.assertNull;
33  
34  /**
35   * Tests {@link StrictRandomAccessOutEdges} implementations.
36   */
37  public class TestStrictRandomAccessEdges {
38      /** {@link StrictRandomAccessOutEdges} classes to be tested. */
39      private Collection<Class<? extends StrictRandomAccessOutEdges>>
40          edgesClasses = Lists.newArrayList();
41  
42      @Before
43      public void setUp() {
44        edgesClasses.add(HashMapEdges.class);
45        edgesClasses.add(LongDoubleHashMapEdges.class);
46      }
47  
48      /**
49       * Ensures that all {@link StrictRandomAccessOutEdges} implementations
50       * correctly return edge values.
51       */
52      @Test
53      public void testParallelEdges() {
54        for (Class<? extends StrictRandomAccessOutEdges> edgesClass :
55            edgesClasses) {
56          testParallelEdgesClass(edgesClass);
57        }
58      }
59  
60      private void testParallelEdgesClass(
61          Class<? extends StrictRandomAccessOutEdges> edgesClass) {
62        StrictRandomAccessOutEdges<LongWritable, DoubleWritable> edges =
63            (StrictRandomAccessOutEdges<LongWritable, DoubleWritable>)
64                instantiateOutEdges(edgesClass);
65  
66        // Initial edges list contains parallel edges.
67        List<Edge<LongWritable, DoubleWritable>> initialEdges = Lists.newArrayList(
68            EdgeFactory.create(new LongWritable(1), new DoubleWritable(1)),
69            EdgeFactory.create(new LongWritable(2), new DoubleWritable(2)),
70            EdgeFactory.create(new LongWritable(3), new DoubleWritable(3)),
71            EdgeFactory.create(new LongWritable(2), new DoubleWritable(20)));
72  
73        edges.initialize(initialEdges);
74  
75        assertEquals(3.0, edges.getEdgeValue(new LongWritable(3)).get(), 0.0);
76        assertNull(edges.getEdgeValue(new LongWritable(55)));
77  
78        edges.setEdgeValue(new LongWritable(2), new DoubleWritable(33.0));
79        assertEquals(33.0, edges.getEdgeValue(new LongWritable(2)).get(), 0);
80      }
81  }