summaryrefslogtreecommitdiffstats
path: root/test/Depends.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-09-21 01:30:38 (GMT)
committerSteven Knight <knight@baldmt.com>2001-09-21 01:30:38 (GMT)
commitc8bbea81460524f6469fa4b6afc2be5a6f338edc (patch)
treeaa6a337d270384c8e12577542615ae3f3f51dc39 /test/Depends.py
parentb6251d39d5f5b187a7455923caeede3b962a6d0e (diff)
downloadSCons-c8bbea81460524f6469fa4b6afc2be5a6f338edc.zip
SCons-c8bbea81460524f6469fa4b6afc2be5a6f338edc.tar.gz
SCons-c8bbea81460524f6469fa4b6afc2be5a6f338edc.tar.bz2
Add additional tests to provide more examples.
Diffstat (limited to 'test/Depends.py')
-rw-r--r--test/Depends.py80
1 files changed, 80 insertions, 0 deletions
diff --git a/test/Depends.py b/test/Depends.py
new file mode 100644
index 0000000..5c6c4f1
--- /dev/null
+++ b/test/Depends.py
@@ -0,0 +1,80 @@
+#!/usr/bin/env python
+
+__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
+
+import TestSCons
+
+test = TestSCons.TestSCons()
+
+test.pass_test() #XXX Short-circuit until this is implemented.
+
+test.subdir('subdir')
+
+test.write('build.py', r"""
+import sys
+contents = open(sys.argv[2], 'r').read() + open(sys.argv[3], 'r').read()
+file = open(sys.argv[1], 'w')
+file.write(contents)
+file.close()
+""")
+
+test.write('SConstruct', """
+Foo = Builder(name = "Foo",
+ action = "python build.py %(target)s %(source)s subdir/foo.dep")
+Bar = Builder(name = "Bar",
+ action = "python build.py %(target)s %(source)s subdir/bar.dep")
+env = Environment(BUILDERS = [Foo, Bar])
+env.Depends(target = ['f1.out', 'f2.out'], source = 'subdir/foo.dep')
+env.Depends(target = 'f3.out', source = 'subdir/bar.dep')
+env.Foo(target = 'f1.out', source = 'f1.in')
+env.Foo(target = 'f2.out', source = 'f2.in')
+env.Bar(target = 'f3.out', source = 'f3.in')
+SConscript('subdir/SConscript')
+""")
+
+test.write(['subdir', 'SConscript'], """
+env.Depends(target = 'f4.out', source = 'bar.dep')
+env.Foo(target = 'f4.out', source = 'f4.in')
+""")
+
+test.write('f1.in', "f1.in\n")
+
+test.write('f2.in', "f2.in\n")
+
+test.write(['subdir', 'f4.in'], "subdir/f4.in\n")
+
+test.write(['subdir', 'foo.dep'], "subdir/foo.dep 1\n")
+
+test.write(['subdir', 'bar.dep'], "subdir/bar.dep 1\n")
+
+test.run(arguments = '.')
+
+test.fail_test(test.read('f1.out') != "f1.in\nsubdir/foo.dep 1\n")
+test.fail_test(test.read('f2.out') != "f2.in\nsubdir/foo.dep 1\n")
+test.fail_test(test.read('f3.out') != "f3.in\nsubdir/bar.dep 1\n")
+test.fail_test(test.read('subdir', 'f4.out') !=
+ "subdir/f4.in\nsubdir/bar.dep 1\n")
+
+test.write(['subdir', 'foo.dep'], "subdir/foo.dep 2\n")
+
+test.write(['subdir', 'bar.dep'], "subdir/bar.dep 2\n")
+
+test.run(arguments = '.')
+
+test.fail_test(test.read('f1.out') != "f1.in\nsubdir/foo.dep 2\n")
+test.fail_test(test.read('f2.out') != "f2.in\nsubdir/foo.dep 2\n")
+test.fail_test(test.read('f3.out') != "f3.in\nsubdir/bar.dep 2\n")
+test.fail_test(test.read('subdir', 'f4.out') !=
+ "subdir/f4.in\nsubdir/bar.dep 2\n")
+
+test.write(['subdir', 'bar.dep'], "subdir/bar.dep 3\n")
+
+test.run(arguments = '.')
+
+test.fail_test(test.read('f1.out') != "f1.in\nsubdir/foo.dep 2\n")
+test.fail_test(test.read('f2.out') != "f2.in\nsubdir/foo.dep 2\n")
+test.fail_test(test.read('f3.out') != "f3.in\nsubdir/bar.dep 2\n")
+test.fail_test(test.read('subdir', 'f4.out') !=
+ "subdir/f4.in\nsubdir/bar.dep 3\n")
+
+test.pass_test()