blob: 9a3263a05b348b501c54699d97c32850ba49b23b [file] [log] [blame]
/*
* Copyright 2018, Oath Inc.
* 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;
@SuppressWarnings("javadoc")
public class SektchToStringUDFTest {
@Test
public void nullSketch() {
final String result = new SketchToStringUDF().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 String result = new SketchToStringUDF().evaluate(new BytesWritable(sketch.toByteArray()));
Assert.assertNotNull(result);
}
}