Files
@ 8016ffbd268e
Branch filter:
Location: rattail-project/rattail/rattail/tests/importing/test_handlers.py
8016ffbd268e
12.1 KiB
text/x-python
Add initial handlers and subcommand for new/final importing framework
plus tests
plus tests
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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | # -*- coding: utf-8 -*-
from __future__ import unicode_literals, absolute_import
from unittest import TestCase
from sqlalchemy import orm
from mock import patch, Mock
from rattail.importing import handlers, Importer
from rattail.config import RattailConfig
from rattail.tests.importing import ImporterTester
from rattail.tests.importing.test_importers import MockImporter
class TestImportHandlerBasics(TestCase):
def test_init(self):
# vanilla
handler = handlers.ImportHandler()
self.assertEqual(handler.importers, {})
self.assertEqual(handler.get_importers(), {})
self.assertEqual(handler.get_importer_keys(), [])
self.assertEqual(handler.get_default_keys(), [])
# with config
handler = handlers.ImportHandler()
self.assertIsNone(handler.config)
config = RattailConfig()
handler = handlers.ImportHandler(config=config)
self.assertIs(handler.config, config)
# extra kwarg
handler = handlers.ImportHandler()
self.assertRaises(AttributeError, getattr, handler, 'foo')
handler = handlers.ImportHandler(foo='bar')
self.assertEqual(handler.foo, 'bar')
def test_get_importer(self):
get_importers = Mock(return_value={'foo': Importer})
# no importers
handler = handlers.ImportHandler()
self.assertIsNone(handler.get_importer('foo'))
# no config
with patch.object(handlers.ImportHandler, 'get_importers', get_importers):
handler = handlers.ImportHandler()
importer = handler.get_importer('foo')
self.assertIs(type(importer), Importer)
self.assertIsNone(importer.config)
self.assertIs(importer.handler, handler)
# with config
config = RattailConfig()
with patch.object(handlers.ImportHandler, 'get_importers', get_importers):
handler = handlers.ImportHandler(config=config)
importer = handler.get_importer('foo')
self.assertIs(type(importer), Importer)
self.assertIs(importer.config, config)
self.assertIs(importer.handler, handler)
# with extra kwarg
with patch.object(handlers.ImportHandler, 'get_importers', get_importers):
handler = handlers.ImportHandler()
importer = handler.get_importer('foo')
self.assertRaises(AttributeError, getattr, importer, 'bar')
importer = handler.get_importer('foo', bar='baz')
self.assertEqual(importer.bar, 'baz')
def test_get_importer_kwargs(self):
# empty by default
handler = handlers.ImportHandler()
self.assertEqual(handler.get_importer_kwargs('foo'), {})
# extra kwargs are preserved
handler = handlers.ImportHandler()
self.assertEqual(handler.get_importer_kwargs('foo', bar='baz'), {'bar': 'baz'})
######################################################################
# fake import handler, tested mostly for basic coverage
######################################################################
class MockImportHandler(handlers.ImportHandler):
def get_importers(self):
return {'Product': MockImporter}
def import_data(self, *keys, **kwargs):
result = super(MockImportHandler, self).import_data(*keys, **kwargs)
self._result = result
return result
class TestImportHandlerImportData(ImporterTester, TestCase):
sample_data = {
'16oz': {'upc': '00074305001161', 'description': "Apple Cider Vinegar 16oz"},
'32oz': {'upc': '00074305001321', 'description': "Apple Cider Vinegar 32oz"},
'1gal': {'upc': '00074305011283', 'description': "Apple Cider Vinegar 1gal"},
}
def setUp(self):
self.handler = MockImportHandler()
self.importer = MockImporter()
def import_data(self, **kwargs):
# must modify our importer in-place since we need the handler to return
# that specific instance, below (because the host/local data context
# managers reference that instance directly)
self.importer._setup(**kwargs)
with patch.object(self.handler, 'get_importer', Mock(return_value=self.importer)):
result = self.handler.import_data('Product', **kwargs)
if result:
self.result = result['Product']
else:
self.result = [], [], []
def test_invalid_importer_key_is_ignored(self):
handler = handlers.ImportHandler()
self.assertNotIn('InvalidKey', handler.importers)
self.assertEqual(handler.import_data('InvalidKey'), {})
def test_create(self):
local = self.copy_data()
del local['32oz']
with self.host_data(self.sample_data):
with self.local_data(local):
self.import_data()
self.assert_import_created('32oz')
self.assert_import_updated()
self.assert_import_deleted()
def test_update(self):
local = self.copy_data()
local['16oz']['description'] = "wrong description"
with self.host_data(self.sample_data):
with self.local_data(local):
self.import_data()
self.assert_import_created()
self.assert_import_updated('16oz')
self.assert_import_deleted()
def test_delete(self):
local = self.copy_data()
local['bogus'] = {'upc': '00000000000000', 'description': "Delete Me"}
with self.host_data(self.sample_data):
with self.local_data(local):
self.import_data()
self.assert_import_created()
self.assert_import_updated()
self.assert_import_deleted('bogus')
def test_duplicate(self):
host = self.copy_data()
host['32oz-dupe'] = host['32oz']
with self.host_data(host):
with self.local_data(self.sample_data):
self.import_data()
self.assert_import_created()
self.assert_import_updated()
self.assert_import_deleted()
def test_max_create(self):
local = self.copy_data()
del local['16oz']
del local['1gal']
with self.host_data(self.sample_data):
with self.local_data(local):
self.import_data(max_create=1)
self.assert_import_created('16oz')
self.assert_import_updated()
self.assert_import_deleted()
def test_max_total_create(self):
local = self.copy_data()
del local['16oz']
del local['1gal']
with self.host_data(self.sample_data):
with self.local_data(local):
self.import_data(max_total=1)
self.assert_import_created('16oz')
self.assert_import_updated()
self.assert_import_deleted()
def test_max_update(self):
local = self.copy_data()
local['16oz']['description'] = "wrong"
local['1gal']['description'] = "wrong"
with self.host_data(self.sample_data):
with self.local_data(local):
self.import_data(max_update=1)
self.assert_import_created()
self.assert_import_updated('16oz')
self.assert_import_deleted()
def test_max_total_update(self):
local = self.copy_data()
local['16oz']['description'] = "wrong"
local['1gal']['description'] = "wrong"
with self.host_data(self.sample_data):
with self.local_data(local):
self.import_data(max_total=1)
self.assert_import_created()
self.assert_import_updated('16oz')
self.assert_import_deleted()
def test_max_delete(self):
local = self.copy_data()
local['bogus1'] = {'upc': '00000000000001', 'description': "Delete Me"}
local['bogus2'] = {'upc': '00000000000002', 'description': "Delete Me"}
with self.host_data(self.sample_data):
with self.local_data(local):
self.import_data(max_delete=1)
self.assert_import_created()
self.assert_import_updated()
self.assert_import_deleted('bogus1')
def test_max_total_delete(self):
local = self.copy_data()
local['bogus1'] = {'upc': '00000000000001', 'description': "Delete Me"}
local['bogus2'] = {'upc': '00000000000002', 'description': "Delete Me"}
with self.host_data(self.sample_data):
with self.local_data(local):
self.import_data(max_total=1)
self.assert_import_created()
self.assert_import_updated()
self.assert_import_deleted('bogus1')
def test_dry_run(self):
local = self.copy_data()
del local['32oz']
local['16oz']['description'] = "wrong description"
local['bogus'] = {'upc': '00000000000000', 'description': "Delete Me"}
with self.host_data(self.sample_data):
with self.local_data(local):
self.import_data(dry_run=True)
# TODO: maybe need a way to confirm no changes actually made due to dry
# run; currently results still reflect "proposed" changes. this rather
# bogus test is here just for coverage sake
self.assert_import_created('32oz')
self.assert_import_updated('16oz')
self.assert_import_deleted('bogus')
Session = orm.sessionmaker()
class MockFromSQLAlchemyHandler(handlers.FromSQLAlchemyHandler):
def make_host_session(self):
return Session()
class MockToSQLAlchemyHandler(handlers.ToSQLAlchemyHandler):
def make_session(self):
return Session()
class TestFromSQLAlchemyHandler(TestCase):
def test_init(self):
handler = handlers.FromSQLAlchemyHandler()
self.assertRaises(NotImplementedError, handler.make_host_session)
def test_get_importer_kwargs(self):
session = object()
handler = handlers.FromSQLAlchemyHandler(host_session=session)
kwargs = handler.get_importer_kwargs(None)
self.assertEqual(list(kwargs.iterkeys()), ['host_session'])
self.assertIs(kwargs['host_session'], session)
def test_begin_host_transaction(self):
handler = MockFromSQLAlchemyHandler()
self.assertIsNone(handler.host_session)
handler.begin_host_transaction()
self.assertIsInstance(handler.host_session, orm.Session)
handler.host_session.close()
def test_commit_host_transaction(self):
# TODO: test actual commit for data changes
session = Session()
handler = handlers.FromSQLAlchemyHandler(host_session=session)
self.assertIs(handler.host_session, session)
handler.commit_host_transaction()
self.assertIsNone(handler.host_session)
def test_rollback_host_transaction(self):
# TODO: test actual rollback for data changes
session = Session()
handler = handlers.FromSQLAlchemyHandler(host_session=session)
self.assertIs(handler.host_session, session)
handler.rollback_host_transaction()
self.assertIsNone(handler.host_session)
class TestToSQLAlchemyHandler(TestCase):
def test_init(self):
handler = handlers.ToSQLAlchemyHandler()
self.assertRaises(NotImplementedError, handler.make_session)
def test_get_importer_kwargs(self):
session = object()
handler = handlers.ToSQLAlchemyHandler(session=session)
kwargs = handler.get_importer_kwargs(None)
self.assertEqual(list(kwargs.iterkeys()), ['session'])
self.assertIs(kwargs['session'], session)
def test_begin_local_transaction(self):
handler = MockToSQLAlchemyHandler()
self.assertIsNone(handler.session)
handler.begin_local_transaction()
self.assertIsInstance(handler.session, orm.Session)
handler.session.close()
def test_commit_local_transaction(self):
# TODO: test actual commit for data changes
session = Session()
handler = handlers.ToSQLAlchemyHandler(session=session)
self.assertIs(handler.session, session)
handler.commit_local_transaction()
self.assertIsNone(handler.session)
def test_rollback_local_transaction(self):
# TODO: test actual rollback for data changes
session = Session()
handler = handlers.ToSQLAlchemyHandler(session=session)
self.assertIs(handler.session, session)
handler.rollback_local_transaction()
self.assertIsNone(handler.session)
|