Return-Path: Delivered-To: apmail-incubator-aries-commits-archive@minotaur.apache.org Received: (qmail 69596 invoked from network); 2 Dec 2009 18:43:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 2 Dec 2009 18:43:17 -0000 Received: (qmail 63993 invoked by uid 500); 2 Dec 2009 18:43:17 -0000 Delivered-To: apmail-incubator-aries-commits-archive@incubator.apache.org Received: (qmail 63913 invoked by uid 500); 2 Dec 2009 18:43:17 -0000 Mailing-List: contact aries-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: aries-dev@incubator.apache.org Delivered-To: mailing list aries-commits@incubator.apache.org Received: (qmail 63902 invoked by uid 99); 2 Dec 2009 18:43:17 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Dec 2009 18:43:17 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Dec 2009 18:43:14 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 33AFB2388978; Wed, 2 Dec 2009 18:42:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r886249 - in /incubator/aries/trunk/blueprint/blueprint-itests/src/test/java/org/apache/aries/blueprint/itests: BlueprintContainer2Test.java BlueprintContainerBTCustomizerTest.java Date: Wed, 02 Dec 2009 18:42:52 -0000 To: aries-commits@incubator.apache.org From: linsun@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091202184253.33AFB2388978@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: linsun Date: Wed Dec 2 18:42:51 2009 New Revision: 886249 URL: http://svn.apache.org/viewvc?rev=886249&view=rev Log: add another itest for BlueprintContainer Added: incubator/aries/trunk/blueprint/blueprint-itests/src/test/java/org/apache/aries/blueprint/itests/BlueprintContainer2Test.java (with props) Modified: incubator/aries/trunk/blueprint/blueprint-itests/src/test/java/org/apache/aries/blueprint/itests/BlueprintContainerBTCustomizerTest.java Added: incubator/aries/trunk/blueprint/blueprint-itests/src/test/java/org/apache/aries/blueprint/itests/BlueprintContainer2Test.java URL: http://svn.apache.org/viewvc/incubator/aries/trunk/blueprint/blueprint-itests/src/test/java/org/apache/aries/blueprint/itests/BlueprintContainer2Test.java?rev=886249&view=auto ============================================================================== --- incubator/aries/trunk/blueprint/blueprint-itests/src/test/java/org/apache/aries/blueprint/itests/BlueprintContainer2Test.java (added) +++ incubator/aries/trunk/blueprint/blueprint-itests/src/test/java/org/apache/aries/blueprint/itests/BlueprintContainer2Test.java Wed Dec 2 18:42:51 2009 @@ -0,0 +1,93 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.apache.aries.blueprint.itests; + +import static org.junit.Assert.assertNotNull; +import static org.ops4j.pax.exam.CoreOptions.equinox; +import static org.ops4j.pax.exam.CoreOptions.options; +import static org.ops4j.pax.exam.CoreOptions.systemProperty; + +import java.util.Hashtable; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.ops4j.pax.exam.Option; +import org.ops4j.pax.exam.junit.JUnit4TestRunner; +import org.osgi.framework.Bundle; +import org.osgi.service.cm.Configuration; +import org.osgi.service.cm.ConfigurationAdmin; + +/** + * this test is based on blueprint container test, but this test starts the + * blueprint sample before the blueprint bundle is started so going a slightly + * different code path + * + */ +@RunWith(JUnit4TestRunner.class) +public class BlueprintContainer2Test extends AbstractIntegrationTest { + + @Test + public void test() throws Exception { + // Create a config to check the property placeholder + ConfigurationAdmin ca = getOsgiService(ConfigurationAdmin.class); + Configuration cf = ca.getConfiguration("blueprint-sample-placeholder", null); + Hashtable props = new Hashtable(); + props.put("key.b", "10"); + cf.update(props); + + Bundle bundle = getInstalledBundle("org.apache.aries.blueprint.sample"); + Bundle blueprintBundle = getInstalledBundle("org.apache.aries.blueprint"); + assertNotNull(bundle); + + bundle.start(); + blueprintBundle.start(); + + // do the test + testBlueprintContainer(bundle); + } + + @org.ops4j.pax.exam.junit.Configuration + public static Option[] configuration() { + Option[] options = options( + // Log + mavenBundle("org.ops4j.pax.logging", "pax-logging-api"), + mavenBundle("org.ops4j.pax.logging", "pax-logging-service"), + // Felix Config Admin + mavenBundle("org.apache.felix", "org.apache.felix.configadmin"), + // Felix mvn url handler + mavenBundle("org.ops4j.pax.url", "pax-url-mvn"), + + + // this is how you set the default log level when using pax logging (logProfile) + systemProperty("org.ops4j.pax.logging.DefaultServiceLog.level").value("DEBUG"), + + // Bundles + mavenBundle("org.apache.aries.blueprint", "org.apache.aries.blueprint.sample").noStart(), + mavenBundle("org.apache.aries", "org.apache.aries.util"), + mavenBundle("org.apache.aries.blueprint", "org.apache.aries.blueprint").noStart(), + mavenBundle("org.osgi", "org.osgi.compendium"), +// org.ops4j.pax.exam.container.def.PaxRunnerOptions.vmOption("-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"), + + equinox().version("3.5.0") + ); + options = updateOptions(options); + return options; + } + +} Propchange: incubator/aries/trunk/blueprint/blueprint-itests/src/test/java/org/apache/aries/blueprint/itests/BlueprintContainer2Test.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: incubator/aries/trunk/blueprint/blueprint-itests/src/test/java/org/apache/aries/blueprint/itests/BlueprintContainer2Test.java ------------------------------------------------------------------------------ svn:keywords = Date Revision Propchange: incubator/aries/trunk/blueprint/blueprint-itests/src/test/java/org/apache/aries/blueprint/itests/BlueprintContainer2Test.java ------------------------------------------------------------------------------ svn:mime-type = text/plain Modified: incubator/aries/trunk/blueprint/blueprint-itests/src/test/java/org/apache/aries/blueprint/itests/BlueprintContainerBTCustomizerTest.java URL: http://svn.apache.org/viewvc/incubator/aries/trunk/blueprint/blueprint-itests/src/test/java/org/apache/aries/blueprint/itests/BlueprintContainerBTCustomizerTest.java?rev=886249&r1=886248&r2=886249&view=diff ============================================================================== --- incubator/aries/trunk/blueprint/blueprint-itests/src/test/java/org/apache/aries/blueprint/itests/BlueprintContainerBTCustomizerTest.java (original) +++ incubator/aries/trunk/blueprint/blueprint-itests/src/test/java/org/apache/aries/blueprint/itests/BlueprintContainerBTCustomizerTest.java Wed Dec 2 18:42:51 2009 @@ -18,26 +18,17 @@ */ package org.apache.aries.blueprint.itests; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotNull; -import static org.junit.Assert.assertSame; -import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; import static org.ops4j.pax.exam.CoreOptions.equinox; import static org.ops4j.pax.exam.CoreOptions.options; import static org.ops4j.pax.exam.CoreOptions.systemProperty; import java.io.InputStream; import java.net.URL; -import java.text.SimpleDateFormat; -import java.util.Currency; import java.util.HashMap; import java.util.Hashtable; import java.util.Map; -import org.apache.aries.blueprint.sample.Bar; -import org.apache.aries.blueprint.sample.Foo; import org.junit.Test; import org.junit.runner.RunWith; import org.ops4j.pax.exam.CoreOptions; @@ -48,7 +39,6 @@ import org.osgi.framework.BundleContext; import org.osgi.framework.Constants; import org.osgi.framework.ServiceReference; -import org.osgi.service.blueprint.container.BlueprintContainer; import org.osgi.service.cm.Configuration; import org.osgi.service.cm.ConfigurationAdmin; import org.osgi.service.framework.CompositeBundle;