0

请帮忙。

我有页面 login/auth.gsp

在正文中使用以下代码

<div id="page-wrap">
  <div class="login-block">
    <g:if test="${flash.message}">
      <h3  class='login_message'>${flash.message}</h3>
    </g:if>
    <g:else>
      <h3>IMMS Login</h3>
    </g:else>
    <form action='${postUrl}' method='POST' id='loginForm' class='cssform' autocomplete='off'>
      <p>
        <label for='username'><g:message code="auth.username.label" default="User Name"/></label>
        <input type='text' class='text_' name='j_username' id='username'/>
      </p>
      <p>
        <label for='password'><g:message code="auth.password.label" default="Password"/></label>
        <input type='password' class='text_' name='j_password' id='password'/>
      </p>
      <p class="submit-wrap">
        <input type='submit' value="${message(code: 'default.button.Login.label', default: 'Login')}"/>
      </p>
    </form>
  </div>
  <div class="image-block"></div>
</div>

在 test/functional/pages 目录下,我有 LoginPage

package pages

import geb.Page

class LoginPage extends Page {
  static url = "login/auth/"
  static at = {
    userName.text() == ""
  }
  static content = {
    userName { $("input", name : "j_username") }
    password { $("input", name : "j_password") }
    loginButton(to: IndexPage){ $(".submit-wrap").find("input").first() }
  }
}

这是我的测试代码

import geb.spock.GebReportingSpec
import pages.*
import spock.lang.Stepwise
@Stepwise
class BaseSpec extends GebReportingSpec {
  String getBaseUrl() {
    return "http://localhost:8080/IMMS/"
  }

  def "open URL"() {
    when:
    to LoginPage
    then:
    at LoginPage
  }

}

我运行测试并失败。这是报告

<?xml version="1.0" encoding="UTF-8" ?>
<testsuite errors="0" failures="1" hostname="SGCDMSSVR" name="BaseSpec" tests="1" time="24.715" timestamp="2011-07-12T07:00:04">
  <properties />
  <testcase classname="BaseSpec" name="open URL" time="24.693">
    <failure message="Condition not satisfied:

at LoginPage
|
false
" type="junit.framework.AssertionFailedError">junit.framework.AssertionFailedError: Condition not satisfied:

at LoginPage
|
false

    at BaseSpec.open URL(BaseSpec.groovy:18)
</failure>
  </testcase>
  <system-out><![CDATA[--Output from open URL--
]]></system-out>
  <system-err><![CDATA[--Output from open URL--
]]></system-err>
</testsuite>

有什么想法可以帮助我吗?我错过了一些配置还是我的类似 jQuery 的导航不正确?

对于测试,我正在使用“功能测试开发”插件。


更新:最初我完全使用示例中的 GebConfig 我刚刚注意到默认驱动程序是 HTMLUnit。

当我从命令控制台使用功能测试开发功能运行功能测试时。

grails develop-functional-tests

我选择选项来运行所有功能测试。控制台显示失败的测试。

当我将默认驱动程序更改为 Firefox 时。它仍然失败,但我可以看到它自动打开 Firefox 浏览器并打开 URL:

http://localhost:8080/IMMS/login/auth.gsp

它无法打开 URL 404。我认为这就是测试失败的原因。

我尝试从 IDE 运行以下命令。

grails test-app -functional

它工作并打开了firefox浏览器,它完成了编写的测试脚本和测试通过。

所以,我在这里修改标题。现在的重点是 grails 的功能测试开发插件。也许你们中的任何人曾经尝试过这个插件并有答案?谢谢。

PS:我可以修改问题吗?还是我应该在stackoverflow 中创建新问题?

4

2 回答 2

3

您的at条件LoginPage失败(您不在您期望的页面中,或者您的标记中有一些问题导致条件失败)。通过在其中放置一个,您将获得更多信息assert

像:

package pages

import geb.Page

class LoginPage extends Page {
  static url = "login/auth/"
  static at = {
    assert userName.text() == ""
    true
  }
  static content = {
    userName { $("input", name : "j_username") }
    password { $("input", name : "j_password") }
    loginButton(to: IndexPage){ $(".submit-wrap").find("input").first() }
  }
}

这应该告诉您选择器的实际值是多少。

无论如何,我认为这种情况很脆弱。对于页面识别,您最好检查文档的标题或某些特定字符串,例如页眉。在你的情况下,我会匹配<h3>标题。IE:

static at = {
  assert $('h3').text() =~ /IMMS Login/
  true
}

true最后是这样,检查不会失败,因为您已经在断言条件,但断言具有null价值。)。

此外,请查看博客文章以获得更一致的替代方案。

于 2011-07-12T15:17:22.693 回答
0

我在这里询问了 grails 插件的创建者。所以基本上,这与测试代码问题无关。我只需要使用不同的端口进行测试。

于 2011-08-04T00:56:11.783 回答