Blame tests/test_plugin.py

Packit Service 21c75c
# -*- coding: utf-8 -*-
Packit Service 21c75c
Packit Service 21c75c
# Copyright (C) 2013-2018 Red Hat, Inc.
Packit Service 21c75c
#
Packit Service 21c75c
# This copyrighted material is made available to anyone wishing to use,
Packit Service 21c75c
# modify, copy, or redistribute it subject to the terms and conditions of
Packit Service 21c75c
# the GNU General Public License v.2, or (at your option) any later version.
Packit Service 21c75c
# This program is distributed in the hope that it will be useful, but WITHOUT
Packit Service 21c75c
# ANY WARRANTY expressed or implied, including the implied warranties of
Packit Service 21c75c
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
Packit Service 21c75c
# Public License for more details.  You should have received a copy of the
Packit Service 21c75c
# GNU General Public License along with this program; if not, write to the
Packit Service 21c75c
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
Packit Service 21c75c
# 02110-1301, USA.  Any Red Hat trademarks that are incorporated in the
Packit Service 21c75c
# source code or documentation are not subject to the GNU General Public
Packit Service 21c75c
# License and may only be used or replicated with the express permission of
Packit Service 21c75c
# Red Hat, Inc.
Packit Service 21c75c
#
Packit Service 21c75c
Packit Service 21c75c
from __future__ import absolute_import
Packit Service 21c75c
from __future__ import unicode_literals
Packit Service 21c75c
Packit Service 21c75c
import dnf.logging
Packit Service 21c75c
import dnf.plugin
Packit Service 21c75c
import dnf.pycomp
Packit Service 21c75c
Packit Service 21c75c
import tests.support
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
PLUGINS = "%s/tests/plugins" % tests.support.dnf_toplevel()
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
def testconf():
Packit Service 21c75c
    conf = tests.support.FakeConf()
Packit Service 21c75c
    conf.pluginpath = [PLUGINS]
Packit Service 21c75c
    conf.pluginconfpath = [PLUGINS]
Packit Service 21c75c
    return conf
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
class PluginTest(tests.support.TestCase):
Packit Service 21c75c
    def setUp(self):
Packit Service 21c75c
        self.plugins = dnf.plugin.Plugins()
Packit Service 21c75c
        self.plugins._load(testconf(), (), ())
Packit Service 21c75c
Packit Service 21c75c
    def tearDown(self):
Packit Service 21c75c
        self.plugins._unload()
Packit Service 21c75c
Packit Service 21c75c
    def test_load(self):
Packit Service 21c75c
        self.assertLength(self.plugins.plugin_cls, 1)
Packit Service 21c75c
        cls = self.plugins.plugin_cls[0]
Packit Service 21c75c
        assert(issubclass(cls, dnf.plugin.Plugin))
Packit Service 21c75c
        self.assertEqual(cls.name, 'lucky')
Packit Service 21c75c
Packit Service 21c75c
    def test_runs(self):
Packit Service 21c75c
        self.assertLength(self.plugins.plugins, 0)
Packit Service 21c75c
        self.plugins._run_init(None, None)
Packit Service 21c75c
        self.assertLength(self.plugins.plugins, 1)
Packit Service 21c75c
        self.plugins._run_config()
Packit Service 21c75c
        lucky = self.plugins.plugins[0]
Packit Service 21c75c
        self.assertTrue(lucky._config)
Packit Service 21c75c
Packit Service 21c75c
    def test_config(self):
Packit Service 21c75c
        base = tests.support.MockBase()
Packit Service 21c75c
        base.conf.pluginconfpath = ['/wrong', PLUGINS]
Packit Service 21c75c
        self.plugins._run_init(base, None)
Packit Service 21c75c
        lucky = self.plugins.plugins[0]
Packit Service 21c75c
        conf = lucky.read_config(base.conf)
Packit Service 21c75c
        self.assertTrue(conf.getboolean('main', 'enabled'))
Packit Service 21c75c
        self.assertEqual(conf.get('main', 'wanted'), '/to/be/haunted')
Packit Service 21c75c
        base.close()
Packit Service 21c75c
Packit Service 21c75c
    def test_disabled(self):
Packit Service 21c75c
        base = tests.support.MockBase()
Packit Service 21c75c
        base.conf.pluginconfpath = [PLUGINS]
Packit Service 21c75c
        self.plugins._run_init(base, None)
Packit Service 21c75c
        self.assertFalse(any([p.name == 'disabled-plugin'
Packit Service 21c75c
                              for p in self.plugins.plugins]))
Packit Service 21c75c
        self.assertLength(self.plugins.plugin_cls, 1)
Packit Service 21c75c
        self.assertEqual(self.plugins.plugin_cls[0].name, 'lucky')
Packit Service 21c75c
        base.close()
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
class PluginSkipsTest(tests.support.TestCase):
Packit Service 21c75c
    def test_skip(self):
Packit Service 21c75c
        self.plugins = dnf.plugin.Plugins()
Packit Service 21c75c
        self.plugins._load(testconf(), ('luck*',), ())
Packit Service 21c75c
        self.assertLength(self.plugins.plugin_cls, 0)
Packit Service 21c75c
Packit Service 21c75c
    def tearDown(self):
Packit Service 21c75c
        self.plugins._unload()
Packit Service 21c75c
Packit Service 21c75c
Packit Service 21c75c
class PluginNonExistentTest(tests.support.TestCase):
Packit Service 21c75c
Packit Service 21c75c
    """Tests with a non-existent plugin."""
Packit Service 21c75c
Packit Service 21c75c
    def test_logs_traceback(self):
Packit Service 21c75c
        """Test whether the traceback is logged if a plugin cannot be imported."""
Packit Service 21c75c
        package = dnf.pycomp.ModuleType('testpkg')
Packit Service 21c75c
        package.__path__ = []
Packit Service 21c75c
        stream = dnf.pycomp.StringIO()
Packit Service 21c75c
Packit Service 21c75c
        with tests.support.wiretap_logs('dnf', dnf.logging.SUBDEBUG, stream):
Packit Service 21c75c
            dnf.plugin._import_modules(package, ('nonexistent.py',))
Packit Service 21c75c
Packit Service 21c75c
        end = ('Error: No module named \'testpkg\'\n' if dnf.pycomp.PY3
Packit Service 21c75c
               else 'Error: No module named testpkg.nonexistent\n')
Packit Service 21c75c
        self.assertTracebackIn(end, stream.getvalue())