blob: 6c5ca9f1343ab43ebb6f7c1aab9060c28c721bd0 [file] [log] [blame]
/*
* Copyright 2019, Verizon Media.
* Licensed under the terms of the Apache License 2.0. See LICENSE file at the project root for terms.
*/
package com.yahoo.sketches.hive.kll;
import org.apache.hadoop.io.BytesWritable;
import org.testng.Assert;
import org.testng.annotations.Test;
import com.yahoo.sketches.kll.KllFloatsSketch;
public class GetNUDFTest {
@Test
public void nullSketch() {
final Long result = new GetNUDF().evaluate(null);
Assert.assertNull(result);
}
@Test
public void normalCase() {
KllFloatsSketch sketch = new KllFloatsSketch();
sketch.update(1);
sketch.update(2);
sketch.update(3);
sketch.update(4);
final Long result = new GetNUDF().evaluate(new BytesWritable(sketch.toByteArray()));
Assert.assertNotNull(result);
Assert.assertEquals(result, Long.valueOf(4));
}
}