Search in sources :

Example 1 with SelectConnectionProfileDialog

use of org.jboss.tools.hibernate.reddeer.console.wizards.SelectConnectionProfileDialog in project jbosstools-hibernate by jbosstools.

the class ConsoleConfigurationFileTest method createConfigurationFileFromDatasource.

@Test
public void createConfigurationFileFromDatasource() {
    // Create datasource
    DatabaseConfiguration cfg = dbRequirement.getConfiguration();
    DriverDefinitionFactory.createDatabaseDriverDefinition(cfg);
    ConnectionProfileFactory.createConnectionProfile(cfg);
    NewConfigurationWizard wizard = new NewConfigurationWizard();
    wizard.open();
    NewConfigurationFirstPage p1 = new NewConfigurationFirstPage(wizard);
    p1.setLocation(prjName, "src");
    wizard.next();
    NewConfigurationWizardPage p2 = new NewConfigurationWizardPage(wizard);
    SelectConnectionProfileDialog connectionDialog = p2.getValuesFromConnection();
    connectionDialog.setProfileName(cfg.getProfileName());
    connectionDialog.ok();
    // Check values
    p2.setHibernateVersion(hbVersion);
    assertTrue("jdbc must match", p2.getConnectionURL().equals(cfg.getJdbcString()));
    assertTrue("driver must match", p2.getDriveClass().equals(cfg.getDriverClass()));
    assertTrue("username must match", p2.getUsername().equals(cfg.getUsername()));
    wizard.finish();
    checkFile(false);
}
Also used : NewConfigurationFirstPage(org.jboss.tools.hibernate.reddeer.console.wizards.NewConfigurationFirstPage) NewConfigurationWizard(org.jboss.tools.hibernate.reddeer.console.wizards.NewConfigurationWizard) NewConfigurationWizardPage(org.jboss.tools.hibernate.reddeer.console.wizards.NewConfigurationWizardPage) DatabaseConfiguration(org.eclipse.reddeer.requirements.db.DatabaseConfiguration) SelectConnectionProfileDialog(org.jboss.tools.hibernate.reddeer.console.wizards.SelectConnectionProfileDialog) Test(org.junit.Test)

Aggregations

DatabaseConfiguration (org.eclipse.reddeer.requirements.db.DatabaseConfiguration)1 NewConfigurationFirstPage (org.jboss.tools.hibernate.reddeer.console.wizards.NewConfigurationFirstPage)1 NewConfigurationWizard (org.jboss.tools.hibernate.reddeer.console.wizards.NewConfigurationWizard)1 NewConfigurationWizardPage (org.jboss.tools.hibernate.reddeer.console.wizards.NewConfigurationWizardPage)1 SelectConnectionProfileDialog (org.jboss.tools.hibernate.reddeer.console.wizards.SelectConnectionProfileDialog)1 Test (org.junit.Test)1