Search in sources :

Example 6 with NewConfigurationWizard

use of org.jboss.tools.hibernate.reddeer.console.wizards.NewConfigurationWizard 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)

Example 7 with NewConfigurationWizard

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

the class RevengFileTest method prepareConsoleConfiguration.

public void prepareConsoleConfiguration() {
    NewConfigurationWizard wizard = new NewConfigurationWizard();
    wizard.open();
    NewConfigurationFirstPage p1 = new NewConfigurationFirstPage(wizard);
    p1.setLocation(PROJECT_NAME, "src", "main", "java");
    wizard.next();
    DatabaseConfiguration cfg = dbRequirement.getConfiguration();
    NewConfigurationWizardPage p2 = new NewConfigurationWizardPage(wizard);
    p2.setDatabaseDialect("H2");
    p2.setDriverClass(cfg.getDriverClass());
    p2.setConnectionURL(cfg.getJdbcString());
    p2.setUsername(cfg.getUsername());
    p2.setCreateConsoleConfiguration(true);
    p2.setHibernateVersion(hbVersion);
    wizard.finish();
}
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)

Aggregations

NewConfigurationWizard (org.jboss.tools.hibernate.reddeer.console.wizards.NewConfigurationWizard)7 NewConfigurationWizardPage (org.jboss.tools.hibernate.reddeer.console.wizards.NewConfigurationWizardPage)6 NewConfigurationFirstPage (org.jboss.tools.hibernate.reddeer.console.wizards.NewConfigurationFirstPage)5 DatabaseConfiguration (org.eclipse.reddeer.requirements.db.DatabaseConfiguration)4 Test (org.junit.Test)3 DefaultEditor (org.eclipse.reddeer.workbench.impl.editor.DefaultEditor)1 SelectConnectionProfileDialog (org.jboss.tools.hibernate.reddeer.console.wizards.SelectConnectionProfileDialog)1