2025-08-31 12:42:59 -05:00
|
|
|
# -*- coding: utf-8; -*-
|
2024-12-05 07:57:51 -06:00
|
|
|
|
|
|
|
import csv
|
2024-12-06 15:18:23 -06:00
|
|
|
import uuid as _uuid
|
2024-12-05 07:57:51 -06:00
|
|
|
from unittest.mock import patch
|
|
|
|
|
|
|
|
from wuttjamaican.testing import DataTestCase
|
|
|
|
|
2025-08-31 12:42:59 -05:00
|
|
|
from wuttasync.importing import (
|
|
|
|
csv as mod,
|
|
|
|
ImportHandler,
|
|
|
|
ToSqlalchemyHandler,
|
|
|
|
ToSqlalchemy,
|
|
|
|
)
|
2024-12-05 07:57:51 -06:00
|
|
|
|
|
|
|
|
|
|
|
class TestFromCsv(DataTestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.setup_db()
|
|
|
|
self.handler = ImportHandler(self.config)
|
|
|
|
|
2025-08-31 12:42:59 -05:00
|
|
|
self.data_path = self.write_file(
|
|
|
|
"data.txt",
|
|
|
|
"""\
|
2024-12-05 21:19:06 -06:00
|
|
|
name,value
|
|
|
|
foo,bar
|
|
|
|
foo2,bar2
|
2025-08-31 12:42:59 -05:00
|
|
|
""",
|
|
|
|
)
|
2024-12-05 21:19:06 -06:00
|
|
|
|
2024-12-05 07:57:51 -06:00
|
|
|
def make_importer(self, **kwargs):
|
2025-08-31 12:42:59 -05:00
|
|
|
kwargs.setdefault("handler", self.handler)
|
2024-12-05 07:57:51 -06:00
|
|
|
return mod.FromCsv(self.config, **kwargs)
|
|
|
|
|
|
|
|
def test_get_input_file_name(self):
|
|
|
|
model = self.app.model
|
|
|
|
imp = self.make_importer(model_class=model.Setting)
|
|
|
|
|
|
|
|
# name can be guessed
|
2025-08-31 12:42:59 -05:00
|
|
|
self.assertEqual(imp.get_input_file_name(), "Setting.csv")
|
2024-12-05 07:57:51 -06:00
|
|
|
|
|
|
|
# name can be explicitly set
|
2025-08-31 12:42:59 -05:00
|
|
|
imp.input_file_name = "data.txt"
|
|
|
|
self.assertEqual(imp.get_input_file_name(), "data.txt")
|
2024-12-05 07:57:51 -06:00
|
|
|
|
|
|
|
def test_open_input_file(self):
|
|
|
|
model = self.app.model
|
|
|
|
imp = self.make_importer(model_class=model.Setting)
|
|
|
|
|
2024-12-05 21:19:06 -06:00
|
|
|
# normal operation, input file includes all fields
|
2025-08-31 12:42:59 -05:00
|
|
|
imp = self.make_importer(
|
|
|
|
model_class=model.Setting, input_file_path=self.data_path
|
|
|
|
)
|
|
|
|
self.assertEqual(imp.fields, ["name", "value"])
|
2024-12-05 07:57:51 -06:00
|
|
|
imp.open_input_file()
|
2024-12-05 21:19:06 -06:00
|
|
|
self.assertEqual(imp.input_file.name, self.data_path)
|
2024-12-05 07:57:51 -06:00
|
|
|
self.assertIsInstance(imp.input_reader, csv.DictReader)
|
2025-08-31 12:42:59 -05:00
|
|
|
self.assertEqual(imp.fields, ["name", "value"])
|
2024-12-05 07:57:51 -06:00
|
|
|
imp.input_file.close()
|
|
|
|
|
2024-12-05 21:19:06 -06:00
|
|
|
# this file is missing a field, plus we'll pretend more are
|
|
|
|
# supported - but should wind up with just the one field
|
2025-08-31 12:42:59 -05:00
|
|
|
missing = self.write_file("missing.txt", "name")
|
2024-12-05 21:19:06 -06:00
|
|
|
imp = self.make_importer(model_class=model.Setting, input_file_path=missing)
|
2025-08-31 12:42:59 -05:00
|
|
|
imp.fields.extend(["lots", "more"])
|
|
|
|
self.assertEqual(imp.fields, ["name", "value", "lots", "more"])
|
2024-12-05 21:19:06 -06:00
|
|
|
imp.open_input_file()
|
2025-08-31 12:42:59 -05:00
|
|
|
self.assertEqual(imp.fields, ["name"])
|
2024-12-05 21:19:06 -06:00
|
|
|
imp.input_file.close()
|
|
|
|
|
|
|
|
# and what happens when no known fields are found
|
2025-08-31 12:42:59 -05:00
|
|
|
bogus = self.write_file("bogus.txt", "blarg")
|
2024-12-05 21:19:06 -06:00
|
|
|
imp = self.make_importer(model_class=model.Setting, input_file_path=bogus)
|
2025-08-31 12:42:59 -05:00
|
|
|
self.assertEqual(imp.fields, ["name", "value"])
|
2024-12-05 21:19:06 -06:00
|
|
|
self.assertRaises(ValueError, imp.open_input_file)
|
|
|
|
|
2024-12-05 07:57:51 -06:00
|
|
|
def test_close_input_file(self):
|
|
|
|
model = self.app.model
|
|
|
|
imp = self.make_importer(model_class=model.Setting)
|
|
|
|
|
2024-12-05 21:19:06 -06:00
|
|
|
imp.input_file_path = self.data_path
|
2024-12-05 07:57:51 -06:00
|
|
|
imp.open_input_file()
|
|
|
|
imp.close_input_file()
|
2025-08-31 12:42:59 -05:00
|
|
|
self.assertFalse(hasattr(imp, "input_reader"))
|
|
|
|
self.assertFalse(hasattr(imp, "input_file"))
|
2024-12-05 07:57:51 -06:00
|
|
|
|
|
|
|
def test_get_source_objects(self):
|
|
|
|
model = self.app.model
|
|
|
|
imp = self.make_importer(model_class=model.Setting)
|
|
|
|
|
2024-12-05 21:19:06 -06:00
|
|
|
imp.input_file_path = self.data_path
|
2024-12-05 07:57:51 -06:00
|
|
|
imp.open_input_file()
|
|
|
|
objects = imp.get_source_objects()
|
|
|
|
imp.close_input_file()
|
|
|
|
self.assertEqual(len(objects), 2)
|
2025-08-31 12:42:59 -05:00
|
|
|
self.assertEqual(objects[0], {"name": "foo", "value": "bar"})
|
|
|
|
self.assertEqual(objects[1], {"name": "foo2", "value": "bar2"})
|
2024-12-05 07:57:51 -06:00
|
|
|
|
|
|
|
|
2024-12-06 15:18:23 -06:00
|
|
|
class MockMixinImporter(mod.FromCsvToSqlalchemyMixin, mod.FromCsv, ToSqlalchemy):
|
|
|
|
pass
|
2024-12-05 07:57:51 -06:00
|
|
|
|
|
|
|
|
|
|
|
class TestFromCsvToSqlalchemyMixin(DataTestCase):
|
|
|
|
|
2024-12-06 15:18:23 -06:00
|
|
|
def setUp(self):
|
|
|
|
self.setup_db()
|
|
|
|
self.handler = ImportHandler(self.config)
|
|
|
|
|
|
|
|
def make_importer(self, **kwargs):
|
2025-08-31 12:42:59 -05:00
|
|
|
kwargs.setdefault("handler", self.handler)
|
2024-12-06 15:18:23 -06:00
|
|
|
return MockMixinImporter(self.config, **kwargs)
|
|
|
|
|
|
|
|
def test_constructor(self):
|
|
|
|
model = self.app.model
|
|
|
|
|
|
|
|
# no uuid keys
|
|
|
|
imp = self.make_importer(model_class=model.Setting)
|
|
|
|
self.assertEqual(imp.uuid_keys, [])
|
|
|
|
|
|
|
|
# typical
|
|
|
|
# nb. as of now Upgrade is the only table using proper UUID
|
|
|
|
imp = self.make_importer(model_class=model.Upgrade)
|
2025-08-31 12:42:59 -05:00
|
|
|
self.assertEqual(imp.uuid_keys, ["uuid"])
|
2024-12-06 15:18:23 -06:00
|
|
|
|
|
|
|
def test_normalize_source_object(self):
|
|
|
|
model = self.app.model
|
|
|
|
|
|
|
|
# no uuid keys
|
|
|
|
imp = self.make_importer(model_class=model.Setting)
|
2025-08-31 12:42:59 -05:00
|
|
|
result = imp.normalize_source_object({"name": "foo", "value": "bar"})
|
|
|
|
self.assertEqual(result, {"name": "foo", "value": "bar"})
|
2024-12-06 15:18:23 -06:00
|
|
|
|
|
|
|
# source has proper UUID
|
|
|
|
# nb. as of now Upgrade is the only table using proper UUID
|
2025-08-31 12:42:59 -05:00
|
|
|
imp = self.make_importer(
|
|
|
|
model_class=model.Upgrade, fields=["uuid", "description"]
|
|
|
|
)
|
|
|
|
result = imp.normalize_source_object(
|
|
|
|
{
|
|
|
|
"uuid": _uuid.UUID("06753693-d892-77f0-8000-ce71bf7ebbba"),
|
|
|
|
"description": "testing",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
result,
|
|
|
|
{
|
|
|
|
"uuid": _uuid.UUID("06753693-d892-77f0-8000-ce71bf7ebbba"),
|
|
|
|
"description": "testing",
|
|
|
|
},
|
|
|
|
)
|
2024-12-06 15:18:23 -06:00
|
|
|
|
|
|
|
# source has string uuid
|
|
|
|
# nb. as of now Upgrade is the only table using proper UUID
|
2025-08-31 12:42:59 -05:00
|
|
|
imp = self.make_importer(
|
|
|
|
model_class=model.Upgrade, fields=["uuid", "description"]
|
|
|
|
)
|
|
|
|
result = imp.normalize_source_object(
|
|
|
|
{"uuid": "06753693d89277f08000ce71bf7ebbba", "description": "testing"}
|
|
|
|
)
|
|
|
|
self.assertEqual(
|
|
|
|
result,
|
|
|
|
{
|
|
|
|
"uuid": _uuid.UUID("06753693-d892-77f0-8000-ce71bf7ebbba"),
|
|
|
|
"description": "testing",
|
|
|
|
},
|
|
|
|
)
|
2024-12-06 15:18:23 -06:00
|
|
|
|
|
|
|
|
|
|
|
class MockMixinHandler(mod.FromCsvToSqlalchemyHandlerMixin, ToSqlalchemyHandler):
|
|
|
|
ToImporterBase = ToSqlalchemy
|
|
|
|
|
|
|
|
|
|
|
|
class TestFromCsvToSqlalchemyHandlerMixin(DataTestCase):
|
|
|
|
|
2024-12-05 07:57:51 -06:00
|
|
|
def make_handler(self, **kwargs):
|
|
|
|
return MockMixinHandler(self.config, **kwargs)
|
|
|
|
|
|
|
|
def test_get_target_model(self):
|
2025-08-31 12:42:59 -05:00
|
|
|
with patch.object(
|
|
|
|
mod.FromCsvToSqlalchemyHandlerMixin, "define_importers", return_value={}
|
|
|
|
):
|
2024-12-05 07:57:51 -06:00
|
|
|
handler = self.make_handler()
|
|
|
|
self.assertRaises(NotImplementedError, handler.get_target_model)
|
|
|
|
|
|
|
|
def test_define_importers(self):
|
|
|
|
model = self.app.model
|
2025-08-31 12:42:59 -05:00
|
|
|
with patch.object(
|
|
|
|
mod.FromCsvToSqlalchemyHandlerMixin, "get_target_model", return_value=model
|
|
|
|
):
|
2024-12-05 07:57:51 -06:00
|
|
|
handler = self.make_handler()
|
|
|
|
importers = handler.define_importers()
|
2025-08-31 12:42:59 -05:00
|
|
|
self.assertIn("Setting", importers)
|
|
|
|
self.assertTrue(issubclass(importers["Setting"], mod.FromCsv))
|
|
|
|
self.assertTrue(issubclass(importers["Setting"], ToSqlalchemy))
|
|
|
|
self.assertIn("User", importers)
|
|
|
|
self.assertIn("Person", importers)
|
|
|
|
self.assertIn("Role", importers)
|
2024-12-05 07:57:51 -06:00
|
|
|
|
|
|
|
def test_make_importer_factory(self):
|
|
|
|
model = self.app.model
|
2025-08-31 12:42:59 -05:00
|
|
|
with patch.object(
|
|
|
|
mod.FromCsvToSqlalchemyHandlerMixin, "define_importers", return_value={}
|
|
|
|
):
|
2024-12-05 07:57:51 -06:00
|
|
|
handler = self.make_handler()
|
2025-08-31 12:42:59 -05:00
|
|
|
factory = handler.make_importer_factory(model.Setting, "Setting")
|
2024-12-05 07:57:51 -06:00
|
|
|
self.assertTrue(issubclass(factory, mod.FromCsv))
|
|
|
|
self.assertTrue(issubclass(factory, ToSqlalchemy))
|
|
|
|
|
|
|
|
|
|
|
|
class TestFromCsvToWutta(DataTestCase):
|
|
|
|
|
|
|
|
def make_handler(self, **kwargs):
|
|
|
|
return mod.FromCsvToWutta(self.config, **kwargs)
|
|
|
|
|
|
|
|
def test_get_target_model(self):
|
|
|
|
handler = self.make_handler()
|
|
|
|
self.assertIs(handler.get_target_model(), self.app.model)
|