Mercurial > hg
annotate tests/test-http.t @ 13080:bdb73eede5fb
test-clone-failure.t: fix unification oversight
Prior to unification, the test contained an 'echo $?' line. This line
was removed during unification, but the 'echo 255' line that faked it
when FIFO support is absent was not.
author | Dan Villiom Podlaski Christiansen <danchr@gmail.com> |
---|---|
date | Wed, 01 Dec 2010 19:20:16 +0100 |
parents | d08bb64888bc |
children | 682edefe7dbb |
rev | line source |
---|---|
2612
ffb895f16925
add support for streaming clone.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff
changeset
|
1 |
12446 | 2 $ cp "$TESTDIR"/printenv.py . |
3 $ hg init test | |
4 $ cd test | |
5 $ echo foo>foo | |
6 $ mkdir foo.d foo.d/bAr.hg.d foo.d/baR.d.hg | |
7 $ echo foo>foo.d/foo | |
8 $ echo bar>foo.d/bAr.hg.d/BaR | |
9 $ echo bar>foo.d/baR.d.hg/bAR | |
10 $ hg commit -A -m 1 | |
11 adding foo | |
12 adding foo.d/bAr.hg.d/BaR | |
13 adding foo.d/baR.d.hg/bAR | |
14 adding foo.d/foo | |
15 $ hg serve -p $HGPORT -d --pid-file=../hg1.pid | |
16 $ hg --config server.uncompressed=False serve -p $HGPORT1 -d --pid-file=../hg2.pid | |
17 | |
18 Test server address cannot be reused | |
4289
e17598881509
test-http: use printenv.py
Alexis S. L. Carvalho <alexis@cecm.usp.br>
parents:
4130
diff
changeset
|
19 |
12446 | 20 $ hg serve -p $HGPORT1 2>&1 |
12643
d08bb64888bc
tests: reintroduce ":$HGPORT" in test output
Mads Kiilerich <mads@kiilerich.com>
parents:
12446
diff
changeset
|
21 abort: cannot start server at ':$HGPORT1': Address already in use |
12446 | 22 [255] |
23 $ cd .. | |
24 $ cat hg1.pid hg2.pid >> $DAEMON_PIDS | |
25 | |
26 clone via stream | |
9506
49b62395e910
streamclone: partially encode filename over the wire, not for local read (issue1847)
Greg Ward <greg-hg@gerg.ca>
parents:
8167
diff
changeset
|
27 |
12446 | 28 $ hg clone --uncompressed http://localhost:$HGPORT/ copy 2>&1 |
29 streaming all changes | |
30 6 files to transfer, 606 bytes of data | |
31 transferred * bytes in * seconds (*B/sec) (glob) | |
32 updating to branch default | |
33 4 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
34 $ hg verify -R copy | |
35 checking changesets | |
36 checking manifests | |
37 crosschecking files in changesets and manifests | |
38 checking files | |
39 4 files, 1 changesets, 4 total revisions | |
40 | |
41 try to clone via stream, should use pull instead | |
2612
ffb895f16925
add support for streaming clone.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff
changeset
|
42 |
12446 | 43 $ hg clone --uncompressed http://localhost:$HGPORT1/ copy2 |
44 requesting all changes | |
45 adding changesets | |
46 adding manifests | |
47 adding file changes | |
48 added 1 changesets with 4 changes to 4 files | |
49 updating to branch default | |
50 4 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
2612
ffb895f16925
add support for streaming clone.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
diff
changeset
|
51 |
12446 | 52 clone via pull |
2673
109a22f5434a
hooks: add url to changegroup, incoming, prechangegroup, pretxnchangegroup hooks
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2622
diff
changeset
|
53 |
12446 | 54 $ hg clone http://localhost:$HGPORT1/ copy-pull |
55 requesting all changes | |
56 adding changesets | |
57 adding manifests | |
58 adding file changes | |
59 added 1 changesets with 4 changes to 4 files | |
60 updating to branch default | |
61 4 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
62 $ hg verify -R copy-pull | |
63 checking changesets | |
64 checking manifests | |
65 crosschecking files in changesets and manifests | |
66 checking files | |
67 4 files, 1 changesets, 4 total revisions | |
68 $ cd test | |
69 $ echo bar > bar | |
70 $ hg commit -A -d '1 0' -m 2 | |
71 adding bar | |
72 $ cd .. | |
2673
109a22f5434a
hooks: add url to changegroup, incoming, prechangegroup, pretxnchangegroup hooks
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2622
diff
changeset
|
73 |
12446 | 74 pull |
75 | |
76 $ cd copy-pull | |
77 $ echo '[hooks]' >> .hg/hgrc | |
78 $ echo 'changegroup = python ../printenv.py changegroup' >> .hg/hgrc | |
79 $ hg pull | |
12643
d08bb64888bc
tests: reintroduce ":$HGPORT" in test output
Mads Kiilerich <mads@kiilerich.com>
parents:
12446
diff
changeset
|
80 changegroup hook: HG_NODE=5fed3813f7f5e1824344fdc9cf8f63bb662c292d HG_SOURCE=pull HG_URL=http://localhost:$HGPORT1/ |
d08bb64888bc
tests: reintroduce ":$HGPORT" in test output
Mads Kiilerich <mads@kiilerich.com>
parents:
12446
diff
changeset
|
81 pulling from http://localhost:$HGPORT1/ |
12446 | 82 searching for changes |
83 adding changesets | |
84 adding manifests | |
85 adding file changes | |
86 added 1 changesets with 1 changes to 1 files | |
87 (run 'hg update' to get a working copy) | |
88 $ cd .. |