gpt4 book ai didi

ruby-on-rails - 奇怪的 rspec 错误 `undefined method model_name`

转载 作者:太空宇宙 更新时间:2023-11-03 16:51:03 25 4
gpt4 key购买 nike

我四处搜索并发现了这个问题和其他问题,但我的应用程序完全可以运行,只是我的测试引发了错误。

_form.html.haml

= simple_form_for @employer_profile do |f|
=f.error_notification

.form-inputs
=f.input :company_name
...


.form-actions
=f.button :submit, 'Create Employer profile', id: 'employer-profile-submit'

我什至不知道要粘贴什么其他代码,我没有在应用程序的任何地方定义 model_name,当我检查东西时,任何 View 或测试中都没有 nil。

完全错误

1) Creating Employer Profiles Employer Profile edits a profile
Failure/Error: visit employer_profiles_edit_path(@user)
ActionView::Template::Error:
undefined method `model_name' for NilClass:Class
# ./app/views/employer_profiles/_form.html.haml:1:in `_app_views_employer_profiles__form_html_haml__754845775744985234_44321300'
# ./app/views/employer_profiles/edit.html.haml:4:in `_app_views_employer_profiles_edit_html_haml__3107954110108075276_44064480'
# ./spec/features/employer_profiles_spec.rb:44:in `block (3 levels) in <top (required)>'

employer_profile_controller.rb

    class EmployerProfilesController < ApplicationController
before_filter :set_user

def new
@employer_profile = EmployerProfile.new(user_id: @user.id)
end

def show
@employer_profile = EmployerProfile.find_by_user_id(params[:user_id])
end

def edit
@employer_profile = EmployerProfile.find_by_user_id(params[:user_id])
end

def create
@employer_profile = EmployerProfile.new(employer_profile_params)

respond_to do |format|
if @employer_profile.save
format.html { redirect_to employer_profile_path(@user), notice: 'Listing was successfully created.' }
format.json { render action: 'show', status: :created, location: employer_profile_path(@user) }
else
format.html { render action: 'new' }
format.json { render json: @employer_profile.errors, status: :unprocessable_entity }
end
end
end

def update
@employer_profile = EmployerProfile.find_by_user_id(params[:user_id])

respond_to do |format|
if @employer_profile.update(employer_profile_params)
format.html { redirect_to employer_profile_path(@user), notice: 'Employer Profile was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: 'edit' }
format.json { render json: @employer_profile.errors, status: :unprocessable_entity }
end
end

end

private

def set_user
@user = current_user
end
def employer_profile_params
params.require(:employer_profile).permit(:company_name, :employer_rating, :description, :website, :city, :state, :email, :address, :zip, :industry).merge!(:user_id => @user.id)
end

end

编辑:我想我可能已经将这种怪异归结为一个 simple_form 问题。我使用了常规的 form_for,但我现在似乎没有收到错误。

employer_profile_feature_spec.rb

require 'spec_helper'
include Warden::Test::Helpers
Warden.test_mode!

def login_user
before(:each) do
@user = FactoryGirl.create(:user)
login_as(@user)
end
end


feature "Creating Employer Profiles" do

login_user

describe 'Employer Profile' do
describe 'create profile' do
it 'completes a profile and shows the results' do
visit '/'
expect{
click_link('New Employer Profile')
fill_in 'Company name', with: 'Lost Tie LLC'
fill_in 'Employer rating', with: 1
fill_in 'Description', with: 'testing text'
fill_in 'City', with: 'test-city'
fill_in 'State', with: 'test-state'
fill_in 'Email', with: 'test@example.com'
fill_in 'Website', with: 'www.example.com'
fill_in 'Address', with: '123 example street'
fill_in 'Zip', with: 12345
fill_in 'Industry', with: 'Oil'
click_button 'Create Employer profile'
}.to change(EmployerProfile,:count).by(1)

page.should have_content 'Lost Tie LLC'
end
end

it "edits a profile" do
visit employer_profiles_edit_path(@user)
expect(EmployerProfile.find_by_user_id(params[:user_id])).to_not be_nil
end

rake 路

  employer_profiles_new GET    /employer_profiles/new(.:format)           employer_profiles#new
employer_profiles POST /employer_profiles(.:format) employer_profiles#create
employer_profile GET /employer_profile/:user_id(.:format) employer_profiles#show
employer_profiles_edit GET /employer_profiles/:user_id/edit(.:format) employer_profiles#edit
PUT /employer_profiles/:user_id(.:format) employer_profiles#update

最佳答案

@employer_profile 在您看来是 nil - 所以在您的编辑操作中 EmployerProfile.find_by_user_id(params[:user_id]) 返回 nil。

如果您希望它在找不到 EmployerProfile 时引发异常,请使用该方法的 bang 变体(即。find_by_user_id!)

我怀疑您的编辑路径提供了 params[:id],而您正在查找 params[:user_id]。检查 rake routes 的输出或检查 Controller 中的参数。

关于ruby-on-rails - 奇怪的 rspec 错误 `undefined method model_name`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21769109/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com