我用几个自定义验证器来验证纸剪附件是图像,没有超过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
,所以我想至少我可以确定它没有改变。