基本上我的:创建动作测试仍然失败,即使它在应用程序中有效。我在下面的控制器中注释了回形针验证并且它有效。
has_attached_file :image, styles: { medium: "700x700>", small: "350x250#" }
validates_attachment_presence :image
validates_attachment_content_type :image, content_type: /\Aimage\/.*\Z/
这是我正在运行的测试,它在注释验证时有效。我怎样才能通过符合我模型中回形针验证的参数。
test "should create if signed_in" do
sign_in(@user)
assert_difference 'Product.count' do
post :create, product:{ title:'test_product', description: 'khara', user_id: @user.id}
end
assert_redirected_to product_path(assigns(:product))
end
失败的消息:
FAIL["test_should_post_create_if_signed_in", ProductsControllerTest, 0.58458]
test_should_post_create_if_signed_in#ProductsControllerTest (0.58s)
"Product.count" didn't change by 1.
Expected: 3
Actual: 2
test/controllers/products_controller_test.rb:52:in `block in <class:ProductsControllerTest>'
基本上如何让这个测试通过?
注意:我知道回形针提供了测试说明,而Shoulda和Spec希望纯粹在Minitest中这样做。
答案 0 :(得分:7)
您应该使用ActionDispatch :: TestProcess fixture_file_upload
附加问题。在test/fixtures
中放置要用于测试的图像,将测试调整为:
test "should create if signed_in" do
sign_in(@user)
image = fixture_file_upload('some_product_image.jpg', 'image/jpg')
assert_difference 'Product.count' do
post :create, product:{ title:'test_product',
description: 'khara',
user_id: @user.id,
image: image
}
end
assert_redirected_to product_path(assigns(:product))
end
这将返回一个伪装成回形针上传文件的对象。