use of org.eclipse.egit.ui.common.RepoPropertiesPage in project egit by eclipse.
the class GitCloneWizardHttpTest method canCloneARemoteRepo.
@Test
public void canCloneARemoteRepo() throws Exception {
destRepo = new File(ResourcesPlugin.getWorkspace().getRoot().getLocation().toFile(), "test" + System.nanoTime());
importWizard.openWizard();
RepoPropertiesPage propertiesPage = importWizard.openRepoPropertiesPage();
propertiesPage.setURI(r.getUri());
propertiesPage.setUser("agitter");
propertiesPage.setPassword("letmein");
propertiesPage.setStoreInSecureStore(false);
RepoRemoteBranchesPage remoteBranches = propertiesPage.nextToRemoteBranches();
cloneRepo(destRepo, remoteBranches);
}
use of org.eclipse.egit.ui.common.RepoPropertiesPage in project egit by eclipse.
the class GitCloneWizardHttpsTest method canCloneARemoteRepo.
@Test
public void canCloneARemoteRepo() throws Exception {
destRepo = new File(ResourcesPlugin.getWorkspace().getRoot().getLocation().toFile(), "test" + System.nanoTime());
importWizard.openWizard();
RepoPropertiesPage propertiesPage = importWizard.openRepoPropertiesPage();
propertiesPage.setURI(r.getSecureUri());
propertiesPage.setUser("agitter");
propertiesPage.setPassword("letmein");
propertiesPage.setStoreInSecureStore(false);
SWTBotShell wizardShell = bot.activeShell();
RepoRemoteBranchesPage remoteBranches = propertiesPage.nextToRemoteBranches();
bot.waitUntil(shellIsActive(UIText.EGitCredentialsProvider_information));
// SSL trust dialog
bot.checkBox(1).select();
bot.button("OK").click();
bot.waitUntil(new ActiveShell(wizardShell, "import wizard shell"));
cloneRepo(destRepo, remoteBranches);
}
use of org.eclipse.egit.ui.common.RepoPropertiesPage in project egit by eclipse.
the class GitCloneWizardTest method invalidPortFreezesDialog.
// TODO network timeouts seem to be longer on cental EGit build
// Test is ignored to fix the build
@Ignore
@Test
public void invalidPortFreezesDialog() throws Exception {
importWizard.openWizard();
RepoPropertiesPage repoProperties = importWizard.openRepoPropertiesPage();
RepoRemoteBranchesPage remoteBranches = repoProperties.nextToRemoteBranches("git://localhost:80/EGIT");
remoteBranches.assertErrorMessage(NLS.bind(UIText.SourceBranchPage_CompositeTransportErrorMessage, "Exception caught during execution of ls-remote command", "git://localhost:80/EGIT: Connection refused"));
remoteBranches.assertCannotProceed();
remoteBranches.cancel();
}
use of org.eclipse.egit.ui.common.RepoPropertiesPage in project egit by eclipse.
the class GitCloneWizardTest method invalidHostnameFreezesDialog.
// TODO network timeouts seem to be longer on cental EGit build
// Test is ignored to fix the build
@Ignore
@Test
public void invalidHostnameFreezesDialog() throws Exception {
importWizard.openWizard();
RepoPropertiesPage repoProperties = importWizard.openRepoPropertiesPage();
RepoRemoteBranchesPage remoteBranches = repoProperties.nextToRemoteBranches("git://no.example.com/EGIT");
remoteBranches.assertErrorMessage(NLS.bind(UIText.SourceBranchPage_CompositeTransportErrorMessage, "Exception caught during execution of ls-remote command", "git://no.example.com/EGIT: unknown host"));
remoteBranches.assertCannotProceed();
remoteBranches.cancel();
}
use of org.eclipse.egit.ui.common.RepoPropertiesPage in project egit by eclipse.
the class GitCloneWizardTest method timeoutToASocketFreezesDialog.
// TODO: Broken, seems that this takes forever and does not come back with
// an error. Perhaps set a higher timeout for this test ?
@Ignore
public void timeoutToASocketFreezesDialog() throws Exception {
importWizard.openWizard();
RepoPropertiesPage repoProperties = importWizard.openRepoPropertiesPage();
RepoRemoteBranchesPage remoteBranches = repoProperties.nextToRemoteBranches("git://www.example.com/EGIT");
remoteBranches.assertErrorMessage("git://www.example.com/EGIT: unknown host");
remoteBranches.assertCannotProceed();
remoteBranches.cancel();
}
Aggregations