You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by pd...@apache.org on 2016/04/27 22:23:21 UTC

svn commit: r1741331 - /felix/trunk/dependencymanager/org.apache.felix.dependencymanager.lambda.itest/src/org/apache/felix/dm/lambda/itest/Felix5244Test.java

Author: pderop
Date: Wed Apr 27 20:23:21 2016
New Revision: 1741331

URL: http://svn.apache.org/viewvc?rev=1741331&view=rev
Log:
FELIX-5244: added test case for this issue.

Added:
    felix/trunk/dependencymanager/org.apache.felix.dependencymanager.lambda.itest/src/org/apache/felix/dm/lambda/itest/Felix5244Test.java

Added: felix/trunk/dependencymanager/org.apache.felix.dependencymanager.lambda.itest/src/org/apache/felix/dm/lambda/itest/Felix5244Test.java
URL: http://svn.apache.org/viewvc/felix/trunk/dependencymanager/org.apache.felix.dependencymanager.lambda.itest/src/org/apache/felix/dm/lambda/itest/Felix5244Test.java?rev=1741331&view=auto
==============================================================================
--- felix/trunk/dependencymanager/org.apache.felix.dependencymanager.lambda.itest/src/org/apache/felix/dm/lambda/itest/Felix5244Test.java (added)
+++ felix/trunk/dependencymanager/org.apache.felix.dependencymanager.lambda.itest/src/org/apache/felix/dm/lambda/itest/Felix5244Test.java Wed Apr 27 20:23:21 2016
@@ -0,0 +1,54 @@
+/*
+ * 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.felix.dm.lambda.itest;
+
+import static org.apache.felix.dm.lambda.DependencyManagerActivator.component;
+
+import org.apache.felix.dm.Component;
+import org.apache.felix.dm.DependencyManager;
+import org.junit.Assert;
+
+/**
+ * @author <a href="mailto:dev@felix.apache.org">Felix Project Team</a>
+ */
+public class Felix5244Test extends TestBase {
+    private final Ensure m_ensure = new Ensure();
+
+    public void testAbstractBindMethod() throws Exception {
+        final DependencyManager dm = getDM();
+        Component myService = component(dm).impl(new MyService()).withSvc(MyDependency.class, svc -> svc.required().add(AbstractService::bind)).build();
+        Component myDependency = component(dm).impl(new MyDependency() {}).provides(MyDependency.class).build();
+        dm.add(myService);
+        dm.add(myDependency);
+        m_ensure.waitForStep(1,  5000);        
+        dm.clear();
+    }
+
+    interface MyDependency {}
+    
+    public abstract class AbstractService {
+		void bind(MyDependency myDependency) {
+			Assert.assertNotNull(myDependency);
+    		m_ensure.step(1);
+    	}
+    }
+    
+    public class MyService extends AbstractService {
+    }    
+}