git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
blob 3fad9462d36a5f6dd836028ffce7b01dbcf74531 2420 bytes (raw)
name: t/t5705-trace2-sid-in-capabilities.sh 	 # note: path name is non-authoritative(*)

 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
 
#!/bin/sh

test_description='trace2 SID in capabilities'

. ./test-lib.sh

REPO="$(pwd)/repo"
LOCAL_PRISTINE="$(pwd)/local_pristine"

test_expect_success 'setup repos for trace2 SID capability tests' '
	git init "$REPO" &&
	test_commit -C "$REPO" a &&
	git clone "file://$REPO" "$LOCAL_PRISTINE" &&
	test_commit -C "$REPO" b
'

for PROTO in 0 1 2
do
	test_expect_success "trace2 session IDs not advertised by default (fetch v${PROTO})" '
		test_when_finished "rm -rf local tr2-client-events tr2-server-events" &&
		cp -r "$LOCAL_PRISTINE" local &&
		GIT_TRACE2_EVENT="$(pwd)/tr2-client-events" \
		git -c protocol.version=$PROTO -C local fetch \
			--upload-pack "GIT_TRACE2_EVENT=\"$(pwd)/tr2-server-events\" git-upload-pack" \
			origin &&
		test -z "$(grep \"key\":\"server-sid\" tr2-client-events)" &&
		test -z "$(grep \"key\":\"client-sid\" tr2-server-events)"
	'

	test_expect_success "trace2 session IDs not advertised by default (push v${PROTO})" '
		test_when_finished "rm -rf local tr2-client-events" &&
		cp -r "$LOCAL_PRISTINE" local &&
		git -C local pull --no-rebase origin &&
		GIT_TRACE2_EVENT_NESTING=5 \
		GIT_TRACE2_EVENT="$(pwd)/tr2-client-events" \
		git -c protocol.version=$PROTO -C local push origin &&
		test -z "$(grep \"key\":\"server-sid\" tr2-client-events)"
	'
done

test_expect_success 'enable SID advertisement' '
	git -C "$REPO" config trace2.advertiseSID true &&
	git -C "$LOCAL_PRISTINE" config trace2.advertiseSID true
'

for PROTO in 0 1 2
do
	test_expect_success "trace2 session IDs advertised (fetch v${PROTO})" '
		test_when_finished "rm -rf local tr2-client-events tr2-server-events" &&
		cp -r "$LOCAL_PRISTINE" local &&
		git -C local config trace2.advertiseSID true &&
		GIT_TRACE2_EVENT="$(pwd)/tr2-client-events" \
		git -c protocol.version=$PROTO -C local fetch \
			--upload-pack "GIT_TRACE2_EVENT=\"$(pwd)/tr2-server-events\" git-upload-pack" \
			origin &&
		grep \"key\":\"server-sid\" tr2-client-events &&
		grep \"key\":\"client-sid\" tr2-server-events
	'

	test_expect_success "trace2 session IDs advertised (push v${PROTO})" '
		test_when_finished "rm -rf local tr2-client-events" &&
		cp -r "$LOCAL_PRISTINE" local &&
		git -C local pull --no-rebase origin &&
		GIT_TRACE2_EVENT_NESTING=5 \
		GIT_TRACE2_EVENT="$(pwd)/tr2-client-events" \
		git -c protocol.version=$PROTO -C local push origin &&
		grep \"key\":\"server-sid\" tr2-client-events
	'
done

test_done

debug log:

solving 3fad9462d3 ...
found 3fad9462d3 in https://public-inbox.org/git/23f44bc904dfdd31f68a27c587b4b61df4bc0041.1604355792.git.steadmon@google.com/ ||
	https://public-inbox.org/git/b160941c65e633f60fe08d71110e1d30b079c40e.1604006121.git.steadmon@google.com/
found 0870e78f7c in https://public-inbox.org/git/1519767eadc396fa8de66c8a60b163f005aac503.1604006121.git.steadmon@google.com/ ||
	https://public-inbox.org/git/21bdbf23f39c800b1722c54b666df7a91b5879b5.1604355792.git.steadmon@google.com/

applying [1/2] https://public-inbox.org/git/1519767eadc396fa8de66c8a60b163f005aac503.1604006121.git.steadmon@google.com/
diff --git a/t/t5705-trace2-sid-in-capabilities.sh b/t/t5705-trace2-sid-in-capabilities.sh
new file mode 100755
index 0000000000..0870e78f7c

Checking patch t/t5705-trace2-sid-in-capabilities.sh...
Applied patch t/t5705-trace2-sid-in-capabilities.sh cleanly.

skipping https://public-inbox.org/git/21bdbf23f39c800b1722c54b666df7a91b5879b5.1604355792.git.steadmon@google.com/ for 0870e78f7c
index at:
100755 0870e78f7c11c056ca11103077211f6ed6f38e33	t/t5705-trace2-sid-in-capabilities.sh

applying [2/2] https://public-inbox.org/git/23f44bc904dfdd31f68a27c587b4b61df4bc0041.1604355792.git.steadmon@google.com/
diff --git a/t/t5705-trace2-sid-in-capabilities.sh b/t/t5705-trace2-sid-in-capabilities.sh
index 0870e78f7c..3fad9462d3 100755

Checking patch t/t5705-trace2-sid-in-capabilities.sh...
Applied patch t/t5705-trace2-sid-in-capabilities.sh cleanly.

skipping https://public-inbox.org/git/b160941c65e633f60fe08d71110e1d30b079c40e.1604006121.git.steadmon@google.com/ for 3fad9462d3
index at:
100755 3fad9462d36a5f6dd836028ffce7b01dbcf74531	t/t5705-trace2-sid-in-capabilities.sh

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).