comparison tests/test-oldcgi @ 2533:589474a1dc36

Create a test to make sure old CGI scripts will still work.
author Eric Hopper <hopper@omnifarious.org>
date Thu, 29 Jun 2006 18:31:17 -0700
parents
children 8106e477f584
comparison
equal deleted inserted replaced
2532:84655f721f39 2533:589474a1dc36
1 #!/bin/sh
2
3 hg init test
4
5 cat >hgweb.cgi <<HGWEB
6 #!/usr/bin/env python
7 #
8 # An example CGI script to use hgweb, edit as necessary
9
10 import cgitb, os, sys
11 cgitb.enable()
12
13 # sys.path.insert(0, "/path/to/python/lib") # if not a system-wide install
14 from mercurial import hgweb
15
16 h = hgweb.hgweb("test", "Empty test repository")
17 h.run()
18 HGWEB
19 chmod 755 hgweb.cgi
20
21 cat >hgweb.config <<HGWEBDIRCONF
22 [paths]
23 test = test
24 HGWEBDIRCONF
25
26 cat >hgwebdir.cgi <<HGWEBDIR
27 #!/usr/bin/env python
28 #
29 # An example CGI script to export multiple hgweb repos, edit as necessary
30
31 import cgitb, sys
32 cgitb.enable()
33
34 # sys.path.insert(0, "/path/to/python/lib") # if not a system-wide install
35 from mercurial import hgweb
36
37 # The config file looks like this. You can have paths to individual
38 # repos, collections of repos in a directory tree, or both.
39 #
40 # [paths]
41 # virtual/path = /real/path
42 # virtual/path = /real/path
43 #
44 # [collections]
45 # /prefix/to/strip/off = /root/of/tree/full/of/repos
46 #
47 # collections example: say directory tree /foo contains repos /foo/bar,
48 # /foo/quux/baz. Give this config section:
49 # [collections]
50 # /foo = /foo
51 # Then repos will list as bar and quux/baz.
52
53 # Alternatively you can pass a list of ('virtual/path', '/real/path') tuples
54 # or use a dictionary with entries like 'virtual/path': '/real/path'
55
56 h = hgweb.hgwebdir("hgweb.config")
57 h.run()
58 HGWEBDIR
59 chmod 755 hgwebdir.cgi
60
61 declare -x DOCUMENT_ROOT="/var/www/hg"
62 declare -x GATEWAY_INTERFACE="CGI/1.1"
63 declare -x HTTP_ACCEPT="text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5"
64 declare -x HTTP_ACCEPT_CHARSET="ISO-8859-1,utf-8;q=0.7,*;q=0.7"
65 declare -x HTTP_ACCEPT_ENCODING="gzip,deflate"
66 declare -x HTTP_ACCEPT_LANGUAGE="en-us,en;q=0.5"
67 declare -x HTTP_CACHE_CONTROL="max-age=0"
68 declare -x HTTP_CONNECTION="keep-alive"
69 declare -x HTTP_HOST="hg.omnifarious.org"
70 declare -x HTTP_KEEP_ALIVE="300"
71 declare -x HTTP_USER_AGENT="Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.0.4) Gecko/20060608 Ubuntu/dapper-security Firefox/1.5.0.4"
72 declare -x OLDPWD
73 declare -x PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin"
74 declare -x PATH_INFO="/"
75 declare -x PATH_TRANSLATED="/var/www/hg/index.html"
76 declare -x PWD="/home/hopper/hg_public"
77 declare -x QUERY_STRING=""
78 declare -x REMOTE_ADDR="127.0.0.2"
79 declare -x REMOTE_PORT="44703"
80 declare -x REQUEST_METHOD="GET"
81 declare -x REQUEST_URI="/test/"
82 declare -x SCRIPT_FILENAME="/home/hopper/hg_public/test.cgi"
83 declare -x SCRIPT_NAME="/test"
84 declare -x SCRIPT_URI="http://hg.omnifarious.org/test/"
85 declare -x SCRIPT_URL="/test/"
86 declare -x SERVER_ADDR="127.0.0.1"
87 declare -x SERVER_ADMIN="eric@localhost"
88 declare -x SERVER_NAME="hg.omnifarious.org"
89 declare -x SERVER_PORT="80"
90 declare -x SERVER_PROTOCOL="HTTP/1.1"
91 declare -x SERVER_SIGNATURE="<address>Apache/2.0.53 (Fedora) Server at hg.omnifarious.org Port 80</address>\
92 "
93 declare -x SERVER_SOFTWARE="Apache/2.0.53 (Fedora)"
94 ./hgweb.cgi >page1 2>&1 ; echo $?
95 ./hgwebdir.cgi >page2 2>&1 ; echo $?
96 fgrep -i error page1 page2 && exit 1
97 exit 0