我目前正在为所有控制器编写测试,并遇到了一个我无法解决的问题。对于我的一个控制器,每个测试都有效(显示、索引、新建、编辑、更新(,但由于某种原因,我的 #create 测试无法通过。澄清一下:所有夹具和其他方法都运行良好并通过 - 我的创建方法或对该方法的测试有问题。
据我所知 - 错误可能与respond_to |format|
线有关,但似乎无法解决。
这是测试:
test "should create captable" do
sign_in @user
post company_captables_url(@company, @captable), params: { captable: { company_id: @captable.company_id, name: "The BEST captable", version: @captable.version } }
assert_response :success
end
下面是控制器的方法:
def create
@captable = @company.captables.new(captable_params)
respond_to do |format|
if @captable.save
format.html { redirect_to [@company, @captable], notice: 'Captable was successfully created.' }
format.json { render :show, status: :created, location: @captable }
else
format.html { render :new }
format.json { render json: @captable.errors, status: :unprocessable_entity }
end
end
end
运行此测试时出错:
Error:
CaptablesControllerTest#test_should_create_captable:
ActionController::UnknownFormat: ActionController::UnknownFormat
app/controllers/captables_controller.rb:24:in `create'
test/controllers/captables_controller_test.rb:38:in `block in <class:CaptablesControllerTest>'
bin/rails test test/controllers/captables_controller_test.rb:36
从控制器中,可以看到它同时响应 html 和 json。
但是,在您的测试请求中,它会在没有任何格式的情况下命中 url(请参阅 https://guides.rubyonrails.org/routing.html#path-and-url-helpers,生成的 url 没有.anything
,否则您会发现.:format
结尾(。因此,控制器不知道该respond_to什么,从而抛出"未知格式"错误。
您基本上有以下几种选择:
1(您实际上可以编写url并添加显式格式
2(您可以尝试使用串联(即:post "#{company_captables_url(@company, @captable)}.json"
(添加格式
3( 您可以将路由设置为具有默认响应格式(即:resources :captables, defaults: { format: 'json' }
(。https://guides.rubyonrails.org/routing.html#defining-defaults