зеркало из https://github.com/microsoft/git.git
t9901: fix line-ending dependency on windows
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
13d24b018f
Коммит
f64943d242
|
@ -7,31 +7,32 @@ This test checks that git web--browse can handle various valid URLs.'
|
||||||
|
|
||||||
. ./test-lib.sh
|
. ./test-lib.sh
|
||||||
|
|
||||||
|
test_web_browse () {
|
||||||
|
# browser=$1 url=$2
|
||||||
|
git web--browse --browser="$1" "$2" >actual &&
|
||||||
|
tr -d '\015' <actual >text &&
|
||||||
|
test_cmp expect text
|
||||||
|
}
|
||||||
|
|
||||||
test_expect_success \
|
test_expect_success \
|
||||||
'URL with an ampersand in it' '
|
'URL with an ampersand in it' '
|
||||||
echo http://example.com/foo\&bar >expect &&
|
echo http://example.com/foo\&bar >expect &&
|
||||||
git config browser.custom.cmd echo &&
|
git config browser.custom.cmd echo &&
|
||||||
git web--browse --browser=custom \
|
test_web_browse custom http://example.com/foo\&bar
|
||||||
http://example.com/foo\&bar >actual &&
|
|
||||||
test_cmp expect actual
|
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success \
|
test_expect_success \
|
||||||
'URL with a semi-colon in it' '
|
'URL with a semi-colon in it' '
|
||||||
echo http://example.com/foo\;bar >expect &&
|
echo http://example.com/foo\;bar >expect &&
|
||||||
git config browser.custom.cmd echo &&
|
git config browser.custom.cmd echo &&
|
||||||
git web--browse --browser=custom \
|
test_web_browse custom http://example.com/foo\;bar
|
||||||
http://example.com/foo\;bar >actual &&
|
|
||||||
test_cmp expect actual
|
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success \
|
test_expect_success \
|
||||||
'URL with a hash in it' '
|
'URL with a hash in it' '
|
||||||
echo http://example.com/foo#bar >expect &&
|
echo http://example.com/foo#bar >expect &&
|
||||||
git config browser.custom.cmd echo &&
|
git config browser.custom.cmd echo &&
|
||||||
git web--browse --browser=custom \
|
test_web_browse custom http://example.com/foo#bar
|
||||||
http://example.com/foo#bar >actual &&
|
|
||||||
test_cmp expect actual
|
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success \
|
test_expect_success \
|
||||||
|
@ -43,9 +44,7 @@ test_expect_success \
|
||||||
EOF
|
EOF
|
||||||
chmod +x "fake browser" &&
|
chmod +x "fake browser" &&
|
||||||
git config browser.w3m.path "`pwd`/fake browser" &&
|
git config browser.w3m.path "`pwd`/fake browser" &&
|
||||||
git web--browse --browser=w3m \
|
test_web_browse w3m http://example.com/foo
|
||||||
http://example.com/foo >actual &&
|
|
||||||
test_cmp expect actual
|
|
||||||
'
|
'
|
||||||
|
|
||||||
test_expect_success \
|
test_expect_success \
|
||||||
|
@ -58,9 +57,7 @@ test_expect_success \
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
f" &&
|
f" &&
|
||||||
git web--browse --browser=custom \
|
test_web_browse custom http://example.com/foo
|
||||||
http://example.com/foo >actual &&
|
|
||||||
test_cmp expect actual
|
|
||||||
'
|
'
|
||||||
|
|
||||||
test_done
|
test_done
|
||||||
|
|
Загрузка…
Ссылка в новой задаче