use of com.liferay.blade.api.Problem in project liferay-ide by liferay.
the class MVCPortletClassInPortletXMLAutoCorrectTest method testAutoCorrectPortletXmlSingle.
@Test
public void testAutoCorrectPortletXmlSingle() throws Exception {
assertNotNull(autoMigrator);
FileMigrator fileMigrator = (FileMigrator) autoMigrator;
File testfile = new File("generated/test/MVCPortletClassInPortletXMLAutoCorrectTest/portlet.xml");
if (testfile.exists()) {
assertTrue(testfile.delete());
}
testfile.getParentFile().mkdirs();
Files.copy(new File("projects/test-portlet/docroot/WEB-INF/portlet.xml").toPath(), testfile.toPath());
List<Problem> problems = fileMigrator.analyze(testfile);
assertEquals(2, problems.size());
int corrected = autoMigrator.correctProblems(testfile, Collections.singletonList(problems.get(0)));
assertEquals(1, corrected);
problems = fileMigrator.analyze(testfile);
assertEquals(1, problems.size());
corrected = autoMigrator.correctProblems(testfile, Collections.singletonList(problems.get(0)));
assertEquals(1, corrected);
problems = fileMigrator.analyze(testfile);
assertEquals(0, problems.size());
}
use of com.liferay.blade.api.Problem in project liferay-ide by liferay.
the class NavigationTagsTest 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/navigation-tags/"), new NullProgressMonitor());
assertEquals(1, problems.size());
boolean found = false;
for (Problem problem : problems) {
if (problem.file.getName().endsWith("NavigationTagsTest.jsp")) {
if (problem.lineNumber == 3 && problem.startOffset >= 57 && problem.endOffset >= 374) {
found = true;
}
}
}
if (!found) {
fail();
}
}
use of com.liferay.blade.api.Problem in project liferay-ide by liferay.
the class PortalServiceImportsAutoCorrectTest method autoCorrectProblems.
@Test
public void autoCorrectProblems() throws Exception {
File tempFolder = Files.createTempDirectory("autocorrect").toFile();
File testFile = new File(tempFolder, "PortalServiceImports.java");
tempFolder.deleteOnExit();
File originalTestfile = new File("javatests/PortalServiceImports.java");
Files.copy(originalTestfile.toPath(), testFile.toPath());
List<Problem> problems = null;
FileMigrator migrator = null;
Collection<ServiceReference<FileMigrator>> mrefs = context.getServiceReferences(FileMigrator.class, null);
for (ServiceReference<FileMigrator> mref : mrefs) {
migrator = context.getService(mref);
if (migrator.getClass().getName().contains("PortalServiceImports")) {
problems = migrator.analyze(testFile);
break;
}
}
assertEquals(2, problems.size());
int problemsFixed = ((AutoMigrator) migrator).correctProblems(testFile, problems);
assertEquals(2, problemsFixed);
File dest = new File(tempFolder, "Updated.java");
assertTrue(testFile.renameTo(dest));
problems = migrator.analyze(dest);
assertEquals(0, problems.size());
}
use of com.liferay.blade.api.Problem in project liferay-ide by liferay.
the class RenamePortalKernelImportAutoCorrectTest method autoCorrectProblems.
@Test
public void autoCorrectProblems() throws Exception {
File tempFolder = Files.createTempDirectory("autocorrect").toFile();
File testFile = new File(tempFolder, "TasksEntryLocalServiceImpl.java");
tempFolder.deleteOnExit();
File originalTestfile = new File("javatests/TasksEntryLocalServiceImpl.java");
Files.copy(originalTestfile.toPath(), testFile.toPath());
List<Problem> problems = null;
FileMigrator migrator = null;
Collection<ServiceReference<FileMigrator>> mrefs = context.getServiceReferences(FileMigrator.class, null);
for (ServiceReference<FileMigrator> mref : mrefs) {
migrator = context.getService(mref);
if (migrator.getClass().getName().contains("RenamePortalKernelImport")) {
problems = migrator.analyze(testFile);
break;
}
}
assertEquals(10, problems.size());
int problemsFixed = ((AutoMigrator) migrator).correctProblems(testFile, problems);
assertEquals(10, problemsFixed);
File dest = new File(tempFolder, "Updated.java");
assertTrue(testFile.renameTo(dest));
problems = migrator.analyze(dest);
assertEquals(0, problems.size());
}
use of com.liferay.blade.api.Problem in project liferay-ide by liferay.
the class RepositoryServiceUtilTest method repositoryServiceUtilTest.
@Test
public void repositoryServiceUtilTest() throws Exception {
ServiceReference<Migration> sr = context.getServiceReference(Migration.class);
Migration m = context.getService(sr);
List<Problem> problems = m.findProblems(new File("jsptests/repository-service-util"), new NullProgressMonitor());
assertEquals(1, problems.size());
boolean found = false;
for (Problem problem : problems) {
if (problem.file.getName().endsWith("RepositoryServiceUtilTest.jsp")) {
if (problem.lineNumber == 9 && problem.startOffset >= 104 && problem.endOffset >= 171) {
found = true;
}
}
}
if (!found) {
fail();
}
}
Aggregations