Show More
@@ -1,469 +1,469 b'' | |||||
1 | #require chg |
|
1 | #require chg | |
2 |
|
2 | |||
3 | $ mkdir log |
|
3 | $ mkdir log | |
4 | $ cp $HGRCPATH $HGRCPATH.unconfigured |
|
4 | $ cp $HGRCPATH $HGRCPATH.unconfigured | |
5 | $ cat <<'EOF' >> $HGRCPATH |
|
5 | $ cat <<'EOF' >> $HGRCPATH | |
6 | > [cmdserver] |
|
6 | > [cmdserver] | |
7 | > log = $TESTTMP/log/server.log |
|
7 | > log = $TESTTMP/log/server.log | |
8 | > max-log-files = 1 |
|
8 | > max-log-files = 1 | |
9 | > max-log-size = 10 kB |
|
9 | > max-log-size = 10 kB | |
10 | > EOF |
|
10 | > EOF | |
11 | $ cp $HGRCPATH $HGRCPATH.orig |
|
11 | $ cp $HGRCPATH $HGRCPATH.orig | |
12 |
|
12 | |||
13 | $ filterlog () { |
|
13 | $ filterlog () { | |
14 | > sed -e 's!^[0-9/]* [0-9:]* ([0-9]*)>!YYYY/MM/DD HH:MM:SS (PID)>!' \ |
|
14 | > sed -e 's!^[0-9/]* [0-9:]* ([0-9]*)>!YYYY/MM/DD HH:MM:SS (PID)>!' \ | |
15 | > -e 's!\(setprocname\|received fds\|setenv\): .*!\1: ...!' \ |
|
15 | > -e 's!\(setprocname\|received fds\|setenv\): .*!\1: ...!' \ | |
16 | > -e 's!\(confighash\|mtimehash\) = [0-9a-f]*!\1 = ...!g' \ |
|
16 | > -e 's!\(confighash\|mtimehash\) = [0-9a-f]*!\1 = ...!g' \ | |
17 | > -e 's!\(in \)[0-9.]*s\b!\1 ...s!g' \ |
|
17 | > -e 's!\(in \)[0-9.]*s\b!\1 ...s!g' \ | |
18 | > -e 's!\(pid\)=[0-9]*!\1=...!g' \ |
|
18 | > -e 's!\(pid\)=[0-9]*!\1=...!g' \ | |
19 | > -e 's!\(/server-\)[0-9a-f]*!\1...!g' |
|
19 | > -e 's!\(/server-\)[0-9a-f]*!\1...!g' | |
20 | > } |
|
20 | > } | |
21 |
|
21 | |||
22 | init repo |
|
22 | init repo | |
23 |
|
23 | |||
24 | $ chg init foo |
|
24 | $ chg init foo | |
25 | $ cd foo |
|
25 | $ cd foo | |
26 |
|
26 | |||
27 | ill-formed config |
|
27 | ill-formed config | |
28 |
|
28 | |||
29 | $ chg status |
|
29 | $ chg status | |
30 | $ echo '=brokenconfig' >> $HGRCPATH |
|
30 | $ echo '=brokenconfig' >> $HGRCPATH | |
31 | $ chg status |
|
31 | $ chg status | |
32 |
|
|
32 | config error at * =brokenconfig (glob) | |
33 | [255] |
|
33 | [255] | |
34 |
|
34 | |||
35 | $ cp $HGRCPATH.orig $HGRCPATH |
|
35 | $ cp $HGRCPATH.orig $HGRCPATH | |
36 |
|
36 | |||
37 | long socket path |
|
37 | long socket path | |
38 |
|
38 | |||
39 | $ sockpath=$TESTTMP/this/path/should/be/longer/than/one-hundred-and-seven/characters/where/107/is/the/typical/size/limit/of/unix-domain-socket |
|
39 | $ sockpath=$TESTTMP/this/path/should/be/longer/than/one-hundred-and-seven/characters/where/107/is/the/typical/size/limit/of/unix-domain-socket | |
40 | $ mkdir -p $sockpath |
|
40 | $ mkdir -p $sockpath | |
41 | $ bakchgsockname=$CHGSOCKNAME |
|
41 | $ bakchgsockname=$CHGSOCKNAME | |
42 | $ CHGSOCKNAME=$sockpath/server |
|
42 | $ CHGSOCKNAME=$sockpath/server | |
43 | $ export CHGSOCKNAME |
|
43 | $ export CHGSOCKNAME | |
44 | $ chg root |
|
44 | $ chg root | |
45 | $TESTTMP/foo |
|
45 | $TESTTMP/foo | |
46 | $ rm -rf $sockpath |
|
46 | $ rm -rf $sockpath | |
47 | $ CHGSOCKNAME=$bakchgsockname |
|
47 | $ CHGSOCKNAME=$bakchgsockname | |
48 | $ export CHGSOCKNAME |
|
48 | $ export CHGSOCKNAME | |
49 |
|
49 | |||
50 | $ cd .. |
|
50 | $ cd .. | |
51 |
|
51 | |||
52 | editor |
|
52 | editor | |
53 | ------ |
|
53 | ------ | |
54 |
|
54 | |||
55 | $ cat >> pushbuffer.py <<EOF |
|
55 | $ cat >> pushbuffer.py <<EOF | |
56 | > def reposetup(ui, repo): |
|
56 | > def reposetup(ui, repo): | |
57 | > repo.ui.pushbuffer(subproc=True) |
|
57 | > repo.ui.pushbuffer(subproc=True) | |
58 | > EOF |
|
58 | > EOF | |
59 |
|
59 | |||
60 | $ chg init editor |
|
60 | $ chg init editor | |
61 | $ cd editor |
|
61 | $ cd editor | |
62 |
|
62 | |||
63 | by default, system() should be redirected to the client: |
|
63 | by default, system() should be redirected to the client: | |
64 |
|
64 | |||
65 | $ touch foo |
|
65 | $ touch foo | |
66 | $ CHGDEBUG= HGEDITOR=cat chg ci -Am channeled --edit 2>&1 \ |
|
66 | $ CHGDEBUG= HGEDITOR=cat chg ci -Am channeled --edit 2>&1 \ | |
67 | > | egrep "HG:|run 'cat" |
|
67 | > | egrep "HG:|run 'cat" | |
68 | chg: debug: * run 'cat "*"' at '$TESTTMP/editor' (glob) |
|
68 | chg: debug: * run 'cat "*"' at '$TESTTMP/editor' (glob) | |
69 | HG: Enter commit message. Lines beginning with 'HG:' are removed. |
|
69 | HG: Enter commit message. Lines beginning with 'HG:' are removed. | |
70 | HG: Leave message empty to abort commit. |
|
70 | HG: Leave message empty to abort commit. | |
71 | HG: -- |
|
71 | HG: -- | |
72 | HG: user: test |
|
72 | HG: user: test | |
73 | HG: branch 'default' |
|
73 | HG: branch 'default' | |
74 | HG: added foo |
|
74 | HG: added foo | |
75 |
|
75 | |||
76 | but no redirection should be made if output is captured: |
|
76 | but no redirection should be made if output is captured: | |
77 |
|
77 | |||
78 | $ touch bar |
|
78 | $ touch bar | |
79 | $ CHGDEBUG= HGEDITOR=cat chg ci -Am bufferred --edit \ |
|
79 | $ CHGDEBUG= HGEDITOR=cat chg ci -Am bufferred --edit \ | |
80 | > --config extensions.pushbuffer="$TESTTMP/pushbuffer.py" 2>&1 \ |
|
80 | > --config extensions.pushbuffer="$TESTTMP/pushbuffer.py" 2>&1 \ | |
81 | > | egrep "HG:|run 'cat" |
|
81 | > | egrep "HG:|run 'cat" | |
82 | [1] |
|
82 | [1] | |
83 |
|
83 | |||
84 | check that commit commands succeeded: |
|
84 | check that commit commands succeeded: | |
85 |
|
85 | |||
86 | $ hg log -T '{rev}:{desc}\n' |
|
86 | $ hg log -T '{rev}:{desc}\n' | |
87 | 1:bufferred |
|
87 | 1:bufferred | |
88 | 0:channeled |
|
88 | 0:channeled | |
89 |
|
89 | |||
90 | $ cd .. |
|
90 | $ cd .. | |
91 |
|
91 | |||
92 | pager |
|
92 | pager | |
93 | ----- |
|
93 | ----- | |
94 |
|
94 | |||
95 | $ cat >> fakepager.py <<EOF |
|
95 | $ cat >> fakepager.py <<EOF | |
96 | > import sys |
|
96 | > import sys | |
97 | > for line in sys.stdin: |
|
97 | > for line in sys.stdin: | |
98 | > sys.stdout.write('paged! %r\n' % line) |
|
98 | > sys.stdout.write('paged! %r\n' % line) | |
99 | > EOF |
|
99 | > EOF | |
100 |
|
100 | |||
101 | enable pager extension globally, but spawns the master server with no tty: |
|
101 | enable pager extension globally, but spawns the master server with no tty: | |
102 |
|
102 | |||
103 | $ chg init pager |
|
103 | $ chg init pager | |
104 | $ cd pager |
|
104 | $ cd pager | |
105 | $ cat >> $HGRCPATH <<EOF |
|
105 | $ cat >> $HGRCPATH <<EOF | |
106 | > [extensions] |
|
106 | > [extensions] | |
107 | > pager = |
|
107 | > pager = | |
108 | > [pager] |
|
108 | > [pager] | |
109 | > pager = "$PYTHON" $TESTTMP/fakepager.py |
|
109 | > pager = "$PYTHON" $TESTTMP/fakepager.py | |
110 | > EOF |
|
110 | > EOF | |
111 | $ chg version > /dev/null |
|
111 | $ chg version > /dev/null | |
112 | $ touch foo |
|
112 | $ touch foo | |
113 | $ chg ci -qAm foo |
|
113 | $ chg ci -qAm foo | |
114 |
|
114 | |||
115 | pager should be enabled if the attached client has a tty: |
|
115 | pager should be enabled if the attached client has a tty: | |
116 |
|
116 | |||
117 | $ chg log -l1 -q --config ui.formatted=True |
|
117 | $ chg log -l1 -q --config ui.formatted=True | |
118 | paged! '0:1f7b0de80e11\n' |
|
118 | paged! '0:1f7b0de80e11\n' | |
119 | $ chg log -l1 -q --config ui.formatted=False |
|
119 | $ chg log -l1 -q --config ui.formatted=False | |
120 | 0:1f7b0de80e11 |
|
120 | 0:1f7b0de80e11 | |
121 |
|
121 | |||
122 | chg waits for pager if runcommand raises |
|
122 | chg waits for pager if runcommand raises | |
123 |
|
123 | |||
124 | $ cat > $TESTTMP/crash.py <<EOF |
|
124 | $ cat > $TESTTMP/crash.py <<EOF | |
125 | > from mercurial import registrar |
|
125 | > from mercurial import registrar | |
126 | > cmdtable = {} |
|
126 | > cmdtable = {} | |
127 | > command = registrar.command(cmdtable) |
|
127 | > command = registrar.command(cmdtable) | |
128 | > @command(b'crash') |
|
128 | > @command(b'crash') | |
129 | > def pagercrash(ui, repo, *pats, **opts): |
|
129 | > def pagercrash(ui, repo, *pats, **opts): | |
130 | > ui.write(b'going to crash\n') |
|
130 | > ui.write(b'going to crash\n') | |
131 | > raise Exception('.') |
|
131 | > raise Exception('.') | |
132 | > EOF |
|
132 | > EOF | |
133 |
|
133 | |||
134 | $ cat > $TESTTMP/fakepager.py <<EOF |
|
134 | $ cat > $TESTTMP/fakepager.py <<EOF | |
135 | > from __future__ import absolute_import |
|
135 | > from __future__ import absolute_import | |
136 | > import sys |
|
136 | > import sys | |
137 | > import time |
|
137 | > import time | |
138 | > for line in iter(sys.stdin.readline, ''): |
|
138 | > for line in iter(sys.stdin.readline, ''): | |
139 | > if 'crash' in line: # only interested in lines containing 'crash' |
|
139 | > if 'crash' in line: # only interested in lines containing 'crash' | |
140 | > # if chg exits when pager is sleeping (incorrectly), the output |
|
140 | > # if chg exits when pager is sleeping (incorrectly), the output | |
141 | > # will be captured by the next test case |
|
141 | > # will be captured by the next test case | |
142 | > time.sleep(1) |
|
142 | > time.sleep(1) | |
143 | > sys.stdout.write('crash-pager: %s' % line) |
|
143 | > sys.stdout.write('crash-pager: %s' % line) | |
144 | > EOF |
|
144 | > EOF | |
145 |
|
145 | |||
146 | $ cat >> .hg/hgrc <<EOF |
|
146 | $ cat >> .hg/hgrc <<EOF | |
147 | > [extensions] |
|
147 | > [extensions] | |
148 | > crash = $TESTTMP/crash.py |
|
148 | > crash = $TESTTMP/crash.py | |
149 | > EOF |
|
149 | > EOF | |
150 |
|
150 | |||
151 | $ chg crash --pager=on --config ui.formatted=True 2>/dev/null |
|
151 | $ chg crash --pager=on --config ui.formatted=True 2>/dev/null | |
152 | crash-pager: going to crash |
|
152 | crash-pager: going to crash | |
153 | [255] |
|
153 | [255] | |
154 |
|
154 | |||
155 | no stdout data should be printed after pager quits, and the buffered data |
|
155 | no stdout data should be printed after pager quits, and the buffered data | |
156 | should never persist (issue6207) |
|
156 | should never persist (issue6207) | |
157 |
|
157 | |||
158 | "killed!" may be printed if terminated by SIGPIPE, which isn't important |
|
158 | "killed!" may be printed if terminated by SIGPIPE, which isn't important | |
159 | in this test. |
|
159 | in this test. | |
160 |
|
160 | |||
161 | $ cat > $TESTTMP/bulkwrite.py <<'EOF' |
|
161 | $ cat > $TESTTMP/bulkwrite.py <<'EOF' | |
162 | > import time |
|
162 | > import time | |
163 | > from mercurial import error, registrar |
|
163 | > from mercurial import error, registrar | |
164 | > cmdtable = {} |
|
164 | > cmdtable = {} | |
165 | > command = registrar.command(cmdtable) |
|
165 | > command = registrar.command(cmdtable) | |
166 | > @command(b'bulkwrite') |
|
166 | > @command(b'bulkwrite') | |
167 | > def bulkwrite(ui, repo, *pats, **opts): |
|
167 | > def bulkwrite(ui, repo, *pats, **opts): | |
168 | > ui.write(b'going to write massive data\n') |
|
168 | > ui.write(b'going to write massive data\n') | |
169 | > ui.flush() |
|
169 | > ui.flush() | |
170 | > t = time.time() |
|
170 | > t = time.time() | |
171 | > while time.time() - t < 2: |
|
171 | > while time.time() - t < 2: | |
172 | > ui.write(b'x' * 1023 + b'\n') # will be interrupted by SIGPIPE |
|
172 | > ui.write(b'x' * 1023 + b'\n') # will be interrupted by SIGPIPE | |
173 | > raise error.Abort(b"write() doesn't block") |
|
173 | > raise error.Abort(b"write() doesn't block") | |
174 | > EOF |
|
174 | > EOF | |
175 |
|
175 | |||
176 | $ cat > $TESTTMP/fakepager.py <<'EOF' |
|
176 | $ cat > $TESTTMP/fakepager.py <<'EOF' | |
177 | > import sys |
|
177 | > import sys | |
178 | > import time |
|
178 | > import time | |
179 | > sys.stdout.write('paged! %r\n' % sys.stdin.readline()) |
|
179 | > sys.stdout.write('paged! %r\n' % sys.stdin.readline()) | |
180 | > time.sleep(1) # new data will be written |
|
180 | > time.sleep(1) # new data will be written | |
181 | > EOF |
|
181 | > EOF | |
182 |
|
182 | |||
183 | $ cat >> .hg/hgrc <<EOF |
|
183 | $ cat >> .hg/hgrc <<EOF | |
184 | > [extensions] |
|
184 | > [extensions] | |
185 | > bulkwrite = $TESTTMP/bulkwrite.py |
|
185 | > bulkwrite = $TESTTMP/bulkwrite.py | |
186 | > EOF |
|
186 | > EOF | |
187 |
|
187 | |||
188 | $ chg bulkwrite --pager=on --color no --config ui.formatted=True |
|
188 | $ chg bulkwrite --pager=on --color no --config ui.formatted=True | |
189 | paged! 'going to write massive data\n' |
|
189 | paged! 'going to write massive data\n' | |
190 | killed! (?) |
|
190 | killed! (?) | |
191 | [255] |
|
191 | [255] | |
192 |
|
192 | |||
193 | $ chg bulkwrite --pager=on --color no --config ui.formatted=True |
|
193 | $ chg bulkwrite --pager=on --color no --config ui.formatted=True | |
194 | paged! 'going to write massive data\n' |
|
194 | paged! 'going to write massive data\n' | |
195 | killed! (?) |
|
195 | killed! (?) | |
196 | [255] |
|
196 | [255] | |
197 |
|
197 | |||
198 | $ cd .. |
|
198 | $ cd .. | |
199 |
|
199 | |||
200 | missing stdio |
|
200 | missing stdio | |
201 | ------------- |
|
201 | ------------- | |
202 |
|
202 | |||
203 | $ CHGDEBUG=1 chg version -q 0<&- |
|
203 | $ CHGDEBUG=1 chg version -q 0<&- | |
204 | chg: debug: * stdio fds are missing (glob) |
|
204 | chg: debug: * stdio fds are missing (glob) | |
205 | chg: debug: * execute original hg (glob) |
|
205 | chg: debug: * execute original hg (glob) | |
206 | Mercurial Distributed SCM * (glob) |
|
206 | Mercurial Distributed SCM * (glob) | |
207 |
|
207 | |||
208 | server lifecycle |
|
208 | server lifecycle | |
209 | ---------------- |
|
209 | ---------------- | |
210 |
|
210 | |||
211 | chg server should be restarted on code change, and old server will shut down |
|
211 | chg server should be restarted on code change, and old server will shut down | |
212 | automatically. In this test, we use the following time parameters: |
|
212 | automatically. In this test, we use the following time parameters: | |
213 |
|
213 | |||
214 | - "sleep 1" to make mtime different |
|
214 | - "sleep 1" to make mtime different | |
215 | - "sleep 2" to notice mtime change (polling interval is 1 sec) |
|
215 | - "sleep 2" to notice mtime change (polling interval is 1 sec) | |
216 |
|
216 | |||
217 | set up repository with an extension: |
|
217 | set up repository with an extension: | |
218 |
|
218 | |||
219 | $ chg init extreload |
|
219 | $ chg init extreload | |
220 | $ cd extreload |
|
220 | $ cd extreload | |
221 | $ touch dummyext.py |
|
221 | $ touch dummyext.py | |
222 | $ cat <<EOF >> .hg/hgrc |
|
222 | $ cat <<EOF >> .hg/hgrc | |
223 | > [extensions] |
|
223 | > [extensions] | |
224 | > dummyext = dummyext.py |
|
224 | > dummyext = dummyext.py | |
225 | > EOF |
|
225 | > EOF | |
226 |
|
226 | |||
227 | isolate socket directory for stable result: |
|
227 | isolate socket directory for stable result: | |
228 |
|
228 | |||
229 | $ OLDCHGSOCKNAME=$CHGSOCKNAME |
|
229 | $ OLDCHGSOCKNAME=$CHGSOCKNAME | |
230 | $ mkdir chgsock |
|
230 | $ mkdir chgsock | |
231 | $ CHGSOCKNAME=`pwd`/chgsock/server |
|
231 | $ CHGSOCKNAME=`pwd`/chgsock/server | |
232 |
|
232 | |||
233 | warm up server: |
|
233 | warm up server: | |
234 |
|
234 | |||
235 | $ CHGDEBUG= chg log 2>&1 | egrep 'instruction|start' |
|
235 | $ CHGDEBUG= chg log 2>&1 | egrep 'instruction|start' | |
236 | chg: debug: * start cmdserver at $TESTTMP/extreload/chgsock/server.* (glob) |
|
236 | chg: debug: * start cmdserver at $TESTTMP/extreload/chgsock/server.* (glob) | |
237 |
|
237 | |||
238 | new server should be started if extension modified: |
|
238 | new server should be started if extension modified: | |
239 |
|
239 | |||
240 | $ sleep 1 |
|
240 | $ sleep 1 | |
241 | $ touch dummyext.py |
|
241 | $ touch dummyext.py | |
242 | $ CHGDEBUG= chg log 2>&1 | egrep 'instruction|start' |
|
242 | $ CHGDEBUG= chg log 2>&1 | egrep 'instruction|start' | |
243 | chg: debug: * instruction: unlink $TESTTMP/extreload/chgsock/server-* (glob) |
|
243 | chg: debug: * instruction: unlink $TESTTMP/extreload/chgsock/server-* (glob) | |
244 | chg: debug: * instruction: reconnect (glob) |
|
244 | chg: debug: * instruction: reconnect (glob) | |
245 | chg: debug: * start cmdserver at $TESTTMP/extreload/chgsock/server.* (glob) |
|
245 | chg: debug: * start cmdserver at $TESTTMP/extreload/chgsock/server.* (glob) | |
246 |
|
246 | |||
247 | old server will shut down, while new server should still be reachable: |
|
247 | old server will shut down, while new server should still be reachable: | |
248 |
|
248 | |||
249 | $ sleep 2 |
|
249 | $ sleep 2 | |
250 | $ CHGDEBUG= chg log 2>&1 | (egrep 'instruction|start' || true) |
|
250 | $ CHGDEBUG= chg log 2>&1 | (egrep 'instruction|start' || true) | |
251 |
|
251 | |||
252 | socket file should never be unlinked by old server: |
|
252 | socket file should never be unlinked by old server: | |
253 | (simulates unowned socket by updating mtime, which makes sure server exits |
|
253 | (simulates unowned socket by updating mtime, which makes sure server exits | |
254 | at polling cycle) |
|
254 | at polling cycle) | |
255 |
|
255 | |||
256 | $ ls chgsock/server-* |
|
256 | $ ls chgsock/server-* | |
257 | chgsock/server-* (glob) |
|
257 | chgsock/server-* (glob) | |
258 | $ touch chgsock/server-* |
|
258 | $ touch chgsock/server-* | |
259 | $ sleep 2 |
|
259 | $ sleep 2 | |
260 | $ ls chgsock/server-* |
|
260 | $ ls chgsock/server-* | |
261 | chgsock/server-* (glob) |
|
261 | chgsock/server-* (glob) | |
262 |
|
262 | |||
263 | since no server is reachable from socket file, new server should be started: |
|
263 | since no server is reachable from socket file, new server should be started: | |
264 | (this test makes sure that old server shut down automatically) |
|
264 | (this test makes sure that old server shut down automatically) | |
265 |
|
265 | |||
266 | $ CHGDEBUG= chg log 2>&1 | egrep 'instruction|start' |
|
266 | $ CHGDEBUG= chg log 2>&1 | egrep 'instruction|start' | |
267 | chg: debug: * start cmdserver at $TESTTMP/extreload/chgsock/server.* (glob) |
|
267 | chg: debug: * start cmdserver at $TESTTMP/extreload/chgsock/server.* (glob) | |
268 |
|
268 | |||
269 | shut down servers and restore environment: |
|
269 | shut down servers and restore environment: | |
270 |
|
270 | |||
271 | $ rm -R chgsock |
|
271 | $ rm -R chgsock | |
272 | $ sleep 2 |
|
272 | $ sleep 2 | |
273 | $ CHGSOCKNAME=$OLDCHGSOCKNAME |
|
273 | $ CHGSOCKNAME=$OLDCHGSOCKNAME | |
274 | $ cd .. |
|
274 | $ cd .. | |
275 |
|
275 | |||
276 | check that server events are recorded: |
|
276 | check that server events are recorded: | |
277 |
|
277 | |||
278 | $ ls log |
|
278 | $ ls log | |
279 | server.log |
|
279 | server.log | |
280 | server.log.1 |
|
280 | server.log.1 | |
281 |
|
281 | |||
282 | print only the last 10 lines, since we aren't sure how many records are |
|
282 | print only the last 10 lines, since we aren't sure how many records are | |
283 | preserved (since setprocname isn't available on py3 and pure version, |
|
283 | preserved (since setprocname isn't available on py3 and pure version, | |
284 | the 10th-most-recent line is different when using py3): |
|
284 | the 10th-most-recent line is different when using py3): | |
285 |
|
285 | |||
286 | $ cat log/server.log.1 log/server.log | tail -10 | filterlog |
|
286 | $ cat log/server.log.1 log/server.log | tail -10 | filterlog | |
287 | YYYY/MM/DD HH:MM:SS (PID)> confighash = ... mtimehash = ... (no-setprocname !) |
|
287 | YYYY/MM/DD HH:MM:SS (PID)> confighash = ... mtimehash = ... (no-setprocname !) | |
288 | YYYY/MM/DD HH:MM:SS (PID)> forked worker process (pid=...) |
|
288 | YYYY/MM/DD HH:MM:SS (PID)> forked worker process (pid=...) | |
289 | YYYY/MM/DD HH:MM:SS (PID)> setprocname: ... (setprocname !) |
|
289 | YYYY/MM/DD HH:MM:SS (PID)> setprocname: ... (setprocname !) | |
290 | YYYY/MM/DD HH:MM:SS (PID)> received fds: ... |
|
290 | YYYY/MM/DD HH:MM:SS (PID)> received fds: ... | |
291 | YYYY/MM/DD HH:MM:SS (PID)> chdir to '$TESTTMP/extreload' |
|
291 | YYYY/MM/DD HH:MM:SS (PID)> chdir to '$TESTTMP/extreload' | |
292 | YYYY/MM/DD HH:MM:SS (PID)> setumask 18 |
|
292 | YYYY/MM/DD HH:MM:SS (PID)> setumask 18 | |
293 | YYYY/MM/DD HH:MM:SS (PID)> setenv: ... |
|
293 | YYYY/MM/DD HH:MM:SS (PID)> setenv: ... | |
294 | YYYY/MM/DD HH:MM:SS (PID)> confighash = ... mtimehash = ... |
|
294 | YYYY/MM/DD HH:MM:SS (PID)> confighash = ... mtimehash = ... | |
295 | YYYY/MM/DD HH:MM:SS (PID)> validate: [] |
|
295 | YYYY/MM/DD HH:MM:SS (PID)> validate: [] | |
296 | YYYY/MM/DD HH:MM:SS (PID)> worker process exited (pid=...) |
|
296 | YYYY/MM/DD HH:MM:SS (PID)> worker process exited (pid=...) | |
297 | YYYY/MM/DD HH:MM:SS (PID)> $TESTTMP/extreload/chgsock/server-... is not owned, exiting. |
|
297 | YYYY/MM/DD HH:MM:SS (PID)> $TESTTMP/extreload/chgsock/server-... is not owned, exiting. | |
298 |
|
298 | |||
299 | global data mutated by schems |
|
299 | global data mutated by schems | |
300 | ----------------------------- |
|
300 | ----------------------------- | |
301 |
|
301 | |||
302 | $ hg init schemes |
|
302 | $ hg init schemes | |
303 | $ cd schemes |
|
303 | $ cd schemes | |
304 |
|
304 | |||
305 | initial state |
|
305 | initial state | |
306 |
|
306 | |||
307 | $ cat > .hg/hgrc <<'EOF' |
|
307 | $ cat > .hg/hgrc <<'EOF' | |
308 | > [extensions] |
|
308 | > [extensions] | |
309 | > schemes = |
|
309 | > schemes = | |
310 | > [schemes] |
|
310 | > [schemes] | |
311 | > foo = https://foo.example.org/ |
|
311 | > foo = https://foo.example.org/ | |
312 | > EOF |
|
312 | > EOF | |
313 | $ hg debugexpandscheme foo://expanded |
|
313 | $ hg debugexpandscheme foo://expanded | |
314 | https://foo.example.org/expanded |
|
314 | https://foo.example.org/expanded | |
315 | $ hg debugexpandscheme bar://unexpanded |
|
315 | $ hg debugexpandscheme bar://unexpanded | |
316 | bar://unexpanded |
|
316 | bar://unexpanded | |
317 |
|
317 | |||
318 | add bar |
|
318 | add bar | |
319 |
|
319 | |||
320 | $ cat > .hg/hgrc <<'EOF' |
|
320 | $ cat > .hg/hgrc <<'EOF' | |
321 | > [extensions] |
|
321 | > [extensions] | |
322 | > schemes = |
|
322 | > schemes = | |
323 | > [schemes] |
|
323 | > [schemes] | |
324 | > foo = https://foo.example.org/ |
|
324 | > foo = https://foo.example.org/ | |
325 | > bar = https://bar.example.org/ |
|
325 | > bar = https://bar.example.org/ | |
326 | > EOF |
|
326 | > EOF | |
327 | $ hg debugexpandscheme foo://expanded |
|
327 | $ hg debugexpandscheme foo://expanded | |
328 | https://foo.example.org/expanded |
|
328 | https://foo.example.org/expanded | |
329 | $ hg debugexpandscheme bar://expanded |
|
329 | $ hg debugexpandscheme bar://expanded | |
330 | https://bar.example.org/expanded |
|
330 | https://bar.example.org/expanded | |
331 |
|
331 | |||
332 | remove foo |
|
332 | remove foo | |
333 |
|
333 | |||
334 | $ cat > .hg/hgrc <<'EOF' |
|
334 | $ cat > .hg/hgrc <<'EOF' | |
335 | > [extensions] |
|
335 | > [extensions] | |
336 | > schemes = |
|
336 | > schemes = | |
337 | > [schemes] |
|
337 | > [schemes] | |
338 | > bar = https://bar.example.org/ |
|
338 | > bar = https://bar.example.org/ | |
339 | > EOF |
|
339 | > EOF | |
340 | $ hg debugexpandscheme foo://unexpanded |
|
340 | $ hg debugexpandscheme foo://unexpanded | |
341 | foo://unexpanded |
|
341 | foo://unexpanded | |
342 | $ hg debugexpandscheme bar://expanded |
|
342 | $ hg debugexpandscheme bar://expanded | |
343 | https://bar.example.org/expanded |
|
343 | https://bar.example.org/expanded | |
344 |
|
344 | |||
345 | $ cd .. |
|
345 | $ cd .. | |
346 |
|
346 | |||
347 | repository cache |
|
347 | repository cache | |
348 | ---------------- |
|
348 | ---------------- | |
349 |
|
349 | |||
350 | $ rm log/server.log* |
|
350 | $ rm log/server.log* | |
351 | $ cp $HGRCPATH.unconfigured $HGRCPATH |
|
351 | $ cp $HGRCPATH.unconfigured $HGRCPATH | |
352 | $ cat <<'EOF' >> $HGRCPATH |
|
352 | $ cat <<'EOF' >> $HGRCPATH | |
353 | > [cmdserver] |
|
353 | > [cmdserver] | |
354 | > log = $TESTTMP/log/server.log |
|
354 | > log = $TESTTMP/log/server.log | |
355 | > max-repo-cache = 1 |
|
355 | > max-repo-cache = 1 | |
356 | > track-log = command, repocache |
|
356 | > track-log = command, repocache | |
357 | > EOF |
|
357 | > EOF | |
358 |
|
358 | |||
359 | isolate socket directory for stable result: |
|
359 | isolate socket directory for stable result: | |
360 |
|
360 | |||
361 | $ OLDCHGSOCKNAME=$CHGSOCKNAME |
|
361 | $ OLDCHGSOCKNAME=$CHGSOCKNAME | |
362 | $ mkdir chgsock |
|
362 | $ mkdir chgsock | |
363 | $ CHGSOCKNAME=`pwd`/chgsock/server |
|
363 | $ CHGSOCKNAME=`pwd`/chgsock/server | |
364 |
|
364 | |||
365 | create empty repo and cache it: |
|
365 | create empty repo and cache it: | |
366 |
|
366 | |||
367 | $ hg init cached |
|
367 | $ hg init cached | |
368 | $ hg id -R cached |
|
368 | $ hg id -R cached | |
369 | 000000000000 tip |
|
369 | 000000000000 tip | |
370 | $ sleep 1 |
|
370 | $ sleep 1 | |
371 |
|
371 | |||
372 | modify repo (and cache will be invalidated): |
|
372 | modify repo (and cache will be invalidated): | |
373 |
|
373 | |||
374 | $ touch cached/a |
|
374 | $ touch cached/a | |
375 | $ hg ci -R cached -Am 'add a' |
|
375 | $ hg ci -R cached -Am 'add a' | |
376 | adding a |
|
376 | adding a | |
377 | $ sleep 1 |
|
377 | $ sleep 1 | |
378 |
|
378 | |||
379 | read cached repo: |
|
379 | read cached repo: | |
380 |
|
380 | |||
381 | $ hg log -R cached |
|
381 | $ hg log -R cached | |
382 | changeset: 0:ac82d8b1f7c4 |
|
382 | changeset: 0:ac82d8b1f7c4 | |
383 | tag: tip |
|
383 | tag: tip | |
384 | user: test |
|
384 | user: test | |
385 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
385 | date: Thu Jan 01 00:00:00 1970 +0000 | |
386 | summary: add a |
|
386 | summary: add a | |
387 |
|
387 | |||
388 | $ sleep 1 |
|
388 | $ sleep 1 | |
389 |
|
389 | |||
390 | discard cached from LRU cache: |
|
390 | discard cached from LRU cache: | |
391 |
|
391 | |||
392 | $ hg clone cached cached2 |
|
392 | $ hg clone cached cached2 | |
393 | updating to branch default |
|
393 | updating to branch default | |
394 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
394 | 1 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
395 | $ hg id -R cached2 |
|
395 | $ hg id -R cached2 | |
396 | ac82d8b1f7c4 tip |
|
396 | ac82d8b1f7c4 tip | |
397 | $ sleep 1 |
|
397 | $ sleep 1 | |
398 |
|
398 | |||
399 | read uncached repo: |
|
399 | read uncached repo: | |
400 |
|
400 | |||
401 | $ hg log -R cached |
|
401 | $ hg log -R cached | |
402 | changeset: 0:ac82d8b1f7c4 |
|
402 | changeset: 0:ac82d8b1f7c4 | |
403 | tag: tip |
|
403 | tag: tip | |
404 | user: test |
|
404 | user: test | |
405 | date: Thu Jan 01 00:00:00 1970 +0000 |
|
405 | date: Thu Jan 01 00:00:00 1970 +0000 | |
406 | summary: add a |
|
406 | summary: add a | |
407 |
|
407 | |||
408 | $ sleep 1 |
|
408 | $ sleep 1 | |
409 |
|
409 | |||
410 | shut down servers and restore environment: |
|
410 | shut down servers and restore environment: | |
411 |
|
411 | |||
412 | $ rm -R chgsock |
|
412 | $ rm -R chgsock | |
413 | $ sleep 2 |
|
413 | $ sleep 2 | |
414 | $ CHGSOCKNAME=$OLDCHGSOCKNAME |
|
414 | $ CHGSOCKNAME=$OLDCHGSOCKNAME | |
415 |
|
415 | |||
416 | check server log: |
|
416 | check server log: | |
417 |
|
417 | |||
418 | $ cat log/server.log | filterlog |
|
418 | $ cat log/server.log | filterlog | |
419 | YYYY/MM/DD HH:MM:SS (PID)> worker process exited (pid=...) |
|
419 | YYYY/MM/DD HH:MM:SS (PID)> worker process exited (pid=...) | |
420 | YYYY/MM/DD HH:MM:SS (PID)> worker process exited (pid=...) (?) |
|
420 | YYYY/MM/DD HH:MM:SS (PID)> worker process exited (pid=...) (?) | |
421 | YYYY/MM/DD HH:MM:SS (PID)> init cached |
|
421 | YYYY/MM/DD HH:MM:SS (PID)> init cached | |
422 | YYYY/MM/DD HH:MM:SS (PID)> id -R cached |
|
422 | YYYY/MM/DD HH:MM:SS (PID)> id -R cached | |
423 | YYYY/MM/DD HH:MM:SS (PID)> loaded repo into cache: $TESTTMP/cached (in ...s) |
|
423 | YYYY/MM/DD HH:MM:SS (PID)> loaded repo into cache: $TESTTMP/cached (in ...s) | |
424 | YYYY/MM/DD HH:MM:SS (PID)> repo from cache: $TESTTMP/cached |
|
424 | YYYY/MM/DD HH:MM:SS (PID)> repo from cache: $TESTTMP/cached | |
425 | YYYY/MM/DD HH:MM:SS (PID)> ci -R cached -Am 'add a' |
|
425 | YYYY/MM/DD HH:MM:SS (PID)> ci -R cached -Am 'add a' | |
426 | YYYY/MM/DD HH:MM:SS (PID)> loaded repo into cache: $TESTTMP/cached (in ...s) |
|
426 | YYYY/MM/DD HH:MM:SS (PID)> loaded repo into cache: $TESTTMP/cached (in ...s) | |
427 | YYYY/MM/DD HH:MM:SS (PID)> repo from cache: $TESTTMP/cached |
|
427 | YYYY/MM/DD HH:MM:SS (PID)> repo from cache: $TESTTMP/cached | |
428 | YYYY/MM/DD HH:MM:SS (PID)> log -R cached |
|
428 | YYYY/MM/DD HH:MM:SS (PID)> log -R cached | |
429 | YYYY/MM/DD HH:MM:SS (PID)> loaded repo into cache: $TESTTMP/cached (in ...s) |
|
429 | YYYY/MM/DD HH:MM:SS (PID)> loaded repo into cache: $TESTTMP/cached (in ...s) | |
430 | YYYY/MM/DD HH:MM:SS (PID)> clone cached cached2 |
|
430 | YYYY/MM/DD HH:MM:SS (PID)> clone cached cached2 | |
431 | YYYY/MM/DD HH:MM:SS (PID)> id -R cached2 |
|
431 | YYYY/MM/DD HH:MM:SS (PID)> id -R cached2 | |
432 | YYYY/MM/DD HH:MM:SS (PID)> loaded repo into cache: $TESTTMP/cached2 (in ...s) |
|
432 | YYYY/MM/DD HH:MM:SS (PID)> loaded repo into cache: $TESTTMP/cached2 (in ...s) | |
433 | YYYY/MM/DD HH:MM:SS (PID)> log -R cached |
|
433 | YYYY/MM/DD HH:MM:SS (PID)> log -R cached | |
434 | YYYY/MM/DD HH:MM:SS (PID)> loaded repo into cache: $TESTTMP/cached (in ...s) |
|
434 | YYYY/MM/DD HH:MM:SS (PID)> loaded repo into cache: $TESTTMP/cached (in ...s) | |
435 |
|
435 | |||
436 | Test that chg works (sets to the user's actual LC_CTYPE) even when python |
|
436 | Test that chg works (sets to the user's actual LC_CTYPE) even when python | |
437 | "coerces" the locale (py3.7+) |
|
437 | "coerces" the locale (py3.7+) | |
438 |
|
438 | |||
439 | $ cat > $TESTTMP/debugenv.py <<EOF |
|
439 | $ cat > $TESTTMP/debugenv.py <<EOF | |
440 | > from mercurial import encoding |
|
440 | > from mercurial import encoding | |
441 | > from mercurial import registrar |
|
441 | > from mercurial import registrar | |
442 | > cmdtable = {} |
|
442 | > cmdtable = {} | |
443 | > command = registrar.command(cmdtable) |
|
443 | > command = registrar.command(cmdtable) | |
444 | > @command(b'debugenv', [], b'', norepo=True) |
|
444 | > @command(b'debugenv', [], b'', norepo=True) | |
445 | > def debugenv(ui): |
|
445 | > def debugenv(ui): | |
446 | > for k in [b'LC_ALL', b'LC_CTYPE', b'LANG']: |
|
446 | > for k in [b'LC_ALL', b'LC_CTYPE', b'LANG']: | |
447 | > v = encoding.environ.get(k) |
|
447 | > v = encoding.environ.get(k) | |
448 | > if v is not None: |
|
448 | > if v is not None: | |
449 | > ui.write(b'%s=%s\n' % (k, encoding.environ[k])) |
|
449 | > ui.write(b'%s=%s\n' % (k, encoding.environ[k])) | |
450 | > EOF |
|
450 | > EOF | |
451 | (hg keeps python's modified LC_CTYPE, chg doesn't) |
|
451 | (hg keeps python's modified LC_CTYPE, chg doesn't) | |
452 | $ (unset LC_ALL; unset LANG; LC_CTYPE= "$CHGHG" \ |
|
452 | $ (unset LC_ALL; unset LANG; LC_CTYPE= "$CHGHG" \ | |
453 | > --config extensions.debugenv=$TESTTMP/debugenv.py debugenv) |
|
453 | > --config extensions.debugenv=$TESTTMP/debugenv.py debugenv) | |
454 | LC_CTYPE=C.UTF-8 (py37 !) |
|
454 | LC_CTYPE=C.UTF-8 (py37 !) | |
455 | LC_CTYPE= (no-py37 !) |
|
455 | LC_CTYPE= (no-py37 !) | |
456 | $ (unset LC_ALL; unset LANG; LC_CTYPE= chg \ |
|
456 | $ (unset LC_ALL; unset LANG; LC_CTYPE= chg \ | |
457 | > --config extensions.debugenv=$TESTTMP/debugenv.py debugenv) |
|
457 | > --config extensions.debugenv=$TESTTMP/debugenv.py debugenv) | |
458 | LC_CTYPE= |
|
458 | LC_CTYPE= | |
459 | $ (unset LC_ALL; unset LANG; LC_CTYPE=unsupported_value chg \ |
|
459 | $ (unset LC_ALL; unset LANG; LC_CTYPE=unsupported_value chg \ | |
460 | > --config extensions.debugenv=$TESTTMP/debugenv.py debugenv) |
|
460 | > --config extensions.debugenv=$TESTTMP/debugenv.py debugenv) | |
461 | LC_CTYPE=unsupported_value |
|
461 | LC_CTYPE=unsupported_value | |
462 | $ (unset LC_ALL; unset LANG; LC_CTYPE= chg \ |
|
462 | $ (unset LC_ALL; unset LANG; LC_CTYPE= chg \ | |
463 | > --config extensions.debugenv=$TESTTMP/debugenv.py debugenv) |
|
463 | > --config extensions.debugenv=$TESTTMP/debugenv.py debugenv) | |
464 | LC_CTYPE= |
|
464 | LC_CTYPE= | |
465 | $ LANG= LC_ALL= LC_CTYPE= chg \ |
|
465 | $ LANG= LC_ALL= LC_CTYPE= chg \ | |
466 | > --config extensions.debugenv=$TESTTMP/debugenv.py debugenv |
|
466 | > --config extensions.debugenv=$TESTTMP/debugenv.py debugenv | |
467 | LC_ALL= |
|
467 | LC_ALL= | |
468 | LC_CTYPE= |
|
468 | LC_CTYPE= | |
469 | LANG= |
|
469 | LANG= |
General Comments 0
You need to be logged in to leave comments.
Login now