about summary refs log tree commit diff
path: root/third_party/git/t/t0301-credential-cache.sh
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2021-09-21T10·03+0300
committerVincent Ambo <mail@tazj.in>2021-09-21T11·29+0300
commit43b1791ec601732ac31195df96781a848360a9ac (patch)
treedaae8d638343295d2f1f7da955e556ef4c958864 /third_party/git/t/t0301-credential-cache.sh
parent2d8e7dc9d9c38127ec4ebd13aee8e8f586a43318 (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/t0301-credential-cache.sh')
-rwxr-xr-xthird_party/git/t/t0301-credential-cache.sh111
1 files changed, 0 insertions, 111 deletions
diff --git a/third_party/git/t/t0301-credential-cache.sh b/third_party/git/t/t0301-credential-cache.sh
deleted file mode 100755
index ebd5fa5249ca..000000000000
--- a/third_party/git/t/t0301-credential-cache.sh
+++ /dev/null
@@ -1,111 +0,0 @@
-#!/bin/sh
-
-test_description='credential-cache tests'
-. ./test-lib.sh
-. "$TEST_DIRECTORY"/lib-credential.sh
-
-test -z "$NO_UNIX_SOCKETS" || {
-	skip_all='skipping credential-cache tests, unix sockets not available'
-	test_done
-}
-
-# don't leave a stale daemon running
-test_atexit 'git credential-cache exit'
-
-# test that the daemon works with no special setup
-helper_test cache
-
-test_expect_success 'socket defaults to ~/.cache/git/credential/socket' '
-	test_when_finished "
-		git credential-cache exit &&
-		rmdir -p .cache/git/credential/
-	" &&
-	test_path_is_missing "$HOME/.git-credential-cache" &&
-	test -S "$HOME/.cache/git/credential/socket"
-'
-
-XDG_CACHE_HOME="$HOME/xdg"
-export XDG_CACHE_HOME
-# test behavior when XDG_CACHE_HOME is set
-helper_test cache
-
-test_expect_success "use custom XDG_CACHE_HOME if set and default sockets are not created" '
-	test_when_finished "git credential-cache exit" &&
-	test -S "$XDG_CACHE_HOME/git/credential/socket" &&
-	test_path_is_missing "$HOME/.git-credential-cache/socket" &&
-	test_path_is_missing "$HOME/.cache/git/credential/socket"
-'
-unset XDG_CACHE_HOME
-
-test_expect_success 'credential-cache --socket option overrides default location' '
-	test_when_finished "
-		git credential-cache exit --socket \"\$HOME/dir/socket\" &&
-		rmdir \"\$HOME/dir\"
-	" &&
-	check approve "cache --socket \"\$HOME/dir/socket\"" <<-\EOF &&
-	protocol=https
-	host=example.com
-	username=store-user
-	password=store-pass
-	EOF
-	test -S "$HOME/dir/socket"
-'
-
-test_expect_success "use custom XDG_CACHE_HOME even if xdg socket exists" '
-	test_when_finished "
-		git credential-cache exit &&
-		sane_unset XDG_CACHE_HOME
-	" &&
-	check approve cache <<-\EOF &&
-	protocol=https
-	host=example.com
-	username=store-user
-	password=store-pass
-	EOF
-	test -S "$HOME/.cache/git/credential/socket" &&
-	XDG_CACHE_HOME="$HOME/xdg" &&
-	export XDG_CACHE_HOME &&
-	check approve cache <<-\EOF &&
-	protocol=https
-	host=example.com
-	username=store-user
-	password=store-pass
-	EOF
-	test -S "$XDG_CACHE_HOME/git/credential/socket"
-'
-
-test_expect_success 'use user socket if user directory exists' '
-	test_when_finished "
-		git credential-cache exit &&
-		rmdir \"\$HOME/.git-credential-cache/\"
-	" &&
-	mkdir -p -m 700 "$HOME/.git-credential-cache/" &&
-	check approve cache <<-\EOF &&
-	protocol=https
-	host=example.com
-	username=store-user
-	password=store-pass
-	EOF
-	test -S "$HOME/.git-credential-cache/socket"
-'
-
-test_expect_success SYMLINKS 'use user socket if user directory is a symlink to a directory' '
-	test_when_finished "
-		git credential-cache exit &&
-		rmdir \"\$HOME/dir/\" &&
-		rm \"\$HOME/.git-credential-cache\"
-	" &&
-	mkdir -p -m 700 "$HOME/dir/" &&
-	ln -s "$HOME/dir" "$HOME/.git-credential-cache" &&
-	check approve cache <<-\EOF &&
-	protocol=https
-	host=example.com
-	username=store-user
-	password=store-pass
-	EOF
-	test -S "$HOME/.git-credential-cache/socket"
-'
-
-helper_test_timeout cache --timeout=1
-
-test_done