Show More
@@ -1,239 +1,229 b'' | |||||
1 | # blackbox.py - log repository events to a file for post-mortem debugging |
|
1 | # blackbox.py - log repository events to a file for post-mortem debugging | |
2 | # |
|
2 | # | |
3 | # Copyright 2010 Nicolas Dumazet |
|
3 | # Copyright 2010 Nicolas Dumazet | |
4 | # Copyright 2013 Facebook, Inc. |
|
4 | # Copyright 2013 Facebook, Inc. | |
5 | # |
|
5 | # | |
6 | # This software may be used and distributed according to the terms of the |
|
6 | # This software may be used and distributed according to the terms of the | |
7 | # GNU General Public License version 2 or any later version. |
|
7 | # GNU General Public License version 2 or any later version. | |
8 |
|
8 | |||
9 | """log repository events to a blackbox for debugging |
|
9 | """log repository events to a blackbox for debugging | |
10 |
|
10 | |||
11 | Logs event information to .hg/blackbox.log to help debug and diagnose problems. |
|
11 | Logs event information to .hg/blackbox.log to help debug and diagnose problems. | |
12 | The events that get logged can be configured via the blackbox.track config key. |
|
12 | The events that get logged can be configured via the blackbox.track config key. | |
13 |
|
13 | |||
14 | Examples:: |
|
14 | Examples:: | |
15 |
|
15 | |||
16 | [blackbox] |
|
16 | [blackbox] | |
17 | track = * |
|
17 | track = * | |
18 | # dirty is *EXPENSIVE* (slow); |
|
18 | # dirty is *EXPENSIVE* (slow); | |
19 | # each log entry indicates `+` if the repository is dirty, like :hg:`id`. |
|
19 | # each log entry indicates `+` if the repository is dirty, like :hg:`id`. | |
20 | dirty = True |
|
20 | dirty = True | |
21 | # record the source of log messages |
|
21 | # record the source of log messages | |
22 | logsource = True |
|
22 | logsource = True | |
23 |
|
23 | |||
24 | [blackbox] |
|
24 | [blackbox] | |
25 | track = command, commandfinish, commandexception, exthook, pythonhook |
|
25 | track = command, commandfinish, commandexception, exthook, pythonhook | |
26 |
|
26 | |||
27 | [blackbox] |
|
27 | [blackbox] | |
28 | track = incoming |
|
28 | track = incoming | |
29 |
|
29 | |||
30 | [blackbox] |
|
30 | [blackbox] | |
31 | # limit the size of a log file |
|
31 | # limit the size of a log file | |
32 | maxsize = 1.5 MB |
|
32 | maxsize = 1.5 MB | |
33 | # rotate up to N log files when the current one gets too big |
|
33 | # rotate up to N log files when the current one gets too big | |
34 | maxfiles = 3 |
|
34 | maxfiles = 3 | |
35 |
|
35 | |||
36 | [blackbox] |
|
36 | [blackbox] | |
37 | # Include nanoseconds in log entries with %f (see Python function |
|
37 | # Include nanoseconds in log entries with %f (see Python function | |
38 | # datetime.datetime.strftime) |
|
38 | # datetime.datetime.strftime) | |
39 | date-format = '%Y-%m-%d @ %H:%M:%S.%f' |
|
39 | date-format = '%Y-%m-%d @ %H:%M:%S.%f' | |
40 |
|
40 | |||
41 | """ |
|
41 | """ | |
42 |
|
42 | |||
43 | from __future__ import absolute_import |
|
43 | from __future__ import absolute_import | |
44 |
|
44 | |||
45 | import errno |
|
45 | import errno | |
46 | import re |
|
46 | import re | |
47 |
|
47 | |||
48 | from mercurial.i18n import _ |
|
48 | from mercurial.i18n import _ | |
49 | from mercurial.node import hex |
|
49 | from mercurial.node import hex | |
50 |
|
50 | |||
51 | from mercurial import ( |
|
51 | from mercurial import ( | |
52 | encoding, |
|
52 | encoding, | |
53 | pycompat, |
|
53 | pycompat, | |
54 | registrar, |
|
54 | registrar, | |
55 | ) |
|
55 | ) | |
56 | from mercurial.utils import ( |
|
56 | from mercurial.utils import ( | |
57 | dateutil, |
|
57 | dateutil, | |
58 | procutil, |
|
58 | procutil, | |
59 | ) |
|
59 | ) | |
60 |
|
60 | |||
61 | # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for |
|
61 | # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for | |
62 | # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should |
|
62 | # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should | |
63 | # be specifying the version(s) of Mercurial they are tested with, or |
|
63 | # be specifying the version(s) of Mercurial they are tested with, or | |
64 | # leave the attribute unspecified. |
|
64 | # leave the attribute unspecified. | |
65 | testedwith = 'ships-with-hg-core' |
|
65 | testedwith = 'ships-with-hg-core' | |
66 |
|
66 | |||
67 | cmdtable = {} |
|
67 | cmdtable = {} | |
68 | command = registrar.command(cmdtable) |
|
68 | command = registrar.command(cmdtable) | |
69 |
|
69 | |||
70 | configtable = {} |
|
70 | configtable = {} | |
71 | configitem = registrar.configitem(configtable) |
|
71 | configitem = registrar.configitem(configtable) | |
72 |
|
72 | |||
73 | configitem('blackbox', 'dirty', |
|
73 | configitem('blackbox', 'dirty', | |
74 | default=False, |
|
74 | default=False, | |
75 | ) |
|
75 | ) | |
76 | configitem('blackbox', 'maxsize', |
|
76 | configitem('blackbox', 'maxsize', | |
77 | default='1 MB', |
|
77 | default='1 MB', | |
78 | ) |
|
78 | ) | |
79 | configitem('blackbox', 'logsource', |
|
79 | configitem('blackbox', 'logsource', | |
80 | default=False, |
|
80 | default=False, | |
81 | ) |
|
81 | ) | |
82 | configitem('blackbox', 'maxfiles', |
|
82 | configitem('blackbox', 'maxfiles', | |
83 | default=7, |
|
83 | default=7, | |
84 | ) |
|
84 | ) | |
85 | configitem('blackbox', 'track', |
|
85 | configitem('blackbox', 'track', | |
86 | default=lambda: ['*'], |
|
86 | default=lambda: ['*'], | |
87 | ) |
|
87 | ) | |
88 | configitem('blackbox', 'date-format', |
|
88 | configitem('blackbox', 'date-format', | |
89 | default='%Y/%m/%d %H:%M:%S', |
|
89 | default='%Y/%m/%d %H:%M:%S', | |
90 | ) |
|
90 | ) | |
91 |
|
91 | |||
92 | def _openlogfile(ui, vfs): |
|
92 | def _openlogfile(ui, vfs): | |
93 | def rotate(oldpath, newpath): |
|
93 | def rotate(oldpath, newpath): | |
94 | try: |
|
94 | try: | |
95 | vfs.unlink(newpath) |
|
95 | vfs.unlink(newpath) | |
96 | except OSError as err: |
|
96 | except OSError as err: | |
97 | if err.errno != errno.ENOENT: |
|
97 | if err.errno != errno.ENOENT: | |
98 | ui.debug("warning: cannot remove '%s': %s\n" % |
|
98 | ui.debug("warning: cannot remove '%s': %s\n" % | |
99 | (newpath, err.strerror)) |
|
99 | (newpath, err.strerror)) | |
100 | try: |
|
100 | try: | |
101 | if newpath: |
|
101 | if newpath: | |
102 | vfs.rename(oldpath, newpath) |
|
102 | vfs.rename(oldpath, newpath) | |
103 | except OSError as err: |
|
103 | except OSError as err: | |
104 | if err.errno != errno.ENOENT: |
|
104 | if err.errno != errno.ENOENT: | |
105 | ui.debug("warning: cannot rename '%s' to '%s': %s\n" % |
|
105 | ui.debug("warning: cannot rename '%s' to '%s': %s\n" % | |
106 | (newpath, oldpath, err.strerror)) |
|
106 | (newpath, oldpath, err.strerror)) | |
107 |
|
107 | |||
108 | maxsize = ui.configbytes('blackbox', 'maxsize') |
|
108 | maxsize = ui.configbytes('blackbox', 'maxsize') | |
109 | name = 'blackbox.log' |
|
109 | name = 'blackbox.log' | |
110 | if maxsize > 0: |
|
110 | if maxsize > 0: | |
111 | try: |
|
111 | try: | |
112 | st = vfs.stat(name) |
|
112 | st = vfs.stat(name) | |
113 | except OSError: |
|
113 | except OSError: | |
114 | pass |
|
114 | pass | |
115 | else: |
|
115 | else: | |
116 | if st.st_size >= maxsize: |
|
116 | if st.st_size >= maxsize: | |
117 | path = vfs.join(name) |
|
117 | path = vfs.join(name) | |
118 | maxfiles = ui.configint('blackbox', 'maxfiles') |
|
118 | maxfiles = ui.configint('blackbox', 'maxfiles') | |
119 | for i in pycompat.xrange(maxfiles - 1, 1, -1): |
|
119 | for i in pycompat.xrange(maxfiles - 1, 1, -1): | |
120 | rotate(oldpath='%s.%d' % (path, i - 1), |
|
120 | rotate(oldpath='%s.%d' % (path, i - 1), | |
121 | newpath='%s.%d' % (path, i)) |
|
121 | newpath='%s.%d' % (path, i)) | |
122 | rotate(oldpath=path, |
|
122 | rotate(oldpath=path, | |
123 | newpath=maxfiles > 0 and path + '.1') |
|
123 | newpath=maxfiles > 0 and path + '.1') | |
124 | return vfs(name, 'a') |
|
124 | return vfs(name, 'a', makeparentdirs=False) | |
125 |
|
125 | |||
126 | class proxylogger(object): |
|
126 | class proxylogger(object): | |
127 | """Forward log events to another logger to be set later""" |
|
127 | """Forward log events to another logger to be set later""" | |
128 |
|
128 | |||
129 | def __init__(self): |
|
129 | def __init__(self): | |
130 | self.logger = None |
|
130 | self.logger = None | |
131 |
|
131 | |||
132 | def tracked(self, event): |
|
132 | def tracked(self, event): | |
133 | return self.logger is not None and self.logger.tracked(event) |
|
133 | return self.logger is not None and self.logger.tracked(event) | |
134 |
|
134 | |||
135 | def log(self, ui, event, msg, opts): |
|
135 | def log(self, ui, event, msg, opts): | |
136 | assert self.logger is not None |
|
136 | assert self.logger is not None | |
137 | self.logger.log(ui, event, msg, opts) |
|
137 | self.logger.log(ui, event, msg, opts) | |
138 |
|
138 | |||
139 | _lastlogger = proxylogger() |
|
139 | _lastlogger = proxylogger() | |
140 |
|
140 | |||
141 | class blackboxlogger(object): |
|
141 | class blackboxlogger(object): | |
142 | def __init__(self, ui, repo): |
|
142 | def __init__(self, ui, repo): | |
143 | self._repo = repo |
|
143 | self._repo = repo | |
144 | self._trackedevents = set(ui.configlist('blackbox', 'track')) |
|
144 | self._trackedevents = set(ui.configlist('blackbox', 'track')) | |
145 |
|
145 | |||
146 | @property |
|
|||
147 | def _bbvfs(self): |
|
|||
148 | vfs = self._repo.vfs |
|
|||
149 | if not vfs.isdir('.'): |
|
|||
150 | vfs = None |
|
|||
151 | return vfs |
|
|||
152 |
|
||||
153 | def tracked(self, event): |
|
146 | def tracked(self, event): | |
154 | return b'*' in self._trackedevents or event in self._trackedevents |
|
147 | return b'*' in self._trackedevents or event in self._trackedevents | |
155 |
|
148 | |||
156 | def log(self, ui, event, msg, opts): |
|
149 | def log(self, ui, event, msg, opts): | |
157 | if self._bbvfs: |
|
|||
158 | _lastlogger.logger = self |
|
|||
159 | else: |
|
|||
160 | return |
|
|||
161 |
|
||||
162 | default = ui.configdate('devel', 'default-date') |
|
150 | default = ui.configdate('devel', 'default-date') | |
163 | date = dateutil.datestr(default, ui.config('blackbox', 'date-format')) |
|
151 | date = dateutil.datestr(default, ui.config('blackbox', 'date-format')) | |
164 | user = procutil.getuser() |
|
152 | user = procutil.getuser() | |
165 | pid = '%d' % procutil.getpid() |
|
153 | pid = '%d' % procutil.getpid() | |
166 | rev = '(unknown)' |
|
154 | rev = '(unknown)' | |
167 | changed = '' |
|
155 | changed = '' | |
168 | ctx = self._repo[None] |
|
156 | ctx = self._repo[None] | |
169 | parents = ctx.parents() |
|
157 | parents = ctx.parents() | |
170 | rev = ('+'.join([hex(p.node()) for p in parents])) |
|
158 | rev = ('+'.join([hex(p.node()) for p in parents])) | |
171 | if (ui.configbool('blackbox', 'dirty') and |
|
159 | if (ui.configbool('blackbox', 'dirty') and | |
172 | ctx.dirty(missing=True, merge=False, branch=False)): |
|
160 | ctx.dirty(missing=True, merge=False, branch=False)): | |
173 | changed = '+' |
|
161 | changed = '+' | |
174 | if ui.configbool('blackbox', 'logsource'): |
|
162 | if ui.configbool('blackbox', 'logsource'): | |
175 | src = ' [%s]' % event |
|
163 | src = ' [%s]' % event | |
176 | else: |
|
164 | else: | |
177 | src = '' |
|
165 | src = '' | |
178 | try: |
|
166 | try: | |
179 | fmt = '%s %s @%s%s (%s)%s> %s' |
|
167 | fmt = '%s %s @%s%s (%s)%s> %s' | |
180 | args = (date, user, rev, changed, pid, src, msg) |
|
168 | args = (date, user, rev, changed, pid, src, msg) | |
181 |
with _openlogfile(ui, self._ |
|
169 | with _openlogfile(ui, self._repo.vfs) as fp: | |
182 | fp.write(fmt % args) |
|
170 | fp.write(fmt % args) | |
183 | except (IOError, OSError) as err: |
|
171 | except (IOError, OSError) as err: | |
184 | # deactivate this to avoid failed logging again |
|
172 | # deactivate this to avoid failed logging again | |
185 | self._trackedevents.clear() |
|
173 | self._trackedevents.clear() | |
186 | ui.debug('warning: cannot write to blackbox.log: %s\n' % |
|
174 | ui.debug('warning: cannot write to blackbox.log: %s\n' % | |
187 | encoding.strtolocal(err.strerror)) |
|
175 | encoding.strtolocal(err.strerror)) | |
|
176 | return | |||
|
177 | _lastlogger.logger = self | |||
188 |
|
178 | |||
189 | def uipopulate(ui): |
|
179 | def uipopulate(ui): | |
190 | ui.setlogger(b'blackbox', _lastlogger) |
|
180 | ui.setlogger(b'blackbox', _lastlogger) | |
191 |
|
181 | |||
192 | def reposetup(ui, repo): |
|
182 | def reposetup(ui, repo): | |
193 | # During 'hg pull' a httppeer repo is created to represent the remote repo. |
|
183 | # During 'hg pull' a httppeer repo is created to represent the remote repo. | |
194 | # It doesn't have a .hg directory to put a blackbox in, so we don't do |
|
184 | # It doesn't have a .hg directory to put a blackbox in, so we don't do | |
195 | # the blackbox setup for it. |
|
185 | # the blackbox setup for it. | |
196 | if not repo.local(): |
|
186 | if not repo.local(): | |
197 | return |
|
187 | return | |
198 |
|
188 | |||
199 | # Since blackbox.log is stored in the repo directory, the logger should be |
|
189 | # Since blackbox.log is stored in the repo directory, the logger should be | |
200 | # instantiated per repository. |
|
190 | # instantiated per repository. | |
201 | logger = blackboxlogger(ui, repo) |
|
191 | logger = blackboxlogger(ui, repo) | |
202 | ui.setlogger(b'blackbox', logger) |
|
192 | ui.setlogger(b'blackbox', logger) | |
203 |
|
193 | |||
204 | # Set _lastlogger even if ui.log is not called. This gives blackbox a |
|
194 | # Set _lastlogger even if ui.log is not called. This gives blackbox a | |
205 | # fallback place to log |
|
195 | # fallback place to log | |
206 | if _lastlogger.logger is None: |
|
196 | if _lastlogger.logger is None: | |
207 | _lastlogger.logger = logger |
|
197 | _lastlogger.logger = logger | |
208 |
|
198 | |||
209 | repo._wlockfreeprefix.add('blackbox.log') |
|
199 | repo._wlockfreeprefix.add('blackbox.log') | |
210 |
|
200 | |||
211 | @command('blackbox', |
|
201 | @command('blackbox', | |
212 | [('l', 'limit', 10, _('the number of events to show')), |
|
202 | [('l', 'limit', 10, _('the number of events to show')), | |
213 | ], |
|
203 | ], | |
214 | _('hg blackbox [OPTION]...'), |
|
204 | _('hg blackbox [OPTION]...'), | |
215 | helpcategory=command.CATEGORY_MAINTENANCE, |
|
205 | helpcategory=command.CATEGORY_MAINTENANCE, | |
216 | helpbasic=True) |
|
206 | helpbasic=True) | |
217 | def blackbox(ui, repo, *revs, **opts): |
|
207 | def blackbox(ui, repo, *revs, **opts): | |
218 | '''view the recent repository events |
|
208 | '''view the recent repository events | |
219 | ''' |
|
209 | ''' | |
220 |
|
210 | |||
221 | if not repo.vfs.exists('blackbox.log'): |
|
211 | if not repo.vfs.exists('blackbox.log'): | |
222 | return |
|
212 | return | |
223 |
|
213 | |||
224 | limit = opts.get(r'limit') |
|
214 | limit = opts.get(r'limit') | |
225 | fp = repo.vfs('blackbox.log', 'r') |
|
215 | fp = repo.vfs('blackbox.log', 'r') | |
226 | lines = fp.read().split('\n') |
|
216 | lines = fp.read().split('\n') | |
227 |
|
217 | |||
228 | count = 0 |
|
218 | count = 0 | |
229 | output = [] |
|
219 | output = [] | |
230 | for line in reversed(lines): |
|
220 | for line in reversed(lines): | |
231 | if count >= limit: |
|
221 | if count >= limit: | |
232 | break |
|
222 | break | |
233 |
|
223 | |||
234 | # count the commands by matching lines like: 2013/01/23 19:13:36 root> |
|
224 | # count the commands by matching lines like: 2013/01/23 19:13:36 root> | |
235 | if re.match('^\d{4}/\d{2}/\d{2} \d{2}:\d{2}:\d{2} .*> .*', line): |
|
225 | if re.match('^\d{4}/\d{2}/\d{2} \d{2}:\d{2}:\d{2} .*> .*', line): | |
236 | count += 1 |
|
226 | count += 1 | |
237 | output.append(line) |
|
227 | output.append(line) | |
238 |
|
228 | |||
239 | ui.status('\n'.join(reversed(output))) |
|
229 | ui.status('\n'.join(reversed(output))) |
@@ -1,428 +1,451 b'' | |||||
1 | setup |
|
1 | setup | |
2 |
|
2 | |||
3 | $ cat > myextension.py <<EOF |
|
3 | $ cat > myextension.py <<EOF | |
4 | > from mercurial import error, registrar |
|
4 | > from mercurial import error, registrar | |
5 | > cmdtable = {} |
|
5 | > cmdtable = {} | |
6 | > command = registrar.command(cmdtable) |
|
6 | > command = registrar.command(cmdtable) | |
7 | > @command(b'crash', [], b'hg crash') |
|
7 | > @command(b'crash', [], b'hg crash') | |
8 | > def crash(ui, *args, **kwargs): |
|
8 | > def crash(ui, *args, **kwargs): | |
9 | > raise Exception("oops") |
|
9 | > raise Exception("oops") | |
10 | > @command(b'abort', [], b'hg abort') |
|
10 | > @command(b'abort', [], b'hg abort') | |
11 | > def abort(ui, *args, **kwargs): |
|
11 | > def abort(ui, *args, **kwargs): | |
12 | > raise error.Abort(b"oops") |
|
12 | > raise error.Abort(b"oops") | |
13 | > EOF |
|
13 | > EOF | |
14 | $ abspath=`pwd`/myextension.py |
|
14 | $ abspath=`pwd`/myextension.py | |
15 |
|
15 | |||
16 | $ cat >> $HGRCPATH <<EOF |
|
16 | $ cat >> $HGRCPATH <<EOF | |
17 | > [extensions] |
|
17 | > [extensions] | |
18 | > blackbox= |
|
18 | > blackbox= | |
19 | > mock=$TESTDIR/mockblackbox.py |
|
19 | > mock=$TESTDIR/mockblackbox.py | |
20 | > mq= |
|
20 | > mq= | |
21 | > myextension=$TESTTMP/myextension.py |
|
21 | > myextension=$TESTTMP/myextension.py | |
22 | > [alias] |
|
22 | > [alias] | |
23 | > confuse = log --limit 3 |
|
23 | > confuse = log --limit 3 | |
24 | > so-confusing = confuse --style compact |
|
24 | > so-confusing = confuse --style compact | |
25 | > EOF |
|
25 | > EOF | |
26 |
|
26 | |||
27 | $ hg init blackboxtest |
|
27 | $ hg init blackboxtest | |
28 | $ cd blackboxtest |
|
28 | $ cd blackboxtest | |
29 |
|
29 | |||
30 | command, exit codes, and duration |
|
30 | command, exit codes, and duration | |
31 |
|
31 | |||
32 | $ echo a > a |
|
32 | $ echo a > a | |
33 | $ hg add a |
|
33 | $ hg add a | |
34 | $ hg blackbox --config blackbox.dirty=True |
|
34 | $ hg blackbox --config blackbox.dirty=True | |
35 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> init blackboxtest exited 0 after * seconds (glob) |
|
35 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> init blackboxtest exited 0 after * seconds (glob) | |
36 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> add a |
|
36 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> add a | |
37 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> add a exited 0 after * seconds (glob) |
|
37 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> add a exited 0 after * seconds (glob) | |
38 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000+ (5000)> blackbox --config *blackbox.dirty=True* (glob) |
|
38 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000+ (5000)> blackbox --config *blackbox.dirty=True* (glob) | |
39 |
|
39 | |||
40 | failure exit code |
|
40 | failure exit code | |
41 | $ rm ./.hg/blackbox.log |
|
41 | $ rm ./.hg/blackbox.log | |
42 | $ hg add non-existent |
|
42 | $ hg add non-existent | |
43 | non-existent: $ENOENT$ |
|
43 | non-existent: $ENOENT$ | |
44 | [1] |
|
44 | [1] | |
45 | $ hg blackbox |
|
45 | $ hg blackbox | |
46 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> add non-existent |
|
46 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> add non-existent | |
47 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> add non-existent exited 1 after * seconds (glob) |
|
47 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> add non-existent exited 1 after * seconds (glob) | |
48 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> blackbox |
|
48 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> blackbox | |
49 |
|
49 | |||
50 | abort exit code |
|
50 | abort exit code | |
51 | $ rm ./.hg/blackbox.log |
|
51 | $ rm ./.hg/blackbox.log | |
52 | $ hg abort 2> /dev/null |
|
52 | $ hg abort 2> /dev/null | |
53 | [255] |
|
53 | [255] | |
54 | $ hg blackbox -l 2 |
|
54 | $ hg blackbox -l 2 | |
55 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> abort exited 255 after * seconds (glob) |
|
55 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> abort exited 255 after * seconds (glob) | |
56 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> blackbox -l 2 |
|
56 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> blackbox -l 2 | |
57 |
|
57 | |||
58 | unhandled exception |
|
58 | unhandled exception | |
59 | $ rm ./.hg/blackbox.log |
|
59 | $ rm ./.hg/blackbox.log | |
60 | $ hg crash 2> /dev/null |
|
60 | $ hg crash 2> /dev/null | |
61 | [1] |
|
61 | [1] | |
62 | $ hg blackbox -l 2 |
|
62 | $ hg blackbox -l 2 | |
63 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> crash exited 1 after * seconds (glob) |
|
63 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> crash exited 1 after * seconds (glob) | |
64 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> blackbox -l 2 |
|
64 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> blackbox -l 2 | |
65 |
|
65 | |||
66 | alias expansion is logged |
|
66 | alias expansion is logged | |
67 | $ rm ./.hg/blackbox.log |
|
67 | $ rm ./.hg/blackbox.log | |
68 | $ hg confuse |
|
68 | $ hg confuse | |
69 | $ hg blackbox |
|
69 | $ hg blackbox | |
70 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> confuse |
|
70 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> confuse | |
71 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> alias 'confuse' expands to 'log --limit 3' |
|
71 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> alias 'confuse' expands to 'log --limit 3' | |
72 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> confuse exited 0 after * seconds (glob) |
|
72 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> confuse exited 0 after * seconds (glob) | |
73 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> blackbox |
|
73 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> blackbox | |
74 |
|
74 | |||
75 | recursive aliases work correctly |
|
75 | recursive aliases work correctly | |
76 | $ rm ./.hg/blackbox.log |
|
76 | $ rm ./.hg/blackbox.log | |
77 | $ hg so-confusing |
|
77 | $ hg so-confusing | |
78 | $ hg blackbox |
|
78 | $ hg blackbox | |
79 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> so-confusing |
|
79 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> so-confusing | |
80 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> alias 'so-confusing' expands to 'confuse --style compact' |
|
80 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> alias 'so-confusing' expands to 'confuse --style compact' | |
81 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> alias 'confuse' expands to 'log --limit 3' |
|
81 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> alias 'confuse' expands to 'log --limit 3' | |
82 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> so-confusing exited 0 after * seconds (glob) |
|
82 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> so-confusing exited 0 after * seconds (glob) | |
83 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> blackbox |
|
83 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> blackbox | |
84 |
|
84 | |||
85 | custom date format |
|
85 | custom date format | |
86 | $ rm ./.hg/blackbox.log |
|
86 | $ rm ./.hg/blackbox.log | |
87 | $ hg --config blackbox.date-format='%Y-%m-%d @ %H:%M:%S' \ |
|
87 | $ hg --config blackbox.date-format='%Y-%m-%d @ %H:%M:%S' \ | |
88 | > --config devel.default-date='1334347993 0' --traceback status |
|
88 | > --config devel.default-date='1334347993 0' --traceback status | |
89 | A a |
|
89 | A a | |
90 | $ hg blackbox |
|
90 | $ hg blackbox | |
91 | 2012-04-13 @ 20:13:13 bob @0000000000000000000000000000000000000000 (5000)> --config *blackbox.date-format=%Y-%m-%d @ %H:%M:%S* --config *devel.default-date=1334347993 0* --traceback status (glob) |
|
91 | 2012-04-13 @ 20:13:13 bob @0000000000000000000000000000000000000000 (5000)> --config *blackbox.date-format=%Y-%m-%d @ %H:%M:%S* --config *devel.default-date=1334347993 0* --traceback status (glob) | |
92 | 2012-04-13 @ 20:13:13 bob @0000000000000000000000000000000000000000 (5000)> --config *blackbox.date-format=%Y-%m-%d @ %H:%M:%S* --config *devel.default-date=1334347993 0* --traceback status exited 0 after * seconds (glob) |
|
92 | 2012-04-13 @ 20:13:13 bob @0000000000000000000000000000000000000000 (5000)> --config *blackbox.date-format=%Y-%m-%d @ %H:%M:%S* --config *devel.default-date=1334347993 0* --traceback status exited 0 after * seconds (glob) | |
93 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> blackbox |
|
93 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> blackbox | |
94 |
|
94 | |||
95 | incoming change tracking |
|
95 | incoming change tracking | |
96 |
|
96 | |||
97 | create two heads to verify that we only see one change in the log later |
|
97 | create two heads to verify that we only see one change in the log later | |
98 | $ hg commit -ma |
|
98 | $ hg commit -ma | |
99 | $ hg up null |
|
99 | $ hg up null | |
100 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
100 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved | |
101 | $ echo b > b |
|
101 | $ echo b > b | |
102 | $ hg commit -Amb |
|
102 | $ hg commit -Amb | |
103 | adding b |
|
103 | adding b | |
104 | created new head |
|
104 | created new head | |
105 |
|
105 | |||
106 | clone, commit, pull |
|
106 | clone, commit, pull | |
107 | $ hg clone . ../blackboxtest2 |
|
107 | $ hg clone . ../blackboxtest2 | |
108 | updating to branch default |
|
108 | updating to branch default | |
109 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
109 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
110 | $ echo c > c |
|
110 | $ echo c > c | |
111 | $ hg commit -Amc |
|
111 | $ hg commit -Amc | |
112 | adding c |
|
112 | adding c | |
113 | $ cd ../blackboxtest2 |
|
113 | $ cd ../blackboxtest2 | |
114 | $ hg pull |
|
114 | $ hg pull | |
115 | pulling from $TESTTMP/blackboxtest |
|
115 | pulling from $TESTTMP/blackboxtest | |
116 | searching for changes |
|
116 | searching for changes | |
117 | adding changesets |
|
117 | adding changesets | |
118 | adding manifests |
|
118 | adding manifests | |
119 | adding file changes |
|
119 | adding file changes | |
120 | added 1 changesets with 1 changes to 1 files |
|
120 | added 1 changesets with 1 changes to 1 files | |
121 | new changesets d02f48003e62 |
|
121 | new changesets d02f48003e62 | |
122 | (run 'hg update' to get a working copy) |
|
122 | (run 'hg update' to get a working copy) | |
123 | $ hg blackbox -l 6 |
|
123 | $ hg blackbox -l 6 | |
124 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> pull |
|
124 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> pull | |
125 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> updated served branch cache in * seconds (glob) |
|
125 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> updated served branch cache in * seconds (glob) | |
126 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> wrote served branch cache with 1 labels and 2 nodes |
|
126 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> wrote served branch cache with 1 labels and 2 nodes | |
127 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> 1 incoming changes - new heads: d02f48003e62 |
|
127 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> 1 incoming changes - new heads: d02f48003e62 | |
128 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> pull exited 0 after * seconds (glob) |
|
128 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> pull exited 0 after * seconds (glob) | |
129 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> blackbox -l 6 |
|
129 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> blackbox -l 6 | |
130 |
|
130 | |||
131 | we must not cause a failure if we cannot write to the log |
|
131 | we must not cause a failure if we cannot write to the log | |
132 |
|
132 | |||
133 | $ hg rollback |
|
133 | $ hg rollback | |
134 | repository tip rolled back to revision 1 (undo pull) |
|
134 | repository tip rolled back to revision 1 (undo pull) | |
135 |
|
135 | |||
136 | $ mv .hg/blackbox.log .hg/blackbox.log- |
|
136 | $ mv .hg/blackbox.log .hg/blackbox.log- | |
137 | $ mkdir .hg/blackbox.log |
|
137 | $ mkdir .hg/blackbox.log | |
138 | $ hg --debug incoming |
|
138 | $ hg --debug incoming | |
139 | warning: cannot write to blackbox.log: * (glob) |
|
139 | warning: cannot write to blackbox.log: * (glob) | |
140 | comparing with $TESTTMP/blackboxtest |
|
140 | comparing with $TESTTMP/blackboxtest | |
141 | query 1; heads |
|
141 | query 1; heads | |
142 | searching for changes |
|
142 | searching for changes | |
143 | all local heads known remotely |
|
143 | all local heads known remotely | |
144 | changeset: 2:d02f48003e62c24e2659d97d30f2a83abe5d5d51 |
|
144 | changeset: 2:d02f48003e62c24e2659d97d30f2a83abe5d5d51 | |
145 | tag: tip |
|
145 | tag: tip | |
146 | phase: draft |
|
146 | phase: draft | |
147 | parent: 1:6563da9dcf87b1949716e38ff3e3dfaa3198eb06 |
|
147 | parent: 1:6563da9dcf87b1949716e38ff3e3dfaa3198eb06 | |
148 | parent: -1:0000000000000000000000000000000000000000 |
|
148 | parent: -1:0000000000000000000000000000000000000000 | |
149 | manifest: 2:ab9d46b053ebf45b7996f2922b9893ff4b63d892 |
|
149 | manifest: 2:ab9d46b053ebf45b7996f2922b9893ff4b63d892 | |
150 | user: test |
|
150 | user: test | |
151 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
151 | date: Thu Jan 01 00:00:00 1970 +0000 | |
152 | files+: c |
|
152 | files+: c | |
153 | extra: branch=default |
|
153 | extra: branch=default | |
154 | description: |
|
154 | description: | |
155 | c |
|
155 | c | |
156 |
|
156 | |||
157 |
|
157 | |||
158 | $ hg pull |
|
158 | $ hg pull | |
159 | pulling from $TESTTMP/blackboxtest |
|
159 | pulling from $TESTTMP/blackboxtest | |
160 | searching for changes |
|
160 | searching for changes | |
161 | adding changesets |
|
161 | adding changesets | |
162 | adding manifests |
|
162 | adding manifests | |
163 | adding file changes |
|
163 | adding file changes | |
164 | added 1 changesets with 1 changes to 1 files |
|
164 | added 1 changesets with 1 changes to 1 files | |
165 | new changesets d02f48003e62 |
|
165 | new changesets d02f48003e62 | |
166 | (run 'hg update' to get a working copy) |
|
166 | (run 'hg update' to get a working copy) | |
167 |
|
167 | |||
168 | a failure reading from the log is fatal |
|
168 | a failure reading from the log is fatal | |
169 |
|
169 | |||
170 | $ hg blackbox -l 3 |
|
170 | $ hg blackbox -l 3 | |
171 | abort: *$TESTTMP/blackboxtest2/.hg/blackbox.log* (glob) |
|
171 | abort: *$TESTTMP/blackboxtest2/.hg/blackbox.log* (glob) | |
172 | [255] |
|
172 | [255] | |
173 |
|
173 | |||
174 | $ rmdir .hg/blackbox.log |
|
174 | $ rmdir .hg/blackbox.log | |
175 | $ mv .hg/blackbox.log- .hg/blackbox.log |
|
175 | $ mv .hg/blackbox.log- .hg/blackbox.log | |
176 |
|
176 | |||
177 | backup bundles get logged |
|
177 | backup bundles get logged | |
178 |
|
178 | |||
179 | $ touch d |
|
179 | $ touch d | |
180 | $ hg commit -Amd |
|
180 | $ hg commit -Amd | |
181 | adding d |
|
181 | adding d | |
182 | created new head |
|
182 | created new head | |
183 | $ hg strip tip |
|
183 | $ hg strip tip | |
184 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved |
|
184 | 0 files updated, 0 files merged, 1 files removed, 0 files unresolved | |
185 | saved backup bundle to $TESTTMP/blackboxtest2/.hg/strip-backup/*-backup.hg (glob) |
|
185 | saved backup bundle to $TESTTMP/blackboxtest2/.hg/strip-backup/*-backup.hg (glob) | |
186 | $ hg blackbox -l 6 |
|
186 | $ hg blackbox -l 6 | |
187 | 1970/01/01 00:00:00 bob @73f6ee326b27d820b0472f1a825e3a50f3dc489b (5000)> strip tip |
|
187 | 1970/01/01 00:00:00 bob @73f6ee326b27d820b0472f1a825e3a50f3dc489b (5000)> strip tip | |
188 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> saved backup bundle to $TESTTMP/blackboxtest2/.hg/strip-backup/73f6ee326b27-7612e004-backup.hg |
|
188 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> saved backup bundle to $TESTTMP/blackboxtest2/.hg/strip-backup/73f6ee326b27-7612e004-backup.hg | |
189 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> updated base branch cache in * seconds (glob) |
|
189 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> updated base branch cache in * seconds (glob) | |
190 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> wrote base branch cache with 1 labels and 2 nodes |
|
190 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> wrote base branch cache with 1 labels and 2 nodes | |
191 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> strip tip exited 0 after * seconds (glob) |
|
191 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> strip tip exited 0 after * seconds (glob) | |
192 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> blackbox -l 6 |
|
192 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> blackbox -l 6 | |
193 |
|
193 | |||
194 | extension and python hooks - use the eol extension for a pythonhook |
|
194 | extension and python hooks - use the eol extension for a pythonhook | |
195 |
|
195 | |||
196 | $ echo '[extensions]' >> .hg/hgrc |
|
196 | $ echo '[extensions]' >> .hg/hgrc | |
197 | $ echo 'eol=' >> .hg/hgrc |
|
197 | $ echo 'eol=' >> .hg/hgrc | |
198 | $ echo '[hooks]' >> .hg/hgrc |
|
198 | $ echo '[hooks]' >> .hg/hgrc | |
199 | $ echo 'update = echo hooked' >> .hg/hgrc |
|
199 | $ echo 'update = echo hooked' >> .hg/hgrc | |
200 | $ hg update |
|
200 | $ hg update | |
201 | The fsmonitor extension is incompatible with the eol extension and has been disabled. (fsmonitor !) |
|
201 | The fsmonitor extension is incompatible with the eol extension and has been disabled. (fsmonitor !) | |
202 | hooked |
|
202 | hooked | |
203 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
203 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
204 | updated to "d02f48003e62: c" |
|
204 | updated to "d02f48003e62: c" | |
205 | 1 other heads for branch "default" |
|
205 | 1 other heads for branch "default" | |
206 | $ cat >> .hg/hgrc <<EOF |
|
206 | $ cat >> .hg/hgrc <<EOF | |
207 | > [extensions] |
|
207 | > [extensions] | |
208 | > # disable eol, because it is not needed for subsequent tests |
|
208 | > # disable eol, because it is not needed for subsequent tests | |
209 | > # (in addition, keeping it requires extra care for fsmonitor) |
|
209 | > # (in addition, keeping it requires extra care for fsmonitor) | |
210 | > eol=! |
|
210 | > eol=! | |
211 | > EOF |
|
211 | > EOF | |
212 | $ hg blackbox -l 5 |
|
212 | $ hg blackbox -l 5 | |
213 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> update (no-chg !) |
|
213 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> update (no-chg !) | |
214 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> pythonhook-preupdate: hgext.eol.preupdate finished in * seconds (glob) |
|
214 | 1970/01/01 00:00:00 bob @6563da9dcf87b1949716e38ff3e3dfaa3198eb06 (5000)> pythonhook-preupdate: hgext.eol.preupdate finished in * seconds (glob) | |
215 | 1970/01/01 00:00:00 bob @d02f48003e62c24e2659d97d30f2a83abe5d5d51 (5000)> exthook-update: echo hooked finished in * seconds (glob) |
|
215 | 1970/01/01 00:00:00 bob @d02f48003e62c24e2659d97d30f2a83abe5d5d51 (5000)> exthook-update: echo hooked finished in * seconds (glob) | |
216 | 1970/01/01 00:00:00 bob @d02f48003e62c24e2659d97d30f2a83abe5d5d51 (5000)> update exited 0 after * seconds (glob) |
|
216 | 1970/01/01 00:00:00 bob @d02f48003e62c24e2659d97d30f2a83abe5d5d51 (5000)> update exited 0 after * seconds (glob) | |
217 | 1970/01/01 00:00:00 bob @d02f48003e62c24e2659d97d30f2a83abe5d5d51 (5000)> serve --cmdserver chgunix --address $TESTTMP.chgsock/server.* --daemon-postexec 'chdir:/' (glob) (chg !) |
|
217 | 1970/01/01 00:00:00 bob @d02f48003e62c24e2659d97d30f2a83abe5d5d51 (5000)> serve --cmdserver chgunix --address $TESTTMP.chgsock/server.* --daemon-postexec 'chdir:/' (glob) (chg !) | |
218 | 1970/01/01 00:00:00 bob @d02f48003e62c24e2659d97d30f2a83abe5d5d51 (5000)> blackbox -l 5 |
|
218 | 1970/01/01 00:00:00 bob @d02f48003e62c24e2659d97d30f2a83abe5d5d51 (5000)> blackbox -l 5 | |
219 |
|
219 | |||
220 | log rotation |
|
220 | log rotation | |
221 |
|
221 | |||
222 | $ echo '[blackbox]' >> .hg/hgrc |
|
222 | $ echo '[blackbox]' >> .hg/hgrc | |
223 | $ echo 'maxsize = 20 b' >> .hg/hgrc |
|
223 | $ echo 'maxsize = 20 b' >> .hg/hgrc | |
224 | $ echo 'maxfiles = 3' >> .hg/hgrc |
|
224 | $ echo 'maxfiles = 3' >> .hg/hgrc | |
225 | $ hg status |
|
225 | $ hg status | |
226 | $ hg status |
|
226 | $ hg status | |
227 | $ hg status |
|
227 | $ hg status | |
228 | $ hg tip -q |
|
228 | $ hg tip -q | |
229 | 2:d02f48003e62 |
|
229 | 2:d02f48003e62 | |
230 | $ ls .hg/blackbox.log* |
|
230 | $ ls .hg/blackbox.log* | |
231 | .hg/blackbox.log |
|
231 | .hg/blackbox.log | |
232 | .hg/blackbox.log.1 |
|
232 | .hg/blackbox.log.1 | |
233 | .hg/blackbox.log.2 |
|
233 | .hg/blackbox.log.2 | |
234 | $ cd .. |
|
234 | $ cd .. | |
235 |
|
235 | |||
236 | $ hg init blackboxtest3 |
|
236 | $ hg init blackboxtest3 | |
237 | $ cd blackboxtest3 |
|
237 | $ cd blackboxtest3 | |
238 | $ hg blackbox |
|
238 | $ hg blackbox | |
239 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> init blackboxtest3 exited 0 after * seconds (glob) |
|
239 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> init blackboxtest3 exited 0 after * seconds (glob) | |
240 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> blackbox |
|
240 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> blackbox | |
241 | $ mv .hg/blackbox.log .hg/blackbox.log- |
|
241 | $ mv .hg/blackbox.log .hg/blackbox.log- | |
242 | $ mkdir .hg/blackbox.log |
|
242 | $ mkdir .hg/blackbox.log | |
243 | $ sed -e 's/\(.*test1.*\)/#\1/; s#\(.*commit2.*\)#os.rmdir(".hg/blackbox.log")\ |
|
243 | $ sed -e 's/\(.*test1.*\)/#\1/; s#\(.*commit2.*\)#os.rmdir(".hg/blackbox.log")\ | |
244 | > os.rename(".hg/blackbox.log-", ".hg/blackbox.log")\ |
|
244 | > os.rename(".hg/blackbox.log-", ".hg/blackbox.log")\ | |
245 | > \1#' $TESTDIR/test-dispatch.py > ../test-dispatch.py |
|
245 | > \1#' $TESTDIR/test-dispatch.py > ../test-dispatch.py | |
246 | $ "$PYTHON" $TESTDIR/blackbox-readonly-dispatch.py |
|
246 | $ "$PYTHON" $TESTDIR/blackbox-readonly-dispatch.py | |
247 | running: --debug add foo |
|
247 | running: --debug add foo | |
248 | warning: cannot write to blackbox.log: Is a directory (no-windows !) |
|
248 | warning: cannot write to blackbox.log: Is a directory (no-windows !) | |
249 | warning: cannot write to blackbox.log: $TESTTMP/blackboxtest3/.hg/blackbox.log: Access is denied (windows !) |
|
249 | warning: cannot write to blackbox.log: $TESTTMP/blackboxtest3/.hg/blackbox.log: Access is denied (windows !) | |
250 | adding foo |
|
250 | adding foo | |
251 | result: 0 |
|
251 | result: 0 | |
252 | running: --debug commit -m commit1 -d 2000-01-01 foo |
|
252 | running: --debug commit -m commit1 -d 2000-01-01 foo | |
253 | warning: cannot write to blackbox.log: Is a directory (no-windows !) |
|
253 | warning: cannot write to blackbox.log: Is a directory (no-windows !) | |
254 | warning: cannot write to blackbox.log: $TESTTMP/blackboxtest3/.hg/blackbox.log: Access is denied (windows !) |
|
254 | warning: cannot write to blackbox.log: $TESTTMP/blackboxtest3/.hg/blackbox.log: Access is denied (windows !) | |
255 | committing files: |
|
255 | committing files: | |
256 | foo |
|
256 | foo | |
257 | committing manifest |
|
257 | committing manifest | |
258 | committing changelog |
|
258 | committing changelog | |
259 | updating the branch cache |
|
259 | updating the branch cache | |
260 | committed changeset 0:0e46349438790c460c5c9f7546bfcd39b267bbd2 |
|
260 | committed changeset 0:0e46349438790c460c5c9f7546bfcd39b267bbd2 | |
261 | result: 0 |
|
261 | result: 0 | |
262 | running: --debug commit -m commit2 -d 2000-01-02 foo |
|
262 | running: --debug commit -m commit2 -d 2000-01-02 foo | |
263 | committing files: |
|
263 | committing files: | |
264 | foo |
|
264 | foo | |
265 | committing manifest |
|
265 | committing manifest | |
266 | committing changelog |
|
266 | committing changelog | |
267 | updating the branch cache |
|
267 | updating the branch cache | |
268 | committed changeset 1:45589e459b2edfbf3dbde7e01f611d2c1e7453d7 |
|
268 | committed changeset 1:45589e459b2edfbf3dbde7e01f611d2c1e7453d7 | |
269 | result: 0 |
|
269 | result: 0 | |
270 | running: --debug log -r 0 |
|
270 | running: --debug log -r 0 | |
271 | changeset: 0:0e46349438790c460c5c9f7546bfcd39b267bbd2 |
|
271 | changeset: 0:0e46349438790c460c5c9f7546bfcd39b267bbd2 | |
272 | phase: draft |
|
272 | phase: draft | |
273 | parent: -1:0000000000000000000000000000000000000000 |
|
273 | parent: -1:0000000000000000000000000000000000000000 | |
274 | parent: -1:0000000000000000000000000000000000000000 |
|
274 | parent: -1:0000000000000000000000000000000000000000 | |
275 | manifest: 0:9091aa5df980aea60860a2e39c95182e68d1ddec |
|
275 | manifest: 0:9091aa5df980aea60860a2e39c95182e68d1ddec | |
276 | user: test |
|
276 | user: test | |
277 | date: Sat Jan 01 00:00:00 2000 +0000 |
|
277 | date: Sat Jan 01 00:00:00 2000 +0000 | |
278 | files+: foo |
|
278 | files+: foo | |
279 | extra: branch=default |
|
279 | extra: branch=default | |
280 | description: |
|
280 | description: | |
281 | commit1 |
|
281 | commit1 | |
282 |
|
282 | |||
283 |
|
283 | |||
284 | result: 0 |
|
284 | result: 0 | |
285 | running: --debug log -r tip |
|
285 | running: --debug log -r tip | |
286 | changeset: 1:45589e459b2edfbf3dbde7e01f611d2c1e7453d7 |
|
286 | changeset: 1:45589e459b2edfbf3dbde7e01f611d2c1e7453d7 | |
287 | tag: tip |
|
287 | tag: tip | |
288 | phase: draft |
|
288 | phase: draft | |
289 | parent: 0:0e46349438790c460c5c9f7546bfcd39b267bbd2 |
|
289 | parent: 0:0e46349438790c460c5c9f7546bfcd39b267bbd2 | |
290 | parent: -1:0000000000000000000000000000000000000000 |
|
290 | parent: -1:0000000000000000000000000000000000000000 | |
291 | manifest: 1:895aa9b7886f89dd017a6d62524e1f9180b04df9 |
|
291 | manifest: 1:895aa9b7886f89dd017a6d62524e1f9180b04df9 | |
292 | user: test |
|
292 | user: test | |
293 | date: Sun Jan 02 00:00:00 2000 +0000 |
|
293 | date: Sun Jan 02 00:00:00 2000 +0000 | |
294 | files: foo |
|
294 | files: foo | |
295 | extra: branch=default |
|
295 | extra: branch=default | |
296 | description: |
|
296 | description: | |
297 | commit2 |
|
297 | commit2 | |
298 |
|
298 | |||
299 |
|
299 | |||
300 | result: 0 |
|
300 | result: 0 | |
301 | $ hg blackbox |
|
301 | $ hg blackbox | |
302 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> updating the branch cache |
|
302 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> updating the branch cache | |
303 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> updated served branch cache in * seconds (glob) |
|
303 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> updated served branch cache in * seconds (glob) | |
304 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> wrote served branch cache with 1 labels and 1 nodes |
|
304 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> wrote served branch cache with 1 labels and 1 nodes | |
305 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> --debug commit -m commit2 -d 2000-01-02 foo exited 0 after *.?? seconds (glob) |
|
305 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> --debug commit -m commit2 -d 2000-01-02 foo exited 0 after *.?? seconds (glob) | |
306 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> --debug log -r 0 |
|
306 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> --debug log -r 0 | |
307 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> writing .hg/cache/tags2-visible with 0 tags |
|
307 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> writing .hg/cache/tags2-visible with 0 tags | |
308 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> --debug log -r 0 exited 0 after *.?? seconds (glob) |
|
308 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> --debug log -r 0 exited 0 after *.?? seconds (glob) | |
309 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> --debug log -r tip |
|
309 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> --debug log -r tip | |
310 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> --debug log -r tip exited 0 after *.?? seconds (glob) |
|
310 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> --debug log -r tip exited 0 after *.?? seconds (glob) | |
311 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> blackbox |
|
311 | 1970/01/01 00:00:00 bob @45589e459b2edfbf3dbde7e01f611d2c1e7453d7 (5000)> blackbox | |
312 |
|
312 | |||
313 | Test log recursion from dirty status check |
|
313 | Test log recursion from dirty status check | |
314 |
|
314 | |||
315 | $ cat > ../r.py <<EOF |
|
315 | $ cat > ../r.py <<EOF | |
316 | > from mercurial import context, error, extensions |
|
316 | > from mercurial import context, error, extensions | |
317 | > x=[False] |
|
317 | > x=[False] | |
318 | > def status(orig, *args, **opts): |
|
318 | > def status(orig, *args, **opts): | |
319 | > args[0].repo().ui.log(b"broken", b"recursion?") |
|
319 | > args[0].repo().ui.log(b"broken", b"recursion?") | |
320 | > return orig(*args, **opts) |
|
320 | > return orig(*args, **opts) | |
321 | > def reposetup(ui, repo): |
|
321 | > def reposetup(ui, repo): | |
322 | > extensions.wrapfunction(context.basectx, 'status', status) |
|
322 | > extensions.wrapfunction(context.basectx, 'status', status) | |
323 | > EOF |
|
323 | > EOF | |
324 | $ hg id --config extensions.x=../r.py --config blackbox.dirty=True |
|
324 | $ hg id --config extensions.x=../r.py --config blackbox.dirty=True | |
325 | 45589e459b2e tip |
|
325 | 45589e459b2e tip | |
326 |
|
326 | |||
327 | cleanup |
|
327 | cleanup | |
328 | $ cd .. |
|
328 | $ cd .. | |
329 |
|
329 | |||
|
330 | Test missing log directory, which shouldn't be created automatically | |||
|
331 | ||||
|
332 | $ cat <<'EOF' > closeremove.py | |||
|
333 | > def reposetup(ui, repo): | |||
|
334 | > class rmrepo(repo.__class__): | |||
|
335 | > def close(self): | |||
|
336 | > super(rmrepo, self).close() | |||
|
337 | > self.ui.debug(b'removing %s\n' % self.vfs.base) | |||
|
338 | > self.vfs.rmtree() | |||
|
339 | > repo.__class__ = rmrepo | |||
|
340 | > EOF | |||
|
341 | ||||
|
342 | $ hg init gone | |||
|
343 | $ cd gone | |||
|
344 | $ cat <<'EOF' > .hg/hgrc | |||
|
345 | > [extensions] | |||
|
346 | > closeremove = ../closeremove.py | |||
|
347 | > EOF | |||
|
348 | $ hg log --debug | |||
|
349 | removing $TESTTMP/gone/.hg | |||
|
350 | warning: cannot write to blackbox.log: $ENOENT$ | |||
|
351 | $ cd .. | |||
|
352 | ||||
330 | #if chg |
|
353 | #if chg | |
331 |
|
354 | |||
332 | when using chg, blackbox.log should get rotated correctly |
|
355 | when using chg, blackbox.log should get rotated correctly | |
333 |
|
356 | |||
334 | $ cat > $TESTTMP/noop.py << EOF |
|
357 | $ cat > $TESTTMP/noop.py << EOF | |
335 | > from __future__ import absolute_import |
|
358 | > from __future__ import absolute_import | |
336 | > import time |
|
359 | > import time | |
337 | > from mercurial import registrar, scmutil |
|
360 | > from mercurial import registrar, scmutil | |
338 | > cmdtable = {} |
|
361 | > cmdtable = {} | |
339 | > command = registrar.command(cmdtable) |
|
362 | > command = registrar.command(cmdtable) | |
340 | > @command('noop') |
|
363 | > @command('noop') | |
341 | > def noop(ui, repo): |
|
364 | > def noop(ui, repo): | |
342 | > pass |
|
365 | > pass | |
343 | > EOF |
|
366 | > EOF | |
344 |
|
367 | |||
345 | $ hg init blackbox-chg |
|
368 | $ hg init blackbox-chg | |
346 | $ cd blackbox-chg |
|
369 | $ cd blackbox-chg | |
347 |
|
370 | |||
348 | $ cat > .hg/hgrc << EOF |
|
371 | $ cat > .hg/hgrc << EOF | |
349 | > [blackbox] |
|
372 | > [blackbox] | |
350 | > maxsize = 500B |
|
373 | > maxsize = 500B | |
351 | > [extensions] |
|
374 | > [extensions] | |
352 | > # extension change forces chg to restart |
|
375 | > # extension change forces chg to restart | |
353 | > noop=$TESTTMP/noop.py |
|
376 | > noop=$TESTTMP/noop.py | |
354 | > EOF |
|
377 | > EOF | |
355 |
|
378 | |||
356 | $ "$PYTHON" -c 'print("a" * 400)' > .hg/blackbox.log |
|
379 | $ "$PYTHON" -c 'print("a" * 400)' > .hg/blackbox.log | |
357 | $ chg noop |
|
380 | $ chg noop | |
358 | $ chg noop |
|
381 | $ chg noop | |
359 | $ chg noop |
|
382 | $ chg noop | |
360 | $ chg noop |
|
383 | $ chg noop | |
361 | $ chg noop |
|
384 | $ chg noop | |
362 |
|
385 | |||
363 | $ cat > showsize.py << 'EOF' |
|
386 | $ cat > showsize.py << 'EOF' | |
364 | > import os |
|
387 | > import os | |
365 | > import sys |
|
388 | > import sys | |
366 | > limit = 500 |
|
389 | > limit = 500 | |
367 | > for p in sys.argv[1:]: |
|
390 | > for p in sys.argv[1:]: | |
368 | > size = os.stat(p).st_size |
|
391 | > size = os.stat(p).st_size | |
369 | > if size >= limit: |
|
392 | > if size >= limit: | |
370 | > desc = '>=' |
|
393 | > desc = '>=' | |
371 | > else: |
|
394 | > else: | |
372 | > desc = '<' |
|
395 | > desc = '<' | |
373 | > print('%s: %s %d' % (p, desc, limit)) |
|
396 | > print('%s: %s %d' % (p, desc, limit)) | |
374 | > EOF |
|
397 | > EOF | |
375 |
|
398 | |||
376 | $ "$PYTHON" showsize.py .hg/blackbox* |
|
399 | $ "$PYTHON" showsize.py .hg/blackbox* | |
377 | .hg/blackbox.log: < 500 |
|
400 | .hg/blackbox.log: < 500 | |
378 | .hg/blackbox.log.1: >= 500 |
|
401 | .hg/blackbox.log.1: >= 500 | |
379 | .hg/blackbox.log.2: >= 500 |
|
402 | .hg/blackbox.log.2: >= 500 | |
380 |
|
403 | |||
381 | $ cd .. |
|
404 | $ cd .. | |
382 |
|
405 | |||
383 | With chg, blackbox should not create the log file if the repo is gone |
|
406 | With chg, blackbox should not create the log file if the repo is gone | |
384 |
|
407 | |||
385 | $ hg init repo1 |
|
408 | $ hg init repo1 | |
386 | $ hg --config extensions.a=! -R repo1 log |
|
409 | $ hg --config extensions.a=! -R repo1 log | |
387 | $ rm -rf $TESTTMP/repo1 |
|
410 | $ rm -rf $TESTTMP/repo1 | |
388 | $ hg --config extensions.a=! init repo1 |
|
411 | $ hg --config extensions.a=! init repo1 | |
389 |
|
412 | |||
390 | #endif |
|
413 | #endif | |
391 |
|
414 | |||
392 | blackbox should work if repo.ui.log is not called (issue5518) |
|
415 | blackbox should work if repo.ui.log is not called (issue5518) | |
393 |
|
416 | |||
394 | $ cat > $TESTTMP/raise.py << EOF |
|
417 | $ cat > $TESTTMP/raise.py << EOF | |
395 | > from __future__ import absolute_import |
|
418 | > from __future__ import absolute_import | |
396 | > from mercurial import registrar, scmutil |
|
419 | > from mercurial import registrar, scmutil | |
397 | > cmdtable = {} |
|
420 | > cmdtable = {} | |
398 | > command = registrar.command(cmdtable) |
|
421 | > command = registrar.command(cmdtable) | |
399 | > @command(b'raise') |
|
422 | > @command(b'raise') | |
400 | > def raisecmd(*args): |
|
423 | > def raisecmd(*args): | |
401 | > raise RuntimeError('raise') |
|
424 | > raise RuntimeError('raise') | |
402 | > EOF |
|
425 | > EOF | |
403 |
|
426 | |||
404 | $ cat >> $HGRCPATH << EOF |
|
427 | $ cat >> $HGRCPATH << EOF | |
405 | > [blackbox] |
|
428 | > [blackbox] | |
406 | > track = commandexception |
|
429 | > track = commandexception | |
407 | > [extensions] |
|
430 | > [extensions] | |
408 | > raise=$TESTTMP/raise.py |
|
431 | > raise=$TESTTMP/raise.py | |
409 | > EOF |
|
432 | > EOF | |
410 |
|
433 | |||
411 | $ hg init $TESTTMP/blackbox-exception-only |
|
434 | $ hg init $TESTTMP/blackbox-exception-only | |
412 | $ cd $TESTTMP/blackbox-exception-only |
|
435 | $ cd $TESTTMP/blackbox-exception-only | |
413 |
|
436 | |||
414 | #if chg |
|
437 | #if chg | |
415 | (chg exits 255 because it fails to receive an exit code) |
|
438 | (chg exits 255 because it fails to receive an exit code) | |
416 | $ hg raise 2>/dev/null |
|
439 | $ hg raise 2>/dev/null | |
417 | [255] |
|
440 | [255] | |
418 | #else |
|
441 | #else | |
419 | (hg exits 1 because Python default exit code for uncaught exception is 1) |
|
442 | (hg exits 1 because Python default exit code for uncaught exception is 1) | |
420 | $ hg raise 2>/dev/null |
|
443 | $ hg raise 2>/dev/null | |
421 | [1] |
|
444 | [1] | |
422 | #endif |
|
445 | #endif | |
423 |
|
446 | |||
424 | $ head -1 .hg/blackbox.log |
|
447 | $ head -1 .hg/blackbox.log | |
425 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> ** Unknown exception encountered with possibly-broken third-party extension mock |
|
448 | 1970/01/01 00:00:00 bob @0000000000000000000000000000000000000000 (5000)> ** Unknown exception encountered with possibly-broken third-party extension mock | |
426 | $ tail -2 .hg/blackbox.log |
|
449 | $ tail -2 .hg/blackbox.log | |
427 | RuntimeError: raise |
|
450 | RuntimeError: raise | |
428 |
|
451 |
General Comments 0
You need to be logged in to leave comments.
Login now