aboutsummaryrefslogtreecommitdiff
blob: 216d6df5285abad0d3781482a0f3c691bd4b7cbd (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
#	vim:fileencoding=utf-8
# (c) 2011-2012 Michał Górny <mgorny@gentoo.org>
# Released under the terms of the 2-clause BSD license.

from .dbus_case import DBusEbuildTestCase

class BannedCommandTest(DBusEbuildTestCase):
	supported_eapis = (range(0, 4), (4,))

	def __init__(self, *args, **kwargs):
		DBusEbuildTestCase.__init__(self, *args, **kwargs)
		self._path = '/tmp/pms-test-suite-%d' % id(self)
		self.phase_funcs['src_install'].extend([
			'{ echo > foo; } || die',
			'insinto %s' % self._path,
			'doins foo || die'
		])
		self.expect_failure = (self.eapi == 4)

class DoHardCommandTest(BannedCommandTest):
	""" Test whether dohard command is actually banned. """

	def __init__(self, *args, **kwargs):
		BannedCommandTest.__init__(self, *args, **kwargs)
		self.phase_funcs['src_install'].extend([
				'dohard %s/foo %s/bar || die' % (self._path, self._path),
				'[[ "${D}"%s/foo -ef "${D}"%s/bar ]]' % (self._path, self._path),
				'pms-test_dbus_append_result ${?}'])
		self.phase_funcs['pkg_postinst'].extend([
				'[[ "${ROOT}"%s/foo -ef "${ROOT}"%s/bar ]]' % (self._path, self._path),
				'pms-test_dbus_append_result ${?}'])

	def check_dbus_result(self, output, pm):
		try:
			BannedCommandTest.check_dbus_result(self, output, pm)
		except AssertionError as e:
			exc = e
		else:
			exc = None

		try:
			res = True if output[0] == '0' else False
		except IndexError:
			res = None

		if self.eapi < 4:
			try:
				self.assertTrue(res, 'hardlink created')
			except AssertionError as e:
				if exc is None:
					exc = e
			try:
				self.assertTrue(output[1] == '0', 'hardlink preserved after merge',
						undefined = True)
			except IndexError:
				pass
		elif res is not None or exc:
			self.assertFalse(res, 'hardlink created',
					undefined = True)
			try:
				self.assertFalse(output[1] == '0', 'hardlink preserved after merge',
						undefined = True)
			except IndexError:
				pass

		if exc:
			raise exc

class DoSedCommandTest(BannedCommandTest):
	""" Test whether dosed command is actually banned. """

	def __init__(self, *args, **kwargs):
		BannedCommandTest.__init__(self, *args, **kwargs)
		self.phase_funcs['src_install'].extend([
				"dosed -e '$i SED WORKED' %s/foo || die" % self._path,
				'pms-test_dbus_append_result "$(cat "${D}"%s/foo)"' % self._path])

	def check_dbus_result(self, output, pm):
		try:
			BannedCommandTest.check_dbus_result(self, output, pm)
		except AssertionError as e:
			exc = e
		else:
			exc = None

		try:
			res = output[0].strip()
		except IndexError:
			res = None

		if self.eapi < 4:
			self.assertEqual(res, 'SED WORKED', 'dosed result')
		elif res is not None or exc:
			self.assertNotEqual(res, 'SED WORKED', 'dosed result',
					undefined = True)

		if exc:
			raise exc