[namcap] Add test for systemdlocation rule

Message ID 20181121091507.14935-1-michael.straube@posteo.de
State Accepted, archived
Headers show
Series [namcap] Add test for systemdlocation rule | expand

Commit Message

Emil Velikov via arch-projects Nov. 21, 2018, 9:15 a.m. UTC
Signed-off-by: Michael Straube <michael.straube@posteo.de>
---
 Namcap/tests/package/test_systemdlocation.py | 85 ++++++++++++++++++++
 1 file changed, 85 insertions(+)
 create mode 100644 Namcap/tests/package/test_systemdlocation.py

Patch

diff --git a/Namcap/tests/package/test_systemdlocation.py b/Namcap/tests/package/test_systemdlocation.py
new file mode 100644
index 0000000..c22dd5d
--- /dev/null
+++ b/Namcap/tests/package/test_systemdlocation.py
@@ -0,0 +1,85 @@ 
+# -*- coding: utf-8 -*-
+#
+# namcap tests - systemdlocation
+# 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.systemdlocation
+
+class SystemdlocationTest(MakepkgTest):
+	pkgbuild = """
+pkgname=__namcap_test_systemdlocation
+pkgver=1.0
+pkgrel=1
+pkgdesc="A package"
+arch=('i686' 'x86_64')
+url="http://www.example.com/"
+license=('GPL')
+depends=('glibc')
+source=()
+build() {
+  true
+}
+package() {
+  mkdir -p "${pkgdir}/etc/systemd/system"
+  touch "${pkgdir}/etc/systemd/system/systemdsomething"
+}
+"""
+	def test_systemdlocation_pkgname(self):
+		pkgfile = "systemd-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 + "pkgname=systemd")
+		self.run_makepkg()
+		pkg, r = self.run_rule_on_tarball(
+				os.path.join(self.tmpdir, pkgfile),
+				Namcap.rules.systemdlocation.systemdlocationRule
+				)
+		self.assertEqual(r.errors, [])
+		self.assertEqual(r.warnings, [])
+		self.assertEqual(r.infos, [])
+
+	def test_systemdlocation_provides(self):
+		pkgfile = "__namcap_test_systemdlocation-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 + "provides=(systemd)")
+		self.run_makepkg()
+		pkg, r = self.run_rule_on_tarball(
+				os.path.join(self.tmpdir, pkgfile),
+				Namcap.rules.systemdlocation.systemdlocationRule
+				)
+		self.assertEqual(r.errors, [])
+		self.assertEqual(r.warnings, [])
+		self.assertEqual(r.infos, [])
+
+	def test_systemdlocation(self):
+		pkgfile = "__namcap_test_systemdlocation-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.systemdlocation.systemdlocationRule
+				)
+		self.assertEqual(r.errors, [])
+		self.assertEqual(r.warnings, [("systemd-location %s",
+			"etc/systemd/system/systemdsomething")])
+		self.assertEqual(r.infos, [])
+
+# vim: set ts=4 sw=4 noet: