0

我正在尝试在需要身份验证的 Web 应用程序上测试一个操作(通过设计)。具体操作使用 javascript,因此我将js选项应用于规范,如下所示:

scenario "User wants to fax a single document", js: true do
  reset_email
  @doc = @user.documents.create(FactoryGirl.attributes_for(:document))
  visit "/documents/#{@user.id}"

  click_on "send_document_#{@doc.id}"
  last_email.should eq(@doc)
end

控制器以电子邮件的方式发送传真。我不知道为什么;我没写。无论如何,在此功能规范的顶部(使用 Capybara 和 Rspec),我使用

before(:each) do
  # Signs in as an admin
  @company = FactoryGirl.create(:company)
  @subscription = FactoryGirl.create(:admin_subscription, company_id: @company.id)
  @user = FactoryGirl.create(:user, company_id: @company.id)
  login_as @user, scope: :user
end

文件中的所有其他规范(也需要登录)仍然通过,这让我认为它与 javascript 有关。因此,该js选项在 Firefox 中打开了一个浏览器,并且该页面不是正确的内容。它说

500 Internal Server Error
  undefined method `status' for nil:NilClass

我在网上搜索过,发现只有回复说我的控制器中没有操作,称为responseor action。请放心,我没有这样的行动;只有 RESTful 操作以及两个附加功能:

def send_document
  @to = params[:to].gsub(/([() \-]+)/, '')
  #The below parses the number to format it for InterFax
  #It adds a "+1" to the front, and a dash in the middle 
  #of the number where needed.
  @to = "+1"+@to[0..-5]+"-"+@to[-4,4]
  @document = Document.find(params[:id])
  DocumentMailer.send_document(@to, @document).deliver
  render :template => false, :text => 'true'
end
def email_document
  @to = params[:to]
  @document = Document.find(params[:id])
  DocumentMailer.email_document(@to, @document).deliver
  render :template => false, :text => 'true'
end

任何人都可以帮助理解这些错误吗?这个应用程序很多都使用 javascript,我真的需要一种方法来在登录时测试这些操作。

4

1 回答 1

0

在未首先测试操作是否已完成的情况下检查非 UI 条件时要小心。当你这样做时:

  click_on "send_document_#{@doc.id}"
  last_email.should eq(@doc)

请记住,javascript 在浏览器实例中运行,该实例与您的测试代码不在同一个进程中。在继续之前检查页面上的更新可能会有所帮助:

  click_on "send_document_#{@doc.id}"
  page.should have_content("Email sent") # for example
  last_email.should eq(@doc)

Capybara 声称在等待页面元素可见方面非常聪明 - YMMV。

如果你的应用需要登录,你的请求规范应该使用正常的登录过程——访问登录页面,输入凭据,然后导航到该页面进行测试。

于 2013-02-15T03:15:24.893 回答