1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
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())
|