Search in sources :

Example 31 with ModelledResource

use of org.apache.aries.application.modelling.ModelledResource in project aries by apache.

the class DeploymentGeneratorTest method checkMultipleCircularDependenciesDetected.

/**
   * This method checks that the a more complicated circular dependency issues the correct error message
   * and checks that the details listed in the exception are correct. 
   * @throws Exception
   */
@Test
public void checkMultipleCircularDependenciesDetected() throws Exception {
    Collection<ModelledResource> cmr = new ArrayList<ModelledResource>();
    ExportedPackage testIsolated1 = createExportedPackage("test.isolated1", "1.0.0", new String[] { "test.isolated1", "test.isolated2" }, new String[] { "test.shared1", "test.shared2" });
    cmr.add(testIsolated1.getBundle());
    ExportedPackage testIsolated2 = createExportedPackage("test.isolated2", "1.0.0", new String[] { "test.isolated1", "test.isolated2" }, new String[] { "test.shared1", "test.shared2" });
    cmr.add(testIsolated2.getBundle());
    ExportedPackage testShared1 = createExportedPackage("test.shared1", "1.0.0", new String[] { "test.shared1", "test.shared2" }, new String[] { "test.isolated1", "test.isolated2" });
    cmr.add(testShared1.getBundle());
    ExportedPackage testShared2 = createExportedPackage("test.shared2", "1.0.0", new String[] { "test.shared1", "test.shared2" }, new String[] { "test.isolated1", "test.isolated2" });
    cmr.add(testShared2.getBundle());
    _resolver.addResult(cmr);
    // The second time DeploymentGenerator calls the Resolver, it will provide just 
    // test.shared. The resolver will return test.shared _plus_ test.isolated. 
    _resolver.addResult(cmr);
    Skeleton.getSkeleton(appMetadata).setReturnValue(new MethodCall(ApplicationMetadata.class, "getApplicationContents"), Arrays.asList(mockContent("test.isolated1", "1.0.0"), mockContent("test.isolated2", "1.0.0")));
    app = Skeleton.newMock(AriesApplication.class);
    Skeleton.getSkeleton(app).setReturnValue(new MethodCall(AriesApplication.class, "getApplicationMetadata"), appMetadata);
    try {
        DeployedBundles deployedBundles = deplMFMgr.generateDeployedBundles(appMetadata, Arrays.asList(new ModelledResource[] { testIsolated1.getBundle(), testIsolated2.getBundle() }), new ArrayList<Content>());
        deplMFMgr.generateDeploymentManifest(appMetadata.getApplicationSymbolicName(), appMetadata.getApplicationVersion().toString(), deployedBundles);
    } catch (ResolverException rx) {
        // Get the unsatisfied Requirements
        List<String> unsatisfiedReqs = rx.getUnsatisfiedRequirements();
        // Ensure we've got 4 unsatisfied Requirements
        assertEquals("4 unsatisfied requirements expected, but got " + Arrays.toString(unsatisfiedReqs.toArray()), 4, unsatisfiedReqs.size());
        List<String> checkMessages = new ArrayList<String>();
        // Now load an array with the expected messages.
        checkMessages.add("Shared bundle test.shared1_1.0.0 has a dependency for package test.isolated1 which " + "is exported from application bundles [test.isolated1_1.0.0, test.isolated2_1.0.0]");
        checkMessages.add("Shared bundle test.shared1_1.0.0 has a dependency for package test.isolated2 which " + "is exported from application bundles [test.isolated1_1.0.0, test.isolated2_1.0.0]");
        checkMessages.add("Shared bundle test.shared2_1.0.0 has a dependency for package test.isolated1 which " + "is exported from application bundles [test.isolated1_1.0.0, test.isolated2_1.0.0]");
        checkMessages.add("Shared bundle test.shared2_1.0.0 has a dependency for package test.isolated2 which " + "is exported from application bundles [test.isolated1_1.0.0, test.isolated2_1.0.0]");
        // because some unsatisfied reqs have spaces at the end of the string.
        for (String unsatisfiedReq : unsatisfiedReqs) {
            assertTrue(unsatisfiedReq + " is not an expected msg", checkMessages.contains(unsatisfiedReq.trim()));
        }
    }
}
Also used : ResolverException(org.apache.aries.application.management.ResolverException) ArrayList(java.util.ArrayList) AriesApplication(org.apache.aries.application.management.AriesApplication) DeployedBundles(org.apache.aries.application.modelling.DeployedBundles) MethodCall(org.apache.aries.unittest.mocks.MethodCall) ModelledResource(org.apache.aries.application.modelling.ModelledResource) ApplicationMetadata(org.apache.aries.application.ApplicationMetadata) ExportedPackage(org.apache.aries.application.modelling.ExportedPackage) Content(org.apache.aries.application.Content) ArrayList(java.util.ArrayList) List(java.util.List) Test(org.junit.Test)

Example 32 with ModelledResource

use of org.apache.aries.application.modelling.ModelledResource in project aries by apache.

the class ModellerTest method testParsingOfBundle.

@Test
public void testParsingOfBundle() throws Exception {
    URL pathToTestBundle = getClass().getClassLoader().getResource("test.bundle");
    ModelledResource resource = sut.getModelledResource("file:///test.bundle.uri", FileSystem.getFSRoot(new File(pathToTestBundle.toURI())));
    checkTestBundleResource(resource);
}
Also used : File(java.io.File) URL(java.net.URL) ModelledResource(org.apache.aries.application.modelling.ModelledResource) ParserProxyTest(org.apache.aries.application.modelling.impl.ParserProxyTest) Test(org.junit.Test)

Example 33 with ModelledResource

use of org.apache.aries.application.modelling.ModelledResource in project aries by apache.

the class BundleResourceTest method instantiateBundleResource.

/**
   * @return
   * @throws IOException
   * @throws FileNotFoundException
   * @throws ResolverException
   * @throws InvalidAttributeException 
   */
protected ModelledResource instantiateBundleResource() throws Exception {
    File file = new File(TEST_APP_MANIFEST_PATH, MANIFEST_MF);
    Manifest man = new Manifest(new FileInputStream(file));
    ModelledResource br = new ModelledResourceImpl(null, man.getMainAttributes(), null, null);
    return br;
}
Also used : ModelledResourceImpl(org.apache.aries.application.modelling.impl.ModelledResourceImpl) Manifest(java.util.jar.Manifest) File(java.io.File) FileInputStream(java.io.FileInputStream) ModelledResource(org.apache.aries.application.modelling.ModelledResource)

Example 34 with ModelledResource

use of org.apache.aries.application.modelling.ModelledResource in project aries by apache.

the class ExportedPackageTest method instantiatePackage.

private ExportedPackage instantiatePackage(String packageName, String version, String... attributes) {
    ModelledResource mr = Skeleton.newMock(ModelledResource.class);
    Map<String, Object> generatedAttributes = new HashMap<String, Object>();
    generatedAttributes.put(Constants.VERSION_ATTRIBUTE, version);
    for (String att : attributes) {
        String[] bits = att.split("=");
        generatedAttributes.put(bits[0], bits[1]);
    }
    return new ExportedPackageImpl(mr, packageName, generatedAttributes);
}
Also used : HashMap(java.util.HashMap) ExportedPackageImpl(org.apache.aries.application.modelling.impl.ExportedPackageImpl) ModelledResource(org.apache.aries.application.modelling.ModelledResource)

Example 35 with ModelledResource

use of org.apache.aries.application.modelling.ModelledResource in project aries by apache.

the class DeployedBundlesTest method testGetRequiredUseBundle_RedundantEntry.

@Test
public void testGetRequiredUseBundle_RedundantEntry() throws Exception {
    // Bundle A requires package B from bundle B with no version requirement.
    // Bundle B requires package C from bundle C with no version requirement.
    // Bundle C requires package B from bundle B with explicit version requirement.
    DeployedBundles deployedBundles = getSimpleDeployedBundles(ternary.CONTENT, ternary.USES, ternary.USES);
    deployedBundles.addBundle(createModelledResource("bundle.a", "1.0.0", Arrays.asList("package.b"), new ArrayList<String>()));
    deployedBundles.addBundle(createModelledResource("bundle.b", "1.0.0", Arrays.asList("package.c"), Arrays.asList("package.b;version=1.0.0")));
    deployedBundles.addBundle(createModelledResource("bundle.c", "1.0.0", Arrays.asList("package.b;version=1.0.0"), Arrays.asList("package.c;version=1.0.0")));
    // Check the redundant use-bundle entry is identified.
    // Bundle C is not required by app content, although it is specified in use-bundle.
    Collection<ModelledResource> requiredUseBundle = null;
    try {
        requiredUseBundle = deployedBundles.getRequiredUseBundle();
    } catch (ResolverException e) {
        e.printStackTrace();
        Assert.fail(e.toString());
    }
    Assert.assertTrue("RequiredUseBundle=" + requiredUseBundle, requiredUseBundle.size() == 1);
}
Also used : ResolverException(org.apache.aries.application.management.ResolverException) ArrayList(java.util.ArrayList) DeployedBundles(org.apache.aries.application.modelling.DeployedBundles) ModelledResource(org.apache.aries.application.modelling.ModelledResource) Test(org.junit.Test)

Aggregations

ModelledResource (org.apache.aries.application.modelling.ModelledResource)41 Test (org.junit.Test)21 ArrayList (java.util.ArrayList)16 ByteArrayOutputStream (java.io.ByteArrayOutputStream)11 ZipOutputStream (java.util.zip.ZipOutputStream)11 ResolverException (org.apache.aries.application.management.ResolverException)11 AbstractIntegrationTest (org.apache.aries.itest.AbstractIntegrationTest)11 DeployedBundles (org.apache.aries.application.modelling.DeployedBundles)10 File (java.io.File)8 Content (org.apache.aries.application.Content)8 ApplicationMetadata (org.apache.aries.application.ApplicationMetadata)7 FileOutputStream (java.io.FileOutputStream)6 HashSet (java.util.HashSet)6 MethodCall (org.apache.aries.unittest.mocks.MethodCall)6 Manifest (java.util.jar.Manifest)5 AriesApplication (org.apache.aries.application.management.AriesApplication)5 ExportedPackage (org.apache.aries.application.modelling.ExportedPackage)5 HashMap (java.util.HashMap)4 Attributes (java.util.jar.Attributes)4 InvalidAttributeException (org.apache.aries.application.InvalidAttributeException)4