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
144
145
146
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2015 É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.core.files.uploadedfile import SimpleUploadedFile
from django.test import TestCase
from ishtar_common.models import ImporterType, IshtarUser
from archaeological_finds import models
from archaeological_context_records.tests import ImportContextRecordTest, \
ContextRecordInit
from ishtar_common import forms_common
class ImportFindTest(ImportContextRecordTest):
test_context_records = False
fixtures = ImportContextRecordTest.fixtures + [
settings.ROOT_PATH +
'../archaeological_finds/fixtures/initial_data-fr.json',
]
def testMCCImportFinds(self, test=True):
self.testMCCImportContextRecords(test=False)
old_nb = models.BaseFind.objects.count()
MCC = ImporterType.objects.get(name=u"MCC - Mobilier")
mcc_file = open(
settings.ROOT_PATH +
'../archaeological_finds/tests/MCC-finds-example.csv', 'rb')
file_dict = {'imported_file': SimpleUploadedFile(mcc_file.name,
mcc_file.read())}
post_dict = {'importer_type': MCC.pk, 'skip_lines': 1,
"encoding": 'utf-8'}
form = forms_common.NewImportForm(data=post_dict, files=file_dict,
instance=None)
form.is_valid()
if test:
self.assertTrue(form.is_valid())
impt = form.save(self.ishtar_user)
impt.initialize()
# doing manual connections
ceram = models.MaterialType.objects.get(txt_idx='ceramic').pk
self.setTargetKey('find__material_types', 'terre-cuite', ceram)
impt.importation()
if not test:
return
# new finds has now been imported
current_nb = models.BaseFind.objects.count()
self.assertTrue(current_nb == (old_nb + 4))
self.assertEqual(
models.Find.objects.filter(material_types__pk=ceram).count(), 4)
class FindInit(ContextRecordInit):
test_context_records = False
def create_finds(self, user=None, data_base={}, data={}):
if not getattr(self, 'finds', None):
self.finds = []
if not getattr(self, 'base_finds', None):
self.base_finds = []
default = {'label': "Base find"}
if not data_base.get('history_modifier'):
data_base['history_modifier'] = self.get_default_user()
if not data_base.get('context_record'):
data_base['context_record'] = self.get_default_context_record()
default.update(data_base)
base_find = models.BaseFind.objects.create(**default)
self.base_finds.append(base_find)
data["history_modifier"] = data_base["history_modifier"]
find = models.Find.objects.create(**data)
find.base_finds.add(base_find)
self.finds.append(find)
return self.finds, self.base_finds
def get_default_find(self):
return self.create_finds()[0]
class PackagingTest(TestCase, FindInit):
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',
]
model = models.Find
def setUp(self):
self.create_finds({"label": u"Find 1"})
self.create_finds({"label": u"Find 2"})
self.basket = models.FindBasket.objects.create(
label="My basket", user=IshtarUser.objects.get(
pk=self.get_default_user().pk))
self.other_basket = models.FindBasket.objects.create(
label="My other basket", user=IshtarUser.objects.get(
pk=self.get_default_user().pk))
for find in self.finds:
self.basket.items.add(find)
self.other_basket.items.add(find)
def testPackaging(self):
treatment_type = models.TreatmentType.objects.get(txt_idx='packaging')
treatment = models.Treatment(treatment_type=treatment_type)
items_nb = models.Find.objects.count()
treatment.save(user=self.get_default_user(), items=self.basket)
self.assertEqual(items_nb + self.basket.items.count(),
models.Find.objects.count(),
msg="Packaging doesn't generate enough new finds")
# new version of the find is in the basket
for item in self.basket.items.all():
self.assertNotIn(
item, self.finds,
msg="Original basket have not been upgraded after packaging")
for item in self.other_basket.items.all():
self.assertNotIn(
item, self.finds,
msg="Other basket have not been upgraded after packaging")
|