fix components placeholder in unbinding

This commit is contained in:
Cayo Puigdefabregas 2022-10-18 13:48:03 +02:00
parent fc86181311
commit 2a32ba47b8
2 changed files with 11 additions and 3 deletions

View File

@ -382,9 +382,11 @@ class UnBindingView(GenericMixin):
return flask.render_template(self.template_name, **self.context)
def clone_device(self, device):
if device.binding.is_abstract:
if device.binding and device.binding.is_abstract:
return
kangaroo = False
if device.binding:
kangaroo = device.binding.kangaroo
device.binding.kangaroo = False
@ -406,6 +408,9 @@ class UnBindingView(GenericMixin):
for c in device.components:
if c.binding:
c.binding.device.parent = new_device
else:
new_c = self.clone_device(c)
new_c.parent = new_device
placeholder = Placeholder(
device=new_device, binding=device, is_abstract=True, kangaroo=kangaroo

View File

@ -2247,9 +2247,11 @@ def test_unbinding(user3: UserClientFlask):
user3.get(uri)
# action binding
assert Placeholder.query.count() == 11
assert dev.placeholder.binding is None
user3.post(uri, data={})
assert dev.placeholder.binding == dev_wb
assert Placeholder.query.count() == 1
dhid = dev.dhid
# action unbinding
@ -2273,6 +2275,7 @@ def test_unbinding(user3: UserClientFlask):
assert Device.query.filter_by(id=dev_wb.binding.device.id).first()
assert Device.query.filter_by(id=dev.id).first()
assert Placeholder.query.filter_by(id=dev.placeholder.id).first()
assert Placeholder.query.count() == 11
@pytest.mark.mvp