我正在尝试在需要身份验证的 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
我在网上搜索过,发现只有回复说我的控制器中没有操作,称为response
or 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,我真的需要一种方法来在登录时测试这些操作。