Мне нужно проверить, правильна ли моя реализация оптимистической блокировки.Но я не знаю, как проверить свои функциональные возможности.Вот действие по обновлению, которое я написал:
def update
begin
@update_operator = Operator.find(params[:id])
authorize! :update, @update_operator
if @update_operator.update_attributes(operator_params)
render json: @update_operator, except: :badge
else
render json: @update_operator.errors, status: :unprocessable_entity
end
rescue ActiveRecord::StaleObjectError
@update_operator.reload
retry
end
end
А вот добавление, которое я добавил
class AddLockingColumnsToOperators < ActiveRecord::Migration[5.1]
def up
add_column :operators, :lock_version, :integer, :default => 0, :null => false
end
def down
remove_column :operators, :lock_version
end
end
Может кто-нибудь сказать мне, как проверить действие обновления выше с помощью rspec?
Обновление: вот попытка, которую я пытался, но она не сработала
let!(:operator1) { FactoryBot.create(:operator, :site => site) }
let!(:attributes) {
{
id: operator1.id,
first_name: "test1",
last_name: "test2",
employee_number: "tesnt12345",
badge: "test215235",
suspended: true,
site_id: site.id
}
}
let!(:stale_attributes) {
{
id: operator1.id,
first_name: "test_fake",
last_name: "test_fake",
employee_number: "tesnt12345",
badge: "test215235",
suspended: true,
site_id: site.id
}
}
it("cause StaleObjectError when updating same operator at the same time") do
patch :update, params: { :id => operator1.id, :operator => attributes }
patch :update, params: { :id => operator1.id, :operator => stale_attributes }
expect(response).to raise_error(ActiveRecord::StaleObjectError)
end