/*
* Copyright 2014, Stratio.
*
* 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.stratio.cassandra.index.schema;
import java.io.IOException;
import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.document.Field;
import org.junit.Assert;
import org.junit.Test;
public class ColumnMapperFloatTest
{
@Test()
public void testValueNull()
{
ColumnMapperFloat mapper = new ColumnMapperFloat(1f);
Float parsed = mapper.indexValue("test", null);
Assert.assertNull(parsed);
}
@Test
public void testValueInteger()
{
ColumnMapperFloat mapper = new ColumnMapperFloat(1f);
Float parsed = mapper.indexValue("test", 3);
Assert.assertEquals(Float.valueOf(3), parsed);
}
@Test
public void testValueLong()
{
ColumnMapperFloat mapper = new ColumnMapperFloat(1f);
Float parsed = mapper.indexValue("test", 3l);
Assert.assertEquals(Float.valueOf(3), parsed);
}
@Test
public void testValueFloatWithoutDecimal()
{
ColumnMapperFloat mapper = new ColumnMapperFloat(1f);
Float parsed = mapper.indexValue("test", 3f);
Assert.assertEquals(Float.valueOf(3), parsed);
}
@Test
public void testValueFloatWithDecimalFloor()
{
ColumnMapperFloat mapper = new ColumnMapperFloat(1f);
Float parsed = mapper.indexValue("test", 3.5f);
Assert.assertEquals(Float.valueOf(3.5f), parsed);
}
@Test
public void testValueFloatWithDecimalCeil()
{
ColumnMapperFloat mapper = new ColumnMapperFloat(1f);
Float parsed = mapper.indexValue("test", 3.6f);
Assert.assertEquals(Float.valueOf(3.6f), parsed);
}
@Test
public void testValueDoubleWithoutDecimal()
{
ColumnMapperFloat mapper = new ColumnMapperFloat(1f);
Float parsed = mapper.indexValue("test", 3d);
Assert.assertEquals(Float.valueOf(3), parsed);
}
@Test
public void testValueDoubleWithDecimalFloor()
{
ColumnMapperFloat mapper = new ColumnMapperFloat(1f);
Float parsed = mapper.indexValue("test", 3.5d);
Assert.assertEquals(Float.valueOf(3.5f), parsed);
}
@Test
public void testValueDoubleWithDecimalCeil()
{
ColumnMapperFloat mapper = new ColumnMapperFloat(1f);
Float parsed = mapper.indexValue("test", 3.6d);
Assert.assertEquals(Float.valueOf(3.6f), parsed);
}
@Test
public void testValueStringWithoutDecimal()
{
ColumnMapperFloat mapper = new ColumnMapperFloat(1f);
Float parsed = mapper.indexValue("test", "3");
Assert.assertEquals(Float.valueOf(3), parsed);
}
@Test
public void testValueStringWithDecimalFloor()
{
ColumnMapperFloat mapper = new ColumnMapperFloat(1f);
Float parsed = mapper.indexValue("test", "3.2");
Assert.assertEquals(Float.valueOf(3.2f), parsed);
}
@Test
public void testValueStringWithDecimalCeil()
{
ColumnMapperFloat mapper = new ColumnMapperFloat(1f);
Float parsed = mapper.indexValue("test", "3.6");
Assert.assertEquals(Float.valueOf(3.6f), parsed);
}
@Test
public void testField()
{
ColumnMapperFloat mapper = new ColumnMapperFloat(1f);
Field field = mapper.field("name", "3.2");
Assert.assertNotNull(field);
Assert.assertEquals(Float.valueOf(3.2f), field.numericValue());
Assert.assertEquals("name", field.name());
Assert.assertEquals(false, field.fieldType().stored());
}
@Test
public void testExtractAnalyzers()
{
ColumnMapperFloat mapper = new ColumnMapperFloat(1f);
Analyzer analyzer = mapper.analyzer();
Assert.assertEquals(ColumnMapper.EMPTY_ANALYZER, analyzer);
}
@Test
public void testParseJSON() throws IOException
{
String json = "{fields:{age:{type:\"float\"}}}";
Schema schema = Schema.fromJson(json);
ColumnMapper<?> columnMapper = schema.getMapper("age");
Assert.assertNotNull(columnMapper);
Assert.assertEquals(ColumnMapperFloat.class, columnMapper.getClass());
}
@Test
public void testParseJSONEmpty() throws IOException
{
String json = "{fields:{}}";
Schema schema = Schema.fromJson(json);
ColumnMapper<?> columnMapper = schema.getMapper("age");
Assert.assertNull(columnMapper);
}
@Test(expected = IOException.class)
public void testParseJSONInvalid() throws IOException
{
String json = "{fields:{age:{}}";
Schema.fromJson(json);
}
}