Search in sources :

Example 26 with NullProgressMonitor

use of com.liferay.blade.util.NullProgressMonitor 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)26 Problem (com.liferay.blade.api.Problem)26 NullProgressMonitor (com.liferay.blade.util.NullProgressMonitor)26 File (java.io.File)26 Test (org.junit.Test)26 Ignore (org.junit.Ignore)2 AutoMigrator (com.liferay.blade.api.AutoMigrator)1 HashSet (java.util.HashSet)1 ServiceReference (org.osgi.framework.ServiceReference)1