Package org.apache.flink.runtime.testutils

Source Code of org.apache.flink.runtime.testutils.CommonTestUtils

/*
* 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.testutils;

import static org.junit.Assert.fail;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.File;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;

import org.apache.flink.configuration.ConfigConstants;
import org.apache.flink.configuration.GlobalConfiguration;
import org.apache.flink.core.io.IOReadableWritable;
import org.apache.flink.core.memory.InputViewDataInputStreamWrapper;
import org.apache.flink.core.memory.OutputViewDataOutputStreamWrapper;

/**
* This class contains auxiliary methods for unit tests.
*/
public class CommonTestUtils {

  /**
   * Constructs a random filename. The filename is a string of 16 hex characters followed by a <code>.dat</code>
   * prefix.
   *
   * @return the random filename
   */
  public static String getRandomFilename() {

    final char[] alphabeth = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };

    String filename = "";
    for (int i = 0; i < 16; i++) {
      filename += alphabeth[(int) (Math.random() * alphabeth.length)];
    }

    return filename + ".dat";
  }

  /**
   * Constructs a random directory name. The directory is a string of 16 hex characters
   * prefix.
   *
   * @return the random directory name
   */
  public static String getRandomDirectoryName() {

    final char[] alphabeth = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };

    String filename = "";
    for (int i = 0; i < 16; i++) {
      filename += alphabeth[(int) (Math.random() * alphabeth.length)];
    }

    return filename;
  }

  /**
   * Reads the path to the directory for temporary files from the configuration and returns it.
   *
   * @return the path to the directory for temporary files
   */
  public static String getTempDir() {
    return GlobalConfiguration.getString(ConfigConstants.TASK_MANAGER_TMP_DIR_KEY,
      ConfigConstants.DEFAULT_TASK_MANAGER_TMP_PATH).split(File.pathSeparator)[0];
  }

  /**
   * Creates a copy of the given {@link IOReadableWritable} object by an in-memory serialization and subsequent
   * deserialization.
   *
   * @param original
   *        the original object to be copied
   * @return the copy of original object created by the original object's serialization/deserialization methods
   * @throws IOException
   *         thrown if an error occurs while creating the copy of the object
   */
  @SuppressWarnings("unchecked")
  public static <T extends IOReadableWritable> T createCopyWritable(final T original) throws IOException {

    final ByteArrayOutputStream baos = new ByteArrayOutputStream();
    final DataOutputStream dos = new DataOutputStream(baos);

    original.write(new OutputViewDataOutputStreamWrapper(dos));

    final String className = original.getClass().getName();

    Class<T> clazz = null;

    try {
      clazz = (Class<T>) Class.forName(className);
    } catch (ClassNotFoundException e) {
      fail(e.getMessage());
    }

    T copy = null;
    try {
      copy = clazz.newInstance();
    } catch (Throwable t) {
      t.printStackTrace();
      fail(t.getMessage());
    }

    final ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());
    final DataInputStream dis = new DataInputStream(bais);

    copy.read(new InputViewDataInputStreamWrapper(dis));
    if (dis.available() > 0) {
      throw new IOException("The coped result was not fully consumed.");
    }

    return copy;
  }
 
  @SuppressWarnings("unchecked")
  public static <T extends java.io.Serializable> T createCopySerializable(T original) throws IOException {
    if (original == null) {
      throw new IllegalArgumentException();
    }
   
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    ObjectOutputStream oos = new ObjectOutputStream(baos);
    oos.writeObject(original);
    oos.close();
    baos.close();
   
    ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());
    ObjectInputStream ois = new ObjectInputStream(bais);
   
    T copy;
    try {
      copy = (T) ois.readObject();
    }
    catch (ClassNotFoundException e) {
      throw new IOException(e);
    }
   
    ois.close();
    bais.close();
   
    return copy;
  }
 
 
  public static void sleepUninterruptibly(long msecs) {
   
    long now = System.currentTimeMillis();
    long sleepUntil = now + msecs;
    long remaining;
   
    while ((remaining = sleepUntil - now) > 0) {
      try {
        Thread.sleep(remaining);
      }
      catch (InterruptedException e) {}
     
      now = System.currentTimeMillis();
    }
  }
}
TOP

Related Classes of org.apache.flink.runtime.testutils.CommonTestUtils

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.