diff options
author | Tarmigan Casebolt <tarmigan+git@gmail.com> | 2010-01-02 13:43:59 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-01-06 01:18:37 -0800 |
commit | fd0a8c2e6428acb883bf4707de54b3e026c57455 (patch) | |
tree | 17bf67c72b4cd41fccf0c3355021030e52e1e9c9 /t/t556x_common | |
parent | 04481adffe7d4d969d7067d7a6d6e5e46e44f1c8 (diff) | |
download | git-fd0a8c2e6428acb883bf4707de54b3e026c57455.tar.gz |
Smart-http tests: Test http-backend without curl or a webserver
This reuses many of the tests from the old t5560 but runs those tests
without curl or a webserver. This will hopefully increase the testing
coverage for http-backend because it does not require users to set
GIT_TEST_HTTPD.
Signed-off-by: Tarmigan Casebolt <tarmigan+git@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t556x_common')
-rwxr-xr-x | t/t556x_common | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/t/t556x_common b/t/t556x_common index 1b4921c878..be024e551c 100755 --- a/t/t556x_common +++ b/t/t556x_common @@ -50,6 +50,7 @@ get_static_files() { } SMART=smart +export GIT_HTTP_EXPORT_ALL=1 test_expect_success 'direct refs/heads/master not found' ' log_div "refs/heads/master" GET refs/heads/master "404 Not Found" @@ -59,6 +60,7 @@ test_expect_success 'static file is ok' ' get_static_files "200 OK" ' SMART=smart_noexport +unset GIT_HTTP_EXPORT_ALL test_expect_success 'no export by default' ' log_div "no git-daemon-export-ok" get_static_files "404 Not Found" @@ -71,6 +73,7 @@ test_expect_success 'export if git-daemon-export-ok' ' get_static_files "200 OK" ' SMART=smart +export GIT_HTTP_EXPORT_ALL=1 test_expect_success 'static file if http.getanyfile true is ok' ' log_div "getanyfile true" config http.getanyfile true && |