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
|
#!/usr/bin/python2.4
# Copyright 2007 Google Inc.
#
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
# USA.
#
"""Tests for distcc_pump_c_extensions.
Writes out doc strings and calls some distcc rpc functions. Also, the program
times the speed-up of using the libc versions of os.path.realpath and
os.path.exists provided by distcc_pump_c_extensions.
"""
__author__ = 'opensource@google.com'
import os.path
import random
import sys
import time
import distcc_pump_c_extensions
def RunTest(random_filename):
def _MakeTempFile(mode):
return open(random_filename, mode)
# Exercise metainformation and documentation strings
assert distcc_pump_c_extensions.__file__
assert distcc_pump_c_extensions.__doc__
assert distcc_pump_c_extensions.__author__
assert distcc_pump_c_extensions.RTokenString.__doc__
assert distcc_pump_c_extensions.RArgv.__doc__
assert distcc_pump_c_extensions.XArgv.__doc__
assert distcc_pump_c_extensions.OsPathExists.__doc__
assert distcc_pump_c_extensions.OsPathIsFile.__doc__
assert distcc_pump_c_extensions.Realpath.__doc__
# RTokenString and RArgv
# Pack something and try sending it
fd = _MakeTempFile('wb')
fd.write('ARGC 2')
fd.write('ARGV 6')
fd.write('tomato')
fd.write('ARGV 7')
fd.write('potatos')
fd.close()
# Now try to read it back with wrong expectations.
fd = _MakeTempFile('rb')
try:
two_string = distcc_pump_c_extensions.RTokenString(fd.fileno(), 'XXXX')
sys.exit('internal error 1 - we should not get to here')
except distcc_pump_c_extensions.Error:
pass
# Read it back with appropriate expectations.
fd.seek(0)
two_string = distcc_pump_c_extensions.RTokenString(fd.fileno(), 'ARGC')
if two_string != 'AR':
raise distcc_pump_c_extensions.error('internal error 2')
fd.seek(0)
args = distcc_pump_c_extensions.RArgv(fd.fileno())
if args != ['tomato', 'potatos']:
raise distcc_pump_c_extensions.error('internal error 3')
fd.close()
# XArgv and RArgv
fd = _MakeTempFile('wb')
darth_vader_barney = ['Darth Vader', 'Barney']
args = distcc_pump_c_extensions.XArgv(fd.fileno(), darth_vader_barney)
fd.close()
fd = _MakeTempFile('r')
args = distcc_pump_c_extensions.RArgv(fd.fileno())
if args != darth_vader_barney:
raise distcc_pump_c_extensions.error('internal error 4')
fd.close()
# Libc functions --- also print out how fast they are compared to
# Python built-ins.
t = time.time()
f = '/'
for unused_i in range(10000):
distcc_pump_c_extensions.OsPathExists(f)
print 'Stat', time.time() - t
t = time.time()
for unused_i in range(10000):
os.path.exists(f)
print 'os.path.exists', time.time() - t
for unused_i in range(10000):
distcc_pump_c_extensions.Realpath(f)
print 'c_realpath', time.time() - t
t = time.time()
for unused_i in range(10000):
os.path.realpath(f)
print 'os.path.realpath', time.time() - t
print 'c_extenstions_test passed'
def main():
# Module tempfile doesn't work with distcc. Work-around follows.
random_testdir = ('/tmp/distcc-pump-c-extensions-test-%s.%s'
% (os.getuid(), random.random() * time.time()))
try:
if os.path.exists(random_testdir):
os.removedirs(random_testdir)
os.mkdir(random_testdir, 0700)
except (IOError, OSError), why:
sys.exit('Unable to create test dir %s: %s.' % (random_testdir, why))
random_filename = os.path.join(random_testdir, 'test')
assert not os.path.exists(random_filename), random_filename
try:
RunTest(random_filename)
finally:
if os.path.exists(random_filename):
os.unlink(random_filename)
if os.path.exists(random_testdir):
os.removedirs(random_testdir)
main()
|