Search in sources :

Example 71 with IColumn

use of org.jboss.tools.hibernate.runtime.spi.IColumn in project jbosstools-hibernate by jbosstools.

the class ForeignKeyFacadeTest method testContainsColumn.

@Test
public void testContainsColumn() {
    Column column = new Column();
    IColumn columnFacade = FACADE_FACTORY.createColumn(column);
    Assert.assertFalse(foreignKeyFacade.containsColumn(columnFacade));
    Assert.assertEquals("containsColumn", methodName);
    Assert.assertArrayEquals(new Object[] { column }, arguments);
    foreignKey.addColumn(column);
    reset();
    Assert.assertTrue(foreignKeyFacade.containsColumn(columnFacade));
    Assert.assertEquals("containsColumn", methodName);
    Assert.assertArrayEquals(new Object[] { column }, arguments);
}
Also used : Column(org.hibernate.mapping.Column) IColumn(org.jboss.tools.hibernate.runtime.spi.IColumn) IColumn(org.jboss.tools.hibernate.runtime.spi.IColumn) Test(org.junit.Test)

Example 72 with IColumn

use of org.jboss.tools.hibernate.runtime.spi.IColumn in project jbosstools-hibernate by jbosstools.

the class ForeignKeyFacadeTest method testColumnIterator.

@Test
public void testColumnIterator() {
    Column column = new Column();
    foreignKey.addColumn(column);
    reset();
    Iterator<IColumn> iterator = foreignKeyFacade.columnIterator();
    Assert.assertEquals("columnIterator", methodName);
    Assert.assertArrayEquals(new Object[] {}, arguments);
    IColumn columnFacade = iterator.next();
    Assert.assertSame(column, ((IFacade) columnFacade).getTarget());
    Assert.assertFalse(iterator.hasNext());
}
Also used : Column(org.hibernate.mapping.Column) IColumn(org.jboss.tools.hibernate.runtime.spi.IColumn) IColumn(org.jboss.tools.hibernate.runtime.spi.IColumn) Test(org.junit.Test)

Example 73 with IColumn

use of org.jboss.tools.hibernate.runtime.spi.IColumn in project jbosstools-hibernate by jbosstools.

the class FacadeFactoryTest method testCreateColumn.

@Test
public void testCreateColumn() {
    Column column = new Column();
    IColumn facade = facadeFactory.createColumn(column);
    Assert.assertSame(column, ((IFacade) facade).getTarget());
}
Also used : IColumn(org.jboss.tools.hibernate.runtime.spi.IColumn) Column(org.hibernate.mapping.Column) IColumn(org.jboss.tools.hibernate.runtime.spi.IColumn) Test(org.junit.Test)

Example 74 with IColumn

use of org.jboss.tools.hibernate.runtime.spi.IColumn in project jbosstools-hibernate by jbosstools.

the class ServiceImplTest method testNewColumn.

@Test
public void testNewColumn() {
    IColumn column = service.newColumn("foo");
    Assert.assertNotNull(column);
    Object target = ((IFacade) column).getTarget();
    Assert.assertNotNull(target);
    Assert.assertTrue(target instanceof Column);
    Assert.assertEquals("foo", ((Column) target).getName());
}
Also used : IColumn(org.jboss.tools.hibernate.runtime.spi.IColumn) Column(org.hibernate.mapping.Column) IColumn(org.jboss.tools.hibernate.runtime.spi.IColumn) IFacade(org.jboss.tools.hibernate.runtime.common.IFacade) Test(org.junit.Test)

Example 75 with IColumn

use of org.jboss.tools.hibernate.runtime.spi.IColumn in project jbosstools-hibernate by jbosstools.

the class ForeignKeyFacadeTest method testContainsColumn.

@Test
public void testContainsColumn() {
    Column column = new Column();
    IColumn columnFacade = FACADE_FACTORY.createColumn(column);
    Assert.assertFalse(foreignKeyFacade.containsColumn(columnFacade));
    Assert.assertEquals("containsColumn", methodName);
    Assert.assertArrayEquals(new Object[] { column }, arguments);
    foreignKey.addColumn(column);
    reset();
    Assert.assertTrue(foreignKeyFacade.containsColumn(columnFacade));
    Assert.assertEquals("containsColumn", methodName);
    Assert.assertArrayEquals(new Object[] { column }, arguments);
}
Also used : Column(org.hibernate.mapping.Column) IColumn(org.jboss.tools.hibernate.runtime.spi.IColumn) IColumn(org.jboss.tools.hibernate.runtime.spi.IColumn) Test(org.junit.Test)

Aggregations

IColumn (org.jboss.tools.hibernate.runtime.spi.IColumn)86 Test (org.junit.Test)69 Column (org.hibernate.mapping.Column)68 ITable (org.jboss.tools.hibernate.runtime.spi.ITable)26 SimpleValue (org.hibernate.mapping.SimpleValue)16 Table (org.hibernate.mapping.Table)16 ArrayList (java.util.ArrayList)12 IProperty (org.jboss.tools.hibernate.runtime.spi.IProperty)9 AbstractForeignKeyFacade (org.jboss.tools.hibernate.runtime.common.AbstractForeignKeyFacade)7 IPersistentClass (org.jboss.tools.hibernate.runtime.spi.IPersistentClass)7 IValue (org.jboss.tools.hibernate.runtime.spi.IValue)7 Iterator (java.util.Iterator)5 IFacade (org.jboss.tools.hibernate.runtime.common.IFacade)4 IPrimaryKey (org.jboss.tools.hibernate.runtime.spi.IPrimaryKey)4 StructuredSelection (org.eclipse.jface.viewers.StructuredSelection)3 ConsoleConfiguration (org.hibernate.console.ConsoleConfiguration)3 Shape (org.jboss.tools.hibernate.ui.diagram.editors.model.Shape)3 FileNotFoundException (java.io.FileNotFoundException)2 HashMap (java.util.HashMap)2 List (java.util.List)2