From: Paul Tan <pyokagan@gmail.com>
To: git@vger.kernel.org
Cc: Paul Tan <pyokagan@gmail.com>
Subject: [PATCH 2/2] tests: test credential-store XDG support
Date: Wed, 4 Mar 2015 04:24:59 +0800 [thread overview]
Message-ID: <1425414299-24000-3-git-send-email-pyokagan@gmail.com> (raw)
In-Reply-To: <1425414299-24000-1-git-send-email-pyokagan@gmail.com>
* "helper_test store" is run for when $XDG_CONFIG_HOME/git/credentials
exists and ~/.git-credentials does not and the other way around.
* Test that credentials are stored in XDG file if both XDG and HOME
files exist.
* Test that credentials from XDG file are used if matching credentials
are found in both XDG and HOME files.
* Test that credentials from HOME file are used if a matching credential
could not be found in the XDG file.
* Test that when erasing credentials, matching credentials in both the
XDG and HOME files are erase.d
Signed-off-by: Paul Tan <pyokagan@gmail.com>
---
t/t0302-credential-store.sh | 74 +++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 74 insertions(+)
diff --git a/t/t0302-credential-store.sh b/t/t0302-credential-store.sh
index f61b40c..80893b9 100755
--- a/t/t0302-credential-store.sh
+++ b/t/t0302-credential-store.sh
@@ -4,6 +4,80 @@ test_description='credential-store tests'
. ./test-lib.sh
. "$TEST_DIRECTORY"/lib-credential.sh
+# Tests for when ~/.git-credentials exists but
+# $XDG_CONFIG_HOME/git/credentials does not
helper_test store
+test_expect_success '~/.git-credentials is written to when XDG git-credentials does not exist' '
+ test -s "$HOME/.git-credentials"
+'
+test_expect_success 'XDG credentials will not be created if it does not exist' '
+ test ! -e "${XDG_CONFIG_HOME:-$HOME/.config}/git/credentials"
+'
+
+# Tests for when $XDG_CONFIG_HOME/git/credentials exists but
+# ~/.git-credentials does not.
+rm "$HOME/.git-credentials"
+mkdir -p "${XDG_CONFIG_HOME:-$HOME/.config}/git"
+echo '' > "${XDG_CONFIG_HOME:-$HOME/.config}/git/credentials"
+helper_test store
+test_expect_success '~/.git-credentials will not be created if XDG git-credentials exist' '
+ test ! -e "$HOME/.git-credentials"
+'
+test_expect_success 'XDG credentials will be written to if it exists' '
+ test -s "${XDG_CONFIG_HOME:-$HOME/.config}/git/credentials"
+'
+
+# Tests for when both $XDG_CONFIG_HOME/git/credentials and
+# ~/.git-credentials exists.
+echo '' > "$HOME/.git-credentials"
+echo '' > "${XDG_CONFIG_HOME:-$HOME/.config}/git/credentials"
+test_expect_success 'Credentials are stored in XDG file if both XDG and HOME files exist' '
+ check approve store <<-\EOF
+ protocol=https
+ host=example.com
+ username=store-user
+ password=store-pass
+ EOF
+ read contents < "${XDG_CONFIG_HOME:-$HOME/.config}/git/credentials"
+ test ! -z "$contents"
+ read contents < "$HOME/.git-credentials"
+ test -z "$contents"
+'
+test_expect_success 'Credentials from XDG file are used if the credentials exist in both XDG and HOME files' '
+ echo "https://baduser:badpass@example.com" > "$HOME/.git-credentials"
+ check fill store <<-\EOF
+ protocol=https
+ host=example.com
+ --
+ protocol=https
+ host=example.com
+ username=store-user
+ password=store-pass
+ --
+ EOF
+'
+test_expect_success 'Credentials from HOME file are used if the XDG files does not have them' '
+ echo "" > "${XDG_CONFIG_HOME:-$HOME/.config}/git/credentials"
+ check fill store <<-\EOF
+ protocol=https
+ host=example.com
+ --
+ protocol=https
+ host=example.com
+ username=baduser
+ password=badpass
+ --
+ EOF
+'
+test_expect_success 'Credentials from both XDG and HOME files meeting the criteria are erased' '
+ check reject $HELPER <<-\EOF &&
+ protocol=https
+ host=example.com
+ EOF
+ read contents < "${XDG_CONFIG_HOME:-$HOME/.config}/git/credentials"
+ test -z "$contents"
+ read contents < "$HOME/.git-credentials"
+ test -z "$contents"
+'
test_done
--
2.1.4
next prev parent reply other threads:[~2015-03-03 20:28 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-03 20:24 [PATCH] [GSoC15] git-credentials-store: support XDG config dir Paul Tan
2015-03-03 20:24 ` [PATCH 1/2] git-credential-store: " Paul Tan
2015-03-03 22:00 ` Matthieu Moy
2015-03-03 23:01 ` Junio C Hamano
2015-03-04 9:45 ` Jeff King
2015-03-05 6:26 ` Paul Tan
2015-03-05 18:37 ` Junio C Hamano
2015-03-06 9:57 ` Matthieu Moy
2015-03-03 20:24 ` Paul Tan [this message]
2015-03-03 22:08 ` [PATCH 2/2] tests: test credential-store XDG support Matthieu Moy
2015-03-03 23:11 ` Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1425414299-24000-3-git-send-email-pyokagan@gmail.com \
--to=pyokagan@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).