Git Mailing List Archive mirror
 help / color / mirror / Atom feed
blob 41f3d16ef9f4a40a1c7d2537b3d4d1884b4b64f3 1013 bytes (raw)
name: t/t5557-http-get.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
 
#!/bin/sh

test_description='test downloading a file by URL'


. ./test-lib.sh

. "$TEST_DIRECTORY"/lib-httpd.sh
start_httpd

test_expect_success 'get by URL: 404' '
	test_when_finished "rm -f file.temp" &&
	url="$HTTPD_URL/none.txt" &&
	cat >input <<-EOF &&
	capabilities
	get $url file1
	EOF

	test_must_fail git remote-http $url <input 2>err &&
	test_path_is_missing file1 &&
	grep "failed to download file at URL" err
'

test_expect_success 'get by URL: 200' '
	echo data >"$HTTPD_DOCUMENT_ROOT_PATH/exists.txt" &&

	url="$HTTPD_URL/exists.txt" &&
	cat >input <<-EOF &&
	capabilities
	get $url file2

	EOF

	git remote-http $url <input &&
	test_cmp "$HTTPD_DOCUMENT_ROOT_PATH/exists.txt" file2
'

test_expect_success 'get by URL with progress' '
	echo hello >"$HTTPD_DOCUMENT_ROOT_PATH/hello.txt" &&

	url="$HTTPD_URL/hello.txt" &&
	cat >input <<-EOF &&
	capabilities
	option progress true
	get $url file3

	EOF

	git remote-http $url <input 2>err &&
	test_grep "^Downloading via HTTP: 100%" err
'

test_done

debug log:

solving 41f3d16ef9 ...
found 41f3d16ef9 in https://80x24.org/lore/git/20250219-toon-bundleuri-progress-v2-5-a84e7ffa921a@iotcl.com/
found 67fcc23f11 in https://80x24.org/lore/pub/scm/linux/kernel/git/mst/git.git/
preparing index
index prepared:
100755 67fcc23f1105c12798c16ca01522f507b54b4b73	t/t5557-http-get.sh

applying [1/1] https://80x24.org/lore/git/20250219-toon-bundleuri-progress-v2-5-a84e7ffa921a@iotcl.com/
diff --git a/t/t5557-http-get.sh b/t/t5557-http-get.sh
index 67fcc23f11..41f3d16ef9 100755

Checking patch t/t5557-http-get.sh...
Applied patch t/t5557-http-get.sh cleanly.

index at:
100755 41f3d16ef9f4a40a1c7d2537b3d4d1884b4b64f3	t/t5557-http-get.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.^

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).