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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
#!/usr/bin/python3
# coding=utf-8
import unittest
import lsb_release as lr
import random
import string
import os
import sys
import warnings
def rnd_string(min_l,max_l):
return ''.join( [random.choice(string.ascii_letters) for i in range(random.randint(min_l,max_l))])
def get_arch_distinfo():
# Copied verbatim from guess_debian_release; sucks but unavoidable.
distinfo = {'ID' : 'Debian'}
kern = os.uname()[0]
if kern in ('Linux', 'Hurd', 'NetBSD'):
distinfo['OS'] = 'GNU/'+kern
elif kern == 'FreeBSD':
distinfo['OS'] = 'GNU/k'+kern
elif kern in ('GNU/Linux', 'GNU/kFreeBSD'):
distinfo['OS'] = kern
else:
distinfo['OS'] = 'GNU'
return distinfo
class TestLSBRelease(unittest.TestCase):
def test_lookup_codename(self):
# Test all versions
for rno in lr.RELEASE_CODENAME_LOOKUP:
cdn = lr.RELEASE_CODENAME_LOOKUP[rno]
# Test that 1.1, 1.1r0 and 1.1.8 lead to buzz. Default is picked randomly and is not supposed to go trough
badDefault = rnd_string(0,9)
# From Wheezy on, the codename is defined by the first number but a dot-revision is mandatory
if float(rno) >= 7:
rno = rno + '.' + str(random.randint(0,9))
self.assertEqual(lr.lookup_codename(rno,badDefault),cdn,'Release name `' + rno + '` is not recognized.')
self.assertEqual(lr.lookup_codename(rno + 'r' + str(random.randint(0,9)),badDefault),cdn,'Release name `' + rno + 'r*` is not recognized.')
self.assertEqual(lr.lookup_codename(rno + '.' + str(random.randint(0,9)),badDefault),cdn,'Release name `' + rno + '.*` is not recognized.')
self.assertEqual(lr.lookup_codename('inexistent_release' + str(random.randint(0,9)),badDefault),badDefault,'Default release codename is not accepted.')
def test_valid_lsb_versions(self):
# List versions in which the modules are available
lsb_modules = {
'cxx' : ['3.0', '3.1', '3.2', '4.0', '4.1'],
'desktop' : ['3.1', '3.2', '4.0', '4.1'],
'languages' : ['3.2', '4.0', '4.1'],
'multimedia' : ['3.2', '4.0', '4.1'],
'printing' : ['3.2', '4.0', '4.1'],
'qt4' : ['3.1'],
'security' : ['4.0','4.1'],
}
lsb_known_versions = ['2.0', '3.0', '3.1', '3.2', '4.0', '4.1'];
for lsb_module in lsb_modules:
in_versions = lsb_modules[lsb_module]
for test_v in lsb_known_versions:
vlv_result = lr.valid_lsb_versions(test_v,lsb_module)
assert_text = 'valid_lsb_versions(' + test_v + ',' + lsb_module + ')'
# For 2.0, all output 2.0 only.
if test_v == '2.0':
self.assertEqual(vlv_result,
['2.0'],
assert_text)
# For 3.0, all output 2.0 and 3.0.
elif test_v == '3.0':
self.assertEqual(vlv_result,
['2.0', '3.0'],
assert_text)
# Before appearance, it outputs all past LSB versions
elif int(float(test_v)*10) < int(float(in_versions[0])*10):
self.assertEqual(vlv_result,
[elem for elem in lsb_known_versions if int(float(elem)*10) <= int(float(test_v)*10)],
assert_text)
# From appearence on, it outputs all lower versions from the in_versions
else:
self.assertEqual(vlv_result,
[elem for elem in in_versions if int(float(elem)*10) <= int(float(test_v)*10)],
assert_text)
def test_check_modules_installed(self):
# Test that when no packages are available, then we get nothing out.
os.environ['TEST_DPKG_QUERY_NONE'] = '1'
self.assertEqual(lr.check_modules_installed(),[])
os.environ.pop('TEST_DPKG_QUERY_NONE')
def test_parse_policy_line(self):
release_line = ''
shortnames = list(lr.longnames.keys())
random.shuffle(shortnames)
longnames = {}
for shortname in shortnames:
longnames[lr.longnames[shortname]] = rnd_string(1,9)
release_line += shortname + '=' + longnames[lr.longnames[shortname]] + ','
release_line = release_line[:-1]
self.assertEqual(sorted(lr.parse_policy_line(release_line)),sorted(longnames),'parse_policy_line(' + release_line + ')')
def test_compare_release(self):
# Test that equal suite strings lead to 0
fake_release_equal = rnd_string(1,25)
x = [rnd_string(1,12), {'suite': fake_release_equal}]
y = [rnd_string(1,12), {'suite': fake_release_equal}]
with warnings.catch_warnings():
warnings.simplefilter("ignore", category=DeprecationWarning)
# test/test_lsb_release.py:120: DeprecationWarning:
# compare_release(x,y) is deprecated; please use the
# release_index(x) as key for sort() instead.
self.assertEqual(lr.compare_release(x,y),0)
# Test that sequences in RELEASES_ORDER lead to reliable output
RO_min = 0
RO_max = len(lr.RELEASES_ORDER) - 1
x_suite_i = random.randint(RO_min,RO_max)
y_suite_i = random.randint(RO_min,RO_max)
x[1]['suite'] = lr.RELEASES_ORDER[x_suite_i]
y[1]['suite'] = lr.RELEASES_ORDER[y_suite_i]
supposed_output = y_suite_i - x_suite_i
with warnings.catch_warnings():
warnings.simplefilter("ignore", category=DeprecationWarning)
# test/test_lsb_release.py:120: DeprecationWarning:
# compare_release(x,y) is deprecated; please use the
# release_index(x) as key for sort() instead.
self.assertEqual(lr.compare_release(x,y),
supposed_output,
'compare_release(' + x[1]['suite'] + ',' + y[1]['suite'] + ') =? ' + str(supposed_output))
def test_parse_apt_policy(self):
# Test almost-empty apt-cache policy
supposed_output = [(100, {'suite': 'now'})]
self.assertEqual(lr.parse_apt_policy(),supposed_output)
# Add one fake entry
os.environ['TEST_APT_CACHE1'] = '932'
supposed_output.append((932, {'origin': 'oRigIn', 'suite': 'SuiTe', 'component': 'C0mp0nent', 'label': 'lABel'}))
self.assertEqual(lr.parse_apt_policy(),supposed_output)
# Add a second fake entry, unordered
os.environ['TEST_APT_CACHE2'] = '600'
supposed_output.append((600, {'origin': '0RigIn', 'suite': '5uiTe', 'component': 'C03p0nent', 'label': '1ABel'}))
self.assertEqual(lr.parse_apt_policy(),supposed_output)
# Add a third fake entry, unordered, with non-ascii chars (#675618)
os.environ['TEST_APT_CACHE3'] = '754'
supposed_output.append((754, {'origin': u'Jérôme Helvète', 'suite': '5uiTe', 'component': 'C03p0nent', 'label': '1ABel'}))
self.assertEqual(lr.parse_apt_policy(),supposed_output)
os.environ.pop('TEST_APT_CACHE1')
os.environ.pop('TEST_APT_CACHE2')
os.environ.pop('TEST_APT_CACHE3')
def test_guess_release_from_apt(self):
os.environ['TEST_APT_CACHE1'] = '932'
os.environ['TEST_APT_CACHE2'] = '600'
os.environ['TEST_APT_CACHE3'] = '754'
os.environ['TEST_APT_CACHE_RELEASE'] = '512'
supposed_output = {'origin': 'or1g1n', 'suite': 'testing', 'component': 'c0mp0nent', 'label': 'l8bel'}
self.assertEqual(
lr.guess_release_from_apt(
origin='or1g1n',
label='l8bel',
component='c0mp0nent',
ignoresuites=('c0mp0nentIgn')),
supposed_output)
# Test with a special repository (for Ports)
supposed_output = {'origin': 'P-or1g1n', 'suite': 'sid', 'component': 'OtherComp', 'label': 'P-l8bel'}
self.assertEqual(
lr.guess_release_from_apt(
origin='or1g1n',
label='l8bel',
component='c0mp0nent',
ignoresuites=('c0mp0nentIgn'),
alternate_olabels={'P-or1g1n': ('P-l8bel', 'P-l9bel')}),
supposed_output)
os.environ.pop('TEST_APT_CACHE1')
os.environ.pop('TEST_APT_CACHE2')
os.environ.pop('TEST_APT_CACHE3')
os.environ.pop('TEST_APT_CACHE_RELEASE')
def test_guess_debian_release(self):
distinfo = get_arch_distinfo()
# Test different dpkg origin with an fake "unstable releases" that ends in /sid, and an invalid apt-cache policy
distinfo['ID'] = rnd_string(5,12)
fn = 'test/dpkg_origins_default_' + rnd_string(5,5)
f = open(fn,'w')
f.write('Vendor: ' + distinfo['ID'] + "\n")
f.close()
os.environ['LSB_ETC_DPKG_ORIGINS_DEFAULT'] = fn
distinfo['RELEASE'] = 'testing/unstable'
distinfo['DESCRIPTION'] = '%(ID)s %(OS)s %(RELEASE)s' % distinfo
fn2 = 'test/debian_version_' + rnd_string(5,12)
f = open(fn2,'w')
f.write(rnd_string(5,12) + '/sid')
f.close()
os.environ['LSB_ETC_DEBIAN_VERSION'] = fn2
self.assertEqual(lr.guess_debian_release(),distinfo)
os.remove(fn)
# Make sure no existing /etc/dpkg/origins/default is used
os.environ['LSB_ETC_DPKG_ORIGINS_DEFAULT'] = '/non-existant'
distinfo['ID'] = 'Debian'
# Test "stable releases" with numeric debian_versions
for rno in lr.RELEASE_CODENAME_LOOKUP:
# From Wheezy on, the codename is defined by the first number but a dot-revision is mandatory
if float(rno) >= 7:
distinfo['RELEASE'] = rno + '.' + str(random.randint(0,9))
else:
distinfo['RELEASE'] = rno + random.choice('.r') + str(random.randint(0,9))
distinfo['CODENAME'] = lr.RELEASE_CODENAME_LOOKUP[rno]
distinfo['DESCRIPTION'] = '%(ID)s %(OS)s %(RELEASE)s (%(CODENAME)s)' % distinfo
fn = 'test/debian_version_' + rnd_string(5,5)
f = open(fn,'w')
f.write(distinfo['RELEASE'])
f.close()
os.environ['LSB_ETC_DEBIAN_VERSION'] = fn
self.assertEqual(lr.guess_debian_release(),distinfo)
os.remove(fn)
os.environ.pop('LSB_ETC_DEBIAN_VERSION')
# Remove the CODENAME from the supposed output
distinfo.pop('CODENAME')
# Test "stable releases" with string debian_versions, go read invalid apt-cache policy
for rno in lr.RELEASE_CODENAME_LOOKUP:
distinfo['RELEASE'] = lr.RELEASE_CODENAME_LOOKUP[rno]
distinfo['DESCRIPTION'] = '%(ID)s %(OS)s %(RELEASE)s' % distinfo
fn = 'test/debian_version_' + rnd_string(5,12)
f = open(fn,'w')
f.write(distinfo['RELEASE'])
f.close()
os.environ['LSB_ETC_DEBIAN_VERSION'] = fn
self.assertEqual(lr.guess_debian_release(),distinfo)
os.remove(fn)
os.environ.pop('LSB_ETC_DEBIAN_VERSION')
# Test "unstable releases" that end in /sid, go read invalid apt-cache policy
distinfo['RELEASE'] = 'testing/unstable'
distinfo['DESCRIPTION'] = '%(ID)s %(OS)s %(RELEASE)s' % distinfo
for rno in lr.RELEASE_CODENAME_LOOKUP:
fn = 'test/debian_version_' + rnd_string(5,12)
f = open(fn,'w')
f.write(lr.RELEASE_CODENAME_LOOKUP[rno] + '/sid')
f.close()
os.environ['LSB_ETC_DEBIAN_VERSION'] = fn
self.assertEqual(lr.guess_debian_release(),distinfo)
os.remove(fn)
os.environ.pop('LSB_ETC_DEBIAN_VERSION')
# Test "unstable releases" that end in /sid, go read valid apt-cache policy
os.environ['TEST_APT_CACHE_UNSTABLE'] = '500'
distinfo['CODENAME'] = 'sid'
distinfo['RELEASE'] = 'unstable'
distinfo['DESCRIPTION'] = '%(ID)s %(OS)s %(RELEASE)s (%(CODENAME)s)' % distinfo
for rno in lr.RELEASE_CODENAME_LOOKUP:
fn = 'test/debian_version_' + rnd_string(5,12)
f = open(fn,'w')
f.write(lr.RELEASE_CODENAME_LOOKUP[rno] + '/sid')
f.close()
os.environ['LSB_ETC_DEBIAN_VERSION'] = fn
self.assertEqual(lr.guess_debian_release(),distinfo)
os.remove(fn)
os.environ.pop('LSB_ETC_DEBIAN_VERSION')
distinfo['CODENAME'] = 'sid'
distinfo['RELEASE'] = 'unstable'
distinfo['DESCRIPTION'] = '%(ID)s %(OS)s %(RELEASE)s (%(CODENAME)s)' % distinfo
for CODE in ('PORTS', 'PORTS_OLD'):
# Test "unstable releases with Debian Ports" that end in /sid, go read valid apt-cache policy
os.environ['TEST_APT_CACHE_UNSTABLE_' + CODE] = '500'
for rno in lr.RELEASE_CODENAME_LOOKUP:
fn = 'test/debian_version_' + rnd_string(5,12)
f = open(fn,'w')
f.write(lr.RELEASE_CODENAME_LOOKUP[rno] + '/sid')
f.close()
os.environ['LSB_ETC_DEBIAN_VERSION'] = fn
self.assertEqual(lr.guess_debian_release(),distinfo)
os.remove(fn)
os.environ.pop('TEST_APT_CACHE_UNSTABLE_' + CODE)
os.environ.pop('LSB_ETC_DEBIAN_VERSION')
os.environ.pop('TEST_APT_CACHE_UNSTABLE')
def test_get_os_release(self):
# Test that an inexistant /usr/lib/os-release leads to empty output
supposed_output = {}
os.environ['LSB_OS_RELEASE'] = 'test/inexistant_file_' + rnd_string(2,5)
self.assertEqual(lr.get_os_release(),supposed_output)
# Test that a fake full /usr/lib/os-release leads to output with only the content we want
supposed_output = {'RELEASE': '(The release number)',
'ID': '(Distributor Id)',
'DESCRIPTION': '(A human-readable description of the release)'}
os.environ['LSB_OS_RELEASE'] = 'test/os-release'
self.assertEqual(lr.get_os_release(),supposed_output)
# Test that a fake minimal /usr/lib/os-release leads to output with only the content we want
supposed_output = {'ID': '(Distributor Id)',
'DESCRIPTION': '(A human-readable description of the release)'}
os.environ['LSB_OS_RELEASE'] = 'test/os-release-minimal'
self.assertEqual(lr.get_os_release(),supposed_output)
os.environ.pop('LSB_OS_RELEASE')
def test_get_distro_information_no_distinfo_file(self):
# Test that a missing /usr/share/distro-info/{distro}.csv indeed falls
# back on Debian's information
debian_info = lr.get_distro_info()
other_distro_info = lr.get_distro_info(origin='x-not-debian')
self.assertEqual(debian_info, other_distro_info)
def test_get_distro_information(self):
# Test that an inexistant /usr/lib/os-release leads to empty output
supposed_output = get_arch_distinfo()
supposed_output['RELEASE'] = 'testing/unstable';
supposed_output['DESCRIPTION'] = '%(ID)s %(OS)s %(RELEASE)s' % supposed_output
os.environ['LSB_OS_RELEASE'] = 'test/inexistant_file_' + rnd_string(2,5)
fn = 'test/debian_version_' + rnd_string(5,12)
f = open(fn,'w')
f.write('testing/sid')
f.close()
os.environ['LSB_ETC_DEBIAN_VERSION'] = fn
os.environ['LSB_ETC_DPKG_ORIGINS_DEFAULT'] = ''
self.assertEqual(lr.get_distro_information(),supposed_output)
os.remove(fn)
os.environ.pop('LSB_ETC_DPKG_ORIGINS_DEFAULT')
os.environ.pop('LSB_ETC_DEBIAN_VERSION')
if __name__ == '__main__':
unittest.main()
|