JSFUnit问题 - EJB没有被注入到被测试的servlet中

时间:2010-11-03 17:29:40

标签: dependency-injection ejb-3.0 jsfunit

在我的应用程序中,我有一个EntryServlet,它可以加载默认数据并根据登录的用户ID设置安全性。这个servlet通过依赖注入使用EJB。当我作为普通的Web应用程序执行它时它工作正常但是当我尝试使用JSFUnit测试应用程序时,servlet中的ejb引用不会被注入并且为null。

我需要在设置JSF会话之前调用EntryServlet,因为它加载了jsf页面中所需的数据。 我将其称为如下

JSFUnit测试代码

public class VisitingScholarNewRequestTest扩展org.apache.cactus.ServletTestCase {

public static Test suite() {
   return new TestSuite( VisitingScholarNewRequestTest.class );
}



public void testSaveAsDraft() throws ServletException,IOException {
    //Calling EntryServlet
    JSFUnitEntryServlet entryServlet = new JSFUnitEntryServlet();
    request.setAttribute("netid","KS2316");
    entryServlet.doPost(request,response); -- this is giving an error.
    // Send an HTTP request for the initial page
    JSFSession jsfSession = new JSFSession("/faces/cardrequestcreate.xhtml");

    // A JSFClientSession emulates the browser and lets you test HTML
    JSFClientSession client = jsfSession.getJSFClientSession();

    // A JSFServerSession gives you access to JSF state      
    JSFServerSession server = jsfSession.getJSFServerSession();

    System.out.println("current view id :"+server.getCurrentViewID());

    // Test navigation to initial viewID
    assertEquals("/cardrequestcreate.xhtml", server.getCurrentViewID());

}

EntryServlet代码

public class JSFUnitEntryServlet扩展HttpServlet {     @EJB     private MasterDataLocal masterDataFacade;

public void doGet(HttpServletRequest request,
                  HttpServletResponse response) throws ServletException,
                                                       IOException {
    doPost(request,response);
}

public void doPost(HttpServletRequest request,
                   HttpServletResponse response) throws ServletException,
                                                        IOException {
    String netId = "";
    try {
        netId = (String)request.getAttribute("netid");
        //Establish the portal connection for this user
        masterDataFacade.reinstateUser(netId); -- The test is failing with a null pointer exception here.

正如我之前提到的那样当我在浏览器中执行应用程序时,它工作正常并且EJB被注入EntryServlet,但是当我运行JSFUnit测试套件时它没有被注入。由于某种原因,servlet没有在容器中执行。请帮助这方面。非常感谢任何帮助

此致 基兰

1 个答案:

答案 0 :(得分:1)

您正在使用new来创建您的servlet:

//Calling EntryServlet
JSFUnitEntryServlet entryServlet = new JSFUnitEntryServlet();

我没有看到如何进行注入,因为这里没有管理servlet(即由容器创建)。