blob: f91f134465a9796b72802a04dad5b6a691764e1c [file] [log] [blame]
/*
* 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.solr.analytics.value;
import java.util.Arrays;
import java.util.Iterator;
import org.apache.solr.SolrTestCaseJ4;
import org.apache.solr.analytics.value.AnalyticsValueStream.ExpressionType;
import org.apache.solr.analytics.value.FillableTestValue.TestLongValue;
import org.apache.solr.analytics.value.constant.ConstantLongValue;
import org.junit.Test;
public class CastingLongValueTest extends SolrTestCaseJ4 {
@Test
public void doubleCastingTest() {
TestLongValue val = new TestLongValue();
assertTrue(val instanceof DoubleValue);
DoubleValue casted = (DoubleValue)val;
val.setValue(20L).setExists(true);
assertEquals(20.0, casted.getDouble(), .00001);
assertTrue(casted.exists());
val.setValue(1234L).setExists(true);
assertEquals(1234.0, casted.getDouble(), .00001);
assertTrue(casted.exists());
}
@Test
public void stringCastingTest() {
TestLongValue val = new TestLongValue();
assertTrue(val instanceof StringValue);
StringValue casted = (StringValue)val;
val.setValue(20L).setExists(true);
assertEquals("20", casted.getString());
assertTrue(casted.exists());
val.setValue(1234L).setExists(true);
assertEquals("1234", casted.getString());
assertTrue(casted.exists());
}
@Test
public void objectCastingTest() {
TestLongValue val = new TestLongValue();
assertTrue(val instanceof AnalyticsValue);
AnalyticsValue casted = (AnalyticsValue)val;
val.setValue(20L).setExists(true);
assertEquals(20L, casted.getObject());
assertTrue(casted.exists());
val.setValue(1234L).setExists(true);
assertEquals(1234L, casted.getObject());
assertTrue(casted.exists());
}
@Test
public void longStreamCastingTest() {
TestLongValue val = new TestLongValue();
assertTrue(val instanceof LongValueStream);
LongValueStream casted = (LongValueStream)val;
// No values
val.setExists(false);
casted.streamLongs( value -> {
assertTrue("There should be no values to stream", false);
});
// Multiple Values
val.setValue(20L).setExists(true);
Iterator<Long> values = Arrays.asList(20L).iterator();
casted.streamLongs( value -> {
assertTrue(values.hasNext());
assertEquals(values.next().longValue(), value);
});
assertFalse(values.hasNext());
}
@Test
public void doubleStreamCastingTest() {
TestLongValue val = new TestLongValue();
assertTrue(val instanceof DoubleValueStream);
DoubleValueStream casted = (DoubleValueStream)val;
// No values
val.setExists(false);
casted.streamDoubles( value -> {
assertTrue("There should be no values to stream", false);
});
// Multiple Values
val.setValue(20L).setExists(true);
Iterator<Double> values = Arrays.asList(20.0).iterator();
casted.streamDoubles( value -> {
assertTrue(values.hasNext());
assertEquals(values.next(), value, .00001);
});
assertFalse(values.hasNext());
}
@Test
public void stringStreamCastingTest() {
TestLongValue val = new TestLongValue();
assertTrue(val instanceof StringValueStream);
StringValueStream casted = (StringValueStream)val;
// No values
val.setExists(false);
casted.streamStrings( value -> {
assertTrue("There should be no values to stream", false);
});
// Multiple Values
val.setValue(20L).setExists(true);
Iterator<String> values = Arrays.asList("20").iterator();
casted.streamStrings( value -> {
assertTrue(values.hasNext());
assertEquals(values.next(), value);
});
assertFalse(values.hasNext());
}
@Test
public void objectStreamCastingTest() {
TestLongValue val = new TestLongValue();
assertTrue(val instanceof AnalyticsValueStream);
AnalyticsValueStream casted = (AnalyticsValueStream)val;
// No values
val.setExists(false);
casted.streamObjects( value -> {
assertTrue("There should be no values to stream", false);
});
// Multiple Values
val.setValue(20L).setExists(true);
Iterator<Object> values = Arrays.<Object>asList(20L).iterator();
casted.streamObjects( value -> {
assertTrue(values.hasNext());
assertEquals(values.next(), value);
});
assertFalse(values.hasNext());
}
@Test
public void constantConversionTest() {
TestLongValue val = new TestLongValue(ExpressionType.CONST);
val.setValue(12341L).setExists(true);
AnalyticsValueStream conv = val.convertToConstant();
assertTrue(conv instanceof ConstantLongValue);
assertEquals(12341L, ((ConstantLongValue)conv).getLong());
val = new TestLongValue(ExpressionType.FIELD);
val.setValue(12341L).setExists(true);
conv = val.convertToConstant();
assertSame(val, conv);
val = new TestLongValue(ExpressionType.UNREDUCED_MAPPING);
val.setValue(12341L).setExists(true);
conv = val.convertToConstant();
assertSame(val, conv);
val = new TestLongValue(ExpressionType.REDUCTION);
val.setValue(12341L).setExists(true);
conv = val.convertToConstant();
assertSame(val, conv);
val = new TestLongValue(ExpressionType.REDUCED_MAPPING);
val.setValue(12341L).setExists(true);
conv = val.convertToConstant();
assertSame(val, conv);
}
}