diff options
author | Vincent Ambo <mail@tazj.in> | 2021-09-21T10·03+0300 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2021-09-21T11·29+0300 |
commit | 43b1791ec601732ac31195df96781a848360a9ac (patch) | |
tree | daae8d638343295d2f1f7da955e556ef4c958864 /third_party/git/t/t5560-http-backend-noserver.sh | |
parent | 2d8e7dc9d9c38127ec4ebd13aee8e8f586a43318 (diff) |
chore(3p/git): Unvendor git and track patches instead r/2903
This was vendored a long time ago under the expectation that keeping it in sync with cgit would be easier this way, but it has proven not to be a big issue. On the other hand, a vendored copy of git is an annoying maintenance burden. It is much easier to rebase the single (dottime) patch that we have. This removes the vendored copy of git and instead passes the git source code to cgit via `pkgs.srcOnly`, which includes the applied patch so that cgit can continue rendering dottime. Change-Id: If31f62dea7ce688fd1b9050204e9378019775f2b
Diffstat (limited to 'third_party/git/t/t5560-http-backend-noserver.sh')
-rwxr-xr-x | third_party/git/t/t5560-http-backend-noserver.sh | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/third_party/git/t/t5560-http-backend-noserver.sh b/third_party/git/t/t5560-http-backend-noserver.sh deleted file mode 100755 index 9fafcf194589..000000000000 --- a/third_party/git/t/t5560-http-backend-noserver.sh +++ /dev/null @@ -1,74 +0,0 @@ -#!/bin/sh - -test_description='test git-http-backend-noserver' -. ./test-lib.sh - -HTTPD_DOCUMENT_ROOT_PATH="$TRASH_DIRECTORY" - -if test_have_prereq GREP_STRIPS_CR -then - GREP_OPTIONS=-U - export GREP_OPTIONS -fi - -run_backend() { - echo "$2" | - QUERY_STRING="${1#*[?]}" \ - PATH_TRANSLATED="$HTTPD_DOCUMENT_ROOT_PATH/${1%%[?]*}" \ - git http-backend >act.out 2>act.err -} - -GET() { - REQUEST_METHOD="GET" && export REQUEST_METHOD && - run_backend "/repo.git/$1" && - sane_unset REQUEST_METHOD && - if ! grep "Status" act.out >act - then - printf "Status: 200 OK\r\n" >act - fi - printf "Status: $2\r\n" >exp && - test_cmp exp act -} - -POST() { - REQUEST_METHOD="POST" && export REQUEST_METHOD && - CONTENT_TYPE="application/x-$1-request" && export CONTENT_TYPE && - run_backend "/repo.git/$1" "$2" && - sane_unset REQUEST_METHOD && - sane_unset CONTENT_TYPE && - if ! grep "Status" act.out >act - then - printf "Status: 200 OK\r\n" >act - fi - printf "Status: $3\r\n" >exp && - test_cmp exp act -} - -. "$TEST_DIRECTORY"/t556x_common - -expect_aliased() { - REQUEST_METHOD="GET" && export REQUEST_METHOD && - if test $1 = 0; then - run_backend "$2" - else - run_backend "$2" && - echo "fatal: '$2': aliased" >exp.err && - test_cmp exp.err act.err - fi - unset REQUEST_METHOD -} - -test_expect_success 'http-backend blocks bad PATH_INFO' ' - config http.getanyfile true && - - expect_aliased 0 /repo.git/HEAD && - - expect_aliased 1 /repo.git/../HEAD && - expect_aliased 1 /../etc/passwd && - expect_aliased 1 ../etc/passwd && - expect_aliased 1 /etc//passwd && - expect_aliased 1 /etc/./passwd && - expect_aliased 1 //domain/data.txt -' - -test_done |