summaryrefslogtreecommitdiffstats
path: root/Namcap/tests/test_depends.py
blob: 7c6a9dc3bda5a4e4af2958731fa0d884f8a3a028 (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
# -*- coding: utf-8 -*-
#
# namcap tests - tests for the depends module
# Copyright (C) 2011 Rémy Oudompheng <remy@archlinux.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
# 

import os
import unittest
import tempfile
import shutil
import Namcap.depends
import Namcap.package

class DependsTests(unittest.TestCase):
	def setUp(self):
		self.pkginfo = Namcap.package.PacmanPackage({'name': 'package'})

	def test_missing(self):
		self.pkginfo.detected_deps = {"pkg1": []}
		e, w, i = Namcap.depends.analyze_depends(self.pkginfo)
		expected_e = [("dependency-detected-not-included %s (%s)", ("pkg1",''))]
		self.assertEqual(e, expected_e)
		self.assertEqual(w, [])
		self.assertEqual(i,
				[('depends-by-namcap-sight depends=(%s)', 'pkg1')])

	def test_unneeded(self):
		self.pkginfo["depends"] = {"pkg1": []}
		e, w, i = Namcap.depends.analyze_depends(self.pkginfo)
		expected_w = [("dependency-not-needed %s", "pkg1")]
		self.assertEqual(e, [])
		self.assertEqual(w, expected_w)
		self.assertEqual(i,
				[('depends-by-namcap-sight depends=(%s)', '')])

	def test_satisfied(self):
		# false positive test
		self.pkginfo["depends"] = {"readline": []}
		self.pkginfo.detected_deps = {"glibc": [], "readline": []}
		e, w, i = Namcap.depends.analyze_depends(self.pkginfo)
		unexpected_w = [('dependency-already-satisfied %s', 'readline')]
		self.assertEqual(e, [])
		self.assertEqual(w, [])
		# info is verbose and beyond scope, skip it

	def test_satisfied2(self):
		# false negative test
		self.pkginfo["depends"] = {"pyalpm": [], "python": []}
		self.pkginfo.detected_deps = {"pyalpm": [], "python": []}
		e, w, i = Namcap.depends.analyze_depends(self.pkginfo)
		expected_w = [('dependency-already-satisfied %s', 'python')]
		self.assertEqual(e, [])
		self.assertEqual(w, expected_w)
		# info is verbose and beyond scope, skip it

# vim: set ts=4 sw=4 noet: