use of org.jboss.tools.openshift.internal.core.ocbinary.OCBinaryValidator in project jbosstools-openshift by jbosstools.
the class OCBinaryValidatorTest method oc310OnLinuxValidatesOKIfNonRSyncRequirementsAreTested.
@Test
public void oc310OnLinuxValidatesOKIfNonRSyncRequirementsAreTested() {
// given
OCBinaryValidator validator = new TestableOCBinaryValidator("papa-smurf", Platform.OS_LINUX, false);
// when
IStatus status = validator.getStatus(Version.parseVersion("3.10.0"), false, OCBinaryValidator.NON_RSYNC_REQUIREMENTS);
// then
assertThat(status.isOK()).isTrue();
}
use of org.jboss.tools.openshift.internal.core.ocbinary.OCBinaryValidator in project jbosstools-openshift by jbosstools.
the class NewApplicationWizard method performFinish.
@Override
public boolean performFinish() {
final IResourcesModelJob createJob = isTemplateFlow() ? fromTemplateModel.createFinishJob() : fromImageModel.createFinishJob();
createJob.addJobChangeListener(new JobChangeAdapter() {
@Override
public void done(IJobChangeEvent event) {
IStatus status = event.getResult();
if (JobUtils.isOk(status) || JobUtils.isWarning(status)) {
Display.getDefault().syncExec(createJob.getSummaryRunnable(getShell()));
OpenShiftUIUtils.showOpenShiftExplorer();
if (model.getEclipseProject() != null) {
// No need to import the project from git, it's already here
return;
}
Collection<IResource> resources = createJob.getResources();
final Map<IProject, Collection<IBuildConfig>> projectsAndBuildConfigs = getBuildConfigs(resources);
if (projectsAndBuildConfigs.isEmpty()) {
return;
}
Connection connection = model.getConnection();
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
ImportApplicationWizard wizard = new ImportApplicationWizard(projectsAndBuildConfigs);
wizard.addImportJobChangeListener(new JobChangeAdapter() {
@Override
public void done(IJobChangeEvent event) {
IService service = getService(resources);
List<org.eclipse.core.resources.IProject> importedProjects = wizard.getImportJob().getImportedProjects();
if (service != null && importedProjects.size() == 1) {
Display.getDefault().asyncExec(new Runnable() {
@Override
public void run() {
if (MessageDialog.openQuestion(getShell(), "Create server adapter", NLS.bind("Would you like to create a server adapter for the imported {0} project?", importedProjects.get(0).getName()))) {
createServerAdapter(importedProjects.get(0), connection, service, getRoute(resources));
}
}
});
}
}
});
new WizardDialog(getShell(), wizard).open();
}
});
}
}
protected Map<IProject, Collection<IBuildConfig>> getBuildConfigs(Collection<IResource> resources) {
Map<IProject, Collection<IBuildConfig>> projects = new LinkedHashMap<>();
for (IResource resource : resources) {
if (resource instanceof IBuildConfig) {
IBuildConfig buildConfig = (IBuildConfig) resource;
if (StringUtils.isNotBlank(buildConfig.getSourceURI())) {
IProject p = buildConfig.getProject();
Collection<IBuildConfig> buildConfigs = projects.get(p);
if (buildConfigs == null) {
buildConfigs = new LinkedHashSet<>();
projects.put(p, buildConfigs);
}
buildConfigs.add(buildConfig);
}
}
}
return projects;
}
protected IService getService(Collection<IResource> resources) {
IResource service = ResourceUtils.getResourceOfType(IService.class, resources);
return service == null ? null : (IService) service;
}
protected IRoute getRoute(Collection<IResource> resources) {
IResource route = ResourceUtils.getResourceOfType(IRoute.class, resources);
return route == null ? null : (IRoute) route;
}
protected void createServerAdapter(org.eclipse.core.resources.IProject project, Connection connection, IService service, IRoute route) {
try {
IServerWorkingCopy server = OpenShiftServerUtils.create(OpenShiftResourceUniqueId.get(service));
IStatus ocStatus = new OCBinaryValidator(OCBinary.getInstance().getPath(connection)).getStatus(new NullProgressMonitor());
RsyncStatus rsyncStatus = RSyncValidator.get().getStatus();
ServerSettingsWizardPageModel serverModel = new ServerSettingsWizardPageModel(service, route, project, connection, server, ocStatus, rsyncStatus);
serverModel.loadResources();
serverModel.updateServer();
server.setAttribute(OpenShiftServerUtils.SERVER_START_ON_CREATION, false);
serverModel.saveServer(null);
} catch (CoreException ce) {
OpenShiftUIActivator.getDefault().getLogger().logError("Error occured while creating a server adapter", ce);
return;
}
}
});
boolean success = false;
try {
Job job = new JobChainBuilder(createJob.getJob()).runWhenSuccessfullyDone(new RefreshResourcesJob(createJob, true)).build();
IStatus status = runInWizard(job, createJob.getDelegatingProgressMonitor(), getContainer());
success = isFailed(status);
} catch (InvocationTargetException | InterruptedException e) {
OpenShiftUIActivator.getDefault().getLogger().logError(e);
success = false;
} finally {
UsageStats.getInstance().newV3Application(model.getConnection().getHost(), success);
}
return success;
}
use of org.jboss.tools.openshift.internal.core.ocbinary.OCBinaryValidator in project jbosstools-openshift by jbosstools.
the class OCBinaryValidatorTest method oc360OnMacWithSpaceInPathValidatesOKIfNonRSyncRequirementsTested.
@Test
public void oc360OnMacWithSpaceInPathValidatesOKIfNonRSyncRequirementsTested() {
// given
OCBinaryValidator validator = new TestableOCBinaryValidator("/my home/bin/oc", Platform.OS_MACOSX, false);
// when
IStatus status = validator.getStatus(Version.parseVersion("3.6.0"), false, OCBinaryValidator.NON_RSYNC_REQUIREMENTS);
// then validates ok, path with spaces is only relevant for rsync
assertThat(status.isOK()).isTrue();
}
use of org.jboss.tools.openshift.internal.core.ocbinary.OCBinaryValidator in project jbosstools-openshift by jbosstools.
the class OCBinaryValidatorTest method oc360OnMacWithSpaceInPathValidatesKO.
@Test
public void oc360OnMacWithSpaceInPathValidatesKO() {
// given
OCBinaryValidator validator = new TestableOCBinaryValidator("/my home/bin/oc", Platform.OS_MACOSX, false);
// when
IStatus status = validator.getStatus(Version.parseVersion("3.6.0"));
// then
assertThat(status.isOK()).isFalse();
}
use of org.jboss.tools.openshift.internal.core.ocbinary.OCBinaryValidator in project jbosstools-openshift by jbosstools.
the class OCBinaryValidatorTest method getVersionReturnsEmptyVersionForNullPath.
@Test
public void getVersionReturnsEmptyVersionForNullPath() {
OCBinaryValidator validator = new OCBinaryValidator(null);
assertEquals(Version.emptyVersion, validator.getVersion(new NullProgressMonitor()));
}
Aggregations