diff options
| author | Valérie-Emma Leroux <emma@iggdrasil.net> | 2017-01-11 20:41:18 +0100 | 
|---|---|---|
| committer | Valérie-Emma Leroux <emma@iggdrasil.net> | 2017-01-11 20:41:18 +0100 | 
| commit | e50193c9c6c5d6d2ae50f0035ce6c9cf66d787fe (patch) | |
| tree | d0fbcd2db93906f1aec28dbe6d658a531025edc4 /archaeological_warehouse/tests.py | |
| parent | 98c1b479cba0348a8253325ad98db555419d2570 (diff) | |
| parent | b8d1d34feafb626bb4351ffbf7fd7d2d43724c2d (diff) | |
| download | Ishtar-e50193c9c6c5d6d2ae50f0035ce6c9cf66d787fe.tar.bz2 Ishtar-e50193c9c6c5d6d2ae50f0035ce6c9cf66d787fe.zip | |
Merge branch 'master' into master-trad
Diffstat (limited to 'archaeological_warehouse/tests.py')
| -rw-r--r-- | archaeological_warehouse/tests.py | 143 | 
1 files changed, 143 insertions, 0 deletions
| diff --git a/archaeological_warehouse/tests.py b/archaeological_warehouse/tests.py new file mode 100644 index 000000000..f4ce52732 --- /dev/null +++ b/archaeological_warehouse/tests.py @@ -0,0 +1,143 @@ +#!/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, forms + + +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) + + +class ContainerTest(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', +                ] + +    def testFormCreation(self): +        main_warehouse = models.Warehouse.objects.create( +            name="Main", +            warehouse_type=models.WarehouseType.objects.all()[0] +        ) +        data = { +            'reference': 'hop-ref', +            "responsible": main_warehouse.pk, +            "location": main_warehouse.pk, +            "container_type": models.ContainerType.objects.all()[0].pk +        } +        form = forms.ContainerForm(data=data) +        self.assertTrue(form.is_valid()) +        self.container_number = models.Container.objects.count() +        self.create_user() +        form.save(self.user) +        self.assertEqual(models.Container.objects.count(), +                         self.container_number + 1) + +    def testChangeLocation(self): +        main_warehouse = models.Warehouse.objects.create( +            name="Main", +            warehouse_type=models.WarehouseType.objects.all()[0] +        ) +        div = models.WarehouseDivision.objects.create(label='division') +        div_link = models.WarehouseDivisionLink.objects.create( +            warehouse=main_warehouse, division=div) + +        container = models.Container.objects.create( +            reference="Test", responsible=main_warehouse, +            location=main_warehouse, +            container_type=models.ContainerType.objects.all()[0] +        ) +        models.ContainerLocalisation.objects.create( +            container=container, division=div_link, +        ) + +        self.assertTrue(models.ContainerLocalisation.objects.filter( +            division__warehouse=main_warehouse).count()) +        # changing location remove unrelevent localisation +        other_warehouse = models.Warehouse.objects.create( +            name="Other", +            warehouse_type=models.WarehouseType.objects.all()[0] +        ) +        container.location = other_warehouse +        container.save() +        self.assertFalse(models.ContainerLocalisation.objects.filter( +            division__warehouse=main_warehouse).count()) + | 
