blob: 64495db7b1643a3d047bdd1be8c841d952dd298b [file] [log] [blame]
/**
* Copyright (c) 2016 DataTorrent, Inc. ALL Rights Reserved.
*
* Licensed 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 com.datatorrent.flume.sink;
import java.util.Random;
import org.junit.Assert;
import org.junit.Test;
/**
*
* @author Chetan Narsude <chetan@datatorrent.com>
*/
public class ServerTest
{
byte[] array;
public ServerTest()
{
array = new byte[1024];
}
@Test
public void testInt()
{
Server.writeInt(array, 0, Integer.MAX_VALUE);
Assert.assertEquals("Max Integer", Integer.MAX_VALUE, Server.readInt(array, 0));
Server.writeInt(array, 0, Integer.MIN_VALUE);
Assert.assertEquals("Min Integer", Integer.MIN_VALUE, Server.readInt(array, 0));
Server.writeInt(array, 0, 0);
Assert.assertEquals("Zero Integer", 0, Server.readInt(array, 0));
Random rand = new Random();
for (int i = 0; i < 128; i++) {
int n = rand.nextInt();
if (rand.nextBoolean()) {
n = -n;
}
Server.writeInt(array, 0, n);
Assert.assertEquals("Random Integer", n, Server.readInt(array, 0));
}
}
@Test
public void testLong()
{
Server.writeLong(array, 0, Integer.MAX_VALUE);
Assert.assertEquals("Max Integer", Integer.MAX_VALUE, Server.readLong(array, 0));
Server.writeLong(array, 0, Integer.MIN_VALUE);
Assert.assertEquals("Min Integer", Integer.MIN_VALUE, Server.readLong(array, 0));
Server.writeLong(array, 0, 0);
Assert.assertEquals("Zero Integer", 0L, Server.readLong(array, 0));
Server.writeLong(array, 0, Long.MAX_VALUE);
Assert.assertEquals("Max Long", Long.MAX_VALUE, Server.readLong(array, 0));
Server.writeLong(array, 0, Long.MIN_VALUE);
Assert.assertEquals("Min Long", Long.MIN_VALUE, Server.readLong(array, 0));
Server.writeLong(array, 0, 0L);
Assert.assertEquals("Zero Long", 0L, Server.readLong(array, 0));
Random rand = new Random();
for (int i = 0; i < 128; i++) {
long n = rand.nextLong();
if (rand.nextBoolean()) {
n = -n;
}
Server.writeLong(array, 0, n);
Assert.assertEquals("Random Long", n, Server.readLong(array, 0));
}
}
}