Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add delete on cascade to fk_svc_inst_op_svc_instance_id #2905

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Sequel.migration do
# Add delete cascade to fk_svc_inst_op_svc_instance_id, without there won't be cleaned up all ocurrencies in
kathap marked this conversation as resolved.
Show resolved Hide resolved
# the service_instance_operations table

up do
alter_table :service_instance_operations do
drop_constraint :fk_svc_inst_op_svc_instance_id, type: :foreign_key
add_foreign_key [:service_instance_id], :service_instances, key: :id, name: :fk_svc_inst_op_svc_instance_id, on_delete: :cascade
end
end

down do
alter_table :service_instance_operations do
drop_constraint :fk_svc_inst_op_svc_instance_id, type: :foreign_key
add_foreign_key [:service_instance_id], :service_instances, key: :id, name: :fk_svc_inst_op_svc_instance_id
end
end
end
25 changes: 25 additions & 0 deletions spec/unit/models/services/service_instance_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,31 @@ module VCAP::CloudController
expect(ServiceInstanceAnnotationModel.where(id: annotation.id)).to be_empty
end

it 'cascade deletes all ServiceInstanceOperations for this instance' do
kathap marked this conversation as resolved.
Show resolved Hide resolved
last_operation = ServiceInstanceOperation.make
service_instance.service_instance_operation = last_operation

service_instance.destroy

expect(ServiceInstance.find(guid: service_instance.guid)).to be_nil
kathap marked this conversation as resolved.
Show resolved Hide resolved
expect(ServiceInstanceOperation.find(guid: last_operation.guid)).to be_nil
end

it 'cascades deletion of related dependencies' do
kathap marked this conversation as resolved.
Show resolved Hide resolved
binding = ServiceInstance.make
ServiceInstanceLabelModel.make(key_name: 'foo', value: 'bar', service_instance: binding)
ServiceInstanceAnnotationModel.make(key_name: 'baz', value: 'wow', service_instance: binding)
last_operation = ServiceInstanceOperation.make
binding.service_instance_operation = last_operation

binding.destroy

expect(ServiceInstance.find(guid: binding.guid)).to be_nil
expect(ServiceInstanceOperation.find(id: last_operation.id)).to be_nil
expect(ServiceInstanceLabelModel.find(resource_guid: binding.guid)).to be_nil
expect(ServiceInstanceAnnotationModel.find(resource_guid: binding.guid)).to be_nil
end

it 'creates a DELETED service usage event' do
expect {
service_instance.destroy
Expand Down