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 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 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 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 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
|
#! /usr/bin/env python2.2
# Copyright (C) 2002, 2003, 2004 by Martin Pool <mbp@samba.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
"""distcc test suite, using comfychair
This script is called with $PATH pointing to the appropriate location
for the built (or installed) programs to be tested.
"""
# There are pretty strong hierarchies of test cases: ones to do with
# running a daemon, compiling a file and so on. This nicely maps onto
# a hierarchy of object classes.
# It seems to work best if an instance of the class corresponds to an
# invocation of a test: this means each method runs just once and so
# object state is not very useful, but nevermind.
# Having a complicated pattens of up and down-calls within the class
# methods seems to make things more complicated. It may be better if
# abstract superclasses just provide methods that can be called,
# rather than establishing default behaviour.
# TODO: Run the server in a different directory from the clients
# TODO: Some kind of direct test of the host selection algorithm.
# TODO: Test host files containing \r.
# TODO: Optionally run all discc tests under Valgrind, ElectricFence
# or something similar.
# TODO: Test that ccache correctly caches compilations through distcc:
# make up a random file so it won't hit, then compile once and compile
# twice and examine the log file to make sure we got a hit. Also
# check that the binary works properly.
# TODO: Test cpp from stdin
# TODO: Do all this with malloc debugging on.
# TODO: Redirect daemon output to a file so that we can more easily
# check it. Is there a straightforward way to test that it's also OK
# when send through syslogd?
# TODO: Check behaviour when children are killed off.
# TODO: Test compiling over IPv6
# TODO: Argument scanning tests should be run with various hostspecs,
# because that makes a big difference to how the client handles them.
# TODO: Test that ccache gets hits when calling distcc. Presumably
# this is skipped if we can't find ccache. Need to parse `ccache -s`.
# TODO: Set TMPDIR to be inside the working directory, and perhaps
# also set DISTCC_SAVE_TEMPS. Might help for debugging.
# Check that without DISTCC_SAVE_TEMPS temporary files are cleaned up.
# TODO: Test compiling a really large source file that produces a
# large object file. Perhaps need to generate it at run time -- just
# one big array?
# TODO: Perhaps redirect stdout, stderr to a temporary file while
# running? Use os.open(), os.dup2().
# TODO: Test "distcc gcc -c foo.c bar.c". gcc would actually compile
# both of them. We could split it into multiple compiler invocations,
# but this is so rare that it's probably not worth the complexity. So
# at the moment is just handled locally.
# TODO: Test crazy option arguments like "distcc -o -output -c foo.c"
# TODO: Test attempt to compile a nonexistent file.
# TODO: Add test harnesses that just exercise the bulk file transfer
# routines.
# TODO: Test -MD, -MMD, -M, etc.
# TODO: Test using '.include' in an assembly file, and make sure that
# it is resolved on the client, not on the server.
# TODO: Run "sleep" as a compiler, then kill the client and make sure
# that the server and "sleep" promptly terminate.
# TODO: Set umask 0, then check that the files are created with mode
# 0644.
# TODO: Perhaps have a little compiler that crashes. Check that the
# signal gets properly reported back.
# TODO: Have a little compiler that takes a very long time to run.
# Try interrupting the connection and see if the compiler is cleaned
# up in a reasonable time.
# TODO: Try to build a nonexistent source file. Check that we only
# get one error message -- if there were two, we would incorrectly
# have tried to build the program both remotely and locally.
# TODO: Test compiling a 0-byte source file. This should be allowed.
# TODO: Test a compiler that produces 0 byte output. I don't know an
# easy way to get that out of gcc aside from the Apple port though.
# TODO: Test a compiler that sleeps for a long time; try killing the
# server and make sure it goes away.
# TODO: Set LANG=C before running all tests, to try to make sure that
# localizations don't break attempts to parse error messages. Is
# setting LANG enough, or do we also need LC_*? (Thanks to Oscar
# Esteban.)
# TODO: Test scheduler. Perhaps run really slow jobs to make things
# deterministic, and test that they're dispatched in a reasonable way.
# TODO: Test generating dependencies with -MD. Possibly can't be
# done.
# TODO: Test a nasty cpp that always writes to stdout regardless of
# -o.
# TODO: Test giving up privilege using --user. Difficult -- we may
# need root privileges to run meaningful tests.
# TODO: Test that recursion safeguard works.
# TODO: Test masquerade mode. Requires us to create symlinks in a
# special directory on the path.
# TODO: Test SSH mode. May need to skip if we can't ssh to this
# machine. Perhaps provide a little null-ssh.
# TODO: Test path stripping.
# TODO: Test backoff from downed hosts.
# TODO: Check again in --no-prefork mode.
# TODO: Test lzo is parsed properly
# TODO: Test with DISTCC_DIR set, and not set.
import time, sys, string, os, types, re, popen2, pprint
import signal, os.path, string
import comfychair
from stat import * # this is safe
EXIT_DISTCC_FAILED = 100
EXIT_BAD_ARGUMENTS = 101
EXIT_BIND_FAILED = 102
EXIT_CONNECT_FAILED = 103
EXIT_COMPILER_CRASHED = 104
EXIT_OUT_OF_MEMORY = 105
EXIT_BAD_HOSTSPEC = 106
EXIT_COMPILER_MISSING = 110
EXIT_ACCESS_DENIED = 113
_gcc = None # full path to gcc
class SimpleDistCC_Case(comfychair.TestCase):
'''Abstract base class for distcc tests'''
def setup(self):
self.stripEnvironment()
def stripEnvironment(self):
"""Remove all DISTCC variables from the environment, so that
the test is not affected by the development environment."""
for key in os.environ.keys():
if key[:7] == 'DISTCC_':
# NOTE: This only works properly on Python 2.2: on
# earlier versions, it does not call unsetenv() and so
# subprocesses may get confused.
del os.environ[key]
os.environ['TMPDIR'] = self.tmpdir
ddir = os.path.join(self.tmpdir, 'distccdir')
os.mkdir(ddir)
os.environ['DISTCC_DIR'] = ddir
class WithDaemon_Case(SimpleDistCC_Case):
"""Start the daemon, and then run a command locally against it.
The daemon doesn't detach until it has bound the network interface, so
as soon as that happens we can go ahead and start the client."""
def setup(self):
import random
SimpleDistCC_Case.setup(self)
self.daemon_pidfile = os.path.join(os.getcwd(), "daemonpid.tmp")
self.daemon_logfile = os.path.join(os.getcwd(), "distccd.log")
self.server_port = 42000 # random.randint(42000, 43000)
self.startDaemon()
self.setupEnv()
def setupEnv(self):
os.environ['DISTCC_HOSTS'] = '127.0.0.1:%d' % self.server_port
os.environ['DISTCC_LOG'] = os.path.join(os.getcwd(), 'distcc.log')
os.environ['DISTCC_VERBOSE'] = '1'
def teardown(self):
SimpleDistCC_Case.teardown(self)
def killDaemon(self):
import signal, time
try:
pid = int(open(self.daemon_pidfile, 'rt').read())
except IOError:
# the daemon probably already exited, perhaps because of a timeout
return
os.kill(pid, signal.SIGTERM)
# We can't wait on it, because it detached. So just keep
# pinging until it goes away.
while 1:
try:
os.kill(pid, 0)
except OSError:
break
time.sleep(0.2)
def daemon_command(self):
"""Return command to start the daemon"""
return ("distccd --verbose --lifetime=%d --daemon --log-file %s "
"--pid-file %s --port %d --allow 127.0.0.1"
% (self.daemon_lifetime(),
self.daemon_logfile, self.daemon_pidfile, self.server_port))
def daemon_lifetime(self):
# Enough for most tests, even on a fairly loaded machine.
# Might need more for long-running tests.
return 60
def startDaemon(self):
"""Start a daemon in the background, return its pid"""
# The daemon detaches once it has successfully bound the
# socket, so if something goes wrong at startup we ought to
# find out straight away. If it starts successfully, then we
# can go ahead and try to connect.
while 1:
cmd = self.daemon_command()
result, out, err = self.runcmd_unchecked(cmd)
if result == 0:
break
elif result == EXIT_BIND_FAILED:
self.server_port += 1
continue
else:
self.fail("failed to start daemon: %d" % result)
self.add_cleanup(self.killDaemon)
class StartStopDaemon_Case(WithDaemon_Case):
def runtest(self):
pass
class VersionOption_Case(SimpleDistCC_Case):
"""Test that --version returns some kind of version string.
This is also a good test that the programs were built properly and are
executable."""
def runtest(self):
import string
for prog in 'distcc', 'distccd':
out, err = self.runcmd("%s --version" % prog)
assert out[-1] == '\n'
out = out[:-1]
line1,trash = string.split(out, '\n', 1)
self.assert_re_match(r'^%s [\w.-]+ [.\w-]+ \(protocol.*\) \(default port 3632\)$'
% prog, line1)
class HelpOption_Case(SimpleDistCC_Case):
"""Test --help is reasonable."""
def runtest(self):
for prog in 'distcc', 'distccd':
out, err = self.runcmd(prog + " --help")
self.assert_re_search("Usage:", out)
class BogusOption_Case(SimpleDistCC_Case):
"""Test handling of --bogus-option.
Now that we support implicit compilers, this is passed to gcc, which returns 1."""
def runtest(self):
self.runcmd("distcc " + _gcc + " --bogus-option", 1)
self.runcmd("distccd " + _gcc + " --bogus-option", EXIT_BAD_ARGUMENTS)
class GccOptionsPassed_Case(SimpleDistCC_Case):
"""Test that options following the compiler name are passed to the compiler."""
def runtest(self):
out, err = self.runcmd("DISTCC_HOSTS=localhost distcc " + \
_gcc + " --help")
if re.search('distcc', out):
raise ("gcc help contains \"distcc\": \"%s\"" % out)
self.assert_re_match(r"^Usage: gcc", out)
class StripArgs_Case(SimpleDistCC_Case):
"""Test -D and -I arguments are removed"""
def runtest(self):
cases = (("gcc -c hello.c", "gcc -c hello.c"),
("cc -Dhello hello.c -c", "cc hello.c -c"),
("gcc -g -O2 -W -Wall -Wshadow -Wpointer-arith -Wcast-align -c -o h_strip.o h_strip.c",
"gcc -g -O2 -W -Wall -Wshadow -Wpointer-arith -Wcast-align -c -o h_strip.o h_strip.c"),
# invalid but should work
("cc -c hello.c -D", "cc -c hello.c"),
("cc -c hello.c -D -D", "cc -c hello.c"),
("cc -c hello.c -I ../include", "cc -c hello.c"),
("cc -c -I ../include hello.c", "cc -c hello.c"),
("cc -c -I. -I.. -I../include -I/home/mbp/garnome/include -c -o foo.o foo.c",
"cc -c -c -o foo.o foo.c"),
("cc -c -DDEBUG -DFOO=23 -D BAR -c -o foo.o foo.c",
"cc -c -c -o foo.o foo.c"),
# New options stripped in 0.11
("cc -o nsinstall.o -c -DOSTYPE=\"Linux2.4\" -DOSARCH=\"Linux\" -DOJI -D_BSD_SOURCE -I../dist/include -I../dist/include -I/home/mbp/work/mozilla/mozilla-1.1/dist/include/nspr -I/usr/X11R6/include -fPIC -I/usr/X11R6/include -Wall -W -Wno-unused -Wpointer-arith -Wcast-align -pedantic -Wno-long-long -pthread -pipe -DDEBUG -D_DEBUG -DDEBUG_mbp -DTRACING -g -I/usr/X11R6/include -include ../config-defs.h -DMOZILLA_CLIENT -Wp,-MD,.deps/nsinstall.pp nsinstall.c",
"cc -o nsinstall.o -c -fPIC -Wall -W -Wno-unused -Wpointer-arith -Wcast-align -pedantic -Wno-long-long -pthread -pipe -g nsinstall.c"),
)
for cmd, expect in cases:
o, err = self.runcmd("h_strip %s" % cmd)
if o[-1] == '\n': o = o[:-1]
self.assert_equal(o, expect)
class IsSource_Case(SimpleDistCC_Case):
def runtest(self):
"""Test distcc's method for working out whether a file is source"""
cases = (( "hello.c", "source", "not-preprocessed" ),
( "hello.cpp", "source", "not-preprocessed" ),
( "hello.2.4.4.i", "source", "preprocessed" ),
( ".foo", "not-source", "not-preprocessed" ),
( "gcc", "not-source", "not-preprocessed" ),
( "hello.ii", "source", "preprocessed" ),
( "hello.c++", "source", "not-preprocessed" ),
( "boot.s", "not-source", "not-preprocessed" ),
( "boot.S", "not-source", "not-preprocessed" ))
for f, issrc, iscpp in cases:
o, err = self.runcmd("h_issource '%s'" % f)
expected = ("%s %s\n" % (issrc, iscpp))
if o != expected:
raise AssertionError("issource %s gave %s, expected %s" %
(f, `o`, `expected`))
class ScanArgs_Case(SimpleDistCC_Case):
'''Test understanding of gcc command lines.'''
def runtest(self):
cases = [("gcc -c hello.c", "distribute", "hello.c", "hello.o"),
("gcc hello.c", "local"),
("gcc -o /tmp/hello.o -c ../src/hello.c", "distribute", "../src/hello.c", "/tmp/hello.o"),
("gcc -DMYNAME=quasibar.c bar.c -c -o bar.o", "distribute", "bar.c", "bar.o"),
("gcc -ohello.o -c hello.c", "distribute", "hello.c", "hello.o"),
("ccache gcc -c hello.c", "distribute", "hello.c", "hello.o"),
("gcc hello.o", "local"),
("gcc -o hello.o hello.c", "local"),
("gcc -o hello.o -c hello.s", "local"),
("gcc -o hello.o -c hello.S", "local"),
("gcc -fprofile-arcs -ftest-coverage -c hello.c", "local", "hello.c", "hello.o"),
("gcc -S hello.c", "distribute", "hello.c", "hello.s"),
("gcc -c -S hello.c", "distribute", "hello.c", "hello.s"),
("gcc -S -c hello.c", "distribute", "hello.c", "hello.s"),
("gcc -M hello.c", "local"),
("gcc -ME hello.c", "local"),
("gcc -MD -c hello.c", "distribute", "hello.c", "hello.o"),
("gcc -MMD -c hello.c", "distribute", "hello.c", "hello.o"),
# Assemble to stdout (thanks Alexandre).
("gcc -S foo.c -o -", "local"),
("-S -o - foo.c", "local"),
("-c -S -o - foo.c", "local"),
("-S -c -o - foo.c", "local"),
# dasho syntax
("gcc -ofoo.o foo.c -c", "distribute", "foo.c", "foo.o"),
("gcc -ofoo foo.o", "local"),
# tricky this one -- no dashc
("foo.c -o foo.o", "local"),
("foo.c -o foo.o -c", "distribute", "foo.c", "foo.o"),
# Produce assembly listings
("gcc -Wa,-alh,-a=foo.lst -c foo.c", "local"),
("gcc -Wa,--MD -c foo.c", "local"),
("gcc -Wa,-xarch=v8 -c foo.c", "distribute", "foo.c", "foo.o"),
# Produce .rpo files
("g++ -frepo foo.C", "local"),
("gcc -xassembler-with-cpp -c foo.c", "local"),
("gcc -x assembler-with-cpp -c foo.c", "local"),
("gcc -specs=foo.specs -c foo.c", "local"),
]
for tup in cases:
apply(self.checkScanArgs, tup)
def checkScanArgs(self, ccmd, mode, input=None, output=None):
o, err = self.runcmd("h_scanargs %s" % ccmd)
o = o[:-1] # trim \n
os = string.split(o)
if mode != os[0]:
self.fail("h_scanargs %s gave %s mode, expected %s" %
(ccmd, os[0], mode))
if mode == 'distribute':
if os[1] <> input:
self.fail("h_scanargs %s gave %s input, expected %s" %
(ccmd, os[1], input))
if os[2] <> output:
self.fail("h_scanargs %s gave %s output, expected %s" %
(ccmd, os[2], output))
class ImplicitCompilerScan_Case(ScanArgs_Case):
'''Test understanding of commands with no compiler'''
def runtest(self):
cases = [("-c hello.c", "distribute", "hello.c", "hello.o"),
("hello.c -c", "distribute", "hello.c", "hello.o"),
("-o hello.o -c hello.c", "distribute", "hello.c", "hello.o"),
]
for tup in cases:
# NB use "apply" rather than new syntax for compatibility with
# venerable Pythons.
apply(self.checkScanArgs, tup)
class ExtractExtension_Case(SimpleDistCC_Case):
def runtest(self):
"""Test extracting extensions from filenames"""
for f, e in (("hello.c", ".c"),
("hello.cpp", ".cpp"),
("hello.2.4.4.4.c", ".c"),
(".foo", ".foo"),
("gcc", "(NULL)")):
out, err = self.runcmd("h_exten '%s'" % f)
assert out == e
class DaemonBadPort_Case(SimpleDistCC_Case):
def runtest(self):
"""Test daemon invoked with invalid port number"""
self.runcmd("distccd --log-file=distccd.log --lifetime=10 --port 80000",
EXIT_BAD_ARGUMENTS)
self.assert_no_file("daemonpid.tmp")
class InvalidHostSpec_Case(SimpleDistCC_Case):
def runtest(self):
"""Test various invalid DISTCC_HOSTS
See also test_parse_host_spec, which tests valid specifications."""
for spec in ["", " ", "\t", " @ ", ":", "mbp@", "angry::", ":4200"]:
self.runcmd("DISTCC_HOSTS=\"%s\" h_hosts -v" % spec,
EXIT_BAD_HOSTSPEC)
class ParseHostSpec_Case(SimpleDistCC_Case):
def runtest(self):
"""Check operation of dcc_parse_hosts_env.
Passes complex environment variables to h_hosts, which is a C wrapper
that calls the appropriate tests."""
spec="""localhost 127.0.0.1 @angry ted@angry
\t@angry:/home/mbp/bin/distccd angry:4204
ipv4-localhost
angry/44
angry:300/44
angry/44:300
angry,lzo
angry:3000,lzo # some comment
angry/44,lzo
@angry,lzo#asdasd
# oh yeah nothing here
@angry:/usr/sbin/distccd,lzo
localhostbutnotreally
"""
expected="""16
2 LOCAL
4 TCP 127.0.0.1 3632
4 SSH (no-user) angry (no-command)
4 SSH ted angry (no-command)
4 SSH (no-user) angry /home/mbp/bin/distccd
4 TCP angry 4204
4 TCP ipv4-localhost 3632
44 TCP angry 3632
44 TCP angry 300
44 TCP angry 300
4 TCP angry 3632
4 TCP angry 3000
44 TCP angry 3632
4 SSH (no-user) angry (no-command)
4 SSH (no-user) angry /usr/sbin/distccd
4 TCP localhostbutnotreally 3632
"""
out, err = self.runcmd("DISTCC_HOSTS=\"%s\" h_hosts" % spec)
assert out == expected, "expected %s\ngot %s" % (`expected`, `out`)
class Compilation_Case(WithDaemon_Case):
'''Test distcc by actually compiling a file'''
def setup(self):
WithDaemon_Case.setup(self)
self.createSource()
def runtest(self):
self.compile()
self.link()
self.checkBuiltProgram()
def createSource(self):
filename = self.sourceFilename()
f = open(filename, 'w')
f.write(self.source())
f.close()
def sourceFilename(self):
return "testtmp.c" # default
def compile(self):
cmd = self.compileCmd()
out, err = self.runcmd(cmd)
if out != '':
self.fail("compiler command %s produced output:\n%s" % (`cmd`, out))
if err != '':
self.fail("compiler command %s produced error:\n%s" % (`cmd`, err))
def link(self):
cmd = self.linkCmd()
out, err = self.runcmd(cmd)
if out != '':
self.fail("command %s produced output:\n%s" % (`cmd`, `out`))
if err != '':
self.fail("command %s produced error:\n%s" % (`cmd`, `err`))
def compileCmd(self):
"""Return command to compile source and run tests"""
return "DISTCC_FALLBACK=0 distcc " + \
_gcc + " -o testtmp.o -c %s" % (self.sourceFilename())
def linkCmd(self):
return "distcc " + _gcc + " -o testtmp testtmp.o"
def checkCompileMsgs(self, msgs):
if msgs <> '':
self.fail("expected no compiler messages, got \"%s\""
% msgs)
def checkBuiltProgram(self):
'''Check compile results. By default, just try to execute.'''
msgs, errs = self.runcmd("./testtmp")
self.checkBuiltProgramMsgs(msgs)
self.assert_equal(errs, '')
def checkBuiltProgramMsgs(self, msgs):
pass
class CompileHello_Case(Compilation_Case):
"""Test the simple case of building a program that works properly"""
def source(self):
return """
#include <stdio.h>
int main(void) {
puts("hello world");
return 0;
}
"""
def checkBuiltProgramMsgs(self, msgs):
self.assert_equal(msgs, "hello world\n")
class CompressedCompile_Case(Compilation_Case):
"""Test compilation with compression.
The source needs to be moderately large to make sure compression and mmap
is turned on."""
def source(self):
return """
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void) {
printf("hello world\\n");
return 0;
}
"""
def setupEnv(self):
Compilation_Case.setupEnv(self)
os.environ['DISTCC_HOSTS'] = '127.0.0.1:%d,lzo' % self.server_port
def checkBuiltProgramMsgs(self, msgs):
self.assert_equal(msgs, "hello world\n")
class DashONoSpace_Case(CompileHello_Case):
def compileCmd(self):
return "DISTCC_FALLBACK=0 distcc " + _gcc + \
" -otesttmp.o -c %s" % (self.sourceFilename())
def runtest(self):
if sys.platform == 'sunos5':
raise comfychair.NotRunError ('Sun assembler wants space after -o')
elif sys.platform.startswith ('osf1'):
raise comfychair.NotRunError ('GCC mips-tfile wants space after -o')
else:
CompileHello_Case.runtest (self)
class WriteDevNull_Case(CompileHello_Case):
def runtest(self):
self.compile()
def compileCmd(self):
return "DISTCC_FALLBACK=0 distcc " + _gcc + \
" -c -o /dev/null -c %s" % (self.sourceFilename())
class MultipleCompile_Case(Compilation_Case):
"""Test compiling several files from one line"""
def setup(self):
WithDaemon_Case.setup(self)
open("test1.c", "w").write("const char *msg = \"hello foreigner\";")
open("test2.c", "w").write("""#include <stdio.h>
int main(void) {
extern const char *msg;
puts(msg);
return 0;
}
""")
def runtest(self):
self.runcmd("distcc " + _gcc + " -c test1.c test2.c")
self.runcmd("distcc " + _gcc + " -o test test1.o test2.o")
class CppError_Case(CompileHello_Case):
"""Test failure of cpp"""
def source(self):
return '#error "not tonight dear"\n'
def runtest(self):
cmd = "distcc " + _gcc + " -c testtmp.c"
msgs, errs = self.runcmd(cmd, expectedResult=1)
self.assert_re_search("not tonight dear", errs)
self.assert_equal(msgs, '')
class BadInclude_Case(Compilation_Case):
"""Handling of error running cpp"""
def source(self):
return """#include <nosuchfilehere.h>
"""
def runtest(self):
self.runcmd("distcc " + _gcc + " -o testtmp.o -c testtmp.c", 1)
class PreprocessPlainText_Case(Compilation_Case):
"""Try using cpp on something that's not C at all"""
def setup(self):
self.stripEnvironment()
self.createSource()
def source(self):
return """#define FOO 3
#if FOO < 10
small foo!
#else
large foo!
#endif
/* comment ca? */
"""
def runtest(self):
# -P means not to emit linemarkers
self.runcmd("distcc " + _gcc + " -E testtmp.c -o testtmp.out")
out = open("testtmp.out").read()
# It's a bit hard to know the exact value, because different versions of
# GNU cpp seem to handle the whitespace differently.
self.assert_re_search("small foo!", out)
def teardown(self):
# no daemon is run for this test
pass
class NoDetachDaemon_Case(CompileHello_Case):
"""Check that without --no-detach the server goes into the background and can be stopped."""
def startDaemon(self):
# FIXME: This does not work well if it happens to get the same
# port as an existing server, because we can't catch the error.
cmd = ("distccd --no-detach --daemon --verbose --log-file %s --pid-file %s --port %d --allow 127.0.0.1" %
(self.daemon_logfile, self.daemon_pidfile, self.server_port))
self.pid = self.runcmd_background(cmd)
self.add_cleanup(self.killDaemon)
time.sleep(.5) # give it a bit of time to bind port
def killDaemon(self):
import signal
os.kill(self.pid, signal.SIGTERM)
pid, ret = os.wait()
self.assert_equal(self.pid, pid)
class ImplicitCompiler_Case(CompileHello_Case):
"""Test giving no compiler works"""
def compileCmd(self):
return "distcc -c testtmp.c"
def linkCmd(self):
# FIXME: Mozilla uses something like "distcc testtmp.o -o testtmp",
# but that's broken at the moment.
return "distcc -o testtmp testtmp.o "
def runtest(self):
if sys.platform != 'hp-ux10':
CompileHello_Case.runtest (self)
else:
raise comfychair.NotRunError ('HP-UX bundled C compiler non-ANSI')
class DashD_Case(Compilation_Case):
"""Test preprocessor arguments"""
def source(self):
return """
#include <stdio.h>
int main(void) {
printf("%s\\n", MESSAGE);
return 0;
}
"""
def compileCmd(self):
# quoting is hairy because this goes through the shell
return "distcc " + _gcc + \
" -c -o testtmp.o '-DMESSAGE=\"hello world\"' testtmp.c"
def checkBuiltProgramMsgs(self, msgs):
self.assert_equal(msgs, "hello world\n")
class ThousandFold_Case(CompileHello_Case):
"""Try repeated simple compilations"""
def daemon_lifetime(self):
return 120
def runtest(self):
# may take about a minute or so
for i in xrange(1000):
self.runcmd("distcc " + _gcc + " -o testtmp.o -c testtmp.c")
class Concurrent_Case(CompileHello_Case):
"""Try many compilations at the same time"""
def daemon_lifetime(self):
return 120
def runtest(self):
# may take about a minute or so
pids = {}
for i in xrange(50):
kid = self.runcmd_background("distcc " + _gcc + \
" -o testtmp.o -c testtmp.c")
pids[kid] = kid
while len(pids):
pid, status = os.wait()
if status:
self.fail("child %d failed with status %#x" % (pid, status))
del pids[pid]
class BigAssFile_Case(Compilation_Case):
"""Test compilation of a really big C file
This will take a while to run"""
def createSource(self):
"""Create source file"""
f = open("testtmp.c", 'wt')
# We want a file of many, which will be a few megabytes of
# source. Picking the size is kind of hard -- something that
# will properly exercise distcc may be too big for small/old
# machines.
f.write("int main() {}\n")
for i in xrange(200000):
f.write("int i%06d = %d;\n" % (i, i))
f.close()
def runtest(self):
self.runcmd("distcc " + _gcc + " -c %s" % "testtmp.c")
self.runcmd("distcc " + _gcc + " -o testtmp testtmp.o")
def daemon_lifetime(self):
return 300
class BinFalse_Case(Compilation_Case):
"""Compiler that fails without reading input.
This is an interesting case when the server is using fifos,
because it has to cope with the open() on the fifo being
interrupted.
distcc doesn't know that 'false' is not a compiler, but it does
need a command line that looks like a compiler invocation.
We have to use a .i file so that distcc does not try to preprocess it.
"""
def createSource(self):
open("testtmp.i", "wt").write("int main() {}")
def runtest(self):
# On Solaris and IRIX 6, 'false' returns exit status 255
if sys.platform == 'sunos5' or \
sys.platform.startswith ('irix6'):
self.runcmd("distcc false -c testtmp.i", 255)
else:
self.runcmd("distcc false -c testtmp.i", 1)
class BinTrue_Case(Compilation_Case):
"""Compiler that succeeds without reading input.
This is an interesting case when the server is using fifos,
because it has to cope with the open() on the fifo being
interrupted.
distcc doesn't know that 'true' is not a compiler, but it does
need a command line that looks like a compiler invocation.
We have to use a .i file so that distcc does not try to preprocess it.
"""
def createSource(self):
open("testtmp.i", "wt").write("int main() {}")
def runtest(self):
self.runcmd("distcc true -c testtmp.i", 0)
class SBeatsC_Case(CompileHello_Case):
"""-S overrides -c in gcc.
If both options are given, we have to make sure we imply the
output filename in the same way as gcc."""
# XXX: Are other compilers the same?
def runtest(self):
self.runcmd("distcc " + _gcc + " -c -S testtmp.c")
if os.path.exists("testtmp.o"):
self.fail("created testtmp.o but should not have")
if not os.path.exists("testtmp.s"):
self.fail("did not create testtmp.s but should have")
class NoServer_Case(CompileHello_Case):
"""Invalid server name"""
def setup(self):
self.stripEnvironment()
os.environ['DISTCC_HOSTS'] = 'no.such.host.here'
self.distcc_log = 'distcc.log'
os.environ['DISTCC_LOG'] = self.distcc_log
self.createSource()
def runtest(self):
self.runcmd("distcc " + _gcc + " -c -o testtmp.o testtmp.c")
msgs = open(self.distcc_log, 'r').read()
self.assert_re_search(r'failed to distribute.*running locally instead',
msgs)
class ImpliedOutput_Case(CompileHello_Case):
"""Test handling absence of -o"""
def compileCmd(self):
return "distcc " + _gcc + " -c testtmp.c"
class SyntaxError_Case(Compilation_Case):
"""Test building a program containing syntax errors, so it won't build
properly."""
def source(self):
return """not C source at all
"""
def compile(self):
rc, msgs, errs = self.runcmd_unchecked(self.compileCmd())
self.assert_notequal(rc, 0)
# XXX: Need to also handle "syntax error" from gcc-2.95.3
self.assert_re_match(r'testtmp.c:1: .*error', errs)
self.assert_equal(msgs, '')
def runtest(self):
self.compile()
if os.path.exists("testtmp") or os.path.exists("testtmp.o"):
self.fail("compiler produced output, but should not have done so")
class NoHosts_Case(CompileHello_Case):
"""Test running with no hosts defined.
We expect compilation to succeed, but with a warning that it was
run locally."""
def runtest(self):
import os
# WithDaemon_Case sets this to point to the local host, but we
# don't want that. Note that you cannot delete environment
# keys in Python1.5, so we need to just set them to the empty
# string.
os.environ['DISTCC_HOSTS'] = ''
os.environ['DISTCC_LOG'] = ''
self.runcmd('printenv')
msgs, errs = self.runcmd(self.compileCmd())
# We expect only one message, a warning from distcc
self.assert_re_search(r"Warning.*\$DISTCC_HOSTS.*can't distribute work",
errs)
def compileCmd(self):
"""Return command to compile source and run tests"""
return "DISTCC_FALLBACK=1 distcc " + _gcc + \
" -o testtmp.o -c %s" % (self.sourceFilename())
class MissingCompiler_Case(CompileHello_Case):
"""Test compiler missing from server."""
# Another way to test this would be to break the server's PATH
def sourceFilename(self):
# must be preprocessed, so that we don't need to run the compiler
# on the client
return "testtmp.i"
def source(self):
return """int foo;"""
def runtest(self):
msgs, errs = self.runcmd("DISTCC_FALLBACK=0 distcc nosuchcc -c testtmp.i",
expectedResult=EXIT_COMPILER_MISSING)
self.assert_re_search(r'failed to exec', errs)
class RemoteAssemble_Case(WithDaemon_Case):
"""Test remote assembly of a .s file."""
# We have a rather tricky method for testing assembly code when we
# don't know what platform we're on. I think this one will work
# everywhere, though perhaps not.
asm_source = """
.file "foo.c"
.globl msg
.section .rodata
.LC0:
.string "hello world"
.data
.align 4
.type msg,@object
.size msg,4
msg:
.long .LC0
"""
asm_filename = 'test2.s'
def setup(self):
WithDaemon_Case.setup(self)
open(self.asm_filename, 'wt').write(self.asm_source)
def compile(self):
# Need to build both the C file and the assembly file
self.runcmd("distcc " + _gcc + " -o test2.o -c test2.s")
class PreprocessAsm_Case(WithDaemon_Case):
"""Run preprocessor locally on assembly, then compile locally."""
asm_source = """
#define MSG "hello world"
gcc2_compiled.:
.globl msg
.section .rodata
.LC0:
.string MSG
.data
.align 4
.type msg,@object
.size msg,4
msg:
.long .LC0
"""
def setup(self):
WithDaemon_Case.setup(self)
open('test2.S', 'wt').write(self.asm_source)
def compile(self):
if sys.platform == 'linux2':
self.runcmd("distcc -o test2.o -c test2.S")
def runtest(self):
self.compile()
class ModeBits_Case(CompileHello_Case):
"""Check distcc obeys umask"""
def runtest(self):
self.runcmd("umask 0; distcc " + _gcc + " -c testtmp.c")
self.assert_equal(S_IMODE(os.stat("testtmp.o")[ST_MODE]), 0666)
class CheckRoot_Case(comfychair.TestCase):
"""Stub case that checks this is run by root. Not used by default."""
def setup(self):
self.require_root()
class EmptySource_Case(Compilation_Case):
"""Check compilation of empty source file
It must be treated as preprocessed source, otherwise cpp will
insert a # line, which will give a false pass. """
def source(self):
return ''
def runtest(self):
self.compile()
def compile(self):
self.runcmd("distcc " + _gcc + " -c %s" % self.sourceFilename())
def sourceFilename(self):
return "testtmp.i"
class BadLogFile_Case(comfychair.TestCase):
def runtest(self):
self.runcmd("touch distcc.log")
self.runcmd("chmod 0 distcc.log")
msgs, errs = self.runcmd("DISTCC_LOG=distcc.log distcc " + \
_gcc + " -c foo.c", expectedResult=1)
self.assert_re_search("failed to open logfile", errs)
class AccessDenied_Case(CompileHello_Case):
"""Run the daemon, but don't allow access from this host.
Make sure that compilation falls back to localhost with a warning."""
def daemon_command(self):
return ("distccd --verbose --lifetime=%d --daemon --log-file %s "
"--pid-file %s --port %d --allow 127.0.0.2"
% (self.daemon_lifetime(),
self.daemon_logfile, self.daemon_pidfile, self.server_port))
def compileCmd(self):
"""Return command to compile source and run tests"""
return "DISTCC_FALLBACK=1 distcc " + _gcc + " -o testtmp.o -c %s" % (self.sourceFilename())
def runtest(self):
self.compile()
errs = open('distcc.log').read()
self.assert_re_search(r'failed to distribute', errs)
class ParseMask_Case(comfychair.TestCase):
"""Test code for matching IP masks."""
values = [
('127.0.0.1', '127.0.0.1', 0),
('127.0.0.1', '127.0.0.0', EXIT_ACCESS_DENIED),
('127.0.0.1', '127.0.0.2', EXIT_ACCESS_DENIED),
('127.0.0.1/8', '127.0.0.2', 0),
('10.113.0.0/16', '10.113.45.67', 0),
('10.113.0.0/16', '10.11.45.67', EXIT_ACCESS_DENIED),
('10.113.0.0/16', '127.0.0.1', EXIT_ACCESS_DENIED),
('1.2.3.4/0', '4.3.2.1', 0),
('1.2.3.4/40', '4.3.2.1', EXIT_BAD_ARGUMENTS),
('1.2.3.4.5.6.7/8', '127.0.0.1', EXIT_BAD_ARGUMENTS),
('1.2.3.4/8', '4.3.2.1', EXIT_ACCESS_DENIED),
('192.168.1.64/28', '192.168.1.70', 0),
('192.168.1.64/28', '192.168.1.7', EXIT_ACCESS_DENIED),
]
def runtest(self):
for mask, client, expected in ParseMask_Case.values:
cmd = "h_parsemask %s %s" % (mask, client)
ret, msgs, err = self.runcmd_unchecked(cmd)
if ret != expected:
self.fail("%s gave %d, expected %d" % (cmd, ret, expected))
class HostFile_Case(CompileHello_Case):
def setup(self):
CompileHello_Case.setup(self)
del os.environ['DISTCC_HOSTS']
self.save_home = os.environ['HOME']
os.environ['HOME'] = os.getcwd()
# DISTCC_DIR is set to 'distccdir'
open(os.environ['DISTCC_DIR'] + '/hosts', 'w').write('127.0.0.1:%d' % self.server_port)
def teardown(self):
os.environ['HOME'] = self.save_home
CompileHello_Case.teardown(self)
# When invoking compiler, use absolute path so distccd can find it
for path in os.environ['PATH'].split (':'):
abs_path = os.path.join (path, 'gcc')
if os.path.isfile (abs_path):
_gcc = abs_path
break
# All the tests defined in this suite
tests = [BadLogFile_Case,
ScanArgs_Case,
ParseMask_Case,
ImplicitCompilerScan_Case,
StripArgs_Case,
StartStopDaemon_Case,
CompileHello_Case,
CompressedCompile_Case,
DashONoSpace_Case,
WriteDevNull_Case,
CppError_Case,
BadInclude_Case,
PreprocessPlainText_Case,
NoDetachDaemon_Case,
SBeatsC_Case,
DashD_Case,
BinFalse_Case,
BinTrue_Case,
VersionOption_Case,
HelpOption_Case,
BogusOption_Case,
MultipleCompile_Case,
GccOptionsPassed_Case,
IsSource_Case,
ExtractExtension_Case,
ImplicitCompiler_Case,
DaemonBadPort_Case,
AccessDenied_Case,
NoServer_Case,
InvalidHostSpec_Case,
ParseHostSpec_Case,
ImpliedOutput_Case,
SyntaxError_Case,
NoHosts_Case,
MissingCompiler_Case,
RemoteAssemble_Case,
PreprocessAsm_Case,
ModeBits_Case,
EmptySource_Case,
HostFile_Case,
# slow tests below here
Concurrent_Case,
ThousandFold_Case,
BigAssFile_Case]
if __name__ == '__main__':
comfychair.main(tests)
|