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
|
#
# __COPYRIGHT__
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
import SCons.compat
import io
import os
import re
import sys
from types import *
import unittest
import TestCmd
sys.stdout = io.StringIO()
if sys.platform == 'win32':
existing_lib = "msvcrt"
else:
existing_lib = "m"
class SConfTestCase(unittest.TestCase):
def setUp(self):
# we always want to start with a clean directory
self.save_cwd = os.getcwd()
self.test = TestCmd.TestCmd(workdir = '')
os.chdir(self.test.workpath(''))
def tearDown(self):
self.test.cleanup()
import SCons.SConsign
SCons.SConsign.Reset()
os.chdir(self.save_cwd)
def _resetSConfState(self):
# Ok, this is tricky, and i do not know, if everything is sane.
# We try to reset scons' state (including all global variables)
import SCons.SConsign
SCons.SConsign.write() # simulate normal scons-finish
for n in list(sys.modules.keys()):
if n.split('.')[0] == 'SCons' and n[:12] != 'SCons.compat':
m = sys.modules[n]
if isinstance(m, ModuleType):
# if this is really a scons module, clear its namespace
del sys.modules[n]
m.__dict__.clear()
# we only use SCons.Environment and SCons.SConf for these tests.
import SCons.Environment
import SCons.SConf
self.Environment = SCons.Environment
self.SConf = SCons.SConf
# and we need a new environment, cause references may point to
# old modules (well, at least this is safe ...)
self.scons_env = self.Environment.Environment()
self.scons_env.AppendENVPath('PATH', os.environ['PATH'])
# we want to do some autodetection here
# this stuff works with
# - cygwin on Windows (using cmd.exe, not bash)
# - posix
# - msvc on Windows (hopefully)
if (not self.scons_env.Detect( self.scons_env.subst('$CXX') ) or
not self.scons_env.Detect( self.scons_env.subst('$CC') ) or
not self.scons_env.Detect( self.scons_env.subst('$LINK') )):
raise Exception("This test needs an installed compiler!")
if self.scons_env['CXX'] == 'g++':
global existing_lib
existing_lib = 'm'
def _baseTryXXX(self, TryFunc):
# TryCompile and TryLink are much the same, so we can test them
# in one method, we pass the function as a string ('TryCompile',
# 'TryLink'), so we are aware of reloading modules.
def checks(self, sconf, TryFuncString):
TryFunc = self.SConf.SConfBase.__dict__[TryFuncString]
res1 = TryFunc( sconf, "int main(void) { return 0; }\n", ".c" )
res2 = TryFunc( sconf,
'#include "no_std_header.h"\nint main(void) {return 0; }\n',
'.c' )
return (res1,res2)
# 1. test initial behaviour (check ok / failed)
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
res = checks( self, sconf, TryFunc )
assert res[0] and not res[1], res
finally:
sconf.Finish()
# 2.1 test the error caching mechanism (no dependencies have changed)
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
res = checks( self, sconf, TryFunc )
assert res[0] and not res[1], res
finally:
sconf.Finish()
# we should have exactly one one error cached
log = str(self.test.read( self.test.workpath('config.log') ))
expr = re.compile( ".*failed in a previous run and all", re.DOTALL )
firstOcc = expr.match( log )
assert firstOcc is not None, log
secondOcc = expr.match( log, firstOcc.end(0) )
assert secondOcc is None, log
# 2.2 test the error caching mechanism (dependencies have changed)
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
no_std_header_h = self.test.workpath('config.tests', 'no_std_header.h')
test_h = self.test.write( no_std_header_h,
"/* we are changing a dependency now */\n" )
try:
res = checks( self, sconf, TryFunc )
log = self.test.read( self.test.workpath('config.log') )
assert res[0] and res[1], res
finally:
sconf.Finish()
def test_TryBuild(self):
"""Test SConf.TryBuild
"""
# 1 test that we can try a builder that returns a list of nodes
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
import SCons.Builder
import SCons.Node
class MyAction:
def get_contents(self, target, source, env):
return 'MyBuilder-MyAction $SOURCE $TARGET'
class MyBuilder(SCons.Builder.BuilderBase):
def __init__(self):
self.prefix = ''
self.suffix = ''
# need action because temporary file name uses hash of actions get_contents()
self.action = MyAction()
def __call__(self, env, target, source):
class MyNode:
def __init__(self, name):
self.name = name
self.state = SCons.Node.no_state
self.waiting_parents = set()
self.side_effects = []
self.builder = None
self.prerequisites = None
def disambiguate(self):
return self
def has_builder(self):
return 1
def add_pre_action(self, *actions):
pass
def add_post_action(self, *actions):
pass
def children(self, scan = 1):
return []
def get_state(self):
return self.state
def set_state(self, state):
self.state = state
def alter_targets(self):
return [], None
def depends_on(self, nodes):
return None
def postprocess(self):
pass
def clear(self):
pass
def is_up_to_date(self):
return None
def prepare(self):
pass
def push_to_cache(self):
pass
def retrieve_from_cache(self):
return 0
def build(self, **kw):
return
def built(self):
pass
def get_stored_info(self):
pass
def get_executor(self):
class Executor:
def __init__(self, targets):
self.targets = targets
def get_all_targets(self):
return self.targets
return Executor([self])
return [MyNode('n1'), MyNode('n2')]
try:
self.scons_env.Append(BUILDERS = {'SConfActionBuilder' : MyBuilder()})
sconf.TryBuild(self.scons_env.SConfActionBuilder)
finally:
sconf.Finish()
def test_TryCompile(self):
"""Test SConf.TryCompile
"""
self._baseTryXXX( "TryCompile" ) #self.SConf.SConf.TryCompile )
def test_TryLink(self):
"""Test SConf.TryLink
"""
self._baseTryXXX( "TryLink" ) #self.SConf.SConf.TryLink )
def test_TryRun(self):
"""Test SConf.TryRun
"""
def checks(sconf):
prog = """
#include <stdio.h>
int main(void) {
printf( "Hello" );
return 0;
}
"""
res1 = sconf.TryRun( prog, ".c" )
res2 = sconf.TryRun( "not a c program\n", ".c" )
return (res1, res2)
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
res = checks(sconf)
assert res[0][0] and res[0][1] == "Hello", res
assert not res[1][0] and res[1][1] == "", res
finally:
sconf.Finish()
log = self.test.read( self.test.workpath('config.log') )
# test the caching mechanism
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
res = checks(sconf)
assert res[0][0] and res[0][1] == "Hello", res
assert not res[1][0] and res[1][1] == "", res
finally:
sconf.Finish()
# we should have exactly one error cached
# creating string here because it's bytes by default on py3
log = str(self.test.read( self.test.workpath('config.log') ))
expr = re.compile( ".*failed in a previous run and all", re.DOTALL )
firstOcc = expr.match( log )
assert firstOcc is not None, log
secondOcc = expr.match( log, firstOcc.end(0) )
assert secondOcc is None, log
def test_TryAction(self):
"""Test SConf.TryAction
"""
def actionOK(target, source, env):
with open(str(target[0]), "w") as f:
f.write("RUN OK\n")
return None
def actionFAIL(target, source, env):
return 1
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
(ret, output) = sconf.TryAction(action=actionOK)
assert ret and output.encode('utf-8') == bytearray("RUN OK"+os.linesep, 'utf-8'), (ret, output)
(ret, output) = sconf.TryAction(action=actionFAIL)
assert not ret and output == "", (ret, output)
finally:
sconf.Finish()
def _test_check_compilers(self, comp, func, name):
"""This is the implementation for CheckCC and CheckCXX tests."""
from copy import deepcopy
# Check that Check* works
r = func()
assert r, "could not find %s ?" % comp
# Check that Check* does fail if comp is not available in env
oldcomp = deepcopy(self.scons_env[comp])
del self.scons_env[comp]
r = func()
assert not r, "%s worked wo comp ?" % name
# Check that Check* does fail if comp is set but empty
self.scons_env[comp] = ''
r = func()
assert not r, "%s worked with comp = '' ?" % name
# Check that Check* does fail if comp is set to buggy executable
self.scons_env[comp] = 'thiscccompilerdoesnotexist'
r = func()
assert not r, "%s worked with comp = thiscompilerdoesnotexist ?" % name
# Check that Check* does fail if CFLAGS is buggy
self.scons_env[comp] = oldcomp
self.scons_env['%sFLAGS' % comp] = '/WX qwertyuiop.c'
r = func()
assert not r, "%s worked with %sFLAGS = qwertyuiop ?" % (name, comp)
def test_CheckCC(self):
"""Test SConf.CheckCC()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
try:
self._test_check_compilers('CC', sconf.CheckCC, 'CheckCC')
except AssertionError:
sys.stderr.write(self.test.read('config.log', mode='r'))
raise
finally:
sconf.Finish()
def test_CheckSHCC(self):
"""Test SConf.CheckSHCC()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
try:
self._test_check_compilers('SHCC', sconf.CheckSHCC, 'CheckSHCC')
except AssertionError:
sys.stderr.write(self.test.read('config.log', mode='r'))
raise
finally:
sconf.Finish()
def test_CheckCXX(self):
"""Test SConf.CheckCXX()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
try:
self._test_check_compilers('CXX', sconf.CheckCXX, 'CheckCXX')
except AssertionError:
sys.stderr.write(self.test.read('config.log', mode='r'))
raise
finally:
sconf.Finish()
def test_CheckSHCXX(self):
"""Test SConf.CheckSHCXX()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
try:
self._test_check_compilers('SHCXX', sconf.CheckSHCXX, 'CheckSHCXX')
except AssertionError:
sys.stderr.write(self.test.read('config.log', mode='r'))
raise
finally:
sconf.Finish()
def test_CheckHeader(self):
"""Test SConf.CheckHeader()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
# CheckHeader()
r = sconf.CheckHeader( "stdio.h", include_quotes="<>", language="C" )
assert r, "did not find stdio.h"
r = sconf.CheckHeader( "HopefullyNoHeader.noh", language="C" )
assert not r, "unexpectedly found HopefullyNoHeader.noh"
r = sconf.CheckHeader( "vector", include_quotes="<>", language="C++" )
assert r, "did not find vector"
r = sconf.CheckHeader( "HopefullyNoHeader.noh", language="C++" )
assert not r, "unexpectedly found HopefullyNoHeader.noh"
finally:
sconf.Finish()
def test_CheckCHeader(self):
"""Test SConf.CheckCHeader()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
# CheckCHeader()
r = sconf.CheckCHeader( "stdio.h", include_quotes="<>" )
assert r, "did not find stdio.h"
r = sconf.CheckCHeader( ["math.h", "stdio.h"], include_quotes="<>" )
assert r, "did not find stdio.h, #include math.h first"
r = sconf.CheckCHeader( "HopefullyNoCHeader.noh" )
assert not r, "unexpectedly found HopefullyNoCHeader.noh"
finally:
sconf.Finish()
def test_CheckCXXHeader(self):
"""Test SConf.CheckCXXHeader()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
# CheckCXXHeader()
r = sconf.CheckCXXHeader( "vector", include_quotes="<>" )
assert r, "did not find vector"
r = sconf.CheckCXXHeader( ["stdio.h", "vector"], include_quotes="<>" )
assert r, "did not find vector, #include stdio.h first"
r = sconf.CheckCXXHeader( "HopefullyNoCXXHeader.noh" )
assert not r, "unexpectedly found HopefullyNoCXXHeader.noh"
finally:
sconf.Finish()
def test_CheckLib(self):
"""Test SConf.CheckLib()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
# CheckLib()
r = sconf.CheckLib( existing_lib, "main", autoadd=0 )
assert r, "did not find %s" % existing_lib
r = sconf.CheckLib( "hopefullynolib", "main", autoadd=0 )
assert not r, "unexpectedly found hopefullynolib"
# CheckLib() with list of libs
r = sconf.CheckLib( [existing_lib], "main", autoadd=0 )
assert r, "did not find %s" % existing_lib
r = sconf.CheckLib( ["hopefullynolib"], "main", autoadd=0 )
assert not r, "unexpectedly found hopefullynolib"
# This is a check that a null list doesn't find functions
# that are in libraries that must be explicitly named.
# This works on POSIX systems where you have to -lm to
# get the math functions, but it fails on Visual Studio
# where you apparently get all those functions for free.
# Comment out this check until someone who understands
# Visual Studio better can come up with a corresponding
# test (if that ever really becomes necessary).
#r = sconf.CheckLib( [], "sin", autoadd=0 )
#assert not r, "unexpectedly found nonexistent library"
r = sconf.CheckLib( [existing_lib,"hopefullynolib"], "main", autoadd=0 )
assert r, "did not find %s,%s " % (existing_lib,r)
r = sconf.CheckLib( ["hopefullynolib",existing_lib], "main", autoadd=0 )
assert r, "did not find %s " % existing_lib
# CheckLib() with autoadd
def libs(env):
return env.get('LIBS', [])
env = sconf.env.Clone()
try:
r = sconf.CheckLib( existing_lib, "main", autoadd=1 )
assert r, "did not find main in %s" % existing_lib
expect = libs(env) + [existing_lib]
got = libs(sconf.env)
assert got == expect, "LIBS: expected %s, got %s" % (expect, got)
sconf.env = env.Clone()
r = sconf.CheckLib( existing_lib, "main", autoadd=0 )
assert r, "did not find main in %s" % existing_lib
expect = libs(env)
got = libs(sconf.env)
assert got == expect, "before and after LIBS were not the same"
finally:
sconf.env = env
finally:
sconf.Finish()
def test_CheckLibWithHeader(self):
"""Test SConf.CheckLibWithHeader()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
# CheckLibWithHeader()
r = sconf.CheckLibWithHeader( existing_lib, "math.h", "C", autoadd=0 )
assert r, "did not find %s" % existing_lib
r = sconf.CheckLibWithHeader( existing_lib, ["stdio.h", "math.h"], "C", autoadd=0 )
assert r, "did not find %s, #include stdio.h first" % existing_lib
r = sconf.CheckLibWithHeader( "hopefullynolib", "math.h", "C", autoadd=0 )
assert not r, "unexpectedly found hopefullynolib"
# CheckLibWithHeader() with lists of libs
r = sconf.CheckLibWithHeader( [existing_lib], "math.h", "C", autoadd=0 )
assert r, "did not find %s" % existing_lib
r = sconf.CheckLibWithHeader( [existing_lib], ["stdio.h", "math.h"], "C", autoadd=0 )
assert r, "did not find %s, #include stdio.h first" % existing_lib
# This is a check that a null list doesn't find functions
# that are in libraries that must be explicitly named.
# This works on POSIX systems where you have to -lm to
# get the math functions, but it fails on Visual Studio
# where you apparently get all those functions for free.
# Comment out this check until someone who understands
# Visual Studio better can come up with a corresponding
# test (if that ever really becomes necessary).
#r = sconf.CheckLibWithHeader( [], "math.h", "C", call="sin(3);", autoadd=0 )
#assert not r, "unexpectedly found non-existent library"
r = sconf.CheckLibWithHeader( ["hopefullynolib"], "math.h", "C", autoadd=0 )
assert not r, "unexpectedly found hopefullynolib"
r = sconf.CheckLibWithHeader( ["hopefullynolib",existing_lib], ["stdio.h", "math.h"], "C", autoadd=0 )
assert r, "did not find %s, #include stdio.h first" % existing_lib
r = sconf.CheckLibWithHeader( [existing_lib,"hopefullynolib"], ["stdio.h", "math.h"], "C", autoadd=0 )
assert r, "did not find %s, #include stdio.h first" % existing_lib
# CheckLibWithHeader with autoadd
def libs(env):
return env.get('LIBS', [])
env = sconf.env.Clone()
try:
r = sconf.CheckLibWithHeader( existing_lib, "math.h", "C", autoadd=1 )
assert r, "did not find math.h with %s" % existing_lib
expect = libs(env) + [existing_lib]
got = libs(sconf.env)
assert got == expect, "LIBS: expected %s, got %s" % (expect, got)
sconf.env = env.Clone()
r = sconf.CheckLibWithHeader( existing_lib, "math.h", "C", autoadd=0 )
assert r, "did not find math.h with %s" % existing_lib
expect = libs(env)
got = libs(sconf.env)
assert got == expect, "before and after LIBS were not the same"
finally:
sconf.env = env
finally:
sconf.Finish()
def test_CheckFunc(self):
"""Test SConf.CheckFunc()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
# CheckFunc()
r = sconf.CheckFunc('strcpy')
assert r, "did not find strcpy"
r = sconf.CheckFunc('strcpy', '/* header */ char strcpy();')
assert r, "did not find strcpy"
r = sconf.CheckFunc('hopefullynofunction')
assert not r, "unexpectedly found hopefullynofunction"
finally:
sconf.Finish()
def test_CheckProg(self):
"""Test SConf.CheckProg()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
if os.name != 'nt':
r = sconf.CheckProg('sh')
assert r, "/bin/sh"
else:
r = sconf.CheckProg('cmd.exe')
self.assertIn('cmd.exe',r)
r = sconf.CheckProg('hopefully-not-a-program')
assert r is None
finally:
sconf.Finish()
def test_Define(self):
"""Test SConf.Define()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'),
config_h = self.test.workpath('config.h'))
try:
# XXX: we test the generated config.h string. This is not so good,
# ideally, we would like to test if the generated file included in
# a test program does what we want.
# Test defining one symbol wo value
sconf.config_h_text = ''
sconf.Define('YOP')
assert sconf.config_h_text == '#define YOP\n'
# Test defining one symbol with integer value
sconf.config_h_text = ''
sconf.Define('YOP', 1)
assert sconf.config_h_text == '#define YOP 1\n'
# Test defining one symbol with string value
sconf.config_h_text = ''
sconf.Define('YOP', '"YIP"')
assert sconf.config_h_text == '#define YOP "YIP"\n'
# Test defining one symbol with string value
sconf.config_h_text = ''
sconf.Define('YOP', "YIP")
assert sconf.config_h_text == '#define YOP YIP\n'
finally:
sconf.Finish()
def test_CheckTypeSize(self):
"""Test SConf.CheckTypeSize()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
# CheckTypeSize()
# In ANSI C, sizeof(char) == 1.
r = sconf.CheckTypeSize('char', expect = 1)
assert r == 1, "sizeof(char) != 1 ??"
r = sconf.CheckTypeSize('char', expect = 0)
assert r == 0, "sizeof(char) == 0 ??"
r = sconf.CheckTypeSize('char', expect = 2)
assert r == 0, "sizeof(char) == 2 ??"
r = sconf.CheckTypeSize('char')
assert r == 1, "sizeof(char) != 1 ??"
r = sconf.CheckTypeSize('const unsigned char')
assert r == 1, "sizeof(const unsigned char) != 1 ??"
# Checking C++
r = sconf.CheckTypeSize('const unsigned char', language = 'C++')
assert r == 1, "sizeof(const unsigned char) != 1 ??"
# Checking Non-existing type
r = sconf.CheckTypeSize('thistypedefhasnotchancetosexist_scons')
assert r == 0, \
"Checking size of thistypedefhasnotchancetosexist_scons succeeded ?"
finally:
sconf.Finish()
def test_CheckDeclaration(self):
"""Test SConf.CheckDeclaration()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
# In ANSI C, malloc should be available in stdlib
r = sconf.CheckDeclaration('malloc', includes = "#include <stdlib.h>")
assert r, "malloc not declared ??"
# For C++, __cplusplus should be declared
r = sconf.CheckDeclaration('__cplusplus', language = 'C++')
assert r, "__cplusplus not declared in C++ ??"
r = sconf.CheckDeclaration('__cplusplus', language = 'C')
assert not r, "__cplusplus declared in C ??"
r = sconf.CheckDeclaration('unknown', language = 'Unknown')
assert not r, "unknown language was supported ??"
finally:
sconf.Finish()
def test_(self):
"""Test SConf.CheckType()
"""
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
# CheckType()
r = sconf.CheckType('off_t', '#include <sys/types.h>\n')
assert r, "did not find off_t"
r = sconf.CheckType('hopefullynotypedef_not')
assert not r, "unexpectedly found hopefullynotypedef_not"
finally:
sconf.Finish()
def test_CustomChecks(self):
"""Test Custom Checks
"""
def CheckCustom(test):
test.Message( "Checking UserTest ... " )
prog = """
#include <stdio.h>
int main(void) {
printf( "Hello" );
return 0;
}
"""
(ret, output) = test.TryRun( prog, ".c" )
test.Result( ret )
assert ret and output == "Hello", (ret, output)
return ret
self._resetSConfState()
sconf = self.SConf.SConf(self.scons_env,
custom_tests={'CheckCustom': CheckCustom},
conf_dir=self.test.workpath('config.tests'),
log_file=self.test.workpath('config.log'))
try:
ret = sconf.CheckCustom()
assert ret, ret
finally:
sconf.Finish()
if __name__ == "__main__":
unittest.main()
# Local Variables:
# tab-width:4
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=4 shiftwidth=4:
|