io.crate.analyze.CompoundLiteralTest.java Source code

Java tutorial

Introduction

Here is the source code for io.crate.analyze.CompoundLiteralTest.java

Source

/*
 * Licensed to CRATE Technology GmbH ("Crate") under one or more contributor
 * license agreements.  See the NOTICE file distributed with this work for
 * additional information regarding copyright ownership.  Crate 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.
 *
 * However, if you have executed another commercial license agreement
 * with Crate these terms will supersede the license and you may use the
 * software solely pursuant to the terms of the relevant commercial agreement.
 */

package io.crate.analyze;

import com.google.common.collect.ImmutableMap;
import io.crate.analyze.symbol.Literal;
import io.crate.analyze.symbol.Symbol;
import io.crate.analyze.symbol.SymbolType;
import io.crate.test.integration.CrateUnitTest;
import io.crate.testing.SqlExpressions;
import io.crate.testing.T3;
import io.crate.types.*;
import org.apache.lucene.util.BytesRef;
import org.elasticsearch.common.collect.MapBuilder;
import org.hamcrest.Matchers;
import org.junit.Before;
import org.junit.Test;

import java.util.HashMap;
import java.util.Map;

import static io.crate.testing.SymbolMatchers.isFunction;
import static org.hamcrest.CoreMatchers.instanceOf;
import static org.hamcrest.Matchers.is;

public class CompoundLiteralTest extends CrateUnitTest {

    private SqlExpressions expressions;

    @Before
    public void prepare() {
        expressions = new SqlExpressions(T3.SOURCES);
    }

    @SuppressWarnings("ConstantConditions")
    @Test
    public void testObjectConstruction() throws Exception {
        Symbol s = expressions.asSymbol("{}");
        assertThat(s, instanceOf(Literal.class));
        Literal l = (Literal) s;
        assertThat(l.value(), is((Object) new HashMap<String, Object>()));

        Literal objectLiteral = (Literal) expressions.normalize(expressions.asSymbol("{ident='value'}"));
        assertThat(objectLiteral.symbolType(), is(SymbolType.LITERAL));
        assertThat(objectLiteral.valueType(), is((DataType) ObjectType.INSTANCE));
        assertThat(objectLiteral.value(),
                is((Object) new MapBuilder<String, Object>().put("ident", new BytesRef("value")).map()));

        Literal multipleObjectLiteral = (Literal) expressions
                .normalize(expressions.asSymbol("{\"Ident\"=123.4, a={}, ident='string'}"));
        Map<String, Object> values = (Map<String, Object>) multipleObjectLiteral.value();
        assertThat(values, is(new MapBuilder<String, Object>().put("Ident", 123.4d)
                .put("a", new HashMap<String, Object>()).put("ident", new BytesRef("string")).map()));
    }

    @Test
    public void testObjectConstructionWithExpressionsAsValues() throws Exception {
        Literal objectLiteral = (Literal) expressions.normalize(expressions.asSymbol("{name = 1 + 2}"));
        assertThat(objectLiteral.symbolType(), is(SymbolType.LITERAL));
        assertThat(objectLiteral.value(), is(new MapBuilder<String, Object>().put("name", 3L).map()));

        Literal nestedObjectLiteral = (Literal) expressions
                .normalize(expressions.asSymbol("{a = {name = concat('foo', 'bar')}}"));
        @SuppressWarnings("unchecked")
        Map<String, Object> values = (Map<String, Object>) nestedObjectLiteral.value();
        assertThat(values, is(new MapBuilder<String, Object>().put("a", new HashMap<String, Object>() {
            {
                put("name", new BytesRef("foobar"));
            }
        }).map()));
    }

    private Symbol analyzeExpression(String expression) {
        return expressions.normalize(expressions.asSymbol(expression));
    }

    @Test
    public void testObjectConstructionWithParameterExpression() throws Exception {
        assertThat(expressions.asSymbol("{ident=?}"), isFunction("_map"));
    }

    @Test
    public void testObjectConstructionFailsOnDuplicateKeys() throws Exception {
        expectedException.expect(IllegalArgumentException.class);
        expectedException.expectMessage("object contains duplicate keys");
        analyzeExpression("{a=1, a=2}");
    }

    @Test
    public void testArrayConstructionWithOnlyLiterals() throws Exception {
        Literal emptyArray = (Literal) analyzeExpression("[]");
        assertThat((Object[]) emptyArray.value(), is(new Object[0]));
        assertThat(emptyArray.valueType(), is((DataType) new ArrayType(UndefinedType.INSTANCE)));

        Literal singleArray = (Literal) analyzeExpression("[1]");
        assertThat(singleArray.valueType(), is((DataType) new ArrayType(LongType.INSTANCE)));
        assertThat(((Object[]) singleArray.value()).length, is(1));
        assertThat(((Object[]) singleArray.value())[0], is((Object) 1L));

        Literal multiArray = (Literal) analyzeExpression("[1, 2, 3]");
        assertThat(multiArray.valueType(), is((DataType) new ArrayType(LongType.INSTANCE)));
        assertThat(((Object[]) multiArray.value()).length, is(3));
        assertThat((Object[]) multiArray.value(), is(new Object[] { 1L, 2L, 3L }));
    }

    @Test
    public void testArrayConstructionWithParameterExpression() throws Exception {
        Symbol array = expressions.asSymbol("[1, ?]");
        assertThat(array, isFunction("_array"));
        assertThat(((io.crate.analyze.symbol.Function) array).arguments().size(), is(2));
    }

    @Test
    public void testArrayDifferentTypes() throws Exception {
        expectedException.expect(UnsupportedOperationException.class);
        expectedException.expectMessage("unknown function: _array(long, string)");
        analyzeExpression("[1, 'string']");
    }

    @Test
    public void testNestedArrayLiteral() throws Exception {
        Map<String, DataType> expected = ImmutableMap.<String, DataType>builder().put("'string'", DataTypes.STRING)
                .put("0", DataTypes.LONG).put("1.8", DataTypes.DOUBLE).put("TRUE", DataTypes.BOOLEAN).build();
        for (Map.Entry<String, DataType> entry : expected.entrySet()) {
            Symbol nestedArraySymbol = analyzeExpression("[[" + entry.getKey() + "]]");
            assertThat(nestedArraySymbol, Matchers.instanceOf(Literal.class));
            Literal nestedArray = (Literal) nestedArraySymbol;
            assertThat(nestedArray.valueType(), is((DataType) new ArrayType(new ArrayType(entry.getValue()))));
        }
    }
}