在单元测试服务时如何向会话中注入一些东西

时间:2010-12-01 20:54:37

标签: grails

我编写了一个读取CAS会话变量的服务......

package cp


import edu.yale.its.tp.cas.client.filter.CASFilter
import javax.servlet.http.HttpSession
import org.springframework.web.context.request.RequestContextHolder

class AuthorizeService {

 def username
 def loginError
 def permissions

 def authCheck( String pageController, String pageAction ) {

  username = getSession().getAttribute(CASFilter.CAS_FILTER_USER)

.....
Omitted the rest of this to save space.  
.....

 }

 private HttpSession getSession() {
  return RequestContextHolder.currentRequestAttributes().getSession()
 }

我无法弄清楚如何在测试中将某些内容放入会话中,以便运行这段代码。

以下是测试:

package cp

import grails.test.*

    class AuthorizeServiceTests extends GroovyTestCase {

     def AuthorizeService

     protected void setUp() {
      super.setUp()
     }

     protected void tearDown() {
      super.tearDown()
     }

     void testAuthCheck() {

      def isAuthorized

      // No username in the session
       isAuthorized = AuthorizeService.authCheck( 'welcome', 'index' )
       assertEquals false, isAuthorized

      // Mock the username to the rest of the tests work
       mockSession["CASFilter.CAS_FILTER_USER"] = "testUser" 


    .....
    Omitted the rest of this to save space.  
    .....

     }

当我运行测试时,这是我回来的错误:

没有这样的属性:类的mockSession:cp.AuthorizeServiceTests groovy.lang.MissingPropertyException:没有这样的属性:类的mockSession:cp.AuthorizeServiceTests at cp.AuthorizeServiceTests.testAuthCheck(AuthorizeServiceTests.groovy:26)

我一直在谷歌搜索2天,试图找到一种方法将某些东西注入mockSession或类似的东西,以便我可以测试这项服务。如果这是一个控制器,我可以看到在哪里测试这个很容易,但看起来服务是一个完全不同的动物。

作为一个背景,我正在将一个有效的PHP应用程序移植到Grails ...我是一个PHP人,这是我第一次参与Grails,所以如果这是一个noob问题,我道歉。

2 个答案:

答案 0 :(得分:2)

Grails 2.3.4:

import grails.util.GrailsWebUtil

class SomeTests extends GroovyTestCase {

    void testSomething() {
        def request = GrailsWebUtil.bindMockWebRequest()
        def myDummyObject = new DummyObject()
        request.session['myDummyObject'] = myDummyObject

        // Run your code and make asserts
    }
}

答案 1 :(得分:1)

看看MockUtils

也尝试使用ControllerUnitTestCase