blob: 91ec059e465853cb53578198901a7d7d6697dc81 [file] [log] [blame]
/**
* 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.openejb.core.stateless;
import junit.framework.TestCase;
import javax.inject.Inject;
import javax.naming.InitialContext;
import javax.ejb.SessionContext;
import javax.ejb.EJB;
import javax.annotation.Resource;
import javax.sql.DataSource;
import java.util.List;
import java.util.Arrays;
import java.util.Stack;
import org.apache.openejb.core.ivm.naming.InitContextFactory;
import org.apache.openejb.config.ConfigurationFactory;
import org.apache.openejb.assembler.classic.Assembler;
import org.apache.openejb.assembler.classic.ProxyFactoryInfo;
import org.apache.openejb.assembler.classic.TransactionServiceInfo;
import org.apache.openejb.assembler.classic.SecurityServiceInfo;
import org.apache.openejb.assembler.classic.StatelessSessionContainerInfo;
import org.apache.openejb.jee.StatelessBean;
import org.apache.openejb.jee.EjbJar;
import org.apache.openejb.jee.EnvEntry;
/**
* @version $Revision: 1135397 $ $Date: 2011-06-14 10:46:51 +0300 (Tue, 14 Jun 2011) $
*/
public class StatelessConstructorInjectionTest extends TestCase {
public void test() throws Exception {
InitialContext ctx = new InitialContext();
Widget widget = (Widget) ctx.lookup("WidgetBeanLocal");
Foo foo = (Foo) ctx.lookup("FooBeanLocal");
// assertEquals("Widget.getCount()", 10, widget.getCount());
assertEquals("Widget.getFoo()", foo, widget.getFoo());
}
protected void setUp() throws Exception {
super.setUp();
System.setProperty(javax.naming.Context.INITIAL_CONTEXT_FACTORY, InitContextFactory.class.getName());
ConfigurationFactory config = new ConfigurationFactory();
Assembler assembler = new Assembler();
assembler.createProxyFactory(config.configureService(ProxyFactoryInfo.class));
assembler.createTransactionManager(config.configureService(TransactionServiceInfo.class));
assembler.createSecurityService(config.configureService(SecurityServiceInfo.class));
// containers
StatelessSessionContainerInfo statelessContainerInfo = config.configureService(StatelessSessionContainerInfo.class);
assembler.createContainer(statelessContainerInfo);
// Setup the descriptor information
EjbJar ejbJar = new EjbJar();
ejbJar.addEnterpriseBean(new StatelessBean(FooBean.class));
StatelessBean bean = ejbJar.addEnterpriseBean(new StatelessBean(WidgetBean.class));
bean.getEnvEntry().add(new EnvEntry("count", Integer.class.getName(), "10"));
assembler.createApplication(config.configureApplication(ejbJar));
}
public static interface Foo {}
public static class FooBean implements Foo {}
public static interface Widget {
public int getCount();
public Foo getFoo();
}
public static class WidgetBean implements Widget {
@EJB(beanName = "FooBean")
private final Foo foo;
// @Resource(name="count")
// private final int count;
// @Resource
// private final DataSource ds;
//TODO OPENEJB-1578 use producer fields or methods to inject count and datasource
@Inject
public WidgetBean(/*Integer count,*/ Foo foo/*, DataSource ds*/) {
// this.count = count;
this.foo = foo;
// this.ds = ds;
}
public int getCount() {
return 0;
}
public Foo getFoo() {
return foo;
}
}
}