You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by mn...@apache.org on 2010/08/24 12:22:28 UTC

svn commit: r988469 - in /incubator/aries/trunk/application/application-itests/src/test: java/org/apache/aries/application/runtime/itests/OBRAppManagerTest.java resources/obr/repository.xml

Author: mnuttall
Date: Tue Aug 24 10:22:28 2010
New Revision: 988469

URL: http://svn.apache.org/viewvc?rev=988469&view=rev
Log:
ARIES-386: Improve runtime itest OBRAppManagerTest

Modified:
    incubator/aries/trunk/application/application-itests/src/test/java/org/apache/aries/application/runtime/itests/OBRAppManagerTest.java
    incubator/aries/trunk/application/application-itests/src/test/resources/obr/repository.xml

Modified: incubator/aries/trunk/application/application-itests/src/test/java/org/apache/aries/application/runtime/itests/OBRAppManagerTest.java
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/application/application-itests/src/test/java/org/apache/aries/application/runtime/itests/OBRAppManagerTest.java?rev=988469&r1=988468&r2=988469&view=diff
==============================================================================
--- incubator/aries/trunk/application/application-itests/src/test/java/org/apache/aries/application/runtime/itests/OBRAppManagerTest.java (original)
+++ incubator/aries/trunk/application/application-itests/src/test/java/org/apache/aries/application/runtime/itests/OBRAppManagerTest.java Tue Aug 24 10:22:28 2010
@@ -18,6 +18,7 @@
  */
 package org.apache.aries.application.runtime.itests;
 
+import static org.junit.Assert.assertEquals;
 import static org.ops4j.pax.exam.CoreOptions.equinox;
 import static org.ops4j.pax.exam.CoreOptions.options;
 import static org.ops4j.pax.exam.CoreOptions.systemProperty;
@@ -29,8 +30,10 @@ import java.io.FileWriter;
 import java.io.InputStreamReader;
 
 import org.apache.aries.application.management.AriesApplication;
+import org.apache.aries.application.management.AriesApplicationContext;
 import org.apache.aries.application.management.AriesApplicationManager;
 import org.apache.aries.application.utils.filesystem.FileSystem;
+import org.apache.aries.sample.HelloWorld;
 import org.apache.aries.unittest.fixture.ArchiveFixture;
 import org.apache.aries.unittest.fixture.ArchiveFixture.ZipFixture;
 import org.junit.Before;
@@ -50,98 +53,97 @@ public class OBRAppManagerTest extends A
    * are created in the paxweb temp directory, and not in the svn tree
    */
   static boolean createdApplications = false;
-  @Before
   public static void createApplications() throws Exception {
-    if (createdApplications) {
-      return;
-    }
-    ZipFixture testBundle = ArchiveFixture.newZip()
-        .manifest().symbolicName("org.apache.aries.sample")
-          .attribute("Bundle-Version", "1.0.0")
-          .attribute("Export-Package", "org.apache.aries.sample.impl")
-          .end()
-        .binary("org/apache/aries/sample/impl/HelloWorldImpl.class",
-            OBRAppManagerTest.class.getClassLoader().getResourceAsStream("org/apache/aries/sample/impl/HelloWorldImpl.class"))
-        .end();
-
-    FileOutputStream fout = new FileOutputStream("bundle.jar");
-    testBundle.writeOut(fout);
-    fout.close();
-
-    ZipFixture testEba = ArchiveFixture.newZip()
-      .jar("sample.jar")
-        .manifest().symbolicName("org.apache.aries.sample")
-          .attribute("Bundle-Version", "1.0.0")
-          .attribute("Import-Package", "org.apache.aries.sample.impl")
-          .end()
-        .binary("OSGI-INF/blueprint/sample-blueprint.xml",
-            OBRAppManagerTest.class.getClassLoader().getResourceAsStream("basic/sample-blueprint.xml"))
-        .end()
-         .binary("META-INF/APPLICATION.MF",
-        OBRAppManagerTest.class.getClassLoader().getResourceAsStream("basic/APPLICATION.MF"))
-        .end();
-    fout = new FileOutputStream("test.eba");
-    testEba.writeOut(fout);
-    fout.close();
-    
-    StringBuilder repositoryXML = new StringBuilder();
-    
-    BufferedReader reader = new BufferedReader(new InputStreamReader(OBRAppManagerTest.class.getResourceAsStream("/obr/repository.xml")));
-    String line;
-    
-    while ((line = reader.readLine()) != null) {
-      repositoryXML.append(line);
-      repositoryXML.append("\r\n");
-    }
-    
-    String repo = repositoryXML.toString().replaceAll("bundle_location", new File("bundle.jar").getAbsolutePath());
-    
-    System.out.println(repo);
-    
-    FileWriter writer = new FileWriter("repository.xml");
-    writer.write(repo);
-    writer.close();
-    
-    createdApplications = true;
-  }
-
-  @Test
-  public void testAppWithApplicationManifest() throws Exception {
-    startApplicationRuntimeBundle();
-
-    RepositoryAdmin repositoryAdmin = getOsgiService(RepositoryAdmin.class);
-    
-    repositoryAdmin.addRepository(new File("repository.xml").toURI().toURL());
-
-    Repository[] repos = repositoryAdmin.listRepositories();
-    
-    for (Repository repo : repos) {
-      Resource[] resources = repo.getResources();
-      
-      for (Resource r : resources) {
-        Capability[] cs = r.getCapabilities();
-        
-        for (Capability c : cs) {
-          System.out.println(c.getName() + " : " + c.getProperties());
-        }
-      }
-    }
-    
-    AriesApplicationManager manager = getOsgiService(AriesApplicationManager.class);
-    AriesApplication app = manager.createApplication(FileSystem.getFSRoot(new File("test.eba")));
-    app = manager.resolve(app);
-    //installing requires a valid url for the bundle in repository.xml.
-//    ApplicationContext ctx = manager.install(app);
-//    ctx.start();
-
-//    HelloWorld hw = getOsgiService(HelloWorld.class);
-//    String result = hw.getMessage();
-//    assertEquals (result, "hello world");
-//
-//    ctx.stop();
-//    manager.uninstall(ctx);
-  }
-
+	    if (createdApplications) {
+	      return;
+	    }
+	    ZipFixture testBundle = ArchiveFixture.newZip()
+	        .manifest().symbolicName("org.apache.aries.sample.bundle")
+	          .attribute("Bundle-Version", "1.0.0")
+	          .attribute("Import-Package", "org.apache.aries.sample")
+	          .attribute("Export-Package", "org.apache.aries.sample.impl")
+	          .end()
+	        .binary("org/apache/aries/sample/impl/HelloWorldImpl.class",
+	            OBRAppManagerTest.class.getClassLoader().getResourceAsStream("org/apache/aries/sample/impl/HelloWorldImpl.class"))
+	        .end();
+
+	    FileOutputStream fout = new FileOutputStream("bundle.jar");
+	    testBundle.writeOut(fout);
+	    fout.close();
+
+	    ZipFixture testEba = ArchiveFixture.newZip()
+	      .jar("sample.jar")
+	        .manifest().symbolicName("org.apache.aries.sample")
+	          .attribute("Bundle-Version", "1.0.0")
+	          .attribute("Import-Package", "org.apache.aries.sample.impl,org.apache.aries.sample")
+	          .end()
+	        .binary("OSGI-INF/blueprint/sample-blueprint.xml",
+	            OBRAppManagerTest.class.getClassLoader().getResourceAsStream("basic/sample-blueprint.xml"))
+	        .end()
+	         .binary("META-INF/APPLICATION.MF",
+	        OBRAppManagerTest.class.getClassLoader().getResourceAsStream("basic/APPLICATION.MF"))
+	        .end();
+	    fout = new FileOutputStream("test.eba");
+	    testEba.writeOut(fout);
+	    fout.close();
+	    
+	    StringBuilder repositoryXML = new StringBuilder();
+	    
+	    BufferedReader reader = new BufferedReader(new InputStreamReader(OBRAppManagerTest.class.getResourceAsStream("/obr/repository.xml")));
+	    String line;
+	    
+	    while ((line = reader.readLine()) != null) {
+	      repositoryXML.append(line);
+	      repositoryXML.append("\r\n");
+	    }
+	    
+	    String repo = repositoryXML.toString().replaceAll("bundle_location", new File("bundle.jar").toURI().toString());
+	    
+	    System.out.println(repo);
+	    
+	    FileWriter writer = new FileWriter("repository.xml");
+	    writer.write(repo);
+	    writer.close();
+	    
+	    createdApplications = true;
+	  }
+
+	  @Test
+	  public void testAppWithApplicationManifest() throws Exception {
+	    startApplicationRuntimeBundle();
+
+	    RepositoryAdmin repositoryAdmin = getOsgiService(RepositoryAdmin.class);
+	    
+	    repositoryAdmin.addRepository(new File("repository.xml").toURI().toURL());
+
+	    Repository[] repos = repositoryAdmin.listRepositories();
+	    
+	    for (Repository repo : repos) {
+	      Resource[] resources = repo.getResources();
+	      
+	      for (Resource r : resources) {
+	        Capability[] cs = r.getCapabilities();
+	        
+	        for (Capability c : cs) {
+	          System.out.println(c.getName() + " : " + c.getProperties());
+	        }
+	      }
+	    }
+	    
+	    AriesApplicationManager manager = getOsgiService(AriesApplicationManager.class);
+	    AriesApplication app = manager.createApplication(FileSystem.getFSRoot(new File("test.eba")));
+	    app = manager.resolve(app);
+	    //installing requires a valid url for the bundle in repository.xml.
+	    AriesApplicationContext ctx = manager.install(app);
+	    ctx.start();
+
+	    HelloWorld hw = getOsgiService(HelloWorld.class);
+	    String result = hw.getMessage();
+	    assertEquals (result, "hello world");
+
+	    ctx.stop();
+	    manager.uninstall(ctx);
+	  }
 
   @org.ops4j.pax.exam.junit.Configuration
   public static Option[] configuration() {

Modified: incubator/aries/trunk/application/application-itests/src/test/resources/obr/repository.xml
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/application/application-itests/src/test/resources/obr/repository.xml?rev=988469&r1=988468&r2=988469&view=diff
==============================================================================
--- incubator/aries/trunk/application/application-itests/src/test/resources/obr/repository.xml (original)
+++ incubator/aries/trunk/application/application-itests/src/test/resources/obr/repository.xml Tue Aug 24 10:22:28 2010
@@ -1,12 +1,12 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <repository name="Geronimo Framework, Configs :: J2EE System">
-    <resource version="1.3.0.3" uri="file:/bundle_location"
-              symbolicname="org.apache.aries.sample"
-              presentationname="org.apache.aries.sample" id="1266103855623">
+    <resource version="1.3.0.3" uri="bundle_location"
+              symbolicname="org.apache.aries.sample.bundle"
+              presentationname="org.apache.aries.sample.bundle" id="1266103855623">
         <description>sample</description>
         <license>http://www.apache.org/licenses/LICENSE-2.0.txt</license>
         <capability name="bundle">
-            <p v="org.apache.aries.sample" n="symbolicname"/>
+            <p v="org.apache.aries.sample.bundle" n="symbolicname"/>
             <p v="1.3.0" t="version" n="version"/>
             <p v="2" t="version" n="manifestversion"/>
         </capability>