# HG changeset patch # User Eric Hopper # Date 1151624663 25200 # Node ID 84655f721f397dcc6863ca573fbd7779883b6671 # Parent 419c42223bee1eb4bdf652266679507a41e16547 Add a test for getting raw files via the web UI. diff -r 419c42223bee -r 84655f721f39 tests/get-with-headers.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/get-with-headers.py Thu Jun 29 16:44:23 2006 -0700 @@ -0,0 +1,16 @@ +#!/usr/bin/env python + +__doc__ = """This does HTTP get requests given a host:port and path and returns +a subset of the headers plus the body of the result.""" + +import httplib, sys +headers = [h.lower() for h in sys.argv[3:]] +conn = httplib.HTTPConnection(sys.argv[1]) +conn.request("GET", sys.argv[2]) +response = conn.getresponse() +print response.status, response.reason +for h in headers: + if response.getheader(h, None) is not None: + print "%s: %s" % (h, response.getheader(h)) +print +sys.stdout.write(response.read()) diff -r 419c42223bee -r 84655f721f39 tests/test-webraw --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-webraw Thu Jun 29 16:44:23 2006 -0700 @@ -0,0 +1,20 @@ +#!/bin/sh + +hg init test +cd test +cat >sometext.txt <getoutput.txt & + +sleep 5 +kill `cat hg.pid` +sleep 1 # wait for server to scream and die +cat getoutput.txt +cat access.log error.log | sed 's/^\([^[]*\[\)[^]]*\(\].*\)$/\1date\2/g' diff -r 419c42223bee -r 84655f721f39 tests/test-webraw.out --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-webraw.out Thu Jun 29 16:44:23 2006 -0700 @@ -0,0 +1,10 @@ +200 Script output follows +content-type: text/plain +content-length: 157 +content-disposition: filename=sometext.txt + +This is just some random text +that will go inside the file and take a few lines. +It is very boring to read, but computers don't +care about things like that. +localhost - - [date] "GET /?f=f165dc289438;file=sometext.txt;style=raw HTTP/1.1" 200 -