Merged revisions 1582-1665 via svnmerge from
[scons.git] / test / srcchange.py
1 #!/usr/bin/env python
2 #
3 # __COPYRIGHT__
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
17 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
18 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 #
24
25 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
26
27 """
28 Test changing the C source files based on an always-executed revision
29 extraction and substitution.
30 """
31
32 import os.path
33
34 import TestSCons
35
36 _python_ = TestSCons._python_
37
38 test = TestSCons.TestSCons()
39
40 test.write('getrevision', """
41 #!/usr/bin/env python
42 import string
43 print string.strip(open('revnum.in','rb').read())
44 """)
45
46 test.write('SConstruct', """
47 import re
48 import string
49
50 def subrevision(target, source ,env):
51     orig = target[0].get_contents()
52     new = re.sub('\$REV.*?\$',
53                  '$REV: %%s$'%%string.strip(source[0].get_contents()),
54                  target[0].get_contents())
55     outf = open(str(target[0]),'wb')
56     outf.write(new)
57     outf.close()
58
59 SubRevision = Action(subrevision)
60
61 env=Environment()
62 content_env=env.Copy()
63 content_env.TargetSignatures('content')
64 content_env.Command('revision.in', [], '%(_python_)s getrevision > $TARGET')
65 content_env.AlwaysBuild('revision.in')
66 env.Precious('main.c')
67 env.Command('main.c', 'revision.in', SubRevision)
68 exe = env.Program('main.c')
69 env.Default(exe)
70 """ % locals())
71
72 test.write('main.c', """\
73 #include <stdio.h>
74 #include <stdlib.h>
75 #include <stdio.h>
76 int
77 main(int argc, char *argv[])
78 {
79     printf("Revision $REV$\\n");
80     exit (0);
81 }
82 """)
83
84 test.write('revnum.in', '3.2\n')
85
86 prog = 'main' + TestSCons._exe
87
88 light_build=test.wrap_stdout("""\
89 %(_python_)s getrevision > revision.in
90 """ % locals())
91
92 test.run(arguments='.')
93 test.must_exist(prog)
94 test.run(program=test.workpath(prog), stdout='Revision $REV: 3.2$\n')
95
96 test.run(arguments='.', stdout=light_build)
97 test.must_exist(prog)
98
99 test.run(arguments='.', stdout=light_build)
100 test.must_exist(prog)
101
102 test.write('revnum.in', '3.3\n')
103
104 test.run(arguments='.')
105 test.must_exist(prog)
106 test.run(program=test.workpath(prog), stdout='Revision $REV: 3.3$\n')
107
108 test.pass_test()