Package org.jboss.dna.sequencer.ddl.node

Source Code of org.jboss.dna.sequencer.ddl.node.AstNodeFactoryTest

/*
* JBoss DNA (http://www.jboss.org/dna)
* See the COPYRIGHT.txt file distributed with this work for information
* regarding copyright ownership.  Some portions may be licensed
* to Red Hat, Inc. under one or more contributor license agreements.
* See the AUTHORS.txt file in the distribution for a full listing of
* individual contributors.
*
* JBoss DNA is free software. Unless otherwise indicated, all code in JBoss DNA
* is licensed to you under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* JBoss DNA is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.dna.sequencer.ddl.node;

import static org.junit.Assert.assertNull;

import static org.hamcrest.core.Is.is;

import static org.junit.Assert.assertThat;

import static org.junit.Assert.assertEquals;

import static org.junit.Assert.assertNotNull;

import org.jboss.dna.graph.JcrLexicon;
import org.jboss.dna.graph.JcrNtLexicon;
import org.jboss.dna.graph.property.Name;
import org.jboss.dna.sequencer.ddl.StandardDdlLexicon;
import org.junit.Before;
import org.junit.Test;

/**
*
*/
public class AstNodeFactoryTest {
  private AstNodeFactory nodeFactory;
  private AstNode rootNode;
 
  @Before
  public void beforeEach() {
    nodeFactory = new AstNodeFactory();
    rootNode = nodeFactory.node("testRootNode");
    rootNode.setProperty(JcrLexicon.MIXIN_TYPES, StandardDdlLexicon.STATEMENTS_CONTAINER);
    rootNode.setProperty(JcrLexicon.PRIMARY_TYPE, JcrNtLexicon.UNSTRUCTURED);
  }
 
  @Test
  public void shouldCreateName() {
    String nodeName = "myNodeName";
    Name name = nodeFactory.name(nodeName);
   
    assertNotNull(name);
    assertEquals(nodeName, name.getString());
   
  }
 
  @Test
  public void shouldCreateChildNode() {
    String name = "myNodeName";
   
    nodeFactory.node(name, rootNode, StandardDdlLexicon.TYPE_CREATE_TABLE_STATEMENT);
   
    assertThat(rootNode.getChildCount(), is(1));
    assertEquals(rootNode.getProperty(JcrLexicon.MIXIN_TYPES).getFirstValue(), StandardDdlLexicon.STATEMENTS_CONTAINER);
    assertEquals(rootNode.getChild(0).getProperty(JcrLexicon.MIXIN_TYPES).getFirstValue(), StandardDdlLexicon.TYPE_CREATE_TABLE_STATEMENT);
    assertThat(rootNode.getChild(0).getName().getString(), is(name));
  }
 
  @Test
  public void shouldHaveMixinTypeForNode() {
    String name = "myNodeName";
    nodeFactory.node(name, rootNode, StandardDdlLexicon.TYPE_CREATE_TABLE_STATEMENT);
   
    assertThat(rootNode.getChildCount(), is(1));
    assertThat(nodeFactory.hasMixinType(rootNode, StandardDdlLexicon.STATEMENTS_CONTAINER), is(true));
    assertThat(nodeFactory.hasMixinType(rootNode.getChild(0), StandardDdlLexicon.TYPE_CREATE_TABLE_STATEMENT), is(true));
  }
 
  @Test
  public void shouldFindChildForNameAndType() {
    String name = "myNodeName";
    nodeFactory.node(name, rootNode, StandardDdlLexicon.TYPE_CREATE_TABLE_STATEMENT);
   
    AstNode node = nodeFactory.getChildforNameAndType(rootNode, name, StandardDdlLexicon.TYPE_CREATE_TABLE_STATEMENT);
   
    assertThat(rootNode.getChildCount(), is(1));
    assertThat(nodeFactory.hasMixinType(rootNode, StandardDdlLexicon.STATEMENTS_CONTAINER), is(true));
   
    assertNotNull(node);
  }
 
  @Test
  public void shouldNotFindChildForRightNameWrongType() {
    String name = "myNodeName";
    nodeFactory.node(name, rootNode, StandardDdlLexicon.TYPE_CREATE_TABLE_STATEMENT);
   
    AstNode node = nodeFactory.getChildforNameAndType(rootNode, name, StandardDdlLexicon.TYPE_CREATE_VIEW_STATEMENT);
   
    assertThat(rootNode.getChildCount(), is(1));
    assertThat(nodeFactory.hasMixinType(rootNode, StandardDdlLexicon.STATEMENTS_CONTAINER), is(true));
   
    assertNull(node);
  }
 
  @Test
  public void shouldNotFindChildForWrongNameRightType() {
    String name = "myNodeName";
    nodeFactory.node(name, rootNode, StandardDdlLexicon.TYPE_CREATE_TABLE_STATEMENT);
   
    AstNode node = nodeFactory.getChildforNameAndType(rootNode, "wrongName", StandardDdlLexicon.TYPE_CREATE_TABLE_STATEMENT);
   
    assertNull(node);
  }
 
  @Test
  public void shouldSetTypeOnNode() {
    String name = "myNodeName";
    AstNode node = nodeFactory.node(name);
    assertNotNull(node);
    nodeFactory.setType(node, StandardDdlLexicon.TYPE_CREATE_TABLE_STATEMENT);
    assertThat(nodeFactory.hasMixinType(node, StandardDdlLexicon.TYPE_CREATE_TABLE_STATEMENT), is(true));
  }
}
TOP

Related Classes of org.jboss.dna.sequencer.ddl.node.AstNodeFactoryTest

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.