diff options
author | Steven Knight <knight@baldmt.com> | 2004-11-21 21:14:41 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2004-11-21 21:14:41 (GMT) |
commit | 9ee53a60a770d6f5a33624405d35ad4063378367 (patch) | |
tree | 361012066ed284ecad1482552d177f86a0cd664d /test/Java/JAR.py | |
parent | 07c75889f874a050aff782d1488d0269fb936744 (diff) | |
download | SCons-9ee53a60a770d6f5a33624405d35ad4063378367.zip SCons-9ee53a60a770d6f5a33624405d35ad4063378367.tar.gz SCons-9ee53a60a770d6f5a33624405d35ad4063378367.tar.bz2 |
More command-line output customizability: , , , .
Diffstat (limited to 'test/Java/JAR.py')
-rw-r--r-- | test/Java/JAR.py | 266 |
1 files changed, 266 insertions, 0 deletions
diff --git a/test/Java/JAR.py b/test/Java/JAR.py new file mode 100644 index 0000000..ea51213 --- /dev/null +++ b/test/Java/JAR.py @@ -0,0 +1,266 @@ +#!/usr/bin/env python +# +# __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 os +import string +import sys +import TestSCons + +python = TestSCons.python + +test = TestSCons.TestSCons() + +test.write('myjar.py', r""" +import sys +args = sys.argv[1:] +while args: + a = args[0] + if a == 'cf': + out = args[1] + args = args[1:] + else: + break + args = args[1:] +outfile = open(out, 'wb') +for file in args: + infile = open(file, 'rb') + for l in infile.readlines(): + if l[:7] != '/*jar*/': + outfile.write(l) +sys.exit(0) +""") + +test.write('SConstruct', """ +env = Environment(tools = ['jar'], + JAR = r'%s myjar.py') +env.Jar(target = 'test1.jar', source = 'test1.class') +""" % (python)) + +test.write('test1.class', """\ +test1.class +/*jar*/ +line 3 +""") + +test.run(arguments = '.', stderr = None) + +test.must_match('test1.jar', "test1.class\nline 3\n") + +if os.path.normcase('.class') == os.path.normcase('.CLASS'): + + test.write('SConstruct', """ +env = Environment(tools = ['jar'], + JAR = r'%s myjar.py') +env.Jar(target = 'test2.jar', source = 'test2.CLASS') +""" % (python)) + + test.write('test2.CLASS', """\ +test2.CLASS +/*jar*/ +line 3 +""") + + test.run(arguments = '.', stderr = None) + + test.must_match('test2.jar', "test2.CLASS\nline 3\n") + +test.write('myjar2.py', r""" +import sys +import string +f=open(sys.argv[2], 'wb') +f.write(string.join(sys.argv[1:])) +f.write("\n") +f.close() +sys.exit(0) +""") + +test.write('SConstruct', """ +env = Environment(tools = ['jar'], + JAR = r'%s myjar2.py', + JARFLAGS='cvf') +env.Jar(target = 'classes.jar', source = [ 'testdir/bar.class', + 'foo.mf' ], + TESTDIR='testdir', + JARCHDIR='$TESTDIR') +""" % (python)) + +test.subdir('testdir') +test.write([ 'testdir', 'bar.class' ], 'foo') +test.write('foo.mf', + """Manifest-Version : 1.0 + blah + blah + blah + """) +test.run(arguments='classes.jar') +test.must_match('classes.jar', + 'cvfm classes.jar foo.mf -C testdir bar.class\n') + +if test.detect_tool('javac'): + where_javac = test.detect('JAVAC', 'javac') +else: + import SCons.Environment + env = SCons.Environment.Environment() + where_javac = env.WhereIs('javac', os.environ['PATH']) + if not where_javac: + where_javac = env.WhereIs('javac', '/usr/local/j2sdk1.3.1/bin') + if not where_javac: + print "Could not find Java javac, skipping test(s)." + test.pass_test(1) + +if test.detect_tool('jar'): + where_jar = test.detect('JAR', 'jar') +else: + import SCons.Environment + env = SCons.Environment.Environment() + where_jar = env.WhereIs('jar', os.environ['PATH']) + if not where_jar: + where_jar = env.WhereIs('jar', '/usr/local/j2sdk1.3.1/bin') + if not where_jar: + print "Could not find Java jar, skipping test(s)." + test.pass_test(1) + + +test.write("wrapper.py", """\ +import os +import string +import sys +open('%s', 'ab').write("wrapper.py %%s\\n" %% string.join(sys.argv[1:])) +os.system(string.join(sys.argv[1:], " ")) +""" % string.replace(test.workpath('wrapper.out'), '\\', '\\\\')) + +test.write('SConstruct', """ +foo = Environment(tools = ['javac', 'jar'], + JAVAC = '%(where_javac)s', + JAR = '%(where_jar)s') +jar = foo.Dictionary('JAR') +bar = foo.Copy(JAR = r'%(python)s wrapper.py ' + jar) +foo.Java(target = 'classes', source = 'com/sub/foo') +bar.Java(target = 'classes', source = 'com/sub/bar') +foo.Jar(target = 'foo', source = 'classes/com/sub/foo') +bar.Jar(target = 'bar', source = 'classes/com/sub/bar') +""" % locals()) + +test.subdir('com', + ['com', 'sub'], + ['com', 'sub', 'foo'], + ['com', 'sub', 'bar']) + +test.write(['com', 'sub', 'foo', 'Example1.java'], """\ +package com.sub.foo; + +public class Example1 +{ + + public static void main(String[] args) + { + + } + +} +""") + +test.write(['com', 'sub', 'foo', 'Example2.java'], """\ +package com.sub.foo; + +public class Example2 +{ + + public static void main(String[] args) + { + + } + +} +""") + +test.write(['com', 'sub', 'foo', 'Example3.java'], """\ +package com.sub.foo; + +public class Example3 +{ + + public static void main(String[] args) + { + + } + +} +""") + +test.write(['com', 'sub', 'bar', 'Example4.java'], """\ +package com.sub.bar; + +public class Example4 +{ + + public static void main(String[] args) + { + + } + +} +""") + +test.write(['com', 'sub', 'bar', 'Example5.java'], """\ +package com.sub.bar; + +public class Example5 +{ + + public static void main(String[] args) + { + + } + +} +""") + +test.write(['com', 'sub', 'bar', 'Example6.java'], """\ +package com.sub.bar; + +public class Example6 +{ + + public static void main(String[] args) + { + + } + +} +""") + +test.run(arguments = '.') + +test.must_match('wrapper.out', + "wrapper.py %(where_jar)s cf bar.jar classes/com/sub/bar\n" % locals()) + +test.must_exist('foo.jar') +test.must_exist('bar.jar') + +test.up_to_date(arguments = '.') + +test.pass_test() |