summaryrefslogtreecommitdiffstats
path: root/Namcap/tests/package/test_symlink.py
blob: 43d20c5dbebe4ad31c72c62855a2eedcfab357b3 (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
# -*- coding: utf-8 -*-
#
# namcap tests - symlink
# 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
from Namcap.tests.makepkg import MakepkgTest
import Namcap.rules.symlink

class SymlinkTest(MakepkgTest):
	pkgbuild = """
pkgname=__namcap_test_symlink
pkgver=1.0
pkgrel=1
pkgdesc="A package"
arch=('i686' 'x86_64')
url="http://www.example.com/"
license=('GPL')
depends=('glibc')
source=()
options=(!purge !zipman)
backup=(etc/imaginary_file.conf)
build() {
  true
}
package() {
  mkdir -p "${pkgdir}/usr/share"
  touch "${pkgdir}/usr/share/somedata"
  ln -s nofile "${pkgdir}/usr/share/somelink"
  ln -s ../nofile "${pkgdir}/usr/share/somelink2"
  ln -s //usr/share/somedata "${pkgdir}/usr/share/validlink"
  ln -s ../share/somedata "${pkgdir}/usr/share/validlink2"
}
"""
	def test_symlink_files(self):
		"Package with a dangling symlink"
		pkgfile = "__namcap_test_symlink-1.0-1-%(arch)s.pkg.tar" % { "arch": self.arch }
		with open(os.path.join(self.tmpdir, "PKGBUILD"), "w") as f:
			f.write(self.pkgbuild)
		self.run_makepkg()
		pkg, r = self.run_rule_on_tarball(
				os.path.join(self.tmpdir, pkgfile),
				Namcap.rules.symlink.package
				)
		self.assertEqual(set(r.errors), set([
			("dangling-symlink %s points to %s",
				("usr/share/somelink", "nofile")),
			("dangling-symlink %s points to %s",
				("usr/share/somelink2", "../nofile"))
		]))
		self.assertEqual(r.warnings, [])
		self.assertEqual(set(r.infos), set([
			("symlink-found %s points to %s",
				("usr/share/somelink", "nofile")),
			("symlink-found %s points to %s",
				("usr/share/somelink2", "../nofile")),
			("symlink-found %s points to %s",
				("usr/share/validlink", "//usr/share/somedata")),
			("symlink-found %s points to %s",
				("usr/share/validlink2", "../share/somedata")),
		]))

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