blob: 62ce7303c9f00a473de238020b6e7679f5efefc3 [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;
public class GetQuantileUDFTest {
@Test
public void nullSketch() {
final Float result = new GetQuantileUDF().evaluate(null, 0);
Assert.assertNull(result);
}
@Test
public void normalCase() {
KllFloatsSketch sketch = new KllFloatsSketch();
sketch.update(1);
sketch.update(2);
sketch.update(3);
final Float result = new GetQuantileUDF().evaluate(new BytesWritable(sketch.toByteArray()), 0.5);
Assert.assertNotNull(result);
Assert.assertEquals(result, 2f);
}
}