Search in sources :

Example 36 with IRuntimeWorkingCopy

use of org.eclipse.wst.server.core.IRuntimeWorkingCopy in project liferay-ide by liferay.

the class PortalRuntimeWizard method isComplete.

@Override
public boolean isComplete() {
    boolean retval = false;
    final IRuntimeWorkingCopy runtime = (IRuntimeWorkingCopy) getTaskModel().getObject(TaskModel.TASK_RUNTIME);
    if (runtime != null) {
        final IStatus status = runtime.validate(null);
        retval = status == null || status.getSeverity() != IStatus.ERROR;
    }
    return retval;
}
Also used : IStatus(org.eclipse.core.runtime.IStatus) IRuntimeWorkingCopy(org.eclipse.wst.server.core.IRuntimeWorkingCopy)

Example 37 with IRuntimeWorkingCopy

use of org.eclipse.wst.server.core.IRuntimeWorkingCopy in project liferay-ide by liferay.

the class PortalRuntimeWizard method enter.

@Override
public void enter() {
    if (this.composite != null) {
        final IRuntimeWorkingCopy runtime = (IRuntimeWorkingCopy) getTaskModel().getObject(TaskModel.TASK_RUNTIME);
        this.composite.setRuntime(runtime);
    }
}
Also used : IRuntimeWorkingCopy(org.eclipse.wst.server.core.IRuntimeWorkingCopy)

Example 38 with IRuntimeWorkingCopy

use of org.eclipse.wst.server.core.IRuntimeWorkingCopy in project liferay-ide by liferay.

the class LiferayRuntimeStubWizardFragment method isComplete.

public boolean isComplete() {
    IRuntimeWorkingCopy runtime = (IRuntimeWorkingCopy) getTaskModel().getObject(TaskModel.TASK_RUNTIME);
    if (runtime == null) {
        return false;
    }
    IStatus status = runtime.validate(null);
    return status != null && status.getSeverity() != IStatus.ERROR;
}
Also used : IStatus(org.eclipse.core.runtime.IStatus) IRuntimeWorkingCopy(org.eclipse.wst.server.core.IRuntimeWorkingCopy)

Example 39 with IRuntimeWorkingCopy

use of org.eclipse.wst.server.core.IRuntimeWorkingCopy in project liferay-ide by liferay.

the class LiferayRuntimeStubWizardFragment method enter.

public void enter() {
    if (composite != null) {
        IRuntimeWorkingCopy runtime = (IRuntimeWorkingCopy) getTaskModel().getObject(TaskModel.TASK_RUNTIME);
        composite.setRuntime(runtime);
    }
}
Also used : IRuntimeWorkingCopy(org.eclipse.wst.server.core.IRuntimeWorkingCopy)

Example 40 with IRuntimeWorkingCopy

use of org.eclipse.wst.server.core.IRuntimeWorkingCopy in project liferay-ide by liferay.

the class MavenModuleFragmentProjectTests method testNewModuleFragmentFileProjectValidation.

@Test
public void testNewModuleFragmentFileProjectValidation() throws Exception {
    deleteAllWorkspaceProjects();
    NewModuleFragmentFilesOp fop = NewModuleFragmentFilesOp.TYPE.instantiate();
    Status projectValidationStatus = fop.getProjectName().validation();
    assertEquals("No suitable Liferay fragment project.", projectValidationStatus.message());
    NewModuleFragmentOp op = NewModuleFragmentOp.TYPE.instantiate();
    final String runtimeName = "liferay-portal-7.0";
    final NullProgressMonitor npm = new NullProgressMonitor();
    IRuntime runtime = ServerCore.findRuntime(runtimeName);
    if (runtime == null) {
        final IRuntimeWorkingCopy runtimeWC = ServerCore.findRuntimeType(getRuntimeId()).createRuntime(runtimeName, npm);
        runtimeWC.setName(runtimeName);
        runtimeWC.setLocation(getLiferayRuntimeDir());
        runtime = runtimeWC.save(true, npm);
    }
    assertNotNull(runtime);
    List<String> bundles = ServerUtil.getModuleFileListFrom70Server(runtime);
    assertNotNull(bundles);
    for (String hostOsgiBundle : bundles) {
        if (hostOsgiBundle.contains("com.liferay.asset.display.web")) {
            op.setProjectName("test-project-validation");
            op.setProjectProvider("gradle-module-fragment");
            op.setLiferayRuntimeName(runtimeName);
            op.setHostOsgiBundle(hostOsgiBundle);
            OverrideFilePath overrideFilePath = op.getOverrideFiles().insert();
            overrideFilePath.setValue("META-INF/resources/view.jsp");
            Status gradleExeStatus = NewModuleFragmentOpMethods.execute(op, ProgressMonitorBridge.create(new NullProgressMonitor()));
            assertTrue(gradleExeStatus.ok());
            IProject existedGradleProject = CoreUtil.getProject(op.getProjectName().content());
            assertNotNull(existedGradleProject);
            IFile bndFile = existedGradleProject.getFile("bnd.bnd");
            bndFile.delete(true, true, new NullProgressMonitor());
            fop.setProjectName(op.getProjectName().content());
            projectValidationStatus = fop.getProjectName().validation();
            assertEquals("Can't find bnd.bnd file in the project.", projectValidationStatus.message());
        }
    }
}
Also used : Status(org.eclipse.sapphire.modeling.Status) NullProgressMonitor(org.eclipse.core.runtime.NullProgressMonitor) IFile(org.eclipse.core.resources.IFile) OverrideFilePath(com.liferay.ide.project.core.modules.fragment.OverrideFilePath) NewModuleFragmentOp(com.liferay.ide.project.core.modules.fragment.NewModuleFragmentOp) NewModuleFragmentFilesOp(com.liferay.ide.project.core.modules.fragment.NewModuleFragmentFilesOp) IRuntimeWorkingCopy(org.eclipse.wst.server.core.IRuntimeWorkingCopy) IProject(org.eclipse.core.resources.IProject) IRuntime(org.eclipse.wst.server.core.IRuntime) Test(org.junit.Test)

Aggregations

IRuntimeWorkingCopy (org.eclipse.wst.server.core.IRuntimeWorkingCopy)41 NullProgressMonitor (org.eclipse.core.runtime.NullProgressMonitor)16 IRuntime (org.eclipse.wst.server.core.IRuntime)13 IRuntimeType (org.eclipse.wst.server.core.IRuntimeType)12 CoreException (org.eclipse.core.runtime.CoreException)9 IServerWorkingCopy (org.eclipse.wst.server.core.IServerWorkingCopy)9 IServerType (org.eclipse.wst.server.core.IServerType)8 IPath (org.eclipse.core.runtime.IPath)6 IStatus (org.eclipse.core.runtime.IStatus)6 Path (org.eclipse.core.runtime.Path)6 Test (org.junit.Test)6 PortalRuntime (com.liferay.ide.server.core.portal.PortalRuntime)5 IProgressMonitor (org.eclipse.core.runtime.IProgressMonitor)4 NewModuleFragmentOp (com.liferay.ide.project.core.modules.fragment.NewModuleFragmentOp)2 OverrideFilePath (com.liferay.ide.project.core.modules.fragment.OverrideFilePath)2 HashMap (java.util.HashMap)2 IFile (org.eclipse.core.resources.IFile)2 IProject (org.eclipse.core.resources.IProject)2 GenericServerRuntime (org.eclipse.jst.server.generic.core.internal.GenericServerRuntime)2 ITomcatRuntimeWorkingCopy (org.eclipse.jst.server.tomcat.core.internal.ITomcatRuntimeWorkingCopy)2