我无法让这个测试工作。我已经查看了其他一些SO问题/答案,但它们似乎都适用于旧版本的Rails。
我有一个控制器测试,我试图使用devices#update
路线,但我收到以下错误:
Failures:
1) DevicesController device#update is handled
Failure/Error: patch :update, params: { device: @device }
ActionController::UrlGenerationError:
No route matches {:action=>"update", :controller=>"devices", :device=>#<Device id: 3, token: "Xn/6ut68w", nickname: "rough-snowflake-470", network: nil, ip_address: nil, gateway: nil, version: nil, ips_scan: nil, ips_exclude: nil, user_id: 3, created_at: "2018-02-21 02:44:16", updated_at: "2018-02-21 02:44:16">}
以下是rspec测试:
要求&#39; rails_helper&#39;
RSpec.describe DevicesController, type: :controller do
before(:each) { @user = User.create(email: 'test@test.com', password: 'password', password_confirmation: 'password') }
it 'device#update is handled' do
sign_in(@user)
@device = @user.devices.first
patch :update, params: { device: @device }
@device.reload
expect(response.status).to eq(200)
end
end
从后端的角度来看,创建了一个用户,并为他们自动创建了device
,我已经通过其他测试证实了这一点。
devices_controller.rb
看起来像:
class DevicesController < ApplicationController
before_action :set_device, only: %i[edit show update]
respond_to :html
def update
if @device.update(device_params)
flash[:notice] = 'Successful update'
respond_with :edit, :device
else
flash[:warning] = 'Address formats allowed: x.x.x.x OR x.x.x.x-x OR x.x.x.x/x'
respond_with :edit, :device
end
end
private def set_device
@device = Device.find(params[:id])
end
private def device_params
params.require(:device).permit(:token, :nickname, :ips_scan, :ips_exclude)
end
end
此时,我只是想让测试工作,但我真的想在params
字段中注入数据以进行测试,以验证更新是否真正有效,例如:
patch :update, params: { device: @device, nickname: 'foobar' }
只允许用户为设备添加昵称。
有一条路线,所以根据我收集的内容,我没有在rspec测试中正确调用patch :update
:
$ rake routes
edit_device GET /devices/:id/edit(.:format) devices#edit
device GET /devices/:id(.:format) devices#show
PATCH /devices/:id(.:format) devices#update
PUT /devices/:id(.:format) devices#update
我在这里缺少什么?!
答案 0 :(得分:0)
您可以通过运行tail -f log/test.log
来检查测试输出,但我确定您在这里遇到了参数问题。尝试这样的事情:
patch :update, params: {
id: @device.id, device: { nickname: 'foobar' }
}
你必须屈服于StrongParameters。
答案 1 :(得分:0)
对我来说,以下工作有效:
patch device_path(@device), params: {
device: { nickname:"foobar"}
}