Grails 1.3.5并安装了selenium-rc,easyb和spring-security-core插件。除了我遇到过的一个案例,一切似乎都工作得很好。我有一个我正在测试的页面,它有以下标记:
<sec:ifAnyGranted roles='ROLE_ADMIN'>
<span class="menuButton">
<g:link mapping="adminPage">
<g:message code="default.admin.label" default="--Admin--"/>
</g:link>
</span>
</sec:ifAnyGranted>
正常运行应用程序时,一切正常。如果我以普通用户身份登录,则不显示管理员链接。如果我以管理员身份登录,则链接会显示。在运行我的测试时,无论谁登录,检查都会失败,因此永远不会呈现管理员链接。
scenario "An Admin User logs into the system", {
when "the user completes the login form with proper credentials", {
grailsApplication = ApplicationHolder.application
springSecurityService = ApplicationHolder.application.mainContext.getBean("springSecurityService")
def userAdmin = new User(username: 'testAdmin', firstName: 'Test', lastName: 'Admin', enabled: true, password: springSecurityService.encodePassword("password")).save(flush: true)
def roleAdmin = new Role(authority: 'ROLE_ADMIN').save(flush: true)
UserRole.create(userAdmin, roleAdmin)
selenium.openAndWait("/platform/login/auth")
selenium.type('j_username', 'testAdmin')
selenium.type('j_password', 'password')
selenium.clickAndWait('signInBtn')
}
then "the user should be logged in and viewing their My Account page, as an admin", {
selenium.isTextPresent("Welcome Test").shouldBe true
selenium.isElementPresent('link=Admin').shouldBe true
}
}
其他标签工作正常,例如ifLoggedIn和ifNotLoggedIn。任何人都知道这是一个已知问题还是其他任何信息?感谢。
答案 0 :(得分:1)
尝试添加flush
UserRole.create(userAdmin, roleAdmin, true)