Files
@ 177478f7d054
Branch filter:
Location: rattail-project/rattail/tests/db/sync/test_linux.py - annotation
177478f7d054
2.4 KiB
text/x-python
Database config/init overhaul.
This contains some not-very-atomic changes:
* Get rid of `get_session_class()` function and return to global `Session`
class approach.
* Primary database `Session` is now configured as part of command
initialization, by default.
* Make `config` object available to subcommands, and `Daemon` instances
(the beginning of the end for `edbob.config`!).
* Add `--stdout` and `--stderr` arguments to primary `Command`. These are
in turn made available to subcommands.
* Overhauled some subcommand logic per new patterns.
* Get rid of a few other random references to `edbob`.
* Added and improved several tests.
* Added ability to run tests using arbitrary database engine.
This contains some not-very-atomic changes:
* Get rid of `get_session_class()` function and return to global `Session`
class approach.
* Primary database `Session` is now configured as part of command
initialization, by default.
* Make `config` object available to subcommands, and `Daemon` instances
(the beginning of the end for `edbob.config`!).
* Add `--stdout` and `--stderr` arguments to primary `Command`. These are
in turn made available to subcommands.
* Overhauled some subcommand logic per new patterns.
* Get rid of a few other random references to `edbob`.
* Added and improved several tests.
* Added ability to run tests using arbitrary database engine.
63e6390336a8 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 177478f7d054 |
# TODO: These tests are now broken and need fixing...
# from unittest import TestCase
# from mock import patch, DEFAULT
# from rattail.db.sync import linux
# class SyncDaemonTests(TestCase):
# @patch.multiple('rattail.db.sync.linux',
# edbob=DEFAULT,
# get_default_engine=DEFAULT,
# get_sync_engines=DEFAULT,
# synchronize_changes=DEFAULT)
# def test_run(self, edbob, get_default_engine, get_sync_engines, synchronize_changes):
# daemon = linux.SyncDaemon('/tmp/rattail_dbsync.pid')
# # no remote engines configured
# get_sync_engines.return_value = None
# daemon.run()
# get_sync_engines.assert_called_once_with(edbob.config)
# self.assertFalse(get_default_engine.called)
# self.assertFalse(synchronize_changes.called)
# # with remote engines configured
# get_sync_engines.return_value = 'fake_remotes'
# get_default_engine.return_value = 'fake_local'
# daemon.run()
# synchronize_changes.assert_called_once_with('fake_local', 'fake_remotes')
# class ModuleTests(TestCase):
# @patch.multiple('rattail.db.sync.linux', edbob=DEFAULT, SyncDaemon=DEFAULT)
# def test_get_daemon(self, edbob, SyncDaemon):
# # pid file provided
# linux.get_daemon('some_pidfile')
# self.assertFalse(edbob.config.get.called)
# SyncDaemon.assert_called_once_with('some_pidfile')
# # no pid file; fall back to config
# SyncDaemon.reset_mock()
# edbob.config.get.return_value = 'configured_pidfile'
# linux.get_daemon()
# edbob.config.get.assert_called_once_with('rattail.db', 'sync.pid_path',
# default='/var/run/rattail/dbsync.pid')
# SyncDaemon.assert_called_once_with('configured_pidfile')
# @patch('rattail.db.sync.linux.get_daemon')
# def test_start_daemon(self, get_daemon):
# linux.start_daemon(pidfile='some_pidfile', daemonize='maybe')
# get_daemon.assert_called_once_with('some_pidfile')
# get_daemon.return_value.start.assert_called_once_with('maybe')
# @patch('rattail.db.sync.linux.get_daemon')
# def test_stop_daemon(self, get_daemon):
# linux.stop_daemon(pidfile='some_pidfile')
# get_daemon.assert_called_once_with('some_pidfile')
# get_daemon.return_value.stop.assert_called_once_with()
|