Search in sources :

Example 26 with DatabaseConfiguration

use of org.eclipse.reddeer.requirements.db.DatabaseConfiguration in project jbosstools-hibernate by jbosstools.

the class JPAFacetTest method testSetJPAFacets.

@Test
public void testSetJPAFacets() {
    DatabaseConfiguration cfg = dbRequirement.getConfiguration();
    ProjectConfigurationFactory.setProjectFacetForDB(prj, cfg, jpaVersion);
}
Also used : DatabaseConfiguration(org.eclipse.reddeer.requirements.db.DatabaseConfiguration) Test(org.junit.Test)

Example 27 with DatabaseConfiguration

use of org.eclipse.reddeer.requirements.db.DatabaseConfiguration in project jbosstools-hibernate by jbosstools.

the class CodeGenerationKeyWordsTest method prepareMvn.

private void prepareMvn() {
    importMavenProject(prj);
    DatabaseConfiguration cfg = dbRequirement.getConfiguration();
    HibernateToolsFactory.createConfigurationFile(cfg, prj, "hibernate.cfg.xml", true);
    HibernateToolsFactory.setHibernateVersion(prj, hbVersion);
}
Also used : DatabaseConfiguration(org.eclipse.reddeer.requirements.db.DatabaseConfiguration)

Example 28 with DatabaseConfiguration

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

use of org.eclipse.reddeer.requirements.db.DatabaseConfiguration in project jbosstools-hibernate by jbosstools.

the class HQLEditorCodeAssistTest method prepare.

private void prepare() {
    importMavenProject(prj);
    DatabaseConfiguration cfg = dbRequirement.getConfiguration();
    DriverDefinitionFactory.createDatabaseDriverDefinition(cfg);
    ConnectionProfileFactory.createConnectionProfile(cfg);
    ProjectConfigurationFactory.setProjectFacetForDB(prj, cfg, jpaVersion);
}
Also used : DatabaseConfiguration(org.eclipse.reddeer.requirements.db.DatabaseConfiguration)

Example 30 with DatabaseConfiguration

use of org.eclipse.reddeer.requirements.db.DatabaseConfiguration in project jbosstools-hibernate by jbosstools.

the class AntFileExportTest method testConnectionProfile.

@Before
public void testConnectionProfile() {
    DatabaseConfiguration cfg = dbRequirement.getConfiguration();
    importProject(PRJ, null);
    HibernateToolsFactory.createConfigurationFile(cfg, PRJ, "hibernate.cfg.xml", true);
}
Also used : DatabaseConfiguration(org.eclipse.reddeer.requirements.db.DatabaseConfiguration) Before(org.junit.Before)

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