Package org.apache.flink.runtime.operators.drivers

Source Code of org.apache.flink.runtime.operators.drivers.DriverTestData

/*
* 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.flink.runtime.operators.drivers;

import java.util.ArrayList;
import java.util.List;

import org.apache.flink.api.java.tuple.Tuple;
import org.apache.flink.api.java.tuple.Tuple2;
import org.apache.flink.types.IntValue;
import org.apache.flink.types.StringValue;
import org.junit.Assert;

public class DriverTestData {

  public static List<Tuple2<String, Integer>> createReduceImmutableData() {
    List<Tuple2<String, Integer>> data = new ArrayList<Tuple2<String,Integer>>();
   
    data.add(new Tuple2<String, Integer>("a", 1));
    data.add(new Tuple2<String, Integer>("b", 2));
    data.add(new Tuple2<String, Integer>("c", 3));
    data.add(new Tuple2<String, Integer>("d", 4));
    data.add(new Tuple2<String, Integer>("d", 5));
    data.add(new Tuple2<String, Integer>("e", 6));
    data.add(new Tuple2<String, Integer>("e", 7));
    data.add(new Tuple2<String, Integer>("e", 8));
    data.add(new Tuple2<String, Integer>("f", 9));
    data.add(new Tuple2<String, Integer>("f", 10));
    data.add(new Tuple2<String, Integer>("f", 11));
    data.add(new Tuple2<String, Integer>("f", 12));
   
    return data;
  }
 
  public static List<Tuple2<StringValue, IntValue>> createReduceMutableData() {
    List<Tuple2<StringValue, IntValue>> data = new ArrayList<Tuple2<StringValue, IntValue>>();
   
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("a"), new IntValue(1)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("b"), new IntValue(2)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("c"), new IntValue(3)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("d"), new IntValue(4)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("d"), new IntValue(5)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("e"), new IntValue(6)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("e"), new IntValue(7)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("e"), new IntValue(8)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("f"), new IntValue(9)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("f"), new IntValue(10)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("f"), new IntValue(11)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("f"), new IntValue(12)));
   
    return data;
  }
 
  // --------------------------------------------------------------------------------------------
 
  public static List<Tuple2<String, Integer>> createReduceImmutableDataGroupedResult() {
    List<Tuple2<String, Integer>> data = new ArrayList<Tuple2<String, Integer>>();
   
    data.add(new Tuple2<String, Integer>("a", 1));
    data.add(new Tuple2<String, Integer>("b", 2));
    data.add(new Tuple2<String, Integer>("c", 3));
    data.add(new Tuple2<String, Integer>("dd", 9));
    data.add(new Tuple2<String, Integer>("eee", 21));
    data.add(new Tuple2<String, Integer>("ffff", 42));
   
    return data;
  }
 
  public static List<Tuple2<StringValue, IntValue>> createReduceMutableDataGroupedResult() {
    List<Tuple2<StringValue, IntValue>> data = new ArrayList<Tuple2<StringValue, IntValue>>();
   
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("a"), new IntValue(1)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("b"), new IntValue(2)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("c"), new IntValue(3)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("dd"), new IntValue(9)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("eee"), new IntValue(21)));
    data.add(new Tuple2<StringValue, IntValue>(new StringValue("ffff"), new IntValue(42)));
   
    return data;
  }
 
  // --------------------------------------------------------------------------------------------
 
  public static final void compareTupleArrays(Object[] expected, Object[] found) {
    if (expected.length != found.length) {
      Assert.assertEquals("Length of result is wrong", expected.length, found.length);
    }
   
    for (int i = 0; i < expected.length; i++) {
      Tuple v1 = (Tuple) expected[i];
      Tuple v2 = (Tuple) found[i];
     
      for (int k = 0; k < v1.getArity(); k++) {
        Object o1 = v1.getField(k);
        Object o2 = v2.getField(k);
        Assert.assertEquals(o1, o2);
      }
    }
  }

  // --------------------------------------------------------------------------------------------
 
  private DriverTestData() {}
}
TOP

Related Classes of org.apache.flink.runtime.operators.drivers.DriverTestData

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.