Search in sources :

Example 66 with KieModuleService

use of org.kie.workbench.common.services.shared.project.KieModuleService in project kie-wb-common by kiegroup.

the class ModuleServiceImplResolvePackageInvalidNoPOMTest method testResolvePackageWithJavaFileInDefaultPackage.

@Test
public void testResolvePackageWithJavaFileInDefaultPackage() throws Exception {
    final Bean moduleServiceBean = (Bean) beanManager.getBeans(KieModuleService.class).iterator().next();
    final CreationalContext cc = beanManager.createCreationalContext(moduleServiceBean);
    final KieModuleService moduleService = (KieModuleService) beanManager.getReference(moduleServiceBean, KieModuleService.class, cc);
    final URL testUrl = this.getClass().getResource("/ModuleBackendTestModuleStructureInvalidNoPOM/src/main/java/Bean.java");
    final org.uberfire.java.nio.file.Path nioTestPath = fs.getPath(testUrl.toURI());
    final Path testPath = paths.convert(nioTestPath);
    // Test a non-Project Path resolves to null
    final Package result = moduleService.resolvePackage(testPath);
    assertNull(result);
}
Also used : Path(org.uberfire.backend.vfs.Path) KieModuleService(org.kie.workbench.common.services.shared.project.KieModuleService) CreationalContext(javax.enterprise.context.spi.CreationalContext) Package(org.guvnor.common.services.project.model.Package) URL(java.net.URL) Bean(javax.enterprise.inject.spi.Bean) Test(org.junit.Test)

Example 67 with KieModuleService

use of org.kie.workbench.common.services.shared.project.KieModuleService in project kie-wb-common by kiegroup.

the class ModuleServiceImplResolvePackageInvalidNoPOMTest method testResolvePackageWithJavaFileInSubPackage.

@Test
public void testResolvePackageWithJavaFileInSubPackage() throws Exception {
    final Bean moduleServiceBean = (Bean) beanManager.getBeans(KieModuleService.class).iterator().next();
    final CreationalContext cc = beanManager.createCreationalContext(moduleServiceBean);
    final KieModuleService moduleService = (KieModuleService) beanManager.getReference(moduleServiceBean, KieModuleService.class, cc);
    final URL testUrl = this.getClass().getResource("/ModuleBackendTestModuleStructureInvalidNoPOM/src/main/java/org/kie/test/Bean.java");
    final org.uberfire.java.nio.file.Path nioTestPath = fs.getPath(testUrl.toURI());
    final Path testPath = paths.convert(nioTestPath);
    // Test a non-Project Path resolves to null
    final Package result = moduleService.resolvePackage(testPath);
    assertNull(result);
}
Also used : Path(org.uberfire.backend.vfs.Path) KieModuleService(org.kie.workbench.common.services.shared.project.KieModuleService) CreationalContext(javax.enterprise.context.spi.CreationalContext) Package(org.guvnor.common.services.project.model.Package) URL(java.net.URL) Bean(javax.enterprise.inject.spi.Bean) Test(org.junit.Test)

Example 68 with KieModuleService

use of org.kie.workbench.common.services.shared.project.KieModuleService in project kie-wb-common by kiegroup.

the class ModuleServiceImplResolvePackageInvalidNoPOMTest method testResolvePackageDefaultResources.

@Test
public void testResolvePackageDefaultResources() throws Exception {
    final Bean moduleServiceBean = (Bean) beanManager.getBeans(KieModuleService.class).iterator().next();
    final CreationalContext cc = beanManager.createCreationalContext(moduleServiceBean);
    final KieModuleService moduleService = (KieModuleService) beanManager.getReference(moduleServiceBean, KieModuleService.class, cc);
    final URL testUrl = this.getClass().getResource("/ModuleBackendTestModuleStructureInvalidNoPOM/src/main/resources");
    final org.uberfire.java.nio.file.Path nioTestPath = fs.getPath(testUrl.toURI());
    final Path testPath = paths.convert(nioTestPath);
    // Test a non-Project Path resolves to null
    final Package result = moduleService.resolvePackage(testPath);
    assertNull(result);
}
Also used : Path(org.uberfire.backend.vfs.Path) KieModuleService(org.kie.workbench.common.services.shared.project.KieModuleService) CreationalContext(javax.enterprise.context.spi.CreationalContext) Package(org.guvnor.common.services.project.model.Package) URL(java.net.URL) Bean(javax.enterprise.inject.spi.Bean) Test(org.junit.Test)

Example 69 with KieModuleService

use of org.kie.workbench.common.services.shared.project.KieModuleService in project kie-wb-common by kiegroup.

the class ModuleServiceImplResolvePackageValidTest method testResolvePackageDefaultJava.

@Test
public void testResolvePackageDefaultJava() throws Exception {
    final Bean moduleServiceBean = (Bean) beanManager.getBeans(KieModuleService.class).iterator().next();
    final CreationalContext cc = beanManager.createCreationalContext(moduleServiceBean);
    final KieModuleService moduleService = (KieModuleService) beanManager.getReference(moduleServiceBean, KieModuleService.class, cc);
    final URL rootUrl = this.getClass().getResource("/ModuleBackendTestModuleStructureValid/src/main/java");
    final org.uberfire.java.nio.file.Path nioRootPath = fs.getPath(rootUrl.toURI());
    final Path rootPath = paths.convert(nioRootPath);
    final URL testUrl = this.getClass().getResource("/ModuleBackendTestModuleStructureValid/src/main/java");
    final org.uberfire.java.nio.file.Path nioTestPath = fs.getPath(testUrl.toURI());
    final Path testPath = paths.convert(nioTestPath);
    // Test /src/main/java resolves as the default package
    final Package result = moduleService.resolvePackage(testPath);
    assertEquals(rootPath.toURI(), result.getPackageMainSrcPath().toURI());
}
Also used : Path(org.uberfire.backend.vfs.Path) KieModuleService(org.kie.workbench.common.services.shared.project.KieModuleService) CreationalContext(javax.enterprise.context.spi.CreationalContext) Package(org.guvnor.common.services.project.model.Package) URL(java.net.URL) Bean(javax.enterprise.inject.spi.Bean) Test(org.junit.Test)

Example 70 with KieModuleService

use of org.kie.workbench.common.services.shared.project.KieModuleService in project kie-wb-common by kiegroup.

the class ModuleServiceImplResolvePackageValidTest method testIsPOMFileWithNonPOMFile.

@Test
public void testIsPOMFileWithNonPOMFile() throws Exception {
    final Bean moduleServiceBean = (Bean) beanManager.getBeans(KieModuleService.class).iterator().next();
    final CreationalContext cc = beanManager.createCreationalContext(moduleServiceBean);
    final KieModuleService moduleService = (KieModuleService) beanManager.getReference(moduleServiceBean, KieModuleService.class, cc);
    final URL testUrl = this.getClass().getResource("/ModuleBackendTestModuleStructureValid/project.imports");
    final org.uberfire.java.nio.file.Path nioTestPath = fs.getPath(testUrl.toURI());
    final Path testPath = paths.convert(nioTestPath);
    // Test a kModule.xml file resolves to a null package
    final boolean result = moduleService.isPom(testPath);
    assertFalse(result);
}
Also used : Path(org.uberfire.backend.vfs.Path) KieModuleService(org.kie.workbench.common.services.shared.project.KieModuleService) CreationalContext(javax.enterprise.context.spi.CreationalContext) URL(java.net.URL) Bean(javax.enterprise.inject.spi.Bean) Test(org.junit.Test)

Aggregations

KieModuleService (org.kie.workbench.common.services.shared.project.KieModuleService)77 CreationalContext (javax.enterprise.context.spi.CreationalContext)67 Bean (javax.enterprise.inject.spi.Bean)67 Test (org.junit.Test)66 Path (org.uberfire.backend.vfs.Path)59 URL (java.net.URL)58 Package (org.guvnor.common.services.project.model.Package)49 Module (org.guvnor.common.services.project.model.Module)15 Before (org.junit.Before)4 KieModule (org.kie.workbench.common.services.shared.project.KieModule)4 InvocationOnMock (org.mockito.invocation.InvocationOnMock)4 Path (org.uberfire.java.nio.file.Path)4 GAV (org.guvnor.common.services.project.model.GAV)3 POM (org.guvnor.common.services.project.model.POM)3 Answer (org.mockito.stubbing.Answer)3 HashSet (java.util.HashSet)2 Set (java.util.Set)2 FolderListing (org.kie.workbench.common.screens.explorer.model.FolderListing)2 IOException (java.io.IOException)1 TreeSet (java.util.TreeSet)1