Search in sources :

Example 26 with Migration

use of com.liferay.blade.api.Migration in project liferay-ide by liferay.

the class AUILayoutTagsTest method findProblems.

@Test
public void findProblems() throws Exception {
    ServiceReference<Migration> sr = context.getServiceReference(Migration.class);
    Migration m = context.getService(sr);
    List<Problem> problems = m.findProblems(new File("jsptests/aui-layout/"), new NullProgressMonitor());
    assertEquals(1, problems.size());
    boolean found = false;
    for (Problem problem : problems) {
        if (problem.file.getName().endsWith("AUILayoutTagTest.jsp")) {
            if (problem.lineNumber == 1) {
                found = true;
            }
        }
    }
    if (!found) {
        fail();
    }
}
Also used : NullProgressMonitor(com.liferay.blade.util.NullProgressMonitor) Migration(com.liferay.blade.api.Migration) Problem(com.liferay.blade.api.Problem) File(java.io.File) Test(org.junit.Test)

Example 27 with Migration

use of com.liferay.blade.api.Migration in project liferay-ide by liferay.

the class AUILiferayTagsTest method findProblems.

@Test
public void findProblems() throws Exception {
    ServiceReference<Migration> sr = context.getServiceReference(Migration.class);
    Migration m = context.getService(sr);
    List<Problem> problems = m.findProblems(new File("jsptests/aui-liferay/"), new NullProgressMonitor());
    assertEquals(1, problems.size());
    boolean found = false;
    for (Problem problem : problems) {
        if (problem.file.getName().endsWith("AUILiferayTagTest.jsp")) {
            if (problem.lineNumber == 1 && problem.startOffset == 16 && problem.endOffset == 48) {
                found = true;
            }
        }
    }
    if (!found) {
        fail();
    }
}
Also used : NullProgressMonitor(com.liferay.blade.util.NullProgressMonitor) Migration(com.liferay.blade.api.Migration) Problem(com.liferay.blade.api.Problem) File(java.io.File) Test(org.junit.Test)

Example 28 with Migration

use of com.liferay.blade.api.Migration in project liferay-ide by liferay.

the class AllProblemsTest method allProblems.

@Test
@Ignore
public void allProblems() throws Exception {
    ServiceReference<Migration> sr = context.getServiceReference(Migration.class);
    Migration m = context.getService(sr);
    List<Problem> problems = m.findProblems(new File("../com.liferay.blade.upgrade.liferay70/projects/"), new NullProgressMonitor());
    final int expectedSize = 304;
    final int size = problems.size();
    if (size != expectedSize) {
        System.err.println("All problems size is " + size + ", expected size is " + expectedSize);
    }
    assertEquals(expectedSize, size);
    for (Problem problem : problems) {
        if (problem.html != null && problem.html.equals("#legacy"))
            continue;
        // if (problem.html == null || problem.html.equals("")) {
        // for (ServiceReference<FileMigrator> ref : refs) {
        // String section = (String) ref.getProperty("problem.section");
        // String title = (String) ref.getProperty("problem.title");
        // if (title.equals(problem.title)) {
        // for (String line : lines) {
        // if (section.startsWith(line)) {
        // fail("line=" + line + ", section=" + section);
        // }
        // }
        // }
        // }
        // }
        assertNotNull("problem.title=" + problem.title + ", problem.file=" + problem.file, problem.html);
        assertTrue("problem.title=" + problem.title + ", problem.file=" + problem.file, problem.html.length() > 0);
    }
}
Also used : NullProgressMonitor(com.liferay.blade.util.NullProgressMonitor) Migration(com.liferay.blade.api.Migration) Problem(com.liferay.blade.api.Problem) File(java.io.File) Ignore(org.junit.Ignore) Test(org.junit.Test)

Aggregations

Migration (com.liferay.blade.api.Migration)28 Problem (com.liferay.blade.api.Problem)28 File (java.io.File)28 Test (org.junit.Test)27 NullProgressMonitor (com.liferay.blade.util.NullProgressMonitor)26 ArrayList (java.util.ArrayList)2 HashSet (java.util.HashSet)2 Ignore (org.junit.Ignore)2 AutoMigrator (com.liferay.blade.api.AutoMigrator)1 ProgressMonitor (com.liferay.blade.api.ProgressMonitor)1 FileProblems (com.liferay.ide.project.core.upgrade.FileProblems)1 MigrationProblems (com.liferay.ide.project.core.upgrade.MigrationProblems)1 MigrationProblemsContainer (com.liferay.ide.project.core.upgrade.MigrationProblemsContainer)1 UpgradeProblems (com.liferay.ide.project.core.upgrade.UpgradeProblems)1 ExecutionException (org.eclipse.core.commands.ExecutionException)1 IFile (org.eclipse.core.resources.IFile)1 WorkspaceJob (org.eclipse.core.resources.WorkspaceJob)1 CoreException (org.eclipse.core.runtime.CoreException)1 IProgressMonitor (org.eclipse.core.runtime.IProgressMonitor)1 IStatus (org.eclipse.core.runtime.IStatus)1