use of org.talend.components.jdbc.tjdbcinput.TJDBCInputDefinition in project components by Talend.
the class JDBCTypeMappingTestIT method testGetSchema.
@Test
public void testGetSchema() throws Exception {
TJDBCInputDefinition definition = new TJDBCInputDefinition();
TJDBCInputProperties properties = DBTestUtils.createCommonJDBCInputProperties(allSetting, definition);
properties.main.schema.setValue(DBTestUtils.createTestSchema3(true, tablename));
properties.tableSelection.tablename.setValue(tablename);
properties.sql.setValue(DBTestUtils.getSQL(tablename));
JDBCSource source = DBTestUtils.createCommonJDBCSource(properties);
RuntimeContainer container = new DefaultComponentRuntimeContainerImpl() {
@Override
public String getCurrentComponentId() {
return "tJDBCInput1";
}
};
java.net.URL mappings_url = this.getClass().getResource("/mappings");
mappings_url = DBTestUtils.correctURL(mappings_url);
container.setComponentData(container.getCurrentComponentId(), ComponentConstants.MAPPING_URL_SUBFIX, mappings_url);
Schema schema = source.getEndpointSchema(container, tablename);
assertEquals(tablename, schema.getName().toUpperCase());
List<Field> columns = schema.getFields();
testMetadata(columns);
}
use of org.talend.components.jdbc.tjdbcinput.TJDBCInputDefinition in project components by Talend.
the class JDBCInputTestIT method testGetSchemaFromQueryWithException3.
@Test(expected = ComponentException.class)
public void testGetSchemaFromQueryWithException3() throws Exception {
TJDBCInputDefinition definition = new TJDBCInputDefinition();
TJDBCInputProperties properties = DBTestUtils.createCommonJDBCInputProperties(allSetting, definition);
properties.connection.jdbcUrl.setValue("wrongone");
JDBCSource source = DBTestUtils.createCommonJDBCSource(properties);
try {
source.getSchemaFromQuery(null, "select * from " + tablename);
} catch (ComponentException e) {
String message = CommonUtils.getClearExceptionInfo(e);
assertTrue(message != null && !message.isEmpty());
throw e;
}
}
use of org.talend.components.jdbc.tjdbcinput.TJDBCInputDefinition in project components by Talend.
the class JDBCInputTestIT method testGetSchemaNames.
@Test
public void testGetSchemaNames() throws Exception {
TJDBCInputDefinition definition = new TJDBCInputDefinition();
TJDBCInputProperties properties = DBTestUtils.createCommonJDBCInputProperties(allSetting, definition);
properties.main.schema.setValue(DBTestUtils.createTestSchema(tablename));
properties.tableSelection.tablename.setValue(tablename);
properties.sql.setValue(DBTestUtils.getSQL(tablename));
JDBCSource source = DBTestUtils.createCommonJDBCSource(properties);
List<NamedThing> schemaNames = source.getSchemaNames(null);
assertTrue(schemaNames != null);
assertTrue(!schemaNames.isEmpty());
boolean exists = false;
for (NamedThing name : schemaNames) {
if (tablename.equals(name.getName().toUpperCase())) {
exists = true;
break;
}
}
assertTrue(exists);
}
use of org.talend.components.jdbc.tjdbcinput.TJDBCInputDefinition in project components by Talend.
the class JDBCInputTestIT method testGetSchemaFromQueryWithException2.
@Test(expected = ComponentException.class)
public void testGetSchemaFromQueryWithException2() throws Exception {
TJDBCInputDefinition definition = new TJDBCInputDefinition();
TJDBCInputProperties properties = DBTestUtils.createCommonJDBCInputProperties(allSetting, definition);
properties.connection.driverClass.setValue("notexist");
JDBCSource source = DBTestUtils.createCommonJDBCSource(properties);
try {
source.getSchemaFromQuery(null, "select * from " + tablename);
} catch (ComponentException e) {
String message = CommonUtils.getClearExceptionInfo(e);
assertTrue(message.contains("notexist"));
throw e;
}
}
use of org.talend.components.jdbc.tjdbcinput.TJDBCInputDefinition in project components by Talend.
the class JDBCInputTestIT method testGetSchemaWithException.
@Test(expected = ComponentException.class)
public void testGetSchemaWithException() throws Exception {
TJDBCInputDefinition definition = new TJDBCInputDefinition();
TJDBCInputProperties properties = DBTestUtils.createCommonJDBCInputProperties(allSetting, definition);
properties.connection.driverClass.setValue("notexist");
JDBCSource source = DBTestUtils.createCommonJDBCSource(properties);
try {
source.getEndpointSchema(null, tablename);
} catch (ComponentException e) {
String message = CommonUtils.getClearExceptionInfo(e);
assertTrue(message.contains("notexist"));
throw e;
}
}
Aggregations