2019-11-23 08:17:35 +01:00
|
|
|
from lxml import etree
|
2020-11-20 18:02:40 +01:00
|
|
|
from os import getcwd
|
2019-11-23 08:17:35 +01:00
|
|
|
from os.path import isfile, join, isdir
|
|
|
|
from pytest import fixture, raises
|
|
|
|
from os import listdir
|
|
|
|
from json import load
|
|
|
|
|
2019-12-19 09:50:33 +01:00
|
|
|
from rougail import objspace, annotator
|
2020-07-20 18:13:53 +02:00
|
|
|
from rougail.error import DictConsistencyError
|
2020-08-12 08:23:38 +02:00
|
|
|
from rougail.config import Config
|
2019-11-23 08:17:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-08-08 08:58:35 +02:00
|
|
|
dico_dirs = 'tests/dictionaries'
|
2019-11-23 08:17:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
test_ok = set()
|
|
|
|
test_raise = set()
|
|
|
|
|
|
|
|
for test in listdir(dico_dirs):
|
|
|
|
if isdir(join(dico_dirs, test)):
|
2020-07-29 08:59:40 +02:00
|
|
|
if isdir(join(dico_dirs, test, 'tiramisu')):
|
2019-11-23 08:17:35 +01:00
|
|
|
test_ok.add(test)
|
2020-07-20 18:13:53 +02:00
|
|
|
elif test != '__pycache__':
|
2019-11-23 08:17:35 +01:00
|
|
|
test_raise.add(test)
|
|
|
|
|
|
|
|
excludes = set([])
|
2020-11-20 18:02:40 +01:00
|
|
|
#excludes = set(['01base_file_utfchar'])
|
2019-11-23 08:17:35 +01:00
|
|
|
test_ok -= excludes
|
|
|
|
test_raise -= excludes
|
2020-12-22 20:17:32 +01:00
|
|
|
#test_ok = ['40condition_base_add']
|
2020-12-22 21:11:14 +01:00
|
|
|
#test_ok = []
|
|
|
|
#test_raise = ['80redefine_double_error']
|
2019-11-23 08:17:35 +01:00
|
|
|
|
2020-11-20 18:02:40 +01:00
|
|
|
ORI_DIR = getcwd()
|
|
|
|
|
2020-11-08 09:43:45 +01:00
|
|
|
debug = False
|
|
|
|
#debug = True
|
2019-11-23 08:17:35 +01:00
|
|
|
|
|
|
|
test_ok = list(test_ok)
|
|
|
|
test_raise = list(test_raise)
|
|
|
|
test_ok.sort()
|
|
|
|
test_raise.sort()
|
|
|
|
|
|
|
|
|
|
|
|
@fixture(scope="module", params=test_ok)
|
|
|
|
def test_dir(request):
|
|
|
|
return request.param
|
|
|
|
|
|
|
|
|
|
|
|
@fixture(scope="module", params=test_raise)
|
|
|
|
def test_dir_error(request):
|
|
|
|
return request.param
|
|
|
|
|
|
|
|
|
2020-04-21 09:22:45 +02:00
|
|
|
def launch_flattener(test_dir, test_ok=False):
|
2020-08-12 08:23:38 +02:00
|
|
|
eolobj = objspace.CreoleObjSpace(Config['dtdfilename'])
|
2019-11-23 08:17:35 +01:00
|
|
|
dirs = [test_dir]
|
|
|
|
subfolder = join(test_dir, 'subfolder')
|
|
|
|
if isdir(subfolder):
|
|
|
|
dirs.append(subfolder)
|
2020-08-12 08:23:38 +02:00
|
|
|
eolobj.create_or_populate_from_xml(Config['variable_namespace'], dirs)
|
2019-11-23 08:17:35 +01:00
|
|
|
subfolder = join(test_dir, 'extra_dirs', 'extra')
|
|
|
|
if isdir(subfolder):
|
|
|
|
eolobj.create_or_populate_from_xml('extra', [subfolder])
|
|
|
|
subfolder = join(test_dir, 'extra_dirs', 'extra1')
|
|
|
|
if isdir(subfolder):
|
|
|
|
eolobj.create_or_populate_from_xml('extra1', [subfolder])
|
2019-11-24 20:25:09 +01:00
|
|
|
eosfunc = join(dico_dirs, '../eosfunc/test.py')
|
2020-11-20 18:02:40 +01:00
|
|
|
Config['patch_dir'] = join(test_dir, 'patches')
|
2019-11-24 20:25:09 +01:00
|
|
|
eolobj.space_visitor(eosfunc)
|
2020-07-31 09:41:30 +02:00
|
|
|
tiramisu_objects = eolobj.save()
|
2020-07-29 08:59:40 +02:00
|
|
|
tiramisu_dir = join(test_dir, 'tiramisu')
|
|
|
|
tiramisu_file = join(tiramisu_dir, 'base.py')
|
|
|
|
if not isfile(tiramisu_file) or debug:
|
|
|
|
with open(tiramisu_file, 'w') as fh:
|
|
|
|
fh.write(tiramisu_objects)
|
|
|
|
with open(tiramisu_file, 'r') as fh:
|
|
|
|
tiramisu_objects_ori = fh.read()
|
|
|
|
assert tiramisu_objects == tiramisu_objects_ori
|
2019-11-23 08:17:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
def fake_traduc(txt):
|
|
|
|
return txt
|
|
|
|
|
|
|
|
|
|
|
|
def setup_module(module):
|
|
|
|
module.traduc_ori = objspace._
|
|
|
|
objspace._ = fake_traduc
|
|
|
|
annotator._ = fake_traduc
|
2020-02-14 17:59:39 +01:00
|
|
|
objspace.ServiceAnnotator = getattr(annotator, 'ServiceAnnotator')
|
2019-11-23 08:17:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
def teardown_module(module):
|
|
|
|
objspace._ = module.traduc_ori
|
|
|
|
annotator._ = module.traduc_ori
|
|
|
|
|
|
|
|
|
|
|
|
def test_dictionary(test_dir):
|
2020-11-20 18:02:40 +01:00
|
|
|
assert getcwd() == ORI_DIR
|
2019-11-23 08:17:35 +01:00
|
|
|
test_dir = join(dico_dirs, test_dir)
|
2020-04-21 09:22:45 +02:00
|
|
|
launch_flattener(test_dir, True)
|
2020-11-20 18:02:40 +01:00
|
|
|
assert getcwd() == ORI_DIR
|
2019-11-23 08:17:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_error_dictionary(test_dir_error):
|
2020-11-20 18:02:40 +01:00
|
|
|
assert getcwd() == ORI_DIR
|
2019-11-23 08:17:35 +01:00
|
|
|
test_dir = join(dico_dirs, test_dir_error)
|
2020-07-20 18:13:53 +02:00
|
|
|
with raises(DictConsistencyError):
|
2020-02-14 17:59:39 +01:00
|
|
|
launch_flattener(test_dir)
|
2020-11-20 18:02:40 +01:00
|
|
|
assert getcwd() == ORI_DIR
|
2019-11-23 08:17:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_no_dtd():
|
2020-02-14 17:59:39 +01:00
|
|
|
with raises(IOError):
|
|
|
|
eolobj = objspace.CreoleObjSpace('notexists.dtd')
|