Mercurial > hgbook
annotate en/examples/run-example @ 146:65f6f9d18fa1
Oops! I forgot that I need the undoctored output files in the book!
Now they're named "*.lxo", instead of "*.out". Ugh.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Tue, 06 Mar 2007 21:55:48 -0800 |
parents | d9f332f85673 |
children | e7f48702d409 |
rev | line source |
---|---|
67
a2f0b010d6e3
Don't assume that python is in /usr/bin.
Bryan O'Sullivan <bos@serpentine.com>
parents:
45
diff
changeset
|
1 #!/usr/bin/env python |
4
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
2 # |
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
3 # This program takes something that resembles a shell script and runs |
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
4 # it, spitting input (commands from the script) and output into text |
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
5 # files, for use in examples. |
3
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
6 |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
7 import cStringIO |
73
9604dd885616
Fix run-example script on Debian.
Bryan O'Sullivan <bos@serpentine.com>
parents:
72
diff
changeset
|
8 import errno |
78
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
9 import getopt |
3
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
10 import os |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
11 import pty |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
12 import re |
79
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
13 import select |
4
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
14 import shutil |
6
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
15 import signal |
36
5cee64874312
Require examples to be executable, so it's easier to see them with "ls".
Bryan O'Sullivan <bos@serpentine.com>
parents:
24
diff
changeset
|
16 import stat |
3
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
17 import sys |
4
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
18 import tempfile |
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
19 import time |
3
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
20 |
77
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
21 tex_subs = { |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
22 '\\': '\\textbackslash{}', |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
23 '{': '\\{', |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
24 '}': '\\}', |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
25 } |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
26 |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
27 def gensubs(s): |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
28 start = 0 |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
29 for i, c in enumerate(s): |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
30 sub = tex_subs.get(c) |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
31 if sub: |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
32 yield s[start:i] |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
33 start = i + 1 |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
34 yield sub |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
35 yield s[start:] |
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
36 |
4
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
37 def tex_escape(s): |
77
773f4a9e7975
Fix escaping of backslashes. Finally!
Bryan O'Sullivan <bos@serpentine.com>
parents:
75
diff
changeset
|
38 return ''.join(gensubs(s)) |
4
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
39 |
137
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
40 def maybe_unlink(name): |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
41 try: |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
42 os.unlink(name) |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
43 return True |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
44 except OSError, err: |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
45 if err.errno != errno.ENOENT: |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
46 raise |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
47 return False |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
48 |
3
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
49 class example: |
70
365b41b6a15e
bash is not necessarily in /bin.
Bryan O'Sullivan <bos@serpentine.com>
parents:
68
diff
changeset
|
50 shell = '/usr/bin/env bash' |
103 | 51 ps1 = '__run_example_ps1__ ' |
52 ps2 = '__run_example_ps2__ ' | |
137
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
53 pi_re = re.compile(r'#\$\s*(name|ignore):\s*(.*)$') |
4
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
54 |
79
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
55 timeout = 5 |
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
56 |
78
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
57 def __init__(self, name, verbose): |
3
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
58 self.name = name |
78
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
59 self.verbose = verbose |
79
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
60 self.poll = select.poll() |
3
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
61 |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
62 def parse(self): |
4
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
63 '''yield each hunk of input from the file.''' |
3
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
64 fp = open(self.name) |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
65 cfp = cStringIO.StringIO() |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
66 for line in fp: |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
67 cfp.write(line) |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
68 if not line.rstrip().endswith('\\'): |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
69 yield cfp.getvalue() |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
70 cfp.seek(0) |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
71 cfp.truncate() |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
72 |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
73 def status(self, s): |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
74 sys.stdout.write(s) |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
75 if not s.endswith('\n'): |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
76 sys.stdout.flush() |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
77 |
6
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
78 def send(self, s): |
78
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
79 if self.verbose: |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
80 print >> sys.stderr, '>', self.debugrepr(s) |
73
9604dd885616
Fix run-example script on Debian.
Bryan O'Sullivan <bos@serpentine.com>
parents:
72
diff
changeset
|
81 while s: |
9604dd885616
Fix run-example script on Debian.
Bryan O'Sullivan <bos@serpentine.com>
parents:
72
diff
changeset
|
82 count = os.write(self.cfd, s) |
9604dd885616
Fix run-example script on Debian.
Bryan O'Sullivan <bos@serpentine.com>
parents:
72
diff
changeset
|
83 s = s[count:] |
6
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
84 |
78
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
85 def debugrepr(self, s): |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
86 rs = repr(s) |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
87 limit = 60 |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
88 if len(rs) > limit: |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
89 return ('%s%s ... [%d bytes]' % (rs[:limit], rs[0], len(s))) |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
90 else: |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
91 return rs |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
92 |
79
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
93 timeout = 5 |
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
94 |
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
95 def read(self): |
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
96 events = self.poll.poll(self.timeout * 1000) |
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
97 if not events: |
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
98 print >> sys.stderr, '[timed out after %d seconds]' % self.timeout |
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
99 os.kill(self.pid, signal.SIGHUP) |
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
100 return '' |
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
101 return os.read(self.cfd, 1024) |
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
102 |
6
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
103 def receive(self): |
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
104 out = cStringIO.StringIO() |
4
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
105 while True: |
73
9604dd885616
Fix run-example script on Debian.
Bryan O'Sullivan <bos@serpentine.com>
parents:
72
diff
changeset
|
106 try: |
78
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
107 if self.verbose: |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
108 sys.stderr.write('< ') |
79
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
109 s = self.read() |
73
9604dd885616
Fix run-example script on Debian.
Bryan O'Sullivan <bos@serpentine.com>
parents:
72
diff
changeset
|
110 except OSError, err: |
9604dd885616
Fix run-example script on Debian.
Bryan O'Sullivan <bos@serpentine.com>
parents:
72
diff
changeset
|
111 if err.errno == errno.EIO: |
103 | 112 return '', '' |
73
9604dd885616
Fix run-example script on Debian.
Bryan O'Sullivan <bos@serpentine.com>
parents:
72
diff
changeset
|
113 raise |
78
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
114 if self.verbose: |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
115 print >> sys.stderr, self.debugrepr(s) |
6
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
116 out.write(s) |
73
9604dd885616
Fix run-example script on Debian.
Bryan O'Sullivan <bos@serpentine.com>
parents:
72
diff
changeset
|
117 s = out.getvalue() |
103 | 118 if s.endswith(self.ps1): |
119 return self.ps1, s.replace('\r\n', '\n')[:-len(self.ps1)] | |
120 if s.endswith(self.ps2): | |
121 return self.ps2, s.replace('\r\n', '\n')[:-len(self.ps2)] | |
4
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
122 |
6
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
123 def sendreceive(self, s): |
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
124 self.send(s) |
103 | 125 ps, r = self.receive() |
6
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
126 if r.startswith(s): |
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
127 r = r[len(s):] |
103 | 128 return ps, r |
6
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
129 |
3
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
130 def run(self): |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
131 ofp = None |
4
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
132 basename = os.path.basename(self.name) |
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
133 self.status('running %s ' % basename) |
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
134 tmpdir = tempfile.mkdtemp(prefix=basename) |
78
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
135 |
136
7b5894fffc37
Don't falsely signal success to make.
Bryan O'Sullivan <bos@serpentine.com>
parents:
124
diff
changeset
|
136 # remove the marker file that we tell make to use to see if |
7b5894fffc37
Don't falsely signal success to make.
Bryan O'Sullivan <bos@serpentine.com>
parents:
124
diff
changeset
|
137 # this run succeeded |
137
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
138 maybe_unlink(self.name + '.run') |
136
7b5894fffc37
Don't falsely signal success to make.
Bryan O'Sullivan <bos@serpentine.com>
parents:
124
diff
changeset
|
139 |
78
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
140 rcfile = os.path.join(tmpdir, '.hgrc') |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
141 rcfp = open(rcfile, 'w') |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
142 print >> rcfp, '[ui]' |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
143 print >> rcfp, "username = Bryan O'Sullivan <bos@serpentine.com>" |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
144 |
6
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
145 rcfile = os.path.join(tmpdir, '.bashrc') |
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
146 rcfp = open(rcfile, 'w') |
103 | 147 print >> rcfp, 'PS1="%s"' % self.ps1 |
148 print >> rcfp, 'PS2="%s"' % self.ps2 | |
6
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
149 print >> rcfp, 'unset HISTFILE' |
19
187702df428b
Piles of new content for MQ chapter - cookbook stuff.
Bryan O'Sullivan <bos@serpentine.com>
parents:
6
diff
changeset
|
150 print >> rcfp, 'export EXAMPLE_DIR="%s"' % os.getcwd() |
124
c9aad709bd3a
Document the backout command.
Bryan O'Sullivan <bos@serpentine.com>
parents:
103
diff
changeset
|
151 print >> rcfp, 'export HGMERGE=merge' |
6
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
152 print >> rcfp, 'export LANG=C' |
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
153 print >> rcfp, 'export LC_ALL=C' |
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
154 print >> rcfp, 'export TZ=GMT' |
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
155 print >> rcfp, 'export HGRC="%s/.hgrc"' % tmpdir |
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
156 print >> rcfp, 'export HGRCPATH=$HGRC' |
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
157 print >> rcfp, 'cd %s' % tmpdir |
69d90ab9fd80
Really run example command sequences under a single shell.
Bryan O'Sullivan <bos@serpentine.com>
parents:
4
diff
changeset
|
158 rcfp.close() |
68
c574ce277a2b
Mostly random attempt to see if fiddling with the child will help the parent.
Bryan O'Sullivan <bos@serpentine.com>
parents:
67
diff
changeset
|
159 sys.stdout.flush() |
c574ce277a2b
Mostly random attempt to see if fiddling with the child will help the parent.
Bryan O'Sullivan <bos@serpentine.com>
parents:
67
diff
changeset
|
160 sys.stderr.flush() |
79
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
161 self.pid, self.cfd = pty.fork() |
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
162 if self.pid == 0: |
70
365b41b6a15e
bash is not necessarily in /bin.
Bryan O'Sullivan <bos@serpentine.com>
parents:
68
diff
changeset
|
163 cmdline = ['/usr/bin/env', 'bash', '--noediting', '--noprofile', |
365b41b6a15e
bash is not necessarily in /bin.
Bryan O'Sullivan <bos@serpentine.com>
parents:
68
diff
changeset
|
164 '--norc'] |
68
c574ce277a2b
Mostly random attempt to see if fiddling with the child will help the parent.
Bryan O'Sullivan <bos@serpentine.com>
parents:
67
diff
changeset
|
165 try: |
c574ce277a2b
Mostly random attempt to see if fiddling with the child will help the parent.
Bryan O'Sullivan <bos@serpentine.com>
parents:
67
diff
changeset
|
166 os.execv(cmdline[0], cmdline) |
c574ce277a2b
Mostly random attempt to see if fiddling with the child will help the parent.
Bryan O'Sullivan <bos@serpentine.com>
parents:
67
diff
changeset
|
167 except OSError, err: |
c574ce277a2b
Mostly random attempt to see if fiddling with the child will help the parent.
Bryan O'Sullivan <bos@serpentine.com>
parents:
67
diff
changeset
|
168 print >> sys.stderr, '%s: %s' % (cmdline[0], err.strerror) |
c574ce277a2b
Mostly random attempt to see if fiddling with the child will help the parent.
Bryan O'Sullivan <bos@serpentine.com>
parents:
67
diff
changeset
|
169 sys.stderr.flush() |
c574ce277a2b
Mostly random attempt to see if fiddling with the child will help the parent.
Bryan O'Sullivan <bos@serpentine.com>
parents:
67
diff
changeset
|
170 os._exit(0) |
79
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
171 self.poll.register(self.cfd, select.POLLIN | select.POLLERR | |
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
172 select.POLLHUP) |
103 | 173 |
174 prompts = { | |
175 '': '', | |
176 self.ps1: '$', | |
177 self.ps2: '>', | |
178 } | |
179 | |
137
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
180 ignore = [ |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
181 r'\d+:[0-9a-f]{12}', # changeset number:hash |
141
627effec9d4e
More attempts to tidy up regexps for ignoring.
Bryan O'Sullivan <bos@serpentine.com>
parents:
138
diff
changeset
|
182 r'[0-9a-f]{40}', # long changeset hash |
627effec9d4e
More attempts to tidy up regexps for ignoring.
Bryan O'Sullivan <bos@serpentine.com>
parents:
138
diff
changeset
|
183 r'[0-9a-f]{12}', # short changeset hash |
137
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
184 r'^(?:---|\+\+\+) .*', # diff header with dates |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
185 r'^date:.*', # date |
141
627effec9d4e
More attempts to tidy up regexps for ignoring.
Bryan O'Sullivan <bos@serpentine.com>
parents:
138
diff
changeset
|
186 #r'^diff -r.*', # "diff -r" is followed by hash |
138
d374685eb7fa
Handle a few more common regexps. Clean up on exit nicely.
Bryan O'Sullivan <bos@serpentine.com>
parents:
137
diff
changeset
|
187 r'^# Date \d+ \d+', # hg patch header |
137
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
188 ] |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
189 |
138
d374685eb7fa
Handle a few more common regexps. Clean up on exit nicely.
Bryan O'Sullivan <bos@serpentine.com>
parents:
137
diff
changeset
|
190 err = False |
d374685eb7fa
Handle a few more common regexps. Clean up on exit nicely.
Bryan O'Sullivan <bos@serpentine.com>
parents:
137
diff
changeset
|
191 |
4
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
192 try: |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
193 try: |
73
9604dd885616
Fix run-example script on Debian.
Bryan O'Sullivan <bos@serpentine.com>
parents:
72
diff
changeset
|
194 # eat first prompt string from shell |
79
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
195 self.read() |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
196 # setup env and prompt |
103 | 197 ps, output = self.sendreceive('source %s\n' % rcfile) |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
198 for hunk in self.parse(): |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
199 # is this line a processing instruction? |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
200 m = self.pi_re.match(hunk) |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
201 if m: |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
202 pi, rest = m.groups() |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
203 if pi == 'name': |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
204 self.status('.') |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
205 out = rest |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
206 assert os.sep not in out |
137
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
207 if ofp is not None: |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
208 ofp.close() |
138
d374685eb7fa
Handle a few more common regexps. Clean up on exit nicely.
Bryan O'Sullivan <bos@serpentine.com>
parents:
137
diff
changeset
|
209 err = self.rename_output(ofp_basename, ignore) |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
210 if out: |
137
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
211 ofp_basename = '%s.%s' % (self.name, out) |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
212 ofp = open(ofp_basename + '.tmp', 'w') |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
213 else: |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
214 ofp = None |
137
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
215 elif pi == 'ignore': |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
216 ignore.append(rest) |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
217 elif hunk.strip(): |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
218 # it's something we should execute |
103 | 219 newps, output = self.sendreceive(hunk) |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
220 if not ofp: |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
221 continue |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
222 # first, print the command we ran |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
223 if not hunk.startswith('#'): |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
224 nl = hunk.endswith('\n') |
103 | 225 hunk = ('%s \\textbf{%s}' % |
226 (prompts[ps], | |
227 tex_escape(hunk.rstrip('\n')))) | |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
228 if nl: hunk += '\n' |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
229 ofp.write(hunk) |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
230 # then its output |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
231 ofp.write(tex_escape(output)) |
103 | 232 ps = newps |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
233 self.status('\n') |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
234 except: |
72
12df31afb4e1
Propagate exceptions more correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
71
diff
changeset
|
235 print >> sys.stderr, '(killed)' |
79
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
236 os.kill(self.pid, signal.SIGKILL) |
72
12df31afb4e1
Propagate exceptions more correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
71
diff
changeset
|
237 pid, rc = os.wait() |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
238 raise |
72
12df31afb4e1
Propagate exceptions more correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
71
diff
changeset
|
239 else: |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
240 try: |
103 | 241 ps, output = self.sendreceive('exit\n') |
138
d374685eb7fa
Handle a few more common regexps. Clean up on exit nicely.
Bryan O'Sullivan <bos@serpentine.com>
parents:
137
diff
changeset
|
242 if ofp is not None: |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
243 ofp.write(output) |
138
d374685eb7fa
Handle a few more common regexps. Clean up on exit nicely.
Bryan O'Sullivan <bos@serpentine.com>
parents:
137
diff
changeset
|
244 ofp.close() |
d374685eb7fa
Handle a few more common regexps. Clean up on exit nicely.
Bryan O'Sullivan <bos@serpentine.com>
parents:
137
diff
changeset
|
245 err = self.rename_output(ofp_basename, ignore) |
73
9604dd885616
Fix run-example script on Debian.
Bryan O'Sullivan <bos@serpentine.com>
parents:
72
diff
changeset
|
246 os.close(self.cfd) |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
247 except IOError: |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
248 pass |
79
53427f786a0f
Make run-example time out if shell seems to get stuck.
Bryan O'Sullivan <bos@serpentine.com>
parents:
78
diff
changeset
|
249 os.kill(self.pid, signal.SIGTERM) |
72
12df31afb4e1
Propagate exceptions more correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
71
diff
changeset
|
250 pid, rc = os.wait() |
12df31afb4e1
Propagate exceptions more correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
71
diff
changeset
|
251 if rc: |
12df31afb4e1
Propagate exceptions more correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
71
diff
changeset
|
252 if os.WIFEXITED(rc): |
12df31afb4e1
Propagate exceptions more correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
71
diff
changeset
|
253 print >> sys.stderr, '(exit %s)' % os.WEXITSTATUS(rc) |
12df31afb4e1
Propagate exceptions more correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
71
diff
changeset
|
254 elif os.WIFSIGNALED(rc): |
12df31afb4e1
Propagate exceptions more correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
71
diff
changeset
|
255 print >> sys.stderr, '(signal %s)' % os.WTERMSIG(rc) |
136
7b5894fffc37
Don't falsely signal success to make.
Bryan O'Sullivan <bos@serpentine.com>
parents:
124
diff
changeset
|
256 else: |
7b5894fffc37
Don't falsely signal success to make.
Bryan O'Sullivan <bos@serpentine.com>
parents:
124
diff
changeset
|
257 open(self.name + '.run', 'w') |
138
d374685eb7fa
Handle a few more common regexps. Clean up on exit nicely.
Bryan O'Sullivan <bos@serpentine.com>
parents:
137
diff
changeset
|
258 return rc or err |
72
12df31afb4e1
Propagate exceptions more correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
71
diff
changeset
|
259 finally: |
4
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
260 shutil.rmtree(tmpdir) |
3
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
261 |
137
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
262 def rename_output(self, base, ignore): |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
263 mangle_re = re.compile('(?:' + '|'.join(ignore) + ')') |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
264 def mangle(s): |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
265 return mangle_re.sub('', s) |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
266 def matchfp(fp1, fp2): |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
267 while True: |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
268 s1 = mangle(fp1.readline()) |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
269 s2 = mangle(fp2.readline()) |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
270 if cmp(s1, s2): |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
271 break |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
272 if not s1: |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
273 return True |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
274 return False |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
275 |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
276 oldname = base + '.out' |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
277 tmpname = base + '.tmp' |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
278 errname = base + '.err' |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
279 errfp = open(errname, 'w+') |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
280 for line in open(tmpname): |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
281 errfp.write(mangle_re.sub('', line)) |
146
65f6f9d18fa1
Oops! I forgot that I need the undoctored output files in the book!
Bryan O'Sullivan <bos@serpentine.com>
parents:
142
diff
changeset
|
282 os.rename(tmpname, base + '.lxo') |
137
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
283 errfp.seek(0) |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
284 try: |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
285 oldfp = open(oldname) |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
286 except IOError, err: |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
287 if err.errno != errno.ENOENT: |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
288 raise |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
289 os.rename(errname, oldname) |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
290 return |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
291 if matchfp(oldfp, errfp): |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
292 os.unlink(errname) |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
293 else: |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
294 print >> sys.stderr, '\nOutput of %s has changed!' % base |
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
295 os.system('diff -u %s %s 1>&2' % (oldname, errname)) |
138
d374685eb7fa
Handle a few more common regexps. Clean up on exit nicely.
Bryan O'Sullivan <bos@serpentine.com>
parents:
137
diff
changeset
|
296 return True |
137
9d7dffe74b2c
Save "good" example output so we can see if something has broken.
Bryan O'Sullivan <bos@serpentine.com>
parents:
136
diff
changeset
|
297 |
3
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
298 def main(path='.'): |
78
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
299 opts, args = getopt.getopt(sys.argv[1:], 'v', ['verbose']) |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
300 verbose = False |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
301 for o, a in opts: |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
302 if o in ('-v', '--verbose'): |
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
303 verbose = True |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
304 errs = 0 |
3
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
305 if args: |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
306 for a in args: |
75
2bfa2499e971
Make run-example print better error messages when things go wrong.
Bryan O'Sullivan <bos@serpentine.com>
parents:
73
diff
changeset
|
307 try: |
2bfa2499e971
Make run-example print better error messages when things go wrong.
Bryan O'Sullivan <bos@serpentine.com>
parents:
73
diff
changeset
|
308 st = os.lstat(a) |
2bfa2499e971
Make run-example print better error messages when things go wrong.
Bryan O'Sullivan <bos@serpentine.com>
parents:
73
diff
changeset
|
309 except OSError, err: |
2bfa2499e971
Make run-example print better error messages when things go wrong.
Bryan O'Sullivan <bos@serpentine.com>
parents:
73
diff
changeset
|
310 print >> sys.stderr, '%s: %s' % (a, err.strerror) |
2bfa2499e971
Make run-example print better error messages when things go wrong.
Bryan O'Sullivan <bos@serpentine.com>
parents:
73
diff
changeset
|
311 errs += 1 |
2bfa2499e971
Make run-example print better error messages when things go wrong.
Bryan O'Sullivan <bos@serpentine.com>
parents:
73
diff
changeset
|
312 continue |
2bfa2499e971
Make run-example print better error messages when things go wrong.
Bryan O'Sullivan <bos@serpentine.com>
parents:
73
diff
changeset
|
313 if stat.S_ISREG(st.st_mode) and st.st_mode & 0111: |
78
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
314 if example(a, verbose).run(): |
75
2bfa2499e971
Make run-example print better error messages when things go wrong.
Bryan O'Sullivan <bos@serpentine.com>
parents:
73
diff
changeset
|
315 errs += 1 |
2bfa2499e971
Make run-example print better error messages when things go wrong.
Bryan O'Sullivan <bos@serpentine.com>
parents:
73
diff
changeset
|
316 else: |
2bfa2499e971
Make run-example print better error messages when things go wrong.
Bryan O'Sullivan <bos@serpentine.com>
parents:
73
diff
changeset
|
317 print >> sys.stderr, '%s: not a file, or not executable' % a |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
318 errs += 1 |
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
319 return errs |
3
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
320 for name in os.listdir(path): |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
321 if name == 'run-example' or name.startswith('.'): continue |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
322 if name.endswith('.out') or name.endswith('~'): continue |
45
6b7b0339e7d6
Don't rerun examples unnecessarily.
Bryan O'Sullivan <bos@serpentine.com>
parents:
36
diff
changeset
|
323 if name.endswith('.run'): continue |
19
187702df428b
Piles of new content for MQ chapter - cookbook stuff.
Bryan O'Sullivan <bos@serpentine.com>
parents:
6
diff
changeset
|
324 pathname = os.path.join(path, name) |
142
d9f332f85673
Handle YA corner case.
Bryan O'Sullivan <bos@serpentine.com>
parents:
141
diff
changeset
|
325 try: |
d9f332f85673
Handle YA corner case.
Bryan O'Sullivan <bos@serpentine.com>
parents:
141
diff
changeset
|
326 st = os.lstat(pathname) |
d9f332f85673
Handle YA corner case.
Bryan O'Sullivan <bos@serpentine.com>
parents:
141
diff
changeset
|
327 except OSError, err: |
d9f332f85673
Handle YA corner case.
Bryan O'Sullivan <bos@serpentine.com>
parents:
141
diff
changeset
|
328 # could be an output file that was removed while we ran |
d9f332f85673
Handle YA corner case.
Bryan O'Sullivan <bos@serpentine.com>
parents:
141
diff
changeset
|
329 if err.errno != errno.ENOENT: |
d9f332f85673
Handle YA corner case.
Bryan O'Sullivan <bos@serpentine.com>
parents:
141
diff
changeset
|
330 raise |
d9f332f85673
Handle YA corner case.
Bryan O'Sullivan <bos@serpentine.com>
parents:
141
diff
changeset
|
331 continue |
36
5cee64874312
Require examples to be executable, so it's easier to see them with "ls".
Bryan O'Sullivan <bos@serpentine.com>
parents:
24
diff
changeset
|
332 if stat.S_ISREG(st.st_mode) and st.st_mode & 0111: |
78
a893de25bc24
Add -v option to run-example, to assist with debugging example scripts.
Bryan O'Sullivan <bos@serpentine.com>
parents:
77
diff
changeset
|
333 if example(pathname, verbose).run(): |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
334 errs += 1 |
4
33a2e7b9978d
Make it possible to include example input and output from real programs.
Bryan O'Sullivan <bos@serpentine.com>
parents:
3
diff
changeset
|
335 print >> open(os.path.join(path, '.run'), 'w'), time.asctime() |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
336 return errs |
3
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
337 |
906d9021f9e5
Making progress on autogenerated example output.
Bryan O'Sullivan <bos@serpentine.com>
parents:
diff
changeset
|
338 if __name__ == '__main__': |
71
ddf533d41c09
Propagate errors correctly.
Bryan O'Sullivan <bos@serpentine.com>
parents:
70
diff
changeset
|
339 sys.exit(main()) |