我的規格/控制器/ decidings_controller_spec.rb在下面。Rspec控制器測試通常太長?
RSpec.describe DecidingsController, type: :controller do
describe '#create' do
before do
@deciding=build(:deciding_consenting_false)
end
context 'correct_user login' do
before do
login_user(@deciding.asking.user)
end
it 'creates with deciding +1' do
expect{post :create , undertaking_id: @deciding.undertaking_id , asking_id: @deciding.asking_id}.to change(Deciding , :count).by(1)
end
it 'redirects to undertking' do
post :create , undertaking_id: @deciding.undertaking_id , asking_id: @deciding.asking_id
expect(response).to redirect_to @deciding.undertaking
end
end
context 'incorrect_user login' do
before do
@user=create(:user)
login_user(@user)
end
it 'creates with deciding 0' do
expect{post :create , undertaking_id: @deciding.undertaking_id , asking_id: @deciding.asking_id}.to change(Deciding , :count).by(0)
end
it 'redirects to undertking' do
post :create , undertaking_id: @deciding.undertaking_id , asking_id: @deciding.asking_id
expect(response).to redirect_to root_path
end
end
end
describe '#destroy' do
context 'before deciding consent' do
before do
@deciding=create(:deciding_consenting_false)
end
context 'correct_user login' do
before do
login_user(@deciding.asking.user)
end
it 'destroy with deciding -1' do
expect{delete :destroy , undertaking_id: @deciding , asking_id: @deciding}.to change(Deciding , :count).by(-1)
end
it 'redirects undertaking show' do
delete :destroy , undertaking_id: @deciding.undertaking_id , asking_id: @deciding.asking_id
expect(response).to redirect_to @deciding.undertaking
end
end
context 'incorrect_user login' do
before do
user=create(:user)
login_user(user)
end
it 'destroy with deciding -1' do
expect{delete :destroy , undertaking_id: @deciding , asking_id: @deciding}.to change(Deciding , :count).by(0)
end
it 'redirects undertaking show' do
delete :destroy , undertaking_id: @deciding.undertaking_id , asking_id: @deciding.asking_id
expect(response).to redirect_to root_path
end
end
end
context ' if after deciding consent(should #before_consent)' do
before do
@deciding=create(:deciding_consenting_true)
end
context 'correct_user login' do
before do
login_user(@deciding.asking.user)
end
it 'destroy with deciding 0' do
expect{delete :destroy , undertaking_id: @deciding , asking_id: @deciding}.to change(Deciding , :count).by(0)
end
it 'redirects undertaking show' do
delete :destroy , undertaking_id: @deciding.undertaking_id , asking_id: @deciding.asking_id
expect(response).to redirect_to root_path
end
end
end
end
describe '#consent' do
context 'correct_user login' do
before do
@deciding=create(:deciding_consenting_false)
login_user(@deciding.undertaking.user)
end
it 'consenting changes true' do
patch :consent , undertaking_id: @deciding.undertaking_id
@deciding.reload
expect(@deciding.consenting).to eq true
end
it 'redirect_to undertaking' do
patch :consent , undertaking_id: @deciding.undertaking_id
expect(response).to redirect_to @deciding.undertaking
end
end
context 'asking user login' do
before do
@deciding=create(:deciding_consenting_false)
login_user(@deciding.asking.user)
end
it 'consenting not changes true' do
patch :consent , undertaking_id: @deciding.undertaking_id
@deciding.reload
expect(@deciding.consenting).to eq false
end
it 'redirect_to root' do
patch :consent , undertaking_id: @deciding.undertaking_id
expect(response).to redirect_to root_path
end
end
context 'incorrect_user login' do
before do
@deciding=create(:deciding_consenting_false)
@user=create(:user)
login_user(@user)
end
it 'consenting not changes true' do
patch :consent , undertaking_id: @deciding.undertaking_id
@deciding.reload
expect(@deciding.consenting).to eq false
end
it 'redirect_to root' do
patch :consent , undertaking_id: @deciding.undertaking_id
expect(response).to redirect_to root_path
end
end
end
describe '#deciding_cancel' do
context 'correct_user login' do
context 'asking user login' do
context 'should #after_consent' do
before do
@deciding=create(:deciding_consenting_true)
login_user(@deciding.asking.user)
end
end
context 'should not before consent' do
before do
@deciding=create(:deciding_consenting_false)
login_user(@deciding.asking.user)
end
end
context 'should #before_finish' do
before do
@deciding=create(:deciding_consenting_true)
login_user(@deciding.asking.user)
end
end
context 'should not before finish' do
before do
@deciding=create(:deciding_after_finish)
login_user(@deciding.asking.user)
end
end
end
context 'undertaking user login' do
end
end
context 'incorrect_user login' do
before do
@user=create(:user)
end
end
end
describe '#deciding_cancel' do
context 'correct_user login' do
end
context 'incorrect_user login' do
end
end
describe '#deciding_cancel' do
context 'correct_user login' do
end
context 'incorrect_user login' do
end
end
末
我Decidingscontroller具有條件分支很多before_action。所以我的規格文件變得太長了。 這種情況下還有其他方法嗎?如果還有其他方法可以縮短程序,請告訴我。
無論如何,我的控制器/ decidings_controller.rb位於下方。
class DecidingsController < ApplicationController
#correct_user?
before_action :authenticate_user!
before_action :asking_user!, only: [:create , :destroy , :asking_finish , :finish_cancel ]
before_action :undertaking_user!, only: [:consent , :undertaking_finish]
before_action :asking_or_undertaking_user! , only: [:deciding_cancel,:deciding_cancel_consent , :deciding_cancel_refuse]
before_action :reverse_user! ,only: [:deciding_cancel_consent , :deciding_cancel_refuse]
#流れ
before_action :before_consent , only: [:destroy]
before_action :after_consent , only: [:deciding_cancel ,:deciding_cancel_consent , :deciding_cancel_refuse, :undertaking_finish , :asking_finish , :finish_cancel ]
before_action :before_finish , only: [:deciding_cancel ,:deciding_cancel_consent , :deciding_cancel_refuse]
before_action :after_deciding_cancel , only: [:deciding_cancel_consent , :deciding_cancel_refuse]
before_action :after_undertaking_finish , only: [:asking_finish , :finish_cancel]
def create
asking=Asking.find(params[:asking_id])
undertaking=Undertaking.find(params[:undertaking_id])
deciding=Deciding.new(asking_id: asking.id , undertaking_id: undertaking.id)
if deciding.save
flash[:success] = "契約作成に成功しました。"
redirect_to undertaking
else
flash[:alert] = "契約作成に失敗しました。"
redirect_to undertaking
end
end
def destroy
asking=Asking.find(params[:asking_id])
undertaking=Undertaking.find(params[:undertaking_id])
asking.deciding.destroy
flash[:info]='契約申し込みをキャンセルしました。'
redirect_to undertaking
end
def consent
undertaking=Undertaking.find(params[:undertaking_id])
if undertaking.deciding
undertaking.deciding.update(consenting: true)
flash[:success] = "契約が成立しました。"
redirect_to undertaking
else
redirect_to root_path
end
end
def deciding_cancel
undertaking=Undertaking.find(params[:undertaking_id])
undertaking.deciding.update(cancel: true , cancel_userid: current_user.id)
flash[:success] = "途中終了リクエストを送信しました。"
redirect_to undertaking
end
def deciding_cancel_consent
undertaking=Undertaking.find(params[:undertaking_id])
undertaking.deciding.destroy
flash[:success] = "契約が途中終了されました。"
redirect_to undertaking
end
def deciding_cancel_refuse
undertaking=Undertaking.find(params[:undertaking_id])
undertaking.deciding.update(cansel: false , cansel_userid: nil)
flash[:success] = "契約の途中終了を卻下しました。"
redirect_to undertaking
end
def undertaking_finish
undertaking=Undertaking.find(params[:undertaking_id])
undertaking.deciding.update(finish_undertaking: true)
flash[:success] = "納品が完了しました。"
redirect_to undertaking
end
def finish_cancel
undertaking=Undertaking.find(params[:undertaking_id])
undertaking.deciding.update(finish_undertaking: false)
flash[:success] = "再納品リクエストを送信しました。"
redirect_to undertaking
end
def asking_finish
undertaking=Undertaking.find(params[:undertaking_id])
undertaking.deciding.update(finish_asking: true)
flash[:success] = "納品が成立しました。"
redirect_to asking
end
private
def asking_user!
asking=Asking.find(params[:asking_id])
unless asking.user==current_user
redirect_to root_path
end
end
def undertaking_user!
undertaking=Undertaking.find(params[:undertaking_id])
unless undertaking.user==current_user
redirect_to root_path
end
end
def asking_or_undertaking_user!
undertaking=Undertaking.find(params[:undertaking_id])
unless current_user==undertaking.user || current_user==undertaking.asking.user
refirect_to root_path
end
end
def reverse_user!
undertaking=Undertaking.find(params[:undertaking_id])
if current_user.id == undertaking.deciding.cansel_userid
refirect_to root_path
end
end
def before_consent
undertaking=Undertaking.find(params[:undertaking_id])
if undertaking.deciding.consenting
redirect_to root_path
end
end
def after_consent
asking=Asking.find(params[:asking_id])
unless asking.deciding.consenting
redirect_to root_path
end
end
def before_finish
undertaking=Undertaking.find(params[:undertaking_id])
if undertaking.deciding.finish_undertaking
redirect_to root_path
end
end
def after_deciding_cancel
undertaking=Undertaking.find(params[:undertaking_id])
unless undertaking.deciding.cancel
redirect_to root_path
end
end
def after_undertaking_finish
undertaking=Undertaking.find(params[:undertaking_id])
unless undertaking.deciding.finish_undertaking
redirect_to root_path
end
end
末
請幫我...
並不長,在所有的長度。你應該看到我的一些Rspecs! –
有很多'承諾= Undertaking.find(params [:undertaking_id])''。你可以把它改成另一個'before_action'調用。你可能也想考慮急於加載的東西,但是從快速閱讀你的代碼,你只處理1個記錄承擔/詢問每個動作,所以急切的加載會產生小的影響。 – jvnill
oh和rspec測試通常比他們正在測試的文件更長,因爲存根/嘲諷和期望,所以不要冒汗。 – jvnill