Package org.modeshape.jcr.query.validate

Source Code of org.modeshape.jcr.query.validate.ImmutableSchemataBuilderTest

/*
* ModeShape (http://www.modeshape.org)
*
* 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 org.modeshape.jcr.query.validate;

import static org.hamcrest.core.Is.is;
import static org.hamcrest.core.IsInstanceOf.instanceOf;
import static org.hamcrest.core.IsNull.notNullValue;
import static org.junit.Assert.assertThat;
import static org.mockito.Mockito.mock;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.modeshape.jcr.ExecutionContext;
import org.modeshape.jcr.NodeTypes;
import org.modeshape.jcr.query.model.SelectorName;
import org.modeshape.jcr.query.validate.Schemata.Table;
import org.modeshape.jcr.query.validate.Schemata.View;
import org.modeshape.jcr.value.PropertyType;

/**
*
*/
public class ImmutableSchemataBuilderTest {

    private static final String STRING_TYPE = PropertyType.STRING.getName().toUpperCase();

    private ExecutionContext context;
    private ImmutableSchemata.Builder builder;
    private Schemata schemata;

    @Before
    public void beforeEach() {
        context = new ExecutionContext();
        builder = ImmutableSchemata.createBuilder(context, mock(NodeTypes.class));
    }

    @After
    public void afterEach() {
        context = null;
        builder = null;
        schemata = null;
    }

    @Test
    public void shouldBuildSchemaForSingleTableWithDefaultTypeForColumns() {
        builder.addTable("t1", "c1", "c2", "c3");
        schemata = builder.build();
        Table table = schemata.getTable(selector("t1"));
        assertThat(table, is(notNullValue()));
        assertThat(table.getColumn("c1").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c2").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c3").getPropertyTypeName(), is(STRING_TYPE));
    }

    @Test
    public void shouldBuildSchemaForMultipleTablesWithDefaultTypeForColumns() {
        builder.addTable("t1", "c11", "c12", "c13");
        builder.addTable("t2", "c21", "c22", "c23");
        schemata = builder.build();
        Table table = schemata.getTable(selector("t1"));
        assertThat(table, is(notNullValue()));
        assertThat(table.getColumn("c11").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c12").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c13").getPropertyTypeName(), is(STRING_TYPE));
        table = schemata.getTable(selector("t2"));
        assertThat(table, is(notNullValue()));
        assertThat(table.getColumn("c21").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c22").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c23").getPropertyTypeName(), is(STRING_TYPE));
    }

    @Test
    public void shouldBuildSchemaContainingViewOfSingleTable() {
        builder.addTable("t1", "c1", "c2", "c3");
        builder.addView("t2", "SELECT * FROM t1 WHERE c1=3");
        schemata = builder.build();
        Table table = schemata.getTable(selector("t1"));
        assertThat(table, is(notNullValue()));
        assertThat(table.getColumn("c1").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c2").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c3").getPropertyTypeName(), is(STRING_TYPE));
        table = schemata.getTable(selector("t2"));
        assertThat(table, is(instanceOf(View.class)));
        assertThat(table.getColumn("c1").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c2").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c3").getPropertyTypeName(), is(STRING_TYPE));
    }

    @Test
    public void shouldBuildSchemaContainingViewUsingAliasesOfColumns() {
        builder.addTable("t1", "c1", "c2", "c3");
        builder.addView("t2", "SELECT c1 as v1, c2 FROM t1 WHERE c1=3");
        schemata = builder.build();
        Table table = schemata.getTable(selector("t1"));
        assertThat(table, is(notNullValue()));
        assertThat(table.getColumn("c1").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c2").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c3").getPropertyTypeName(), is(STRING_TYPE));
        table = schemata.getTable(selector("t2"));
        assertThat(table, is(instanceOf(View.class)));
        assertThat(table.getColumn("v1").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c2").getPropertyTypeName(), is(STRING_TYPE));
    }

    @Test
    public void shouldBuildSchemaContainingViewOfMultiTableJoin() {
        builder.addTable("t1", "c11", "c12", "c13");
        builder.addTable("t2", "c21", "c22", "c23");
        builder.addView("v1", "SELECT t1.c11 as x1, t1.c12, t2.c23 FROM t1 JOIN t2 ON t1.c11=t2.c21 WHERE t1.c11=3");
        schemata = builder.build();
        Table table = schemata.getTable(selector("t1"));
        assertThat(table, is(notNullValue()));
        assertThat(table.getColumn("c11").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c12").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c13").getPropertyTypeName(), is(STRING_TYPE));
        table = schemata.getTable(selector("t2"));
        assertThat(table, is(notNullValue()));
        assertThat(table.getColumn("c21").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c22").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c23").getPropertyTypeName(), is(STRING_TYPE));
        schemata = builder.build();
        table = schemata.getTable(selector("v1"));
        assertThat(table, is(instanceOf(View.class)));
        assertThat(table.getColumn("x1").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c12").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c23").getPropertyTypeName(), is(STRING_TYPE));
    }

    @Test
    public void shouldBuildSchemaContainingViewUsingView() {
        builder.addTable("t1", "c11", "c12", "c13");
        builder.addTable("t2", "c21", "c22", "c23");
        builder.addView("v2", "SELECT x1, c12 FROM v1 WHERE x1=3");
        builder.addView("v1", "SELECT t1.c11 as x1, t1.c12, t2.c23 FROM t1 JOIN t2 ON t1.c11=t2.c21 WHERE t1.c11=3");
        schemata = builder.build();
        Table table = schemata.getTable(selector("t1"));
        assertThat(table, is(notNullValue()));
        assertThat(table.getColumn("c11").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c12").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c13").getPropertyTypeName(), is(STRING_TYPE));
        table = schemata.getTable(selector("t2"));
        assertThat(table, is(notNullValue()));
        assertThat(table.getColumn("c21").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c22").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c23").getPropertyTypeName(), is(STRING_TYPE));
        schemata = builder.build();
        table = schemata.getTable(selector("v1"));
        assertThat(table, is(instanceOf(View.class)));
        assertThat(table.getColumn("x1").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c12").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c23").getPropertyTypeName(), is(STRING_TYPE));
        table = schemata.getTable(selector("v2"));
        assertThat(table, is(instanceOf(View.class)));
        assertThat(table.getColumn("x1").getPropertyTypeName(), is(STRING_TYPE));
        assertThat(table.getColumn("c12").getPropertyTypeName(), is(STRING_TYPE));
    }

    protected SelectorName selector( String name ) {
        return new SelectorName(name);
    }

}
TOP

Related Classes of org.modeshape.jcr.query.validate.ImmutableSchemataBuilderTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.