diff options
| author | Barry Warsaw | 2010-05-06 14:11:22 -0400 |
|---|---|---|
| committer | Barry Warsaw | 2010-05-06 14:11:22 -0400 |
| commit | 9438b52914daf19414c61273a741b657c73a877d (patch) | |
| tree | 434ded29bc172abe7d2abe420b2b4945add925bc /src/mailman/utilities | |
| parent | da66a87d60b6e9fdc074ec5d76f8247a7be01e28 (diff) | |
| download | mailman-9438b52914daf19414c61273a741b657c73a877d.tar.gz mailman-9438b52914daf19414c61273a741b657c73a877d.tar.zst mailman-9438b52914daf19414c61273a741b657c73a877d.zip | |
Basic importer test.
Diffstat (limited to 'src/mailman/utilities')
| -rw-r--r-- | src/mailman/utilities/tests/__init__.py | 0 | ||||
| -rw-r--r-- | src/mailman/utilities/tests/test_import.py | 64 |
2 files changed, 64 insertions, 0 deletions
diff --git a/src/mailman/utilities/tests/__init__.py b/src/mailman/utilities/tests/__init__.py new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/src/mailman/utilities/tests/__init__.py diff --git a/src/mailman/utilities/tests/test_import.py b/src/mailman/utilities/tests/test_import.py new file mode 100644 index 000000000..4f4780339 --- /dev/null +++ b/src/mailman/utilities/tests/test_import.py @@ -0,0 +1,64 @@ +# Copyright (C) 2010 by the Free Software Foundation, Inc. +# +# This file is part of GNU Mailman. +# +# GNU Mailman is free software: you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) +# any later version. +# +# GNU Mailman 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 General Public License for +# more details. +# +# You should have received a copy of the GNU General Public License along with +# GNU Mailman. If not, see <http://www.gnu.org/licenses/>. + +"""Tests for config.pck imports.""" + +from __future__ import absolute_import, unicode_literals + +__metaclass__ = type +__all__ = [ + 'test_suite', + ] + + +import cPickle +import unittest + +from mailman.app.lifecycle import create_list, remove_list +from mailman.testing.layers import ConfigLayer +from mailman.utilities.importer import import_config_pck +from pkg_resources import resource_filename + + + +class TestBasicImport(unittest.TestCase): + layer = ConfigLayer + + def setUp(self): + self._mlist = create_list('blank@example.com') + pickle_file = resource_filename('mailman.testing', 'config.pck') + with open(pickle_file) as fp: + self._pckdict = cPickle.load(fp) + + def tearDown(self): + remove_list(self._mlist.fqdn_listname, self._mlist) + + def _import(self): + import_config_pck(self._mlist, self._pckdict) + + def test_real_name(self): + # The mlist.real_name gets set. + self.assertEqual(self._mlist.real_name, 'Blank') + self._import() + self.assertEqual(self._mlist.real_name, 'Test') + + + +def test_suite(): + suite = unittest.TestSuite() + suite.addTest(unittest.makeSuite(TestBasicImport)) + return suite |
