author | Augie Fackler <augie@google.com> |
Tue, 20 Jan 2015 13:38:07 -0500 | |
changeset 24018 | 26d6a6a78c1d |
parent 22947 | c63a09b6b337 |
child 24205 | abcb1ee3b20a |
permissions | -rw-r--r-- |
22046
7a9cbb315d84
tests: replace exit 80 with #require
Matt Mackall <mpm@selenic.com>
parents:
17486
diff
changeset
|
1 |
#require serve |
15446
c5c9ca3719f9
tests: use 'hghave serve' to guard tests that requires serve daemon management
Mads Kiilerich <mads@kiilerich.com>
parents:
13956
diff
changeset
|
2 |
|
13956
ffb5c09ba822
tests: remove redundant mkdir
Martin Geisler <mg@lazybytes.net>
parents:
13826
diff
changeset
|
3 |
$ hg init test |
12279 | 4 |
$ cd test |
5 |
||
6 |
$ echo foo>foo |
|
7 |
$ hg addremove |
|
8 |
adding foo |
|
9 |
$ hg commit -m 1 |
|
10 |
||
11 |
$ hg verify |
|
12 |
checking changesets |
|
13 |
checking manifests |
|
14 |
crosschecking files in changesets and manifests |
|
15 |
checking files |
|
16 |
1 files, 1 changesets, 1 total revisions |
|
336 | 17 |
|
12279 | 18 |
$ hg serve -p $HGPORT -d --pid-file=hg.pid |
19 |
$ cat hg.pid >> $DAEMON_PIDS |
|
20 |
$ cd .. |
|
21 |
||
12366
c01dc9087d9a
tests: drop a bunch of sed calls from unified tests
Matt Mackall <mpm@selenic.com>
parents:
12328
diff
changeset
|
22 |
$ hg clone --pull http://foo:bar@localhost:$HGPORT/ copy |
12279 | 23 |
requesting all changes |
24 |
adding changesets |
|
25 |
adding manifests |
|
26 |
adding file changes |
|
27 |
added 1 changesets with 1 changes to 1 files |
|
28 |
updating to branch default |
|
29 |
1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
30 |
||
31 |
$ cd copy |
|
32 |
$ hg verify |
|
33 |
checking changesets |
|
34 |
checking manifests |
|
35 |
crosschecking files in changesets and manifests |
|
36 |
checking files |
|
37 |
1 files, 1 changesets, 1 total revisions |
|
336 | 38 |
|
12279 | 39 |
$ hg co |
40 |
0 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
41 |
$ cat foo |
|
42 |
foo |
|
43 |
||
44 |
$ hg manifest --debug |
|
45 |
2ed2a3912a0b24502043eae84ee4b279c18b90dd 644 foo |
|
46 |
||
12366
c01dc9087d9a
tests: drop a bunch of sed calls from unified tests
Matt Mackall <mpm@selenic.com>
parents:
12328
diff
changeset
|
47 |
$ hg pull |
15552
62c9183a0bbb
clone: don't save user's password in .hg/hgrc (Issue3122)
Augie Fackler <durin42@gmail.com>
parents:
13956
diff
changeset
|
48 |
pulling from http://foo@localhost:$HGPORT/ |
12279 | 49 |
searching for changes |
50 |
no changes found |
|
51 |
||
12366
c01dc9087d9a
tests: drop a bunch of sed calls from unified tests
Matt Mackall <mpm@selenic.com>
parents:
12328
diff
changeset
|
52 |
$ hg rollback --dry-run --verbose |
13446
1e497df514e2
rollback: clarifies the message about the reverted state (issue2628)
Gilles Moris <gilles.moris@free.fr>
parents:
12643
diff
changeset
|
53 |
repository tip rolled back to revision -1 (undo pull: http://foo:***@localhost:$HGPORT/) |
12279 | 54 |
|
12399
4fee1fd3de9a
tests: added a short description to issue numbers
Martin Geisler <mg@aragost.com>
parents:
12377
diff
changeset
|
55 |
Issue622: hg init && hg pull -u URL doesn't checkout default branch |
4891
2d545b98a7bc
issue 622: pull/unbundle -u updates to default branch if repo was empty
Bryan O'Sullivan <bos@serpentine.com>
parents:
3736
diff
changeset
|
56 |
|
12279 | 57 |
$ cd .. |
58 |
$ hg init empty |
|
59 |
$ cd empty |
|
60 |
$ hg pull -u ../test |
|
61 |
pulling from ../test |
|
62 |
requesting all changes |
|
63 |
adding changesets |
|
64 |
adding manifests |
|
65 |
adding file changes |
|
66 |
added 1 changesets with 1 changes to 1 files |
|
67 |
1 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
9996
2770d03ae49f
handle file URIs correctly, according to RFC 2396 (issue1153)
Sune Foldager <cryo@cyanite.org>
parents:
5384
diff
changeset
|
68 |
|
12279 | 69 |
Test 'file:' uri handling: |
70 |
||
17486 | 71 |
$ hg pull -q file://../test-does-not-exist |
13823
ad179644750f
hg: look up schemes using url.url
Brodie Rao <brodie@bitheap.org>
parents:
13817
diff
changeset
|
72 |
abort: file:// URLs can only refer to localhost |
12316
4134686b83e1
tests: add exit codes to unified tests
Matt Mackall <mpm@selenic.com>
parents:
12279
diff
changeset
|
73 |
[255] |
12279 | 74 |
|
13826
e574207e3bcd
url: refactor util.drop_scheme() and hg.localpath() into url.localpath()
Brodie Rao <brodie@bitheap.org>
parents:
13823
diff
changeset
|
75 |
$ hg pull -q file://../test |
e574207e3bcd
url: refactor util.drop_scheme() and hg.localpath() into url.localpath()
Brodie Rao <brodie@bitheap.org>
parents:
13823
diff
changeset
|
76 |
abort: file:// URLs can only refer to localhost |
e574207e3bcd
url: refactor util.drop_scheme() and hg.localpath() into url.localpath()
Brodie Rao <brodie@bitheap.org>
parents:
13823
diff
changeset
|
77 |
[255] |
e574207e3bcd
url: refactor util.drop_scheme() and hg.localpath() into url.localpath()
Brodie Rao <brodie@bitheap.org>
parents:
13823
diff
changeset
|
78 |
|
12279 | 79 |
$ hg pull -q file:../test |
80 |
||
12328
b63f6422d2a7
tests: fix a bunch of pointless #s in unified tests
Matt Mackall <mpm@selenic.com>
parents:
12316
diff
changeset
|
81 |
It's tricky to make file:// URLs working on every platform with |
b63f6422d2a7
tests: fix a bunch of pointless #s in unified tests
Matt Mackall <mpm@selenic.com>
parents:
12316
diff
changeset
|
82 |
regular shell commands. |
12279 | 83 |
|
22947
c63a09b6b337
tests: use $PYTHON instead of hardcoding python
Augie Fackler <raf@durin42.com>
parents:
22046
diff
changeset
|
84 |
$ URL=`$PYTHON -c "import os; print 'file://foobar' + ('/' + os.getcwd().replace(os.sep, '/')).replace('//', '/') + '/../test'"` |
12279 | 85 |
$ hg pull -q "$URL" |
13817
7f18bab2c0b0
url: abort on file:// URLs with non-localhost hosts
Brodie Rao <brodie@bitheap.org>
parents:
13446
diff
changeset
|
86 |
abort: file:// URLs can only refer to localhost |
7f18bab2c0b0
url: abort on file:// URLs with non-localhost hosts
Brodie Rao <brodie@bitheap.org>
parents:
13446
diff
changeset
|
87 |
[255] |
12279 | 88 |
|
22947
c63a09b6b337
tests: use $PYTHON instead of hardcoding python
Augie Fackler <raf@durin42.com>
parents:
22046
diff
changeset
|
89 |
$ URL=`$PYTHON -c "import os; print 'file://localhost' + ('/' + os.getcwd().replace(os.sep, '/')).replace('//', '/') + '/../test'"` |
13817
7f18bab2c0b0
url: abort on file:// URLs with non-localhost hosts
Brodie Rao <brodie@bitheap.org>
parents:
13446
diff
changeset
|
90 |
$ hg pull -q "$URL" |
16913
f2719b387380
tests: add missing trailing 'cd ..'
Mads Kiilerich <mads@kiilerich.com>
parents:
16107
diff
changeset
|
91 |
|
f2719b387380
tests: add missing trailing 'cd ..'
Mads Kiilerich <mads@kiilerich.com>
parents:
16107
diff
changeset
|
92 |
$ cd .. |