Search in sources :

Example 31 with DatabaseConfiguration

use of org.eclipse.reddeer.requirements.db.DatabaseConfiguration 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

DatabaseConfiguration (org.eclipse.reddeer.requirements.db.DatabaseConfiguration)31 After (org.junit.After)9 NewConfigurationFirstPage (org.jboss.tools.hibernate.reddeer.console.wizards.NewConfigurationFirstPage)4 NewConfigurationWizard (org.jboss.tools.hibernate.reddeer.console.wizards.NewConfigurationWizard)4 NewConfigurationWizardPage (org.jboss.tools.hibernate.reddeer.console.wizards.NewConfigurationWizardPage)4 Before (org.junit.Before)4 Test (org.junit.Test)4 EditConfigurationMainPage (org.jboss.tools.hibernate.reddeer.console.EditConfigurationMainPage)3 EditConfigurationShell (org.jboss.tools.hibernate.reddeer.console.EditConfigurationShell)3 KnownConfigurationsView (org.jboss.tools.hibernate.reddeer.console.views.KnownConfigurationsView)3 TreeItem (org.eclipse.reddeer.swt.api.TreeItem)2 DefaultEditor (org.eclipse.reddeer.workbench.impl.editor.DefaultEditor)2 RedDeerException (org.eclipse.reddeer.common.exception.RedDeerException)1 WaitUntil (org.eclipse.reddeer.common.wait.WaitUntil)1 PackageExplorerPart (org.eclipse.reddeer.eclipse.jdt.ui.packageview.PackageExplorerPart)1 ProjectExplorer (org.eclipse.reddeer.eclipse.ui.navigator.resources.ProjectExplorer)1 EntityIsGenerated (org.jboss.tools.hibernate.reddeer.condition.EntityIsGenerated)1 SelectConnectionProfileDialog (org.jboss.tools.hibernate.reddeer.console.wizards.SelectConnectionProfileDialog)1 NewDSXMLWizard (org.jboss.tools.hibernate.reddeer.wizard.NewDSXMLWizard)1 WizardNewDSXMLFileCreationPage (org.jboss.tools.hibernate.reddeer.wizard.WizardNewDSXMLFileCreationPage)1