summaryrefslogtreecommitdiff
path: root/t/interop/i5500-git-daemon.sh
blob: 4d22e42f8422adac89c37ba4ef94f8a8ca66f413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/sh
 
VERSION_A=.
VERSION_B=v1.0.0
 
: ${LIB_GIT_DAEMON_PORT:=5500}
LIB_GIT_DAEMON_COMMAND='git.a daemon'
 
test_description='clone and fetch by older client'
. ./interop-lib.sh
. "$TEST_DIRECTORY"/lib-git-daemon.sh
 
start_git_daemon --export-all
 
repo=$GIT_DAEMON_DOCUMENT_ROOT_PATH/repo
 
test_expect_success "create repo served by $VERSION_A" '
	git.a init "$repo" &&
	git.a -C "$repo" commit --allow-empty -m one
'
 
test_expect_success "clone with $VERSION_B" '
	git.b clone "$GIT_DAEMON_URL/repo" child &&
	echo one >expect &&
	git.a -C child log -1 --format=%s >actual &&
	test_cmp expect actual
'
 
test_expect_success "fetch with $VERSION_B" '
	git.a -C "$repo" commit --allow-empty -m two &&
	(
		cd child &&
		git.b fetch
	) &&
	echo two >expect &&
	git.a -C child log -1 --format=%s FETCH_HEAD >actual &&
	test_cmp expect actual
'
 
test_done