tests/test-bad-pull.t
author Matt Mackall <mpm@selenic.com>
Sun, 01 Apr 2012 14:23:55 -0500
branchstable
changeset 16334 b9bd95e61b49
parent 16296 4343d5226149
child 16341 91eec29dd7de
permissions -rw-r--r--
tests: fix shutdown race in test-bad-pull

  $ "$TESTDIR/hghave" serve || exit 80

  $ hg clone http://localhost:$HGPORT/ copy
  abort: error: Connection refused
  [255]

  $ test -d copy
  [1]

  $ cat > dumb.py <<EOF
  > import BaseHTTPServer, SimpleHTTPServer, os, signal
  > def run(server_class=BaseHTTPServer.HTTPServer,
  >         handler_class=SimpleHTTPServer.SimpleHTTPRequestHandler):
  >     server_address = ('localhost', int(os.environ['HGPORT']))
  >     httpd = server_class(server_address, handler_class)
  >     open("listening", "w")
  >     httpd.handle_request()
  > run()
  > EOF

  $ python dumb.py 2> log &
  $ P=$!
  $ while [ ! -f listening ]; do true; done
  $ hg clone http://localhost:$HGPORT/foo copy2
  abort: HTTP Error 404: * (glob)
  [255]
  $ wait $P
  $ cat log
  localhost - - [*] code 404, message File not found (glob)
  localhost - - [*] "GET /foo?cmd=capabilities HTTP/1.1" 404 - (glob)