From 3614211cca95ec44fc6e4c941e4c7ebcb7e16fa5 Mon Sep 17 00:00:00 2001 From: Todd Dembrey <todd.dembrey@torchbox.com> Date: Wed, 7 Feb 2018 14:10:57 +0000 Subject: [PATCH] Ensure that the form objects is cloned on creation of a round debug actual behaviour squash! debug actual behaviour --- opentech/apply/funds/models.py | 14 ++++++++++---- opentech/apply/funds/tests/factories/blocks.py | 8 +++++++- opentech/apply/funds/tests/factories/models.py | 17 +++++++++++------ opentech/apply/funds/tests/test_models.py | 9 ++++++++- 4 files changed, 36 insertions(+), 12 deletions(-) diff --git a/opentech/apply/funds/models.py b/opentech/apply/funds/models.py index 390cadf4d..64d31590a 100644 --- a/opentech/apply/funds/models.py +++ b/opentech/apply/funds/models.py @@ -236,17 +236,23 @@ class Round(SubmittableStreamForm): FieldPanel('start_date'), FieldPanel('end_date'), ]), - ], heading="Dates") + ], heading="Dates"), ] - def save(self, *args, **kwargs): + def create(self, *args, **kwargs): if hasattr(self, 'parent_page'): # We attached the parent page as part of the before_create_hook self.workflow = self.parent_page.workflow - for form in self.parent_page.forms.all(): - RoundForm.objects.create(round=self, form=form.form) super().save(*args, **kwargs) + if hasattr(self, 'parent_page'): + for form in self.parent_page.forms.all(): + # Create a copy of the existing form object + new_form = form.form + new_form.id = None + new_form.save() + RoundForm.objects.create(round=self, form=new_form) + def get_submit_meta_data(self, **kwargs): return super().get_submit_meta_data( diff --git a/opentech/apply/funds/tests/factories/blocks.py b/opentech/apply/funds/tests/factories/blocks.py index de04acc9a..e568c5c3d 100644 --- a/opentech/apply/funds/tests/factories/blocks.py +++ b/opentech/apply/funds/tests/factories/blocks.py @@ -4,7 +4,7 @@ from opentech.apply.stream_forms.blocks import FormFieldBlock from opentech.apply.funds import blocks -__all__ = ['FormFieldBlock', 'FullNameBlockFactory', 'EmailBlockFactory'] +__all__ = ['CustomFormFieldsFactory', 'FormFieldBlock', 'FullNameBlockFactory', 'EmailBlockFactory'] class FormFieldBlockFactory(wagtail_factories.StructBlockFactory): @@ -20,3 +20,9 @@ class EmailBlockFactory(FormFieldBlockFactory): class FullNameBlockFactory(FormFieldBlockFactory): class Meta: model = blocks.FullNameBlock + + +CustomFormFieldsFactory = wagtail_factories.StreamFieldFactory({ + 'email': EmailBlockFactory, + 'full_name': FullNameBlockFactory, +}) diff --git a/opentech/apply/funds/tests/factories/models.py b/opentech/apply/funds/tests/factories/models.py index f6f0d8b50..d6ebe296b 100644 --- a/opentech/apply/funds/tests/factories/models.py +++ b/opentech/apply/funds/tests/factories/models.py @@ -149,8 +149,17 @@ class FundTypeFactory(wagtail_factories.PageFactory): @factory.post_generation def forms(self, create, extracted, **kwargs): if create: + fields = { + f'form__form_fields__{i}__{field}__': '' + for i, field in enumerate(blocks.CustomFormFieldsFactory.factories.keys()) + } + fields.update(**kwargs) for _ in range(len(self.workflow_class.stage_classes)): - FundFormFactory(fund=self) + # Generate a form based on all defined fields on the model + FundFormFactory( + fund=self, + **fields, + ) class FundFormFactory(factory.DjangoModelFactory): @@ -165,11 +174,7 @@ class ApplicationFormFactory(factory.DjangoModelFactory): model = ApplicationForm name = factory.Faker('word') - form_fields = wagtail_factories.StreamFieldFactory({ - 'email': blocks.EmailBlockFactory, - 'full_name': blocks.FullNameBlockFactory, - }) - + form_fields = blocks.CustomFormFieldsFactory class RoundFactory(wagtail_factories.PageFactory): class Meta: diff --git a/opentech/apply/funds/tests/test_models.py b/opentech/apply/funds/tests/test_models.py index fecb73b80..946743da4 100644 --- a/opentech/apply/funds/tests/test_models.py +++ b/opentech/apply/funds/tests/test_models.py @@ -14,6 +14,7 @@ from opentech.apply.funds.workflow import SingleStage from .factories import ( ApplicationFormFactory, + CustomFormFieldsFactory, FundFormFactory, FundTypeFactory, LabFactory, @@ -160,7 +161,13 @@ class TestRoundModelWorkflowAndForms(TestCase): self.round.save() # We are no longer creating a round del self.round.parent_page - form = self.round.forms.first() + form = self.round.forms.first().form + # Not ideal, would prefer better way to create the stream values + new_field = CustomFormFieldsFactory.generate(None, {'0__email__': ''}) + form.form_fields = new_field + form.save() + for round_form, fund_form in itertools.zip_longest(self.round.forms.all(), self.fund.forms.all()): + self.assertNotEqual(round_form, fund_form) class TestFormSubmission(TestCase): -- GitLab