@@ -7,31 +7,32 @@ This test checks that git web--browse can handle various valid URLs.'
7
7
8
8
. ./test-lib.sh
9
9
10
+ test_web_browse () {
11
+ # browser=$1 url=$2
12
+ git web--browse --browser=" $1 " " $2 " > actual &&
13
+ tr -d ' \015' < actual > text &&
14
+ test_cmp expect text
15
+ }
16
+
10
17
test_expect_success \
11
18
' URL with an ampersand in it' '
12
19
echo http://example.com/foo\&bar >expect &&
13
20
git config browser.custom.cmd echo &&
14
- git web--browse --browser=custom \
15
- http://example.com/foo\&bar >actual &&
16
- test_cmp expect actual
21
+ test_web_browse custom http://example.com/foo\&bar
17
22
'
18
23
19
24
test_expect_success \
20
25
' URL with a semi-colon in it' '
21
26
echo http://example.com/foo\;bar >expect &&
22
27
git config browser.custom.cmd echo &&
23
- git web--browse --browser=custom \
24
- http://example.com/foo\;bar >actual &&
25
- test_cmp expect actual
28
+ test_web_browse custom http://example.com/foo\;bar
26
29
'
27
30
28
31
test_expect_success \
29
32
' URL with a hash in it' '
30
33
echo http://example.com/foo#bar >expect &&
31
34
git config browser.custom.cmd echo &&
32
- git web--browse --browser=custom \
33
- http://example.com/foo#bar >actual &&
34
- test_cmp expect actual
35
+ test_web_browse custom http://example.com/foo#bar
35
36
'
36
37
37
38
test_expect_success \
@@ -43,9 +44,7 @@ test_expect_success \
43
44
EOF
44
45
chmod +x "fake browser" &&
45
46
git config browser.w3m.path "`pwd`/fake browser" &&
46
- git web--browse --browser=w3m \
47
- http://example.com/foo >actual &&
48
- test_cmp expect actual
47
+ test_web_browse w3m http://example.com/foo
49
48
'
50
49
51
50
test_expect_success \
@@ -58,9 +57,7 @@ test_expect_success \
58
57
done
59
58
}
60
59
f" &&
61
- git web--browse --browser=custom \
62
- http://example.com/foo >actual &&
63
- test_cmp expect actual
60
+ test_web_browse custom http://example.com/foo
64
61
'
65
62
66
63
test_done
0 commit comments