use of org.pentaho.di.repository.kdr.delegates.KettleDatabaseRepositoryDatabaseDelegate in project pentaho-kettle by pentaho.
the class KettleDatabaseRepository method init.
private void init() {
// Create the delegates...
//
this.transDelegate = new KettleDatabaseRepositoryTransDelegate(this);
this.jobDelegate = new KettleDatabaseRepositoryJobDelegate(this);
this.databaseDelegate = new KettleDatabaseRepositoryDatabaseDelegate(this);
this.slaveServerDelegate = new KettleDatabaseRepositorySlaveServerDelegate(this);
this.clusterSchemaDelegate = new KettleDatabaseRepositoryClusterSchemaDelegate(this);
this.partitionSchemaDelegate = new KettleDatabaseRepositoryPartitionSchemaDelegate(this);
this.directoryDelegate = new KettleDatabaseRepositoryDirectoryDelegate(this);
this.connectionDelegate = new KettleDatabaseRepositoryConnectionDelegate(this, repositoryMeta.getConnection());
this.userDelegate = new KettleDatabaseRepositoryUserDelegate(this);
this.conditionDelegate = new KettleDatabaseRepositoryConditionDelegate(this);
this.valueDelegate = new KettleDatabaseRepositoryValueDelegate(this);
this.notePadDelegate = new KettleDatabaseRepositoryNotePadDelegate(this);
this.stepDelegate = new KettleDatabaseRepositoryStepDelegate(this);
this.jobEntryDelegate = new KettleDatabaseRepositoryJobEntryDelegate(this);
this.metaStoreDelegate = new KettleDatabaseRepositoryMetaStoreDelegate(this);
this.creationHelper = new KettleDatabaseRepositoryCreationHelper(this);
}
use of org.pentaho.di.repository.kdr.delegates.KettleDatabaseRepositoryDatabaseDelegate in project pentaho-kettle by pentaho.
the class KettleDatabaseRepository_GetObjectInformation_Test method getObjectInformation_GetDatabaseInformation.
@Test
public void getObjectInformation_GetDatabaseInformation() throws Exception {
KettleDatabaseRepositoryDatabaseDelegate databaseDelegate = spy(new KettleDatabaseRepositoryDatabaseDelegate(repository));
repository.databaseDelegate = databaseDelegate;
RowMeta meta = createMetaForDatabase();
Object[] values = new Object[meta.size()];
values[Arrays.asList(meta.getFieldNames()).indexOf(KettleDatabaseRepositoryBase.FIELD_DATABASE_NAME)] = EXISTING_ID;
doReturn(new RowMetaAndData(meta, values)).when(databaseDelegate).getDatabase(new StringObjectId(EXISTING_ID));
RepositoryObject actual = repository.getObjectInformation(new StringObjectId(EXISTING_ID), RepositoryObjectType.DATABASE);
assertEquals(new StringObjectId(EXISTING_ID), actual.getObjectId());
assertEquals(EXISTING_ID, actual.getName());
assertEquals(RepositoryObjectType.DATABASE, actual.getObjectType());
}
Aggregations