assertSoftware.py 48.8 KB
Newer Older
Łukasz Nowak's avatar
Łukasz Nowak committed
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
##############################################################################
#
# Copyright (c) 2008-2010 Nexedi SA and Contributors. All Rights Reserved.
#                    Lukasz Nowak <luke@nexedi.com>
#
# WARNING: This program as such is intended to be used by professional
# programmers who take the whole responsibility of assessing all potential
# consequences resulting from its eventual inadequacies and bugs
# End users who are looking for a ready-to-use solution with commercial
# guarantees and support are strongly advised to contract a Free Software
# Service Company
#
# 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.
#
##############################################################################
28

Łukasz Nowak's avatar
Łukasz Nowak committed
29 30
import os
import subprocess
31 32
import unittest

33 34 35 36 37 38 39 40 41 42
try:
  any([True])
except NameError:
  # there is no any in python2.4
  def any(l):
    for q in l:
      if q:
        return True
    return False

43 44 45
# List of libraries which are acceptable to be linked in globally
ACCEPTABLE_GLOBAL_LIB_LIST = (
  # 32 bit Linux
46 47
	'/usr/lib/libstdc++.so',
 	'/lib/libgcc_s.so',
48 49 50 51 52 53 54
  '/lib/ld-linux.so',
  '/lib/libc.so',
  '/lib/libcrypt.so',
  '/lib/libdl.so',
  '/lib/libm.so',
  '/lib/libnsl.so',
  '/lib/libpthread.so',
Łukasz Nowak's avatar
Łukasz Nowak committed
55
  '/lib/libresolv.so',
56
  '/lib/librt.so',
57 58
  '/lib/libutil.so',
  # 64 bit Linux
59 60
	'/lib64/libgcc_s.so',
	'/usr/lib64/libstdc++.so',
61 62 63 64 65 66 67
  '/lib64/ld-linux-x86-64.so',
  '/lib64/libc.so',
  '/lib64/libcrypt.so',
  '/lib64/libdl.so',
  '/lib64/libm.so',
  '/lib64/libnsl.so',
  '/lib64/libpthread.so',
Łukasz Nowak's avatar
Łukasz Nowak committed
68
  '/lib64/libresolv.so',
69
  '/lib64/librt.so',
70 71 72 73 74
  '/lib64/libutil.so',
  # Arch independed Linux
  'linux-vdso.so',
)

75 76 77 78 79
SKIP_PART_LIST = (
  'parts/boost-lib-download',
  'parts/openoffice-bin',
  'parts/openoffice-bin__unpack__',
)
80

81 82
def readElfAsDict(f):
  """Reads ELF information from file"""
83 84
  popen = subprocess.Popen(['readelf', '-d', os.path.join(*f.split('/'))],
      stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
85 86
  result = popen.communicate()[0]
  if popen.returncode != 0:
Łukasz Nowak's avatar
Łukasz Nowak committed
87
    raise AssertionError(result)
88
  library_list = []
89 90
  rpath_list = []
  runpath_list = []
91 92
  for l in result.split('\n'):
    if '(NEEDED)' in l:
Łukasz Nowak's avatar
Łukasz Nowak committed
93
      library_list.append(l.split(':')[1].strip(' []').split('.so')[0])
94
    elif '(RPATH)' in l:
95
      rpath_list = [q.rstrip('/') for q in l.split(':',1)[1].strip(' []').split(':')]
96
    elif '(RUNPATH)' in l:
97
      runpath_list = [q.rstrip('/') for q in l.split(':',1)[1].strip(' []').split(':')]
98 99
  if len(runpath_list) == 0:
    runpath_list = rpath_list
100 101
  elif len(rpath_list) != 0 and runpath_list != rpath_list:
    raise ValueError('RPATH and RUNPATH are different.')
102
  return dict(
Łukasz Nowak's avatar
Łukasz Nowak committed
103 104
    library_list=sorted(library_list),
    runpath_list=sorted(runpath_list)
105 106
  )

107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
def readLddInfoList(f):
  popen = subprocess.Popen(['ldd', f], stdout=subprocess.PIPE,
      stderr=subprocess.STDOUT)
  link_list = []
  a = link_list.append
  result = popen.communicate()[0]
  if 'not a dynamic executable' in result:
    return link_list
  for line in result.split('\n'):
    line = line.strip()
    if '=>' in line:
      lib, path = line.split('=>')
      lib = lib.strip()
      path = path.strip()
      if lib in path:
        # libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f77fcebf000)
        a(path.split()[0])
      else:
        # linux-vdso.so.1 =>  (0x00007fffa7fff000)
        a(lib)
127 128
    elif 'warning: you do not have execution permission for' in line:
      pass
Łukasz Nowak's avatar
Łukasz Nowak committed
129 130 131
    elif 'No such file or directory' in line:
      # ignore broken links
      pass
132 133 134 135 136
    elif line:
      # /lib64/ld-linux-x86-64.so.2 (0x00007f77fd400000)
      a(line.split()[0])
  return link_list

137 138 139 140 141
class AssertSoftwareMixin(unittest.TestCase):
  def assertEqual(self, first, second, msg=None):
    try:
      return unittest.TestCase.assertEqual(self, first, second, msg=msg)
    except unittest.TestCase.failureException:
142
      if isinstance(first, list) and \
143
          isinstance(second, list):
144
        err = ''
145 146
        for elt in first:
          if elt not in second:
147
            err += '- %s\n' % elt
148 149
        for elt in second:
          if elt not in first:
150 151
            err += '+ %s\n' % elt
        if err == '':
152 153
          raise
        else:
154 155 156 157
          if msg:
            msg = '%s: Lists are different:\n%s' % (msg, err)
          else:
            msg = 'Lists are different:\n%s' % err
158 159 160 161
          raise unittest.TestCase.failureException, msg
      else:
        raise

162 163 164 165 166 167 168 169 170 171 172 173 174
  def assertLibraryList(self, path, library_list=None, software_list=None,
                        additional_runpath_list=None):
    elf_dict = readElfAsDict(path)
    if library_list is not None:
      self.assertEqual(sorted(library_list), elf_dict['library_list'], path)
    if software_list is not None:
      soft_dir = os.path.join(os.path.abspath(os.curdir), 'parts')
      runpath_list = [os.path.join(soft_dir, software, 'lib') for
        software in software_list]
      if additional_runpath_list is not None:
        runpath_list.extend(additional_runpath_list)
      self.assertEqual(sorted(runpath_list), elf_dict['runpath_list'], path)

175 176 177 178 179 180 181 182 183 184 185 186 187 188
  def assertSoftwareDictEmpty(self, first, msg=None):
    try:
      return unittest.TestCase.assertEqual(self, first, {}, msg)
    except unittest.TestCase.failureException:
      if msg is None:
        msg = ''
        for path, wrong_link_list in first.iteritems():
          msg += '%s:\n' % path
          msg += '\n'.join(['\t' + q for q in sorted(wrong_link_list)]) + '\n'
        msg = 'Bad linked software:\n%s' % msg
        raise unittest.TestCase.failureException, msg
      else:
        raise

189
class AssertSoftwareRunable(AssertSoftwareMixin):
190 191 192 193 194 195 196 197 198 199 200 201
  def test_HaProxy(self):
    stdout, stderr = subprocess.Popen(["parts/haproxy/sbin/haproxy", "-v"],
        stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
    self.assertEqual(stderr, '')
    self.assertTrue(stdout.startswith('HA-Proxy'))

  def test_Apache(self):
    stdout, stderr = subprocess.Popen(["parts/apache/bin/httpd", "-v"],
        stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
    self.assertEqual(stderr, '')
    self.assertTrue(stdout.startswith('Server version: Apache'))

202 203 204 205 206 207
  def test_Varnish(self):
    stdout, stderr = subprocess.Popen(["parts/varnish/sbin/varnishd", "-V"],
        stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
    self.assertEqual(stdout, '')
    self.assertTrue(stderr.startswith('varnishd ('))

208 209 210 211 212 213 214 215 216 217 218 219 220
  def test_TokyoCabinet(self):
    stdout, stderr = subprocess.Popen(["parts/tokyocabinet/bin/tcamgr",
      "version"],
        stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
    self.assertEqual(stderr, '')
    self.assertTrue(stdout.startswith('Tokyo Cabinet'))

  def test_Flare(self):
    stdout, stderr = subprocess.Popen(["parts/flare/bin/flarei", "-v"],
        stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
    self.assertEqual(stderr, '')
    self.assertTrue(stdout.startswith('flare'))

221
  def test_rdiff_backup(self):
222 223
    stdout, stderr = subprocess.Popen(["bin/rdiff-backup", "-V"],
        stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
224 225 226
    self.assertEqual(stderr, '')
    self.assertEqual(stdout.strip(), 'rdiff-backup 1.0.5')

227 228 229 230 231 232 233 234 235 236 237 238
  def test_imagemagick(self):
    binary_list = [ 'animate', 'composite', 'convert', 'identify', 'mogrify',
        'stream', 'compare', 'conjure', 'display', 'import', 'montage']
    base = os.path.join('parts', 'imagemagick', 'bin')
    error_list = []
    for binary in binary_list:
      stdout, stderr = subprocess.Popen([os.path.join(base, binary), "-version"],
          stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
      if 'Version: ImageMagick' not in stdout:
        error_list.append(binary)
    self.assertEqual([], error_list)

239 240 241 242 243 244
  def test_w3m(self):
    stdout, stderr = subprocess.Popen(["parts/w3m/bin/w3m", "-V"],
        stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
    self.assertEqual(stderr, '')
    self.assertTrue(stdout.startswith('w3m version w3m/0.5.2'))

245
class AssertMysql50Tritonn(AssertSoftwareMixin):
246
  def test_ld_mysqld(self):
247
    self.assertLibraryList('parts/mysql-tritonn-5.0/libexec/mysqld', [
248 249 250 251 252 253 254 255 256 257 258 259 260
      'libc',
      'libcrypt',
      'libcrypto',
      'libdl',
      'libgcc_s',
      'libm',
      'libnsl',
      'libpthread',
      'librt',
      'libsenna',
      'libssl',
      'libstdc++',
      'libz',
261 262 263 264 265 266 267
      ], [
      'ncurses',
      'openssl',
      'readline',
      'senna',
      'zlib',
      ])
268 269

  def test_ld_mysqlmanager(self):
270
    self.assertLibraryList('parts/mysql-tritonn-5.0/libexec/mysqlmanager', [
271 272 273 274 275 276 277 278 279 280
      'libc',
      'libcrypt',
      'libcrypto',
      'libgcc_s',
      'libm',
      'libnsl',
      'libpthread',
      'libssl',
      'libstdc++',
      'libz',
281 282 283 284 285 286
      ], [
      'ncurses',
      'zlib',
      'readline',
      'openssl',
      ])
287

288
  def test_ld_libmysqlclient_r(self):
289
    self.assertLibraryList('parts/mysql-tritonn-5.0/lib/mysql/libmysqlclient_r.so', [
290 291 292 293 294 295 296 297
      'libc',
      'libcrypt',
      'libcrypto',
      'libm',
      'libnsl',
      'libpthread',
      'libssl',
      'libz',
298 299 300 301 302 303
      ], [
      'ncurses',
      'openssl',
      'readline',
      'zlib',
      ])
304 305

  def test_ld_libmysqlclient(self):
306
    self.assertLibraryList('parts/mysql-tritonn-5.0/lib/mysql/libmysqlclient.so', [
307 308 309 310 311 312 313
      'libc',
      'libcrypt',
      'libcrypto',
      'libm',
      'libnsl',
      'libssl',
      'libz',
314 315 316 317 318 319
      ], [
      'ncurses',
      'openssl',
      'readline',
      'zlib',
      ])
320 321

  def test_ld_sphinx(self):
322
    self.assertLibraryList('parts/mysql-tritonn-5.0/lib/mysql/sphinx.so', [
323 324 325 326 327 328 329
      'libc',
      'libcrypt',
      'libgcc_s',
      'libm',
      'libnsl',
      'libpthread',
      'libstdc++',
330 331 332 333 334 335
      ], [
      'ncurses',
      'openssl',
      'readline',
      'zlib',
      ])
336

337
  def test_ld_mysql(self):
338
    self.assertLibraryList('parts/mysql-tritonn-5.0/bin/mysql', [
339 340 341 342 343 344 345 346 347 348 349 350
      'libc',
      'libcrypt',
      'libcrypto',
      'libgcc_s',
      'libm',
      'libmysqlclient',
      'libncurses',
      'libnsl',
      'libreadline',
      'libssl',
      'libstdc++',
      'libz',
351 352 353 354 355 356 357
      ], [
      'ncurses',
      'zlib',
      'readline',
      'openssl',
      ], [os.path.join(os.path.abspath(os.curdir),
      'parts', 'mysql-tritonn-5.0', 'lib', 'mysql')])
358 359

  def test_ld_mysqladmin(self):
360
    self.assertLibraryList('parts/mysql-tritonn-5.0/bin/mysqladmin', [
361 362 363 364 365 366 367 368 369 370
      'libc',
      'libcrypt',
      'libcrypto',
      'libgcc_s',
      'libm',
      'libmysqlclient',
      'libnsl',
      'libssl',
      'libstdc++',
      'libz',
371 372 373 374 375 376 377
      ], [
      'ncurses',
      'openssl',
      'readline',
      'zlib',
      ], [os.path.join(os.path.abspath(os.curdir),
      'parts', 'mysql-tritonn-5.0', 'lib', 'mysql')])
378 379

  def test_ld_mysqldump(self):
380 381 382
    self.assertLibraryList('parts/mysql-tritonn-5.0/bin/mysqldump', ['libc', 'libcrypt', 'libcrypto', 'libm',
      'libmysqlclient', 'libnsl', 'libssl', 'libz'], ['ncurses', 'zlib', 'readline', 'openssl'], [os.path.join(os.path.abspath(os.curdir),
      'parts', 'mysql-tritonn-5.0', 'lib', 'mysql')])
383

384
class AssertMysql51(AssertSoftwareMixin):
385
  def test_ld_mysqld(self):
386 387
    self.assertLibraryList('parts/mysql-5.1/libexec/mysqld', ['libc', 'libcrypt', 'libdl', 'libgcc_s', 'libm', 'libnsl',
      'libpthread', 'libstdc++', 'libz'], ['ncurses', 'zlib', 'readline'])
388 389

  def test_ld_mysqlmanager(self):
390 391
    self.assertLibraryList('parts/mysql-5.1/libexec/mysqlmanager', ['libc', 'libcrypt', 'libgcc_s', 'libm', 'libnsl',
      'libpthread', 'libstdc++', 'libz'], ['ncurses', 'zlib', 'readline'])
392 393

  def test_ld_libmysqlclient_r(self):
394
    self.assertLibraryList('parts/mysql-5.1/lib/mysql/libmysqlclient_r.so', ['libc', 'libz', 'libcrypt', 'libm', 'libnsl', 'libpthread'], ['ncurses', 'zlib', 'readline'])
395 396

  def test_ld_libmysqlclient(self):
397
    self.assertLibraryList('parts/mysql-5.1/lib/mysql/libmysqlclient.so', ['libc', 'libz', 'libcrypt', 'libm', 'libnsl', 'libpthread'], ['ncurses', 'readline', 'zlib'])
398 399

  def test_ld_mysql(self):
400
    self.assertLibraryList('parts/mysql-5.1/bin/mysql', ['libc', 'libz', 'libcrypt', 'libgcc_s', 'libm',
401
      'libmysqlclient', 'libncurses', 'libnsl', 'libpthread', 'libreadline',
402 403 404
      'libstdc++'], ['ncurses', 'zlib', 'readline'],
                           [os.path.join(os.path.abspath(os.curdir),
      'parts', 'mysql-5.1', 'lib', 'mysql')])
405 406

  def test_ld_mysqladmin(self):
407 408 409 410
    self.assertLibraryList('parts/mysql-5.1/bin/mysqladmin', ['libc', 'libz', 'libcrypt', 'libgcc_s', 'libm',
      'libmysqlclient', 'libnsl', 'libpthread', 'libstdc++'], ['ncurses', 'zlib', 'readline'],
                           [os.path.join(os.path.abspath(os.curdir),
      'parts', 'mysql-5.1', 'lib', 'mysql')])
411 412

  def test_ld_mysqldump(self):
413 414 415 416
    self.assertLibraryList('parts/mysql-5.1/bin/mysqldump', ['libc', 'libz', 'libcrypt', 'libm', 'libmysqlclient',
      'libnsl', 'libpthread'], ['ncurses', 'zlib', 'readline'],
                           [os.path.join(os.path.abspath(os.curdir),
      'parts', 'mysql-5.1', 'lib', 'mysql')])
417

Łukasz Nowak's avatar
Łukasz Nowak committed
418 419 420 421
class AssertSqlite3(AssertSoftwareMixin):
  """Tests for built memcached"""

  def test_ld_bin_sqlite3(self):
422
    self.assertLibraryList('parts/sqlite3/bin/sqlite3', ['libpthread', 'libc', 'libdl', 'libsqlite3'], ['sqlite3'])
Łukasz Nowak's avatar
Łukasz Nowak committed
423 424

  def test_ld_libsqlite3(self):
425
    self.assertLibraryList('parts/sqlite3/lib/libsqlite3.so', ['libpthread', 'libc', 'libdl'], [])
Łukasz Nowak's avatar
Łukasz Nowak committed
426

427
class AssertMemcached(AssertSoftwareMixin):
428 429 430
  """Tests for built memcached"""

  def test_ld_memcached(self):
431
    """Checks proper linking to libevent from memcached"""
432
    self.assertLibraryList('parts/memcached/bin/memcached', ['libpthread', 'libevent-1.4', 'libc'], ['libevent'])
433

434 435 436
class AssertSubversion(AssertSoftwareMixin):
  """Tests for built subversion"""
  def test_ld_svn(self):
437
    self.assertLibraryList('parts/subversion/bin/svn', ['libsvn_client-1', 'libsvn_wc-1', 'libsvn_ra-1',
438 439
      'libsvn_diff-1', 'libsvn_ra_local-1', 'libsvn_repos-1', 'libsvn_fs-1',
      'libsvn_fs_fs-1', 'libsvn_fs_util-1', 'libsvn_ra_svn-1',
440
      'libsvn_delta-1', 'libsvn_subr-1', 'libsqlite3', 'libxml2',
441
      'libaprutil-1', 'libapr-1', 'libuuid', 'librt', 'libexpat',
442
      'libz', 'libssl', 'libcrypto', 'libsvn_ra_neon-1',
443
      'libc', 'libcrypt', 'libdl', 'libm',
444
      'libpthread', 'libneon'
445 446
      ], ['apache', 'libexpat', 'openssl', 'neon', 'libxml2',
                     'sqlite3', 'subversion', 'zlib', 'libuuid'])
447 448

  def test_ld_svnadmin(self):
449
    self.assertLibraryList('parts/subversion/bin/svnadmin', ['libsvn_repos-1', 'libsvn_fs-1',
450 451 452
      'libsvn_fs_fs-1', 'libsvn_fs_util-1', 'libsvn_delta-1', 'libsvn_subr-1',
      'libsqlite3', 'libaprutil-1', 'libapr-1', 'libuuid', 'librt',
      'libexpat', 'libz', 'libc', 'libcrypt', 'libdl', 'libpthread',
453 454
      ], ['apache', 'libexpat',
                     'sqlite3', 'subversion', 'zlib', 'libuuid', 'neon'])
Łukasz Nowak's avatar
Łukasz Nowak committed
455 456

  def test_ld_svndumpfilter(self):
457
    self.assertLibraryList('parts/subversion/bin/svndumpfilter', ['libsvn_repos-1', 'libsvn_fs-1',
Łukasz Nowak's avatar
Łukasz Nowak committed
458 459 460
      'libsvn_fs_fs-1', 'libsvn_fs_util-1', 'libsvn_delta-1', 'libsvn_subr-1',
      'libsqlite3', 'libaprutil-1', 'libapr-1', 'libuuid', 'librt',
      'libexpat', 'libz', 'libc', 'libcrypt', 'libdl', 'libpthread',
461 462
      ], ['apache', 'libexpat',
                     'sqlite3', 'subversion', 'zlib', 'libuuid', 'neon'])
Łukasz Nowak's avatar
Łukasz Nowak committed
463 464

  def test_ld_svnlook(self):
465
    self.assertLibraryList('parts/subversion/bin/svnlook', ['libsvn_repos-1', 'libsvn_fs-1', 'libsvn_diff-1',
Łukasz Nowak's avatar
Łukasz Nowak committed
466 467 468
      'libsvn_fs_fs-1', 'libsvn_fs_util-1', 'libsvn_delta-1', 'libsvn_subr-1',
      'libsqlite3', 'libaprutil-1', 'libapr-1', 'libuuid', 'librt',
      'libexpat', 'libz', 'libc', 'libcrypt', 'libdl', 'libpthread',
469 470
      ], ['apache', 'libexpat',
                     'sqlite3', 'subversion', 'zlib', 'libuuid', 'neon'])
Łukasz Nowak's avatar
Łukasz Nowak committed
471 472

  def test_ld_svnserve(self):
473
    self.assertLibraryList('parts/subversion/bin/svnserve', ['libsvn_repos-1', 'libsvn_fs-1', 'libsvn_ra_svn-1',
Łukasz Nowak's avatar
Łukasz Nowak committed
474 475 476
      'libsvn_fs_fs-1', 'libsvn_fs_util-1', 'libsvn_delta-1', 'libsvn_subr-1',
      'libsqlite3', 'libaprutil-1', 'libapr-1', 'libuuid', 'librt',
      'libexpat', 'libz', 'libc', 'libcrypt', 'libdl', 'libpthread',
477 478
      ], ['apache', 'libexpat',
                     'sqlite3', 'subversion', 'zlib', 'libuuid', 'neon'])
Łukasz Nowak's avatar
Łukasz Nowak committed
479 480

  def test_ld_svnsync(self):
481
    self.assertLibraryList('parts/subversion/bin/svnsync', [
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
      'libapr-1',
      'libaprutil-1',
      'libc',
      'libcrypt',
      'libcrypto',
      'libdl',
      'libexpat',
      'libm',
      'libneon',
      'libpthread',
      'librt',
      'libsqlite3',
      'libssl',
      'libsvn_delta-1',
      'libsvn_fs-1',
      'libsvn_fs_fs-1',
      'libsvn_fs_util-1',
      'libsvn_ra-1',
      'libsvn_ra_local-1',
      'libsvn_ra_neon-1',
      'libsvn_ra_svn-1',
      'libsvn_repos-1',
      'libsvn_subr-1',
      'libuuid',
      'libxml2',
      'libz',
508 509 510 511 512 513 514 515 516 517 518
      ], [
      'apache',
      'libexpat',
      'libuuid',
      'libxml2',
      'neon',
      'openssl',
      'sqlite3',
      'subversion',
      'zlib',
      ])
Łukasz Nowak's avatar
Łukasz Nowak committed
519 520

  def test_ld_svnversion(self):
521
    self.assertLibraryList('parts/subversion/bin/svnversion', ['libsvn_diff-1', 'libsvn_wc-1',
Łukasz Nowak's avatar
Łukasz Nowak committed
522 523 524
      'libsvn_delta-1', 'libsvn_subr-1', 'libsqlite3',
      'libaprutil-1', 'libapr-1', 'libuuid', 'librt', 'libexpat',
      'libz', 'libc', 'libcrypt', 'libdl', 'libpthread',
525 526
      ], ['apache', 'libexpat',
                     'sqlite3', 'subversion', 'zlib', 'libuuid', 'neon'])
527 528

  def test_ld_libsvn_client(self):
529
    self.assertLibraryList('parts/subversion/lib/libsvn_client-1.so', ['libsvn_diff-1', 'libsvn_wc-1',
530 531 532
      'libsvn_delta-1', 'libsvn_subr-1', 'libsvn_ra-1',
      'libaprutil-1', 'libapr-1', 'libuuid', 'librt', 'libexpat',
      'libc', 'libcrypt', 'libdl', 'libpthread',
533 534
      ], ['apache', 'libexpat', 'sqlite3', 'subversion', 'zlib',
      'libuuid', 'neon'])
535 536

  def test_ld_libsvn_delta(self):
537
    self.assertLibraryList('parts/subversion/lib/libsvn_delta-1.so', [
538 539 540
      'libsvn_subr-1', 'libz',
      'libaprutil-1', 'libapr-1', 'libuuid', 'librt', 'libexpat',
      'libc', 'libcrypt', 'libdl', 'libpthread',
541 542
      ], ['apache', 'libexpat', 'sqlite3', 'subversion', 'zlib',
      'libuuid', 'neon'])
543 544

  def test_ld_libsvn_diff(self):
545
    self.assertLibraryList('parts/subversion/lib/libsvn_diff-1.so', [
546 547
      'libsvn_subr-1', 'libaprutil-1', 'libapr-1', 'libuuid', 'librt',
      'libexpat', 'libc', 'libcrypt', 'libdl', 'libpthread',
548 549
      ], ['apache', 'libexpat', 'sqlite3', 'subversion', 'zlib',
      'libuuid', 'neon'])
550 551

  def test_ld_libsvn_fs(self):
552
    self.assertLibraryList('parts/subversion/lib/libsvn_fs-1.so', [
553 554 555 556 557 558 559 560 561 562 563
      'libapr-1',
      'libc',
      'libcrypt',
      'libdl',
      'libpthread',
      'librt',
      'libsvn_delta-1',
      'libsvn_fs_fs-1',
      'libsvn_fs_util-1',
      'libsvn_subr-1',
      'libuuid',
564 565 566 567 568 569 570 571
      ], [
      'apache',
      'libuuid',
      'neon',
      'sqlite3',
      'subversion',
      'zlib',
      ])
572 573

  def test_ld_libsvn_fs_fs(self):
574
    self.assertLibraryList('parts/subversion/lib/libsvn_fs_fs-1.so', ['libsvn_delta-1', 'libaprutil-1', 'libexpat',
575 576
      'libsvn_fs_util-1', 'libsvn_subr-1', 'libapr-1', 'libuuid', 'librt',
      'libc', 'libcrypt', 'libdl', 'libpthread',
577 578
      ], ['apache', 'libexpat', 'sqlite3', 'subversion', 'zlib',
      'libuuid', 'neon'])
579 580

  def test_ld_libsvn_fs_util(self):
581
    self.assertLibraryList('parts/subversion/lib/libsvn_fs_util-1.so', ['libaprutil-1', 'libexpat',
582 583
      'libsvn_subr-1', 'libapr-1', 'libuuid', 'librt',
      'libc', 'libcrypt', 'libdl', 'libpthread',
584 585
      ], ['apache', 'libexpat', 'sqlite3', 'subversion', 'zlib',
      'libuuid', 'neon'])
586 587

  def test_ld_libsvn_ra(self):
588
    self.assertLibraryList('parts/subversion/lib/libsvn_ra-1.so', ['libaprutil-1', 'libsvn_delta-1', 'libsvn_fs-1',
589
      'libsvn_ra_local-1', 'libsvn_ra_neon-1', 'libsvn_ra_svn-1',
590 591
      'libsvn_repos-1', 'libexpat', 'libsvn_subr-1', 'libapr-1', 'libuuid',
      'librt', 'libc', 'libcrypt', 'libdl', 'libpthread',
592 593
      ], ['apache', 'libexpat',
                     'sqlite3', 'subversion', 'zlib', 'libuuid', 'neon'])
594 595

  def test_ld_libsvn_ra_local(self):
596
    self.assertLibraryList('parts/subversion/lib/libsvn_ra_local-1.so', ['libaprutil-1', 'libsvn_delta-1', 'libsvn_fs-1',
597 598
      'libsvn_repos-1', 'libexpat', 'libsvn_subr-1', 'libapr-1', 'libuuid',
      'librt', 'libc', 'libcrypt', 'libdl', 'libpthread',
599 600
      ], ['apache', 'libexpat',
                     'sqlite3', 'subversion', 'zlib', 'libuuid', 'neon'])
601

602
  def test_ld_libsvn_ra_neon(self):
603
    self.assertLibraryList('parts/subversion/lib/libsvn_ra_neon-1.so', [
604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619
      'libapr-1',
      'libaprutil-1',
      'libc',
      'libcrypt',
      'libcrypto',
      'libdl',
      'libexpat',
      'libm',
      'libneon',
      'libpthread',
      'librt',
      'libssl',
      'libsvn_delta-1',
      'libsvn_subr-1',
      'libuuid',
      'libxml2',
620
      'libz',
621 622 623 624 625 626 627 628 629 630 631
      ], [
      'apache',
      'libexpat',
      'libuuid',
      'libxml2',
      'neon',
      'openssl',
      'sqlite3',
      'subversion',
      'zlib',
      ])
632 633

  def test_ld_libsvn_ra_svn(self):
634
    self.assertLibraryList('parts/subversion/lib/libsvn_ra_svn-1.so', ['libaprutil-1', 'libsvn_delta-1',
635 636
      'libexpat', 'libsvn_subr-1', 'libapr-1', 'libuuid',
      'librt', 'libc', 'libcrypt', 'libdl', 'libpthread',
637 638
      ], ['apache', 'libexpat',
                     'sqlite3', 'subversion', 'zlib', 'libuuid', 'neon'])
639 640

  def test_ld_libsvn_repos(self):
641
    self.assertLibraryList('parts/subversion/lib/libsvn_repos-1.so', ['libaprutil-1', 'libsvn_delta-1',
642 643
      'libexpat', 'libsvn_subr-1', 'libapr-1', 'libuuid', 'libsvn_fs-1',
      'librt', 'libc', 'libcrypt', 'libdl', 'libpthread',
644 645
      ], ['apache', 'libexpat',
                     'sqlite3', 'subversion', 'zlib', 'libuuid', 'neon'])
646 647

  def test_ld_libsvn_subr(self):
648
    self.assertLibraryList('parts/subversion/lib/libsvn_subr-1.so', ['libaprutil-1', 'libexpat', 'libapr-1',
649 650
      'libuuid', 'librt', 'libc', 'libcrypt', 'libdl', 'libpthread',
      'libsqlite3', 'libz',
651 652
      ], ['apache', 'libexpat',
                     'sqlite3', 'zlib', 'libuuid', 'neon'])
653 654

  def test_ld_libsvn_wc(self):
655
    self.assertLibraryList('parts/subversion/lib/libsvn_wc-1.so', ['libaprutil-1', 'libexpat', 'libapr-1',
656 657
      'libsvn_delta-1', 'libsvn_diff-1', 'libsvn_subr-1',
      'libuuid', 'librt', 'libc', 'libcrypt', 'libdl', 'libpthread',
658 659
      ], ['apache', 'libexpat', 'subversion',
                     'sqlite3', 'zlib', 'libuuid', 'neon'])
660

661 662 663
class AssertNeon(AssertSoftwareMixin):
  """Tests for built neon"""
  def test_ld_libneon(self):
664
    self.assertLibraryList('parts/neon/lib/libneon.so', [
Łukasz Nowak's avatar
Łukasz Nowak committed
665 666 667 668 669 670 671
      'libc',
      'libcrypto',
      'libdl',
      'libm',
      'libssl',
      'libxml2',
      'libz',
672 673 674 675 676
      ], [
      'libxml2',
      'openssl',
      'zlib',
      ])
677

678 679 680 681 682 683 684 685 686 687
  def test_neonconfig(self):
    popen = subprocess.Popen([os.path.join('parts', 'neon', 'bin', 'neon-config'),
      '--libs'],
    stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
    result = popen.communicate()[0]
    self.assertEqual(0, popen.returncode, result)
    result_left = []
    for l in result.split():
      # let's remove acceptable parameters
      if l in (
688 689 690 691 692 693 694 695 696
      '-Wl,-rpath',
      '-lcrypto',
      '-ldl',
      '-lm',
      '-lneon',
      '-lpthread',
      '-lssl',
      '-lxml2',
      '-lz',
697 698 699 700 701 702 703 704 705 706 707 708 709 710
          ):
        continue
      if 'parts/neon/lib' in l:
        continue
      if 'parts/zlib/lib' in l:
        continue
      if 'parts/libxml2/lib' in l:
        continue
      if 'parts/openssl/lib' in l:
        continue
      result_left.append(l)
    # whatever left is wrong
    self.assertEqual([], result_left)

711
class AssertPythonMysql(AssertSoftwareMixin):
712 713 714 715 716 717
  def test_ld_mysqlso(self):
    for d in os.listdir('develop-eggs'):
      if d.startswith('MySQL_python'):
        path = os.path.join('develop-eggs', d, '_mysql.so')
        elf_dict = readElfAsDict(path)
        self.assertEqual(sorted(['libc', 'libcrypt', 'libcrypto', 'libm',
718
      'libmysqlclient_r', 'libnsl', 'libpthread', 'libssl', 'libz']),
719 720 721
          elf_dict['library_list'])
        soft_dir = os.path.join(os.path.abspath(os.curdir), 'parts')
        expected_rpath_list = [os.path.join(soft_dir, software, 'lib') for
722 723
            software in ['zlib', 'openssl']]
        expected_rpath_list.append(os.path.join(os.path.abspath(os.curdir), 'parts', 'mysql-tritonn-5.0', 'lib', 'mysql'))
724
        self.assertEqual(sorted(expected_rpath_list), elf_dict['runpath_list'])
725

726
class AssertApache(AssertSoftwareMixin):
Łukasz Nowak's avatar
Łukasz Nowak committed
727
  """Tests for built apache"""
728

729
  def test_ld_libaprutil1(self):
730
    """Checks proper linking of libaprutil-1.so"""
731 732
    self.assertLibraryList('parts/apache/lib/libaprutil-1.so', ['libexpat', 'libapr-1', 'librt', 'libcrypt',
      'libpthread', 'libdl', 'libc', 'libuuid'], ['apache', 'zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
733

734 735
  def test_ld_libapr1(self):
    """Checks proper linking of libapr-1.so"""
736 737
    self.assertLibraryList('parts/apache/lib/libapr-1.so', ['librt', 'libcrypt', 'libuuid',
      'libpthread', 'libdl', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
738

739
  def test_modules(self):
740
    required_module_list = sorted([q.strip() for q in """
Łukasz Nowak's avatar
Łukasz Nowak committed
741 742 743 744 745
      actions_module
      alias_module
      asis_module
      auth_basic_module
      auth_digest_module
746
      authn_alias_module
Łukasz Nowak's avatar
Łukasz Nowak committed
747
      authn_anon_module
748
      authn_dbd_module
Łukasz Nowak's avatar
Łukasz Nowak committed
749 750 751
      authn_dbm_module
      authn_default_module
      authn_file_module
752
      authz_dbm_module
Łukasz Nowak's avatar
Łukasz Nowak committed
753 754 755 756
      authz_default_module
      authz_groupfile_module
      authz_host_module
      authz_owner_module
757
      authz_svn_module
Łukasz Nowak's avatar
Łukasz Nowak committed
758 759 760 761
      authz_user_module
      autoindex_module
      bucketeer_module
      cache_module
762
      case_filter_in_module
Łukasz Nowak's avatar
Łukasz Nowak committed
763 764 765 766 767
      case_filter_module
      cern_meta_module
      cgi_module
      cgid_module
      charset_lite_module
768 769 770 771 772
      core_module
      dav_fs_module
      dav_module
      dav_svn_module
      dbd_module
Łukasz Nowak's avatar
Łukasz Nowak committed
773 774 775 776 777 778 779 780 781 782
      deflate_module
      dir_module
      disk_cache_module
      dumpio_module
      echo_module
      env_module
      expires_module
      ext_filter_module
      filter_module
      headers_module
783
      http_module
Łukasz Nowak's avatar
Łukasz Nowak committed
784
      ident_module
785 786 787
      imagemap_module
      include_module
      info_module
Łukasz Nowak's avatar
Łukasz Nowak committed
788 789 790
      log_config_module
      log_forensic_module
      logio_module
791 792
      mime_magic_module
      mime_module
793
      mpm_prefork_module
794 795 796 797
      negotiation_module
      optional_fn_export_module
      optional_fn_import_module
      optional_hook_export_module
Łukasz Nowak's avatar
Łukasz Nowak committed
798
      optional_hook_import_module
799
      proxy_ajp_module
Łukasz Nowak's avatar
Łukasz Nowak committed
800 801
      proxy_balancer_module
      proxy_connect_module
802
      proxy_ftp_module
Łukasz Nowak's avatar
Łukasz Nowak committed
803 804
      proxy_http_module
      proxy_module
805 806
      proxy_scgi_module
      reqtimeout_module
Łukasz Nowak's avatar
Łukasz Nowak committed
807 808
      rewrite_module
      setenvif_module
809
      so_module
810
      speling_module
Łukasz Nowak's avatar
Łukasz Nowak committed
811 812 813 814
      ssl_module
      status_module
      substitute_module
      unique_id_module
815
      userdir_module
Łukasz Nowak's avatar
Łukasz Nowak committed
816 817 818
      usertrack_module
      version_module
      vhost_alias_module
819 820 821 822 823 824 825
    """.split() if len(q.strip()) > 0])
    popen = subprocess.Popen(['parts/apache/bin/httpd', '-M'],
        stdout=subprocess.PIPE, stderr=subprocess.PIPE)
    result = popen.communicate()[0]
    loaded_module_list = sorted([module_name for module_name in result.split()
                          if module_name.endswith('module')])
    self.assertEqual(loaded_module_list, required_module_list)
826

827
  def test_ld_module_mod_actions(self):
828
    self.assertLibraryList('parts/apache/modules/mod_actions.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
829

Łukasz Nowak's avatar
Łukasz Nowak committed
830
  def test_ld_module_mod_alias(self):
831
    self.assertLibraryList('parts/apache/modules/mod_alias.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
832 833

  def test_ld_module_mod_asis(self):
834
    self.assertLibraryList('parts/apache/modules/mod_asis.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
835 836

  def test_ld_module_mod_auth_basic(self):
837
    self.assertLibraryList('parts/apache/modules/mod_auth_basic.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
838 839

  def test_ld_module_mod_auth_digest(self):
840
    self.assertLibraryList('parts/apache/modules/mod_auth_digest.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
841 842

  def test_ld_module_mod_authn_alias(self):
843
    self.assertLibraryList('parts/apache/modules/mod_authn_alias.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
844 845

  def test_ld_module_mod_authn_anon(self):
846
    self.assertLibraryList('parts/apache/modules/mod_authn_anon.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
847 848

  def test_ld_module_mod_authn_dbd(self):
849
    self.assertLibraryList('parts/apache/modules/mod_authn_dbd.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
850 851

  def test_ld_module_mod_authn_dbm(self):
852
    self.assertLibraryList('parts/apache/modules/mod_authn_dbm.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
853 854

  def test_ld_module_mod_authn_default(self):
855
    self.assertLibraryList('parts/apache/modules/mod_authn_default.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
856 857

  def test_ld_module_mod_authn_file(self):
858
    self.assertLibraryList('parts/apache/modules/mod_authn_file.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
859 860

  def test_ld_module_mod_authz_dbm(self):
861
    self.assertLibraryList('parts/apache/modules/mod_authz_dbm.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
862 863

  def test_ld_module_mod_authz_default(self):
864
    self.assertLibraryList('parts/apache/modules/mod_authz_default.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
865 866

  def test_ld_module_mod_authz_groupfile(self):
867
    self.assertLibraryList('parts/apache/modules/mod_authz_groupfile.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
868 869

  def test_ld_module_mod_authz_host(self):
870
    self.assertLibraryList('parts/apache/modules/mod_authz_host.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
871 872

  def test_ld_module_mod_authz_owner(self):
873
    self.assertLibraryList('parts/apache/modules/mod_authz_owner.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
874 875

  def test_ld_module_mod_authz_user(self):
876
    self.assertLibraryList('parts/apache/modules/mod_authz_user.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
877 878

  def test_ld_module_mod_autoindex(self):
879
    self.assertLibraryList('parts/apache/modules/mod_autoindex.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
880 881

  def test_ld_module_mod_bucketeer(self):
882
    self.assertLibraryList('parts/apache/modules/mod_bucketeer.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
883 884

  def test_ld_module_mod_cache(self):
885
    self.assertLibraryList('parts/apache/modules/mod_cache.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
886 887

  def test_ld_module_mod_case_filter(self):
888
    self.assertLibraryList('parts/apache/modules/mod_case_filter.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
889 890

  def test_ld_module_mod_case_filter_in(self):
891
    self.assertLibraryList('parts/apache/modules/mod_case_filter_in.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
892 893

  def test_ld_module_mod_cern_meta(self):
894
    self.assertLibraryList('parts/apache/modules/mod_cern_meta.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
895 896

  def test_ld_module_mod_cgi(self):
897
    self.assertLibraryList('parts/apache/modules/mod_cgi.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
898 899

  def test_ld_module_mod_cgid(self):
900
    self.assertLibraryList('parts/apache/modules/mod_cgid.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
901 902

  def test_ld_module_mod_charset_lite(self):
903
    self.assertLibraryList('parts/apache/modules/mod_charset_lite.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
904 905

  def test_ld_module_mod_dav(self):
906
    self.assertLibraryList('parts/apache/modules/mod_dav.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
907 908

  def test_ld_module_mod_dav_fs(self):
909
    self.assertLibraryList('parts/apache/modules/mod_dav_fs.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
Łukasz Nowak's avatar
Łukasz Nowak committed
910

911
  def test_ld_module_mod_dbd(self):
912
    self.assertLibraryList('parts/apache/modules/mod_dbd.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
913 914

  def test_ld_module_mod_deflate(self):
915
    self.assertLibraryList('parts/apache/modules/mod_deflate.so', ['libpthread', 'libc', 'libz'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
916 917

  def test_ld_module_mod_dir(self):
918
    self.assertLibraryList('parts/apache/modules/mod_dir.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
919 920

  def test_ld_module_mod_disk_cache(self):
921
    self.assertLibraryList('parts/apache/modules/mod_disk_cache.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
922 923

  def test_ld_module_mod_dumpio(self):
924
    self.assertLibraryList('parts/apache/modules/mod_dumpio.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
925 926

  def test_ld_module_mod_echo(self):
927
    self.assertLibraryList('parts/apache/modules/mod_echo.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
928 929

  def test_ld_module_mod_env(self):
930
    self.assertLibraryList('parts/apache/modules/mod_env.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
931 932

  def test_ld_module_mod_expires(self):
933
    self.assertLibraryList('parts/apache/modules/mod_expires.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
934 935

  def test_ld_module_mod_ext_filter(self):
936
    self.assertLibraryList('parts/apache/modules/mod_ext_filter.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
937 938

  def test_ld_module_mod_filter(self):
939
    self.assertLibraryList('parts/apache/modules/mod_filter.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
940 941

  def test_ld_module_mod_headers(self):
942
    self.assertLibraryList('parts/apache/modules/mod_headers.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
943 944

  def test_ld_module_mod_ident(self):
945
    self.assertLibraryList('parts/apache/modules/mod_ident.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
946 947

  def test_ld_module_mod_imagemap(self):
948
    self.assertLibraryList('parts/apache/modules/mod_imagemap.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
949 950

  def test_ld_module_mod_include(self):
951
    self.assertLibraryList('parts/apache/modules/mod_include.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
952 953

  def test_ld_module_mod_info(self):
954
    self.assertLibraryList('parts/apache/modules/mod_info.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
955 956

  def test_ld_module_mod_log_config(self):
957
    self.assertLibraryList('parts/apache/modules/mod_log_config.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
958 959

  def test_ld_module_mod_log_forensic(self):
960
    self.assertLibraryList('parts/apache/modules/mod_log_forensic.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
961 962

  def test_ld_module_mod_logio(self):
963
    self.assertLibraryList('parts/apache/modules/mod_logio.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
964 965

  def test_ld_module_mod_mime(self):
966
    self.assertLibraryList('parts/apache/modules/mod_mime.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
967 968

  def test_ld_module_mod_mime_magic(self):
969
    self.assertLibraryList('parts/apache/modules/mod_mime_magic.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
970 971

  def test_ld_module_mod_negotiation(self):
972
    self.assertLibraryList('parts/apache/modules/mod_negotiation.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
973 974

  def test_ld_module_mod_optional_fn_export(self):
975
    self.assertLibraryList('parts/apache/modules/mod_optional_fn_export.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
976 977

  def test_ld_module_mod_optional_fn_import(self):
978
    self.assertLibraryList('parts/apache/modules/mod_optional_fn_import.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
979 980

  def test_ld_module_mod_optional_hook_export(self):
981
    self.assertLibraryList('parts/apache/modules/mod_optional_hook_export.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
982 983

  def test_ld_module_mod_optional_hook_import(self):
984
    self.assertLibraryList('parts/apache/modules/mod_optional_hook_import.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
985 986

  def test_ld_module_mod_proxy(self):
987
    self.assertLibraryList('parts/apache/modules/mod_proxy.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
988 989

  def test_ld_module_mod_proxy_ajp(self):
990
    self.assertLibraryList('parts/apache/modules/mod_proxy_ajp.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
991 992

  def test_ld_module_mod_proxy_balancer(self):
993
    self.assertLibraryList('parts/apache/modules/mod_proxy_balancer.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
994 995

  def test_ld_module_mod_proxy_connect(self):
996
    self.assertLibraryList('parts/apache/modules/mod_proxy_connect.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
997 998

  def test_ld_module_mod_proxy_ftp(self):
999
    self.assertLibraryList('parts/apache/modules/mod_proxy_ftp.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1000 1001

  def test_ld_module_mod_proxy_http(self):
1002
    self.assertLibraryList('parts/apache/modules/mod_proxy_http.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1003 1004

  def test_ld_module_mod_proxy_scgi(self):
1005
    self.assertLibraryList('parts/apache/modules/mod_proxy_scgi.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1006 1007

  def test_ld_module_mod_reqtimeout(self):
1008
    self.assertLibraryList('parts/apache/modules/mod_reqtimeout.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1009 1010

  def test_ld_module_mod_rewrite(self):
1011
    self.assertLibraryList('parts/apache/modules/mod_rewrite.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1012 1013

  def test_ld_module_mod_setenvif(self):
1014
    self.assertLibraryList('parts/apache/modules/mod_setenvif.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1015 1016

  def test_ld_module_mod_speling(self):
1017
    self.assertLibraryList('parts/apache/modules/mod_speling.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1018 1019

  def test_ld_module_mod_ssl(self):
1020 1021
    self.assertLibraryList('parts/apache/modules/mod_ssl.so', ['libpthread', 'libc', 'libcrypto', 'libdl',
      'libssl', 'libz'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1022 1023

  def test_ld_module_mod_status(self):
1024
    self.assertLibraryList('parts/apache/modules/mod_status.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1025 1026

  def test_ld_module_mod_substitute(self):
1027
    self.assertLibraryList('parts/apache/modules/mod_substitute.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1028 1029

  def test_ld_module_mod_unique_id(self):
1030
    self.assertLibraryList('parts/apache/modules/mod_unique_id.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1031 1032

  def test_ld_module_mod_userdir(self):
1033
    self.assertLibraryList('parts/apache/modules/mod_userdir.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1034 1035

  def test_ld_module_mod_usertrack(self):
1036
    self.assertLibraryList('parts/apache/modules/mod_usertrack.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1037 1038

  def test_ld_module_mod_version(self):
1039
    self.assertLibraryList('parts/apache/modules/mod_version.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1040 1041

  def test_ld_module_mod_vhost_alias(self):
1042
    self.assertLibraryList('parts/apache/modules/mod_vhost_alias.so', ['libpthread', 'libc'], ['zlib', 'openssl', 'libuuid', 'libexpat', 'pcre'])
1043

1044
class AssertItools(AssertSoftwareMixin):
1045
  def test_ld_parserso(self):
1046
    self.assertLibraryList('parts/itools/lib/itools/xml/parser.so', ['libc', 'libglib-2.0', 'libpthread'], ['glib'])
1047

1048
class AssertOpenssl(AssertSoftwareMixin):
Łukasz Nowak's avatar
Łukasz Nowak committed
1049
  def test_ld_openssl(self):
1050
    self.assertLibraryList('parts/openssl/bin/openssl', ['libc', 'libcrypto', 'libdl', 'libssl'], ['openssl'])
1051

1052
class AssertCyrusSasl(AssertSoftwareMixin):
1053
  def test_ld_pluginviewer(self):
1054
    self.assertLibraryList('parts/cyrus-sasl/sbin/pluginviewer', [
1055 1056 1057
      'libc',
      'libdl',
      'libresolv',
1058
      'libsasl2',
1059 1060 1061 1062
      ], [
      'cyrus-sasl',
      'zlib',
      ])
1063

1064
  def test_ld_libsasl2(self):
1065
    self.assertLibraryList('parts/cyrus-sasl/lib/libsasl2.so', [
1066
      'libc',
1067
      'libdl',
1068
      'libresolv',
1069 1070
      ], [
      ])
1071

1072
  def test_ld_sasl2_libanonymous(self):
1073
    self.assertLibraryList('parts/cyrus-sasl/lib/sasl2/libanonymous.so', [
1074 1075
      'libc',
      'libresolv',
1076 1077
      ], [
      ])
1078

1079
  def test_ld_sasl2_libcrammd5(self):
1080
    self.assertLibraryList('parts/cyrus-sasl/lib/sasl2/libcrammd5.so', [
1081 1082
      'libc',
      'libresolv',
1083 1084
      ], [
      ])
1085 1086

  def test_ld_sasl2_libplain(self):
1087
    self.assertLibraryList('parts/cyrus-sasl/lib/sasl2/libplain.so', [
1088 1089 1090
      'libc',
      'libcrypt',
      'libresolv',
1091 1092
      ], [
      ])
1093

1094 1095
class AssertPython26(AssertSoftwareMixin):
  def test_ld_dyn_locale(self):
1096
    self.assertLibraryList('parts/python2.6/lib/python2.6/lib-dynload/_locale.so', [
1097 1098 1099
      'libc',
      'libintl',
      'libpthread',
1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110
      ], [
      'bzip2',
      'gdbm',
      'gettext',
      'libdb',
      'ncurses',
      'openssl',
      'readline',
      'sqlite3',
      'zlib',
      ])
1111

Łukasz Nowak's avatar
Łukasz Nowak committed
1112 1113
class AssertGettext(AssertSoftwareMixin):
  def test_ld_libintl(self):
1114
    self.assertLibraryList('parts/gettext/lib/libintl.so', [
Łukasz Nowak's avatar
Łukasz Nowak committed
1115
      'libc',
1116 1117 1118 1119 1120
      ], [
      'libxml2',
      'ncurses',
      'zlib',
      ])
Łukasz Nowak's avatar
Łukasz Nowak committed
1121 1122

  def test_ld_libasprintf(self):
1123
    self.assertLibraryList('parts/gettext/lib/libasprintf.so', [
Łukasz Nowak's avatar
Łukasz Nowak committed
1124 1125 1126 1127
      'libc',
      'libgcc_s',
      'libm',
      'libstdc++',
1128 1129 1130 1131 1132
      ], [
      'libxml2',
      'ncurses',
      'zlib',
      ])
Łukasz Nowak's avatar
Łukasz Nowak committed
1133 1134

  def test_ld_libgettextlib(self):
1135
    self.assertLibraryList('parts/gettext/lib/libgettextlib.so', [
Łukasz Nowak's avatar
Łukasz Nowak committed
1136 1137 1138 1139 1140 1141 1142
      'libc',
      'libdl',
      'libintl',
      'libm',
      'libncurses',
      'libxml2',
      'libz',
1143 1144 1145 1146 1147 1148
      ], [
      'gettext',
      'libxml2',
      'ncurses',
      'zlib',
      ])
Łukasz Nowak's avatar
Łukasz Nowak committed
1149 1150

  def test_ld_libgettextpo(self):
1151
    self.assertLibraryList('parts/gettext/lib/libgettextpo.so', [
Łukasz Nowak's avatar
Łukasz Nowak committed
1152 1153
      'libc',
      'libintl',
1154 1155 1156 1157 1158 1159
      ], [
      'gettext',
      'libxml2',
      'ncurses',
      'zlib',
      ])
Łukasz Nowak's avatar
Łukasz Nowak committed
1160 1161

  def test_ld_libgettextsrc(self):
1162
    self.assertLibraryList('parts/gettext/lib/libgettextsrc.so', [
Łukasz Nowak's avatar
Łukasz Nowak committed
1163 1164 1165 1166 1167 1168 1169 1170
      'libc',
      'libdl',
      'libgettextlib-0.18.1',
      'libintl',
      'libm',
      'libncurses',
      'libxml2',
      'libz',
1171 1172 1173 1174 1175 1176
      ], [
      'gettext',
      'libxml2',
      'ncurses',
      'zlib',
      ])
Łukasz Nowak's avatar
Łukasz Nowak committed
1177

Łukasz Nowak's avatar
Łukasz Nowak committed
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335
  def _test_ld_gettext_bin(self, bin):
    self.assertLibraryList(bin, [
      'libc',
      'libdl',
      'libgettextlib-0.18.1',
      'libgettextsrc-0.18.1',
      'libintl',
      'libm',
      'libncurses',
      'libxml2',
      'libz',
      ], [
      'gettext',
      'libxml2',
      'ncurses',
      'zlib',
      ])

  def test_ld_envsubst(self):
    self.assertLibraryList('parts/gettext/bin/envsubst', [
      'libc',
      'libintl',
      ], [
      'gettext',
      'libxml2',
      'ncurses',
      'zlib',
      ])

  def test_ld_gettext(self):
    self.assertLibraryList('parts/gettext/bin/gettext', [
      'libc',
      'libintl',
      ], [
      'gettext',
      'libxml2',
      'ncurses',
      'zlib',
      ])

  def test_ld_msgattrib(self):
    self._test_ld_gettext_bin('parts/gettext/bin/msgattrib')

  def test_ld_msgcat(self):
    self._test_ld_gettext_bin('parts/gettext/bin/msgcat')

  def test_ld_msgcmp(self):
    self._test_ld_gettext_bin('parts/gettext/bin/msgcmp')

  def test_ld_msgcomm(self):
    self._test_ld_gettext_bin('parts/gettext/bin/msgcomm')

  def test_ld_msgconv(self):
    self._test_ld_gettext_bin('parts/gettext/bin/msgconv')

  def test_ld_msgen(self):
    self._test_ld_gettext_bin('parts/gettext/bin/msgen')

  def test_ld_msgexec(self):
    self._test_ld_gettext_bin('parts/gettext/bin/msgexec')

  def test_ld_msgfilter(self):
    self._test_ld_gettext_bin('parts/gettext/bin/msgfilter')

  def test_ld_msgfmt(self):
    self._test_ld_gettext_bin('parts/gettext/bin/msgfmt')

  def test_ld_msggrep(self):
    self.assertLibraryList('parts/gettext/bin/msggrep', [
      'libc',
      'libdl',
      'libgettextlib-0.18.1',
      'libgettextsrc-0.18.1',
      'libintl',
      'libm',
      'libncurses',
      'libxml2',
      'libz',
      ], [
      'gettext',
      'libxml2',
      'ncurses',
      'zlib',
      ])

  def test_ld_msginit(self):
    self.assertLibraryList('parts/gettext/bin/msginit', [
      'libc',
      'libdl',
      'libgettextlib-0.18.1',
      'libgettextsrc-0.18.1',
      'libintl',
      'libm',
      'libncurses',
      'libxml2',
      'libz',
      ], [
      'gettext',
      'libxml2',
      'ncurses',
      'zlib',
      ])

  def test_ld_msgmerge(self):
    self.assertLibraryList('parts/gettext/bin/msgmerge', [
      'libc',
      'libdl',
      'libgettextlib-0.18.1',
      'libgettextsrc-0.18.1',
      'libintl',
      'libm',
      'libncurses',
      'libxml2',
      'libz',
      ], [
      'gettext',
      'libxml2',
      'ncurses',
      'zlib',
      ])

  def test_ld_msgunfmt(self):
    self._test_ld_gettext_bin('parts/gettext/bin/msgunfmt')

  def test_ld_msguniq(self):
    self._test_ld_gettext_bin('parts/gettext/bin/msguniq')

  def test_ld_ngettext(self):
    self.assertLibraryList('parts/gettext/bin/ngettext', [
      'libc',
      'libintl',
      ], [
      'gettext',
      'libxml2',
      'ncurses',
      'zlib',
      ])

  def test_ld_recode_sr_latin(self):
    self.assertLibraryList('parts/gettext/bin/recode-sr-latin', [
      'libc',
      'libdl',
      'libgettextlib-0.18.1',
      'libintl',
      'libm',
      'libncurses',
      'libxml2',
      'libz',
      ], [
      'gettext',
      'libxml2',
      'ncurses',
      'zlib',
      ])

  def test_ld_xgettext(self):
    self._test_ld_gettext_bin('parts/gettext/bin/xgettext')

1336
class AssertLibxslt(AssertSoftwareMixin):
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
1337
  def test_ld_xsltproc(self):
1338
    self.assertLibraryList('parts/libxslt/bin/xsltproc', [
1339 1340 1341 1342 1343 1344 1345
      'libc',
      'libdl',
      'libexslt',
      'libm',
      'libxml2',
      'libxslt',
      'libz',
1346 1347 1348 1349 1350
      ], [
      'libxml2',
      'libxslt',
      'zlib',
      ])
1351 1352

class AssertW3m(AssertSoftwareMixin):
Kazuhiko Shiozaki's avatar
Kazuhiko Shiozaki committed
1353
  def test_ld_w3m(self):
1354
    self.assertLibraryList('parts/w3m/bin/w3m', [
1355 1356 1357 1358 1359 1360 1361 1362 1363
      'libc',
      'libdl',
      'libcrypto',
      'libgc',
      'libm',
      'libncurses',
      'libnsl',
      'libpthread',
      'libssl',
1364 1365 1366 1367 1368 1369
      ], [
      'garbage-collector',
      'ncurses',
      'openssl',
      'zlib',
      ])
1370

1371 1372
class AssertVarnish(AssertSoftwareMixin):
  def test_ld_varnishd(self):
1373
    self.assertLibraryList('parts/varnish-2.1/sbin/varnishd', [
1374 1375 1376 1377 1378 1379 1380 1381
      'libc',
      'libdl',
      'libm',
      'libnsl',
      'libpthread',
      'libvarnish',
      'libvarnishcompat',
      'libvcl',
1382 1383 1384 1385
      ], [
      'ncurses',
      'varnish-2.1',
      ])
1386 1387

  def test_ld_varnishtop(self):
1388
    self.assertLibraryList('parts/varnish-2.1/bin/varnishtop', [
1389 1390 1391 1392 1393 1394
      'libc',
      'libncurses',
      'libpthread',
      'libvarnish',
      'libvarnishapi',
      'libvarnishcompat',
1395 1396 1397 1398
      ], [
      'ncurses',
      'varnish-2.1',
      ])
1399

1400 1401
class AssertElfLinkedInternally(AssertSoftwareMixin):
  def test(self):
Łukasz Nowak's avatar
Łukasz Nowak committed
1402
    return
1403 1404 1405 1406
    result_dict = {}
    root = os.path.join(os.path.abspath(os.curdir), 'parts')
    for dirpath, dirlist, filelist in os.walk(root):
      for filename in filelist:
1407 1408 1409
        # skip some not needed places
        if any([q in dirpath for q in SKIP_PART_LIST]):
          continue
1410 1411 1412 1413 1414 1415 1416 1417 1418
        filename = os.path.join(dirpath, filename)
        link_list = readLddInfoList(filename)
        bad_link_list = [q for q in link_list if not q.startswith(root) \
                          and not any([q.startswith(k) for k in ACCEPTABLE_GLOBAL_LIB_LIST])]
        if len(bad_link_list):
          result_dict[filename] = bad_link_list
    self.assertSoftwareDictEmpty(result_dict)


1419 1420
if __name__ == '__main__':
  unittest.main()