From e5b7380c874745c989d1816b8f552504f038e1bc Mon Sep 17 00:00:00 2001 From: lresende Date: Thu, 26 Sep 2013 20:33:20 +0000 Subject: 2.0 branch for possible maintenance release git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1526672 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/injection/TestObjectFactoryTestCase.java | 82 ++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 sca-java-2.x/branches/2.0/modules/implementation-java-runtime/src/test/java/org/apache/tuscany/sca/implementation/java/injection/TestObjectFactoryTestCase.java (limited to 'sca-java-2.x/branches/2.0/modules/implementation-java-runtime/src/test/java/org/apache/tuscany/sca/implementation/java/injection/TestObjectFactoryTestCase.java') diff --git a/sca-java-2.x/branches/2.0/modules/implementation-java-runtime/src/test/java/org/apache/tuscany/sca/implementation/java/injection/TestObjectFactoryTestCase.java b/sca-java-2.x/branches/2.0/modules/implementation-java-runtime/src/test/java/org/apache/tuscany/sca/implementation/java/injection/TestObjectFactoryTestCase.java new file mode 100644 index 0000000000..ea9d15b3f6 --- /dev/null +++ b/sca-java-2.x/branches/2.0/modules/implementation-java-runtime/src/test/java/org/apache/tuscany/sca/implementation/java/injection/TestObjectFactoryTestCase.java @@ -0,0 +1,82 @@ +/* + * 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.tuscany.sca.implementation.java.injection; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNull; + +import java.lang.reflect.Constructor; +import java.util.ArrayList; +import java.util.List; + +import org.apache.tuscany.sca.core.factory.ObjectFactory; +import org.junit.Before; +import org.junit.Test; + +/** + * @version $Rev$ $Date$ + */ +public class TestObjectFactoryTestCase { + + private Constructor ctor; + + @Test + public void testConstructorInjection() throws Exception { + List initializers = new ArrayList(); + initializers.add(new SingletonObjectFactory("foo")); + TestObjectFactory factory = new TestObjectFactory(ctor, initializers); + Foo foo = factory.getInstance(); + assertEquals("foo", foo.foo); + } + + /** + * Verifies null parameters can be passed to a constructor. This is valid when a reference is optional during + * constructor injection + */ + @Test + public void testConstructorInjectionOptionalParam() throws Exception { + List initializers = new ArrayList(); + initializers.add(null); + TestObjectFactory factory = new TestObjectFactory(ctor, initializers); + Foo foo = factory.getInstance(); + assertNull(foo.foo); + } + + @Test + public void testConstructorInitializerInjection() throws Exception { + TestObjectFactory factory = new TestObjectFactory(ctor); + factory.setInitializerFactory(0, new SingletonObjectFactory("foo")); + Foo foo = factory.getInstance(); + assertEquals("foo", foo.foo); + } + + @Before + public void setUp() throws Exception { + ctor = Foo.class.getConstructor(String.class); + } + + private static class Foo { + + private String foo; + + public Foo(String foo) { + this.foo = foo; + } + } +} -- cgit v1.2.3