git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: koreth@midwinter.com
To: git@vger.kernel.org
Subject: [PATCH] Add test cases for handling of name conflicts between files and directories.
Date: Fri, 16 Mar 2007 17:00:04 -0700	[thread overview]
Message-ID: <20070317000004.GA14919@midwinter.com> (raw)

Here are a few test cases for the file/directory name conflict patch.

---
 t/t7201-co.sh |   70 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 70 insertions(+), 0 deletions(-)

diff --git a/t/t7201-co.sh b/t/t7201-co.sh
index 867bbd2..6692f25 100755
--- a/t/t7201-co.sh
+++ b/t/t7201-co.sh
@@ -36,6 +36,9 @@ test_expect_success setup '
 	git update-index --add --remove one two three &&
 	git commit -m "Side M one, D two, A three" &&
 
+	git branch with-file master &&
+	git branch with-dir master &&
+
 	git checkout master
 '
 
@@ -129,4 +132,71 @@ test_expect_success 'checkout -m with merge conflict' '
 	! test -s current
 '
 
+test_expect_success 'checkout with file/directory conflict' '
+
+	git checkout -f with-dir && git clean &&
+
+	mv one one- &&
+	mkdir one &&
+	mv one- one/file &&
+	git add one/file &&
+	git commit -m "with-dir D one A one/file" &&
+	
+	git checkout with-file &&
+	git checkout with-dir
+'
+
+test_expect_success 'checkout with file/directory conflict and modified file in dir' '
+
+	git checkout -f with-dir && git-clean &&
+
+	fill 1 2 3 4 5 6 7 > one/file &&
+	if git checkout with-file
+	then
+		echo Should have detected modified file in subdirectory
+		false
+	else
+		echo "happy - failed correctly"
+	fi
+'
+
+test_expect_success 'checkout with file/directory conflict and untracked file in dir' '
+
+	git checkout -f with-dir && git-clean &&
+
+	fill 1 2 3 > one/file2 &&
+	if git checkout with-file
+	then
+		echo Should have detected untracked file in subdirectory
+		false
+	else
+		echo "happy - failed correctly"
+	fi &&
+	rm one/file2
+'
+
+test_expect_success 'checkout with file/directory conflict and deleted file in dir' '
+
+	git checkout -f with-dir && git-clean &&
+
+	rm one/file &&
+	git checkout with-file
+'
+
+test_expect_success 'checkout with file/directory conflict and modified file' '
+
+	git checkout -f with-file && git-clean &&
+
+	fill 1 2 3 > one &&
+	if git checkout with-dir
+	then
+		echo Should have detected modified file
+		false
+	else
+		echo "happy - failed correctly"
+	fi &&
+
+	git reset --hard
+'
+
 test_done
-- 
1.5.0.4.404.gdbb2-dirty

                 reply	other threads:[~2007-03-17  0:00 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20070317000004.GA14919@midwinter.com \
    --to=koreth@midwinter.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).