aboutsummaryrefslogtreecommitdiff
path: root/tests/test_debiandistro.py
blob: a166aa88b57ccfdd9c1f6384bc5b132d7ad97f07 (plain)
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
# vim: set fileencoding=utf-8 :
# (C) 2014 Guido Günther <agx@sigxcpu.org>
#    This program 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 2 of the License, or
#    (at your option) any later version.
#
#    This program 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 this program; if not, write to the Free Software
#    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
"""Test L{whatmaps.process} config"""

import unittest
from mock import patch

try:
    import apt_pkg
    have_apt_pkg=True
except ImportError:
    have_apt_pkg=False

from whatmaps.debiandistro import DebianDistro
from whatmaps.debianpkg import DebianPkg

class TestDebianDistro(unittest.TestCase):
    def test_vars(self):
        """Check Debian distro vars"""
        self.assertEqual(DebianDistro.id, 'Debian')
        self.assertIsNotNone(DebianDistro._pkg_services)
        self.assertIsNotNone(DebianDistro._pkg_service_blacklist)
        self.assertIsNotNone(DebianDistro.service_blacklist)
        self.assertEqual(DebianDistro.restart_service_cmd('aservice'),
                         ['invoke-rc.d', 'aservice', 'restart'])
        self.assertTrue(DebianDistro.has_apt())

    def test_pkg_by_file(self):
        with patch('subprocess.Popen') as mock:
            PopenMock = mock.return_value
            PopenMock.returncode = 0
            PopenMock.communicate.return_value = ['apackage']

            pkg = DebianDistro.pkg_by_file('afile')
            self.assertIsInstance(pkg, DebianPkg)
            self.assertEqual(pkg.name, 'apackage')
            PopenMock.communicate.assert_called_once_with()
            mock.assert_called_once_with(['dpkg-query', '-S', 'afile'],
                                         stderr=-1, stdout=-1)

    def test_pkg_by_file_failure(self):
        """Test if None is returned on subcommand erros"""
        with patch('subprocess.Popen') as mock:
            PopenMock = mock.return_value
            PopenMock.returncode = 1
            PopenMock.communicate.return_value = ['apackage']

            pkg = DebianDistro.pkg_by_file('afile')
            self.assertIsNone(pkg)
            PopenMock.communicate.assert_called_once_with()
            mock.assert_called_once_with(['dpkg-query', '-S', 'afile'],
                                         stderr=-1, stdout=-1)

    def test_read_apt_pipeline(self):
        """Test our interaction with the apt pipeline"""
        class AptPipelineMock(object):
            def __init__(self):
                self.iter = self.lines()

            def lines(self):
                for line in ['VERSION 2', 'Whatmaps::Enable-Restart=1', '\n']:
                    yield line

            def readlines(self):
                return ['pkg1 0.0 c 1.0 **CONFIGURE**',
                        'pkg2 - c 1.0 **CONFIGURE**',
                        '']

            def readline(self):
                return next(self.iter)

        with patch('sys.stdin', new_callable=AptPipelineMock):
            pkgs = DebianDistro.read_apt_pipeline()
            self.assertEqual(len(pkgs), 1)
            self.assertTrue(pkgs.has_key('pkg1'))
            self.assertTrue(pkgs['pkg1'].name, 'pkg1')

    @patch('apt_pkg.init')
    @patch('apt_pkg.Acquire')
    @unittest.skipUnless(have_apt_pkg, "apt_pkg not installed")
    def test_filter_security_updates(self, apt_pkg_acquire, apt_pkg_init):
        pkgs = {'pkg1': DebianPkg('pkg1'),
                'pkg2': DebianPkg('pkg2'),
            }
        with patch('apt_pkg.Cache') as mock:
            DebianDistro.filter_security_updates(pkgs)
        apt_pkg_init.assert_called_once_with()
        apt_pkg_acquire.assert_called_once_with()