]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/lib-httpd.sh
Merge branch 'sb/object-store-lookup'
[thirdparty/git.git] / t / lib-httpd.sh
index ed41b155af9a38a471a2518fc42d7c9a1f110da1..a8729f82325ee7fb9350c42553e11205e6720928 100644 (file)
@@ -288,3 +288,24 @@ expect_askpass() {
        test_cmp "$TRASH_DIRECTORY/askpass-expect" \
                 "$TRASH_DIRECTORY/askpass-query"
 }
+
+strip_access_log() {
+       sed -e "
+               s/^.* \"//
+               s/\"//
+               s/ [1-9][0-9]*\$//
+               s/^GET /GET  /
+       " "$HTTPD_ROOT_PATH"/access.log
+}
+
+# Requires one argument: the name of a file containing the expected stripped
+# access log entries.
+check_access_log() {
+       sort "$1" >"$1".sorted &&
+       strip_access_log >access.log.stripped &&
+       sort access.log.stripped >access.log.sorted &&
+       if ! test_cmp "$1".sorted access.log.sorted
+       then
+               test_cmp "$1" access.log.stripped
+       fi
+}