fredagen den 1 februari 2008 skrev Junio C Hamano:
Oops. Remove the echo $?. It still fails, i.e. git add succeeds when
it shouldn't. I was double checking it just before sending the patch.
Can we move the default trash one level down for all tests? That
would give us one free level to play with.
I respect that.
[...]
If I recall things properly there are lots of test that test for success
rather than checking that the command does what it should.
Update follows.
-- robin
From 11a52821ca81096987f53c29bf1b9ce373fe7fd4 Mon Sep 17 00:00:00 2001
From: Robin Rosenberg <robin.rosenberg@dewire.com>
Date: Fri, 1 Feb 2008 05:29:38 +0100
Subject: [PATCH] More test cases for sanitized path names
Verify a few more commands and pathname variants.
Signed-off-by: Robin Rosenberg <robin.rosenberg@dewire.com>
---
t/t7010-setup.sh | 42 ++++++++++++++++++++++++++++++++++++++++++
1 files changed, 42 insertions(+), 0 deletions(-)
diff --git a/t/t7010-setup.sh b/t/t7010-setup.sh
index da20ba5..ef30099 100755
--- a/t/t7010-setup.sh
+++ b/t/t7010-setup.sh
@@ -4,6 +4,10 @@ test_description='setup taking and sanitizing funny paths'
. ./test-lib.sh
+rm -rf .git
+test_create_repo repo
+cd repo
+
test_expect_success setup '
mkdir -p a/b/c a/e &&
@@ -114,4 +118,42 @@ test_expect_success 'git ls-files (relative #3)' '
'
+test_expect_success 'commit using absolute path names' '
+ git commit -m "foo" &&
+ echo aa >>a/b/c/d &&
+ git commit -m "aa" "$(pwd)/a/b/c/d"
+'
+
+test_expect_success 'log using absolute path names' '
+ echo bb >>a/b/c/d &&
+ git commit -m "bb" $(pwd)/a/b/c/d &&
+
+ git log a/b/c/d >f1.txt &&
+ git log "$(pwd)/a/b/c/d" >f2.txt &&
+ diff -u f1.txt f2.txt
+'
+
+test_expect_success 'blame using absolute path names' '
+ git blame a/b/c/d >f1.txt &&
+ git blame "$(pwd)/a/b/c/d" >f2.txt &&
+ diff -u f1.txt f2.txt
+'
+
+test_expect_success 'add a directory outside the work tree' '
+ d1="$(cd .. ; pwd)" &&
+ ! git add "$d1"
+'
+
+test_expect_success 'add a file outside the work tree, nasty case 1' '(
+ f="$(pwd)x" &&
+ touch "$f" &&
+ ! git add "$f"
+)'
+
+test_expect_success 'add a file outside the work tree, nasty case 2' '(
+ f="$(pwd|sed "s/.$//")x" &&
+ touch "$f" &&
+ ! git add "$f"
+)'
+
test_done
--
1.5.4.rc4.25.g81cc
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html