blob: f14a6b4aba8702bdb994d3bfe39644f87a3be2f5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2011 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0, which accompanies this distribution
* and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.core.tests.internal.resource.java;
import java.util.Iterator;
import java.util.ListIterator;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jpt.common.core.resource.java.JavaResourceType;
import org.eclipse.jpt.common.utility.internal.iterators.ArrayIterator;
import org.eclipse.jpt.jpa.core.resource.java.JPA;
import org.eclipse.jpt.jpa.core.resource.java.TableAnnotation;
@SuppressWarnings("nls")
public class TableTests extends JpaJavaResourceModelTestCase {
private static final String TABLE_NAME = "MY_TABLE";
private static final String SCHEMA_NAME = "MY_SCHEMA";
private static final String CATALOG_NAME = "MY_CATALOG";
public TableTests(String name) {
super(name);
}
private ICompilationUnit createTestTable() throws Exception {
return this.createTestType(new DefaultAnnotationWriter() {
@Override
public Iterator<String> imports() {
return new ArrayIterator<String>(JPA.TABLE);
}
@Override
public void appendTypeAnnotationTo(StringBuilder sb) {
sb.append("@Table");
}
});
}
private ICompilationUnit createTestTableWithName() throws Exception {
return this.createTestType(new DefaultAnnotationWriter() {
@Override
public Iterator<String> imports() {
return new ArrayIterator<String>(JPA.TABLE);
}
@Override
public void appendTypeAnnotationTo(StringBuilder sb) {
sb.append("@Table(name = \"" + TABLE_NAME + "\")");
}
});
}
private ICompilationUnit createTestTableWithSchema() throws Exception {
return this.createTestType(new DefaultAnnotationWriter() {
@Override
public Iterator<String> imports() {
return new ArrayIterator<String>(JPA.TABLE);
}
@Override
public void appendTypeAnnotationTo(StringBuilder sb) {
sb.append("@Table(schema = \"" + SCHEMA_NAME + "\")");
}
});
}
private ICompilationUnit createTestTableWithCatalog() throws Exception {
return this.createTestType(new DefaultAnnotationWriter() {
@Override
public Iterator<String> imports() {
return new ArrayIterator<String>(JPA.TABLE);
}
@Override
public void appendTypeAnnotationTo(StringBuilder sb) {
sb.append("@Table(catalog = \"" + CATALOG_NAME + "\")");
}
});
}
private ICompilationUnit createTestTableWithUniqueConstraints() throws Exception {
return this.createTestType(new DefaultAnnotationWriter() {
@Override
public Iterator<String> imports() {
return new ArrayIterator<String>(JPA.TABLE, JPA.UNIQUE_CONSTRAINT);
}
@Override
public void appendTypeAnnotationTo(StringBuilder sb) {
sb.append("@Table(uniqueConstraints = {@UniqueConstraint(columnNames = {\"BAR\"}), @UniqueConstraint(columnNames = {\"FOO\"}), @UniqueConstraint(columnNames = {\"BAZ\"})})");
}
});
}
public void testGetName() throws Exception {
ICompilationUnit cu = this.createTestTableWithName();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
assertNotNull(table);
assertEquals(TABLE_NAME, table.getName());
}
public void testGetNull() throws Exception {
ICompilationUnit cu = this.createTestTable();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
assertNotNull(table);
assertNull(table.getName());
assertNull(table.getCatalog());
assertNull(table.getSchema());
}
public void testSetName() throws Exception {
ICompilationUnit cu = this.createTestTable();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
assertNotNull(table);
assertNull(table.getName());
table.setName("Foo");
assertEquals("Foo", table.getName());
assertSourceContains("@Table(name = \"Foo\")", cu);
}
public void testSetNameNull() throws Exception {
ICompilationUnit cu = this.createTestTableWithName();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
assertEquals(TABLE_NAME, table.getName());
table.setName(null);
assertNull(table.getName());
assertSourceDoesNotContain("@Table(", cu);
}
public void testGetCatalog() throws Exception {
ICompilationUnit cu = this.createTestTableWithCatalog();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
assertNotNull(table);
assertEquals(CATALOG_NAME, table.getCatalog());
}
public void testSetCatalog() throws Exception {
ICompilationUnit cu = this.createTestTable();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
assertNotNull(table);
assertNull(table.getCatalog());
table.setCatalog("Foo");
assertEquals("Foo", table.getCatalog());
assertSourceContains("@Table(catalog = \"Foo\")", cu);
}
public void testSetCatalogNull() throws Exception {
ICompilationUnit cu = this.createTestTableWithCatalog();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
assertEquals(CATALOG_NAME, table.getCatalog());
table.setCatalog(null);
assertNull(table.getCatalog());
assertSourceDoesNotContain("@Table(", cu);
}
public void testGetSchema() throws Exception {
ICompilationUnit cu = this.createTestTableWithSchema();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
assertNotNull(table);
assertEquals(SCHEMA_NAME, table.getSchema());
}
public void testSetSchema() throws Exception {
ICompilationUnit cu = this.createTestTable();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
assertNotNull(table);
assertNull(table.getSchema());
table.setSchema("Foo");
assertEquals("Foo", table.getSchema());
assertSourceContains("@Table(schema = \"Foo\")", cu);
}
public void testSetSchemaNull() throws Exception {
ICompilationUnit cu = this.createTestTableWithSchema();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
assertEquals(SCHEMA_NAME, table.getSchema());
table.setSchema(null);
assertNull(table.getSchema());
assertSourceDoesNotContain("@Table(", cu);
}
public void testUniqueConstraints() throws Exception {
ICompilationUnit cu = this.createTestTable();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
assertEquals(0, table.getUniqueConstraintsSize());
}
public void testUniqueConstraints2() throws Exception {
ICompilationUnit cu = this.createTestTable();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
table.addUniqueConstraint(0);
table.addUniqueConstraint(1);
assertEquals(2, table.getUniqueConstraintsSize());
}
public void testUniqueConstraints3() throws Exception {
ICompilationUnit cu = this.createTestTableWithUniqueConstraints();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
assertEquals(3, table.getUniqueConstraintsSize());
}
public void testAddUniqueConstraint() throws Exception {
ICompilationUnit cu = this.createTestTable();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
table.addUniqueConstraint(0).addColumnName("FOO");
table.addUniqueConstraint(1);
table.addUniqueConstraint(0).addColumnName("BAR");
assertEquals("BAR", table.uniqueConstraintAt(0).columnNameAt(0));
assertEquals("FOO", table.uniqueConstraintAt(1).columnNameAt(0));
assertEquals(0, table.uniqueConstraintAt(2).getColumnNamesSize());
assertSourceContains("@Table(uniqueConstraints = {@UniqueConstraint(columnNames = \"BAR\"),@UniqueConstraint(columnNames = \"FOO\"), @UniqueConstraint})", cu);
}
public void testAddUniqueConstraint2() throws Exception {
ICompilationUnit cu = this.createTestTable();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
table.addUniqueConstraint(0).addColumnName("FOO");
table.addUniqueConstraint(0);
table.addUniqueConstraint(1).addColumnName("BAR");
table.uniqueConstraintAt(1).addColumnName("BAZ");
assertSourceContains("@Table(uniqueConstraints = {@UniqueConstraint,@UniqueConstraint(columnNames = { \"BAR\", \"BAZ\" }), @UniqueConstraint(columnNames = \"FOO\")})", cu);
assertEquals("FOO", table.uniqueConstraintAt(2).columnNameAt(0));
ListIterator<String> columnNames = table.uniqueConstraintAt(1).getColumnNames().iterator();
assertEquals("BAR", columnNames.next());
assertEquals("BAZ", columnNames.next());
}
public void testRemoveUniqueConstraint() throws Exception {
ICompilationUnit cu = this.createTestTableWithUniqueConstraints();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
table.removeUniqueConstraint(1);
assertSourceContains("@Table(uniqueConstraints = {@UniqueConstraint(columnNames = {\"BAR\"}), @UniqueConstraint(columnNames = {\"BAZ\"})})", cu);
table.removeUniqueConstraint(0);
assertSourceContains("@Table(uniqueConstraints = @UniqueConstraint(columnNames = {\"BAZ\"}))", cu);
table.removeUniqueConstraint(0);
assertSourceDoesNotContain("@Table(", cu);
}
public void testRemoveUniqueConstraint2() throws Exception {
ICompilationUnit cu = this.createTestTable();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
table.addUniqueConstraint(0).addColumnName("FOO");
table.addUniqueConstraint(1).addColumnName("BAR");
table.addUniqueConstraint(2).addColumnName("BAZ");
assertSourceContains("@Table(uniqueConstraints = {@UniqueConstraint(columnNames = \"FOO\"),@UniqueConstraint(columnNames = \"BAR\"), @UniqueConstraint(columnNames = \"BAZ\")})", cu);
table.removeUniqueConstraint(0);
assertSourceContains("@Table(uniqueConstraints = {@UniqueConstraint(columnNames = \"BAR\"),@UniqueConstraint(columnNames = \"BAZ\")})", cu);
table.removeUniqueConstraint(0);
assertSourceContains("@Table(uniqueConstraints = @UniqueConstraint(columnNames = \"BAZ\"))", cu);
table.removeUniqueConstraint(0);
assertSourceDoesNotContain("@Table(", cu);
}
public void testRemoveUniqueConstraint3() throws Exception {
ICompilationUnit cu = this.createTestTable();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
table.addUniqueConstraint(0).addColumnName("FOO");
table.addUniqueConstraint(1).addColumnName("BAR");
table.addUniqueConstraint(2).addColumnName("BAZ");
assertSourceContains("@Table(uniqueConstraints = {@UniqueConstraint(columnNames = \"FOO\"),@UniqueConstraint(columnNames = \"BAR\"), @UniqueConstraint(columnNames = \"BAZ\")})", cu);
table.removeUniqueConstraint(2);
assertSourceContains("@Table(uniqueConstraints = {@UniqueConstraint(columnNames = \"FOO\"),@UniqueConstraint(columnNames = \"BAR\")})", cu);
table.removeUniqueConstraint(1);
assertSourceContains("@Table(uniqueConstraints = @UniqueConstraint(columnNames = \"FOO\"))", cu);
table.removeUniqueConstraint(0);
assertSourceDoesNotContain("@Table(", cu);
}
public void testMoveUniqueConstraint() throws Exception {
ICompilationUnit cu = this.createTestTableWithUniqueConstraints();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
table.moveUniqueConstraint(2, 0);
assertSourceContains("@Table(uniqueConstraints = {@UniqueConstraint(columnNames = {\"FOO\"}), @UniqueConstraint(columnNames = {\"BAZ\"}), @UniqueConstraint(columnNames = {\"BAR\"})})", cu);
}
public void testMoveUniqueConstraint2() throws Exception {
ICompilationUnit cu = this.createTestTableWithUniqueConstraints();
JavaResourceType resourceType = buildJavaResourceType(cu);
TableAnnotation table = (TableAnnotation) resourceType.getAnnotation(JPA.TABLE);
table.moveUniqueConstraint(0, 2);
assertSourceContains("@Table(uniqueConstraints = {@UniqueConstraint(columnNames = {\"BAZ\"}), @UniqueConstraint(columnNames = {\"BAR\"}), @UniqueConstraint(columnNames = {\"FOO\"})})", cu);
}
}