English 中文(简体)
文件 上传 Rspec 整合负测试失败
原标题:File Upload Rspec Integration Negative Test Fails

我用几个自定义验证器来验证纸剪附件是图像,没有超过5MB。一切如预期运作。

我对一件事有点好奇。我的整合测试检查天气 < code> user. avatar < /code> 在上传失败后为零, 它返回了某种随机的东西 。

测试:

 it  Does not allow a non-image file to be uploaded as an avatar  do
   visit edit_user_path(@user)
   attach_file( user_avatar , File.dirname(__FILE__)+ /users_spec.rb )
   click_button  Update 
   page.should have_content "Avatar must be an image"
   @user.reload
   @user.avatar.should be_nil
 end

结果:

1) Users Avatars Does not allow a non-image file to be uploaded as an avatar
 Failure/Error: @user.avatar.should be_nil
   expected: nil
        got: /avatars/original/missing.png
 # ./spec/requests/users_spec.rb:147:in `block (3 levels) in <top (required)> 

我猜这是某种默认的占位符纸张剪贴板粘在里面, 但是当我去到用户 show page, user. avatar nil , 和预期的一样。 给什么?

我也尝试过同样的结果

@user.should_not have_attached_file(:avatar)

考虑到它本身的相配者, 似乎应该有效,但是也失败了。

在做了几句话之后,在对它做任何处理之前,似乎有 产值 /avatars/ginent/missing.png ,所以我想至少我可以确定它没有改变。

最佳回答

Aha! 文件? 方法返回为真, 如果文件附于给定字段, 所以以下代码给了我我想要的测试 :

@user.avatar.file?.should be_false
问题回答

暂无回答




相关问题
rails collection_select vs. select

collection_select and select Rails helpers: Which one should I use? I can t see a difference in both ways. Both helpers take a collection and generates options tags inside a select tag. Is there a ...

SSL slowness in EC2

We ve deployed our rails app to EC2. In our setup, we have two proxies on small instances behind round-robin DNS. These run nginx load balancers for a dynamically growing and shrinking farm of web ...

Auth-code with A-Za-z0-9 to use in an URL parameter

As part of a web application I need an auth-code to pass as a URL parameter. I am currently using (in Rails) : Digest::SHA1.hexdigest((object_id + rand(255)).to_s) Which provides long strings like : ...

RubyCAS-Client question: Rails

I ve installed RubyCAS-Client version 2.1.0 as a plugin within a rails app. It s working, but I d like to remove the ?ticket= in the url. Is this possible?

activerecord has_many :through find with one sql call

I have a these 3 models: class User < ActiveRecord::Base has_many :permissions, :dependent => :destroy has_many :roles, :through => :permissions end class Permission < ActiveRecord::...

Ordering a hash to xml: Rails

I m building an xml document from a hash. The xml attributes need to be in order. How can this be accomplished? hash.to_xml

Text Editor for Ruby-on-Rails

guys which text editor is good for Rubyonrails? i m using Windows and i was using E-Texteditor but its not free n its expired now can anyone plese tell me any free texteditor? n which one is best an ...

How to get SQL queries for each user where env is production

I’m developing an application dedicated to generate statistical reports, I would like that user after saving their stat report they save sql queries too. To do that I wrote the following module: ...

热门标签