tests/test-static-http
author bos@serpentine.internal.keyresearch.com
Mon, 29 Aug 2005 10:05:49 -0700
changeset 1146 9061f79c6c6f
parent 1111 addcb77fe500
child 1128 8bf19f96b97a
permissions -rwxr-xr-x
grep: extend functionality, add man page entry, add unit test. walkchangerevs now returns a two-tuple. Its behaviour is also extensively commented. The annotate command's getname function has been factored out to a new function, trimname, so it can be shared between annotate and grep. The behaviour of grep has been beefed up, so that it now performs a number of useful functions.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1111
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
     1
#!/bin/sh
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
     2
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
     3
hg clone old-http://localhost:20059/ copy
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
     4
echo $?
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
     5
ls copy
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
     6
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
     7
# This server doesn't do range requests so it's basically only good for
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
     8
# one pull
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
     9
cat > dumb.py <<EOF
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    10
import BaseHTTPServer, SimpleHTTPServer, signal
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    11
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    12
def run(server_class=BaseHTTPServer.HTTPServer,
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    13
        handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    14
    server_address = ('localhost', 20059)
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    15
    httpd = server_class(server_address, handler_class)
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    16
    httpd.serve_forever()
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    17
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    18
signal.signal(signal.SIGTERM, lambda x: sys.exit(0))
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    19
run()
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    20
EOF
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    21
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    22
python dumb.py 2>/dev/null &
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    23
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    24
mkdir remote
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    25
cd remote
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    26
hg init
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    27
echo foo > bar
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    28
hg add bar
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    29
hg commit -m"test" -d"0 0"
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    30
hg tip
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    31
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    32
cd ..
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    33
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    34
hg clone old-http://localhost:20059/remote local
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    35
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    36
cd local
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    37
hg verify
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    38
cat bar
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    39
hg pull
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    40
addcb77fe500 Add an old-http test case
mpm@selenic.com
parents:
diff changeset
    41
kill $!