diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-01-10 13:05:46 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-01-10 13:05:46 +0100 | 
| commit | 6f8ace0f931eb1b1aa054f4c731ea8cbb8f087be (patch) | |
| tree | 448076cab1c7e659b7df28b8ce090640e985b903 /archaeological_warehouse/tests.py | |
| parent | de5d1ce4b2cc03a92bc0ffcab0c7dc662f3e8f2d (diff) | |
| download | Ishtar-6f8ace0f931eb1b1aa054f4c731ea8cbb8f087be.tar.bz2 Ishtar-6f8ace0f931eb1b1aa054f4c731ea8cbb8f087be.zip | |
Container: add wizard creation test
Diffstat (limited to 'archaeological_warehouse/tests.py')
| -rw-r--r-- | archaeological_warehouse/tests.py | 77 | 
1 files changed, 77 insertions, 0 deletions
| diff --git a/archaeological_warehouse/tests.py b/archaeological_warehouse/tests.py new file mode 100644 index 000000000..cca1478ee --- /dev/null +++ b/archaeological_warehouse/tests.py @@ -0,0 +1,77 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# Copyright (C) 2017 Étienne Loks  <etienne.loks_AT_peacefrogsDOTnet> + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the +# GNU Affero General Public License for more details. + +# You should have received a copy of the GNU Affero General Public License +# along with this program.  If not, see <http://www.gnu.org/licenses/>. + +# See the file COPYING for details. + +from django.conf import settings +from django.test import TestCase + +from archaeological_finds.tests import FindInit + +from ishtar_common.tests import WizardTest, WizardTestFormData as FormData + +from archaeological_warehouse import models, views + + +class ContainerWizardCreationTest(WizardTest, FindInit, TestCase): +    fixtures = [settings.ROOT_PATH + +                '../fixtures/initial_data.json', +                settings.ROOT_PATH + +                '../ishtar_common/fixtures/initial_data.json', +                settings.ROOT_PATH + +                '../archaeological_files/fixtures/initial_data.json', +                settings.ROOT_PATH + +                '../archaeological_operations/fixtures/initial_data-fr.json', +                settings.ROOT_PATH + +                '../archaeological_finds/fixtures/initial_data-fr.json', +                settings.ROOT_PATH + +                '../archaeological_warehouse/fixtures/initial_data-fr.json', +                ] +    url_name = 'container_creation' +    wizard_name = 'container_wizard' +    steps = views.container_creation_steps +    form_datas = [ +        FormData( +            'Container creation', +            form_datas={ +                'container-container_creation': { +                    'reference': 'hop-ref', +                    'container_type': None, +                    'location': None, +                    'responsible': None, +                }, +                'localisation-container_creation': [] +            }, +        ) +    ] + +    def pre_wizard(self): +        main_warehouse = models.Warehouse.objects.create( +            name="Main", +            warehouse_type=models.WarehouseType.objects.all()[0] +        ) +        forms_data = self.form_datas[0].form_datas[ +            'container-container_creation'] +        forms_data["responsible"] = main_warehouse.pk +        forms_data["location"] = main_warehouse.pk +        forms_data["container_type"] = models.ContainerType.objects.all()[0].pk +        self.container_number = models.Container.objects.count() +        super(ContainerWizardCreationTest, self).pre_wizard() + +    def post_wizard(self): +        self.assertEqual(models.Container.objects.count(), +                         self.container_number + 1) | 
