mirror of
https://github.com/curl/curl.git
synced 2025-02-05 14:30:10 +08:00
http2: emit RST when client write fails
- When the writing of response data fails, reset the stream and do not return a callback error to nghttp2. That would be a fatal error for the connection and harm other requests. - add test cases for various abort scenarios Reported-by: Konstantin Kuzov Fixes #13292 Closes #13298
This commit is contained in:
parent
b679efc0bb
commit
1302aa6b50
@ -1253,8 +1253,11 @@ static int on_data_chunk_recv(nghttp2_session *session, uint8_t flags,
|
|||||||
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
||||||
|
|
||||||
result = Curl_xfer_write_resp(data_s, (char *)mem, len, FALSE);
|
result = Curl_xfer_write_resp(data_s, (char *)mem, len, FALSE);
|
||||||
if(result && result != CURLE_AGAIN)
|
if(result && result != CURLE_AGAIN) {
|
||||||
return NGHTTP2_ERR_CALLBACK_FAILURE;
|
nghttp2_submit_rst_stream(ctx->h2, 0, stream->id,
|
||||||
|
NGHTTP2_ERR_CALLBACK_FAILURE);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
nghttp2_session_consume(ctx->h2, stream_id, len);
|
nghttp2_session_consume(ctx->h2, stream_id, len);
|
||||||
stream->nrcvd_data += (curl_off_t)len;
|
stream->nrcvd_data += (curl_off_t)len;
|
||||||
|
@ -88,7 +88,9 @@ struct transfer {
|
|||||||
char filename[128];
|
char filename[128];
|
||||||
FILE *out;
|
FILE *out;
|
||||||
curl_off_t recv_size;
|
curl_off_t recv_size;
|
||||||
|
curl_off_t fail_at;
|
||||||
curl_off_t pause_at;
|
curl_off_t pause_at;
|
||||||
|
curl_off_t abort_at;
|
||||||
int started;
|
int started;
|
||||||
int paused;
|
int paused;
|
||||||
int resumed;
|
int resumed;
|
||||||
@ -112,11 +114,14 @@ static size_t my_write_cb(char *buf, size_t nitems, size_t buflen,
|
|||||||
void *userdata)
|
void *userdata)
|
||||||
{
|
{
|
||||||
struct transfer *t = userdata;
|
struct transfer *t = userdata;
|
||||||
|
size_t blen = (nitems * buflen);
|
||||||
size_t nwritten;
|
size_t nwritten;
|
||||||
|
|
||||||
|
fprintf(stderr, "[t-%d] RECV %ld bytes, total=%ld, pause_at=%ld\n",
|
||||||
|
t->idx, (long)blen, (long)t->recv_size, (long)t->pause_at);
|
||||||
if(!t->resumed &&
|
if(!t->resumed &&
|
||||||
t->recv_size < t->pause_at &&
|
t->recv_size < t->pause_at &&
|
||||||
((t->recv_size + (curl_off_t)(nitems * buflen)) >= t->pause_at)) {
|
((t->recv_size + (curl_off_t)blen) >= t->pause_at)) {
|
||||||
fprintf(stderr, "[t-%d] PAUSE\n", t->idx);
|
fprintf(stderr, "[t-%d] PAUSE\n", t->idx);
|
||||||
t->paused = 1;
|
t->paused = 1;
|
||||||
return CURL_WRITEFUNC_PAUSE;
|
return CURL_WRITEFUNC_PAUSE;
|
||||||
@ -131,23 +136,49 @@ static size_t my_write_cb(char *buf, size_t nitems, size_t buflen,
|
|||||||
}
|
}
|
||||||
|
|
||||||
nwritten = fwrite(buf, nitems, buflen, t->out);
|
nwritten = fwrite(buf, nitems, buflen, t->out);
|
||||||
if(nwritten < buflen) {
|
if(nwritten < blen) {
|
||||||
fprintf(stderr, "[t-%d] write failure\n", t->idx);
|
fprintf(stderr, "[t-%d] write failure\n", t->idx);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
t->recv_size += (curl_off_t)nwritten;
|
t->recv_size += (curl_off_t)nwritten;
|
||||||
|
if(t->fail_at > 0 && t->recv_size >= t->fail_at) {
|
||||||
|
fprintf(stderr, "[t-%d] FAIL by write callback at %ld bytes\n",
|
||||||
|
t->idx, (long)t->recv_size);
|
||||||
|
return CURL_WRITEFUNC_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
return (size_t)nwritten;
|
return (size_t)nwritten;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int setup(CURL *hnd, const char *url, struct transfer *t)
|
static int my_progress_cb(void *userdata,
|
||||||
|
curl_off_t dltotal, curl_off_t dlnow,
|
||||||
|
curl_off_t ultotal, curl_off_t ulnow)
|
||||||
|
{
|
||||||
|
struct transfer *t = userdata;
|
||||||
|
(void)ultotal;
|
||||||
|
(void)ulnow;
|
||||||
|
(void)dltotal;
|
||||||
|
if(t->abort_at > 0 && dlnow >= t->abort_at) {
|
||||||
|
fprintf(stderr, "[t-%d] ABORT by progress_cb at %ld bytes\n",
|
||||||
|
t->idx, (long)dlnow);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int setup(CURL *hnd, const char *url, struct transfer *t,
|
||||||
|
int http_version)
|
||||||
{
|
{
|
||||||
curl_easy_setopt(hnd, CURLOPT_URL, url);
|
curl_easy_setopt(hnd, CURLOPT_URL, url);
|
||||||
curl_easy_setopt(hnd, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0);
|
curl_easy_setopt(hnd, CURLOPT_HTTP_VERSION, http_version);
|
||||||
curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYPEER, 0L);
|
curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYPEER, 0L);
|
||||||
curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYHOST, 0L);
|
curl_easy_setopt(hnd, CURLOPT_SSL_VERIFYHOST, 0L);
|
||||||
|
curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, (long)(128 * 1024));
|
||||||
curl_easy_setopt(hnd, CURLOPT_WRITEFUNCTION, my_write_cb);
|
curl_easy_setopt(hnd, CURLOPT_WRITEFUNCTION, my_write_cb);
|
||||||
curl_easy_setopt(hnd, CURLOPT_WRITEDATA, t);
|
curl_easy_setopt(hnd, CURLOPT_WRITEDATA, t);
|
||||||
|
curl_easy_setopt(hnd, CURLOPT_NOPROGRESS, 0L);
|
||||||
|
curl_easy_setopt(hnd, CURLOPT_XFERINFOFUNCTION, my_progress_cb);
|
||||||
|
curl_easy_setopt(hnd, CURLOPT_XFERINFODATA, t);
|
||||||
|
|
||||||
/* please be verbose */
|
/* please be verbose */
|
||||||
if(verbose) {
|
if(verbose) {
|
||||||
@ -171,7 +202,10 @@ static void usage(const char *msg)
|
|||||||
" download a url with following options:\n"
|
" download a url with following options:\n"
|
||||||
" -m number max parallel downloads\n"
|
" -m number max parallel downloads\n"
|
||||||
" -n number total downloads\n"
|
" -n number total downloads\n"
|
||||||
|
" -A number abort transfer after `number` response bytes\n"
|
||||||
|
" -F number fail writing response after `number` response bytes\n"
|
||||||
" -P number pause transfer after `number` response bytes\n"
|
" -P number pause transfer after `number` response bytes\n"
|
||||||
|
" -V http_version (http/1.1, h2, h3) http version to use\n"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -186,11 +220,14 @@ int main(int argc, char *argv[])
|
|||||||
size_t i, n, max_parallel = 1;
|
size_t i, n, max_parallel = 1;
|
||||||
size_t active_transfers;
|
size_t active_transfers;
|
||||||
size_t pause_offset = 0;
|
size_t pause_offset = 0;
|
||||||
|
size_t abort_offset = 0;
|
||||||
|
size_t fail_offset = 0;
|
||||||
int abort_paused = 0;
|
int abort_paused = 0;
|
||||||
struct transfer *t;
|
struct transfer *t;
|
||||||
|
int http_version = CURL_HTTP_VERSION_2_0;
|
||||||
int ch;
|
int ch;
|
||||||
|
|
||||||
while((ch = getopt(argc, argv, "ahm:n:P:")) != -1) {
|
while((ch = getopt(argc, argv, "ahm:n:A:F:P:V:")) != -1) {
|
||||||
switch(ch) {
|
switch(ch) {
|
||||||
case 'h':
|
case 'h':
|
||||||
usage(NULL);
|
usage(NULL);
|
||||||
@ -204,9 +241,28 @@ int main(int argc, char *argv[])
|
|||||||
case 'n':
|
case 'n':
|
||||||
transfer_count = (size_t)strtol(optarg, NULL, 10);
|
transfer_count = (size_t)strtol(optarg, NULL, 10);
|
||||||
break;
|
break;
|
||||||
|
case 'A':
|
||||||
|
abort_offset = (size_t)strtol(optarg, NULL, 10);
|
||||||
|
break;
|
||||||
|
case 'F':
|
||||||
|
fail_offset = (size_t)strtol(optarg, NULL, 10);
|
||||||
|
break;
|
||||||
case 'P':
|
case 'P':
|
||||||
pause_offset = (size_t)strtol(optarg, NULL, 10);
|
pause_offset = (size_t)strtol(optarg, NULL, 10);
|
||||||
break;
|
break;
|
||||||
|
case 'V': {
|
||||||
|
if(!strcmp("http/1.1", optarg))
|
||||||
|
http_version = CURL_HTTP_VERSION_1_1;
|
||||||
|
else if(!strcmp("h2", optarg))
|
||||||
|
http_version = CURL_HTTP_VERSION_2_0;
|
||||||
|
else if(!strcmp("h3", optarg))
|
||||||
|
http_version = CURL_HTTP_VERSION_3ONLY;
|
||||||
|
else {
|
||||||
|
usage("invalid http version");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
usage("invalid option");
|
usage("invalid option");
|
||||||
return 1;
|
return 1;
|
||||||
@ -234,14 +290,16 @@ int main(int argc, char *argv[])
|
|||||||
for(i = 0; i < transfer_count; ++i) {
|
for(i = 0; i < transfer_count; ++i) {
|
||||||
t = &transfers[i];
|
t = &transfers[i];
|
||||||
t->idx = (int)i;
|
t->idx = (int)i;
|
||||||
t->pause_at = (curl_off_t)(pause_offset * i);
|
t->abort_at = (curl_off_t)abort_offset;
|
||||||
|
t->fail_at = (curl_off_t)fail_offset;
|
||||||
|
t->pause_at = (curl_off_t)pause_offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
n = (max_parallel < transfer_count)? max_parallel : transfer_count;
|
n = (max_parallel < transfer_count)? max_parallel : transfer_count;
|
||||||
for(i = 0; i < n; ++i) {
|
for(i = 0; i < n; ++i) {
|
||||||
t = &transfers[i];
|
t = &transfers[i];
|
||||||
t->easy = curl_easy_init();
|
t->easy = curl_easy_init();
|
||||||
if(!t->easy || setup(t->easy, url, t)) {
|
if(!t->easy || setup(t->easy, url, t, http_version)) {
|
||||||
fprintf(stderr, "[t-%d] FAILED setup\n", (int)i);
|
fprintf(stderr, "[t-%d] FAILED setup\n", (int)i);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -269,64 +327,67 @@ int main(int argc, char *argv[])
|
|||||||
m = curl_multi_info_read(multi_handle, &msgq);
|
m = curl_multi_info_read(multi_handle, &msgq);
|
||||||
if(m && (m->msg == CURLMSG_DONE)) {
|
if(m && (m->msg == CURLMSG_DONE)) {
|
||||||
CURL *e = m->easy_handle;
|
CURL *e = m->easy_handle;
|
||||||
active_transfers--;
|
--active_transfers;
|
||||||
curl_multi_remove_handle(multi_handle, e);
|
curl_multi_remove_handle(multi_handle, e);
|
||||||
t = get_transfer_for_easy(e);
|
t = get_transfer_for_easy(e);
|
||||||
if(t) {
|
if(t) {
|
||||||
t->done = 1;
|
t->done = 1;
|
||||||
}
|
fprintf(stderr, "[t-%d] FINISHED\n", t->idx);
|
||||||
else
|
|
||||||
curl_easy_cleanup(e);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
/* nothing happening, maintenance */
|
|
||||||
if(abort_paused) {
|
|
||||||
/* abort paused transfers */
|
|
||||||
for(i = 0; i < transfer_count; ++i) {
|
|
||||||
t = &transfers[i];
|
|
||||||
if(!t->done && t->paused && t->easy) {
|
|
||||||
curl_multi_remove_handle(multi_handle, t->easy);
|
|
||||||
t->done = 1;
|
|
||||||
active_transfers--;
|
|
||||||
fprintf(stderr, "[t-%d] ABORTED\n", t->idx);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
/* resume one paused transfer */
|
curl_easy_cleanup(e);
|
||||||
for(i = 0; i < transfer_count; ++i) {
|
fprintf(stderr, "unknown FINISHED???\n");
|
||||||
t = &transfers[i];
|
|
||||||
if(!t->done && t->paused) {
|
|
||||||
t->resumed = 1;
|
|
||||||
t->paused = 0;
|
|
||||||
curl_easy_pause(t->easy, CURLPAUSE_CONT);
|
|
||||||
fprintf(stderr, "[t-%d] RESUMED\n", t->idx);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
while(active_transfers < max_parallel) {
|
|
||||||
for(i = 0; i < transfer_count; ++i) {
|
/* nothing happening, maintenance */
|
||||||
t = &transfers[i];
|
if(abort_paused) {
|
||||||
if(!t->started) {
|
/* abort paused transfers */
|
||||||
t->easy = curl_easy_init();
|
for(i = 0; i < transfer_count; ++i) {
|
||||||
if(!t->easy || setup(t->easy, url, t)) {
|
t = &transfers[i];
|
||||||
fprintf(stderr, "[t-%d] FAILEED setup\n", (int)i);
|
if(!t->done && t->paused && t->easy) {
|
||||||
return 1;
|
curl_multi_remove_handle(multi_handle, t->easy);
|
||||||
}
|
t->done = 1;
|
||||||
curl_multi_add_handle(multi_handle, t->easy);
|
active_transfers--;
|
||||||
t->started = 1;
|
fprintf(stderr, "[t-%d] ABORTED\n", t->idx);
|
||||||
++active_transfers;
|
|
||||||
fprintf(stderr, "[t-%d] STARTED\n", t->idx);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
/* all started */
|
|
||||||
if(i == transfer_count)
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
/* resume one paused transfer */
|
||||||
|
for(i = 0; i < transfer_count; ++i) {
|
||||||
|
t = &transfers[i];
|
||||||
|
if(!t->done && t->paused) {
|
||||||
|
t->resumed = 1;
|
||||||
|
t->paused = 0;
|
||||||
|
curl_easy_pause(t->easy, CURLPAUSE_CONT);
|
||||||
|
fprintf(stderr, "[t-%d] RESUMED\n", t->idx);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
while(active_transfers < max_parallel) {
|
||||||
|
for(i = 0; i < transfer_count; ++i) {
|
||||||
|
t = &transfers[i];
|
||||||
|
if(!t->started) {
|
||||||
|
t->easy = curl_easy_init();
|
||||||
|
if(!t->easy || setup(t->easy, url, t, http_version)) {
|
||||||
|
fprintf(stderr, "[t-%d] FAILED setup\n", (int)i);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
curl_multi_add_handle(multi_handle, t->easy);
|
||||||
|
t->started = 1;
|
||||||
|
++active_transfers;
|
||||||
|
fprintf(stderr, "[t-%d] STARTED\n", t->idx);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/* all started */
|
||||||
|
if(i == transfer_count)
|
||||||
|
break;
|
||||||
|
}
|
||||||
} while(m);
|
} while(m);
|
||||||
|
|
||||||
} while(active_transfers); /* as long as we have transfers going */
|
} while(active_transfers); /* as long as we have transfers going */
|
||||||
|
@ -293,15 +293,16 @@ class TestDownload:
|
|||||||
|
|
||||||
# download via lib client, 1 at a time, pause/resume at different offsets
|
# download via lib client, 1 at a time, pause/resume at different offsets
|
||||||
@pytest.mark.parametrize("pause_offset", [0, 10*1024, 100*1023, 640000])
|
@pytest.mark.parametrize("pause_offset", [0, 10*1024, 100*1023, 640000])
|
||||||
def test_02_21_h2_lib_serial(self, env: Env, httpd, nghttpx, pause_offset, repeat):
|
@pytest.mark.parametrize("proto", ['http/1.1', 'h2', 'h3'])
|
||||||
count = 10
|
def test_02_21_lib_serial(self, env: Env, httpd, nghttpx, proto, pause_offset, repeat):
|
||||||
|
count = 2 if proto == 'http/1.1' else 10
|
||||||
docname = 'data-10m'
|
docname = 'data-10m'
|
||||||
url = f'https://localhost:{env.https_port}/{docname}'
|
url = f'https://localhost:{env.https_port}/{docname}'
|
||||||
client = LocalClient(name='h2-download', env=env)
|
client = LocalClient(name='h2-download', env=env)
|
||||||
if not client.exists():
|
if not client.exists():
|
||||||
pytest.skip(f'example client not built: {client.name}')
|
pytest.skip(f'example client not built: {client.name}')
|
||||||
r = client.run(args=[
|
r = client.run(args=[
|
||||||
'-n', f'{count}', '-P', f'{pause_offset}', url
|
'-n', f'{count}', '-P', f'{pause_offset}', '-V', proto, url
|
||||||
])
|
])
|
||||||
r.check_exit_code(0)
|
r.check_exit_code(0)
|
||||||
srcfile = os.path.join(httpd.docs_dir, docname)
|
srcfile = os.path.join(httpd.docs_dir, docname)
|
||||||
@ -309,8 +310,9 @@ class TestDownload:
|
|||||||
|
|
||||||
# download via lib client, several at a time, pause/resume
|
# download via lib client, several at a time, pause/resume
|
||||||
@pytest.mark.parametrize("pause_offset", [100*1023])
|
@pytest.mark.parametrize("pause_offset", [100*1023])
|
||||||
def test_02_22_h2_lib_parallel_resume(self, env: Env, httpd, nghttpx, pause_offset, repeat):
|
@pytest.mark.parametrize("proto", ['http/1.1', 'h2', 'h3'])
|
||||||
count = 10
|
def test_02_22_lib_parallel_resume(self, env: Env, httpd, nghttpx, proto, pause_offset, repeat):
|
||||||
|
count = 2 if proto == 'http/1.1' else 10
|
||||||
max_parallel = 5
|
max_parallel = 5
|
||||||
docname = 'data-10m'
|
docname = 'data-10m'
|
||||||
url = f'https://localhost:{env.https_port}/{docname}'
|
url = f'https://localhost:{env.https_port}/{docname}'
|
||||||
@ -319,25 +321,81 @@ class TestDownload:
|
|||||||
pytest.skip(f'example client not built: {client.name}')
|
pytest.skip(f'example client not built: {client.name}')
|
||||||
r = client.run(args=[
|
r = client.run(args=[
|
||||||
'-n', f'{count}', '-m', f'{max_parallel}',
|
'-n', f'{count}', '-m', f'{max_parallel}',
|
||||||
'-P', f'{pause_offset}', url
|
'-P', f'{pause_offset}', '-V', proto, url
|
||||||
])
|
])
|
||||||
r.check_exit_code(0)
|
r.check_exit_code(0)
|
||||||
srcfile = os.path.join(httpd.docs_dir, docname)
|
srcfile = os.path.join(httpd.docs_dir, docname)
|
||||||
self.check_downloads(client, srcfile, count)
|
self.check_downloads(client, srcfile, count)
|
||||||
|
|
||||||
# download, several at a time, pause and abort paused
|
# download, several at a time, pause and abort paused
|
||||||
@pytest.mark.parametrize("pause_offset", [100*1023])
|
@pytest.mark.parametrize("proto", ['http/1.1', 'h2'])
|
||||||
def test_02_23_h2_lib_parallel_abort(self, env: Env, httpd, nghttpx, pause_offset, repeat):
|
def test_02_23a_lib_abort_paused(self, env: Env, httpd, nghttpx, proto, repeat):
|
||||||
count = 200
|
if proto == 'h2':
|
||||||
max_parallel = 100
|
count = 200
|
||||||
docname = 'data-10m'
|
max_parallel = 100
|
||||||
|
pause_offset = 64 * 1024
|
||||||
|
else:
|
||||||
|
count = 10
|
||||||
|
max_parallel = 5
|
||||||
|
pause_offset = 12 * 1024
|
||||||
|
docname = 'data-1m'
|
||||||
url = f'https://localhost:{env.https_port}/{docname}'
|
url = f'https://localhost:{env.https_port}/{docname}'
|
||||||
client = LocalClient(name='h2-download', env=env)
|
client = LocalClient(name='h2-download', env=env)
|
||||||
if not client.exists():
|
if not client.exists():
|
||||||
pytest.skip(f'example client not built: {client.name}')
|
pytest.skip(f'example client not built: {client.name}')
|
||||||
r = client.run(args=[
|
r = client.run(args=[
|
||||||
'-n', f'{count}', '-m', f'{max_parallel}', '-a',
|
'-n', f'{count}', '-m', f'{max_parallel}', '-a',
|
||||||
'-P', f'{pause_offset}', url
|
'-P', f'{pause_offset}', '-V', proto, url
|
||||||
|
])
|
||||||
|
r.check_exit_code(0)
|
||||||
|
srcfile = os.path.join(httpd.docs_dir, docname)
|
||||||
|
# downloads should be there, but not necessarily complete
|
||||||
|
self.check_downloads(client, srcfile, count, complete=False)
|
||||||
|
|
||||||
|
# download, several at a time, abort after n bytes
|
||||||
|
@pytest.mark.parametrize("proto", ['http/1.1', 'h2'])
|
||||||
|
def test_02_23b_lib_abort_offset(self, env: Env, httpd, nghttpx, proto, repeat):
|
||||||
|
if proto == 'h2':
|
||||||
|
count = 200
|
||||||
|
max_parallel = 100
|
||||||
|
abort_offset = 64 * 1024
|
||||||
|
else:
|
||||||
|
count = 10
|
||||||
|
max_parallel = 5
|
||||||
|
abort_offset = 12 * 1024
|
||||||
|
docname = 'data-1m'
|
||||||
|
url = f'https://localhost:{env.https_port}/{docname}'
|
||||||
|
client = LocalClient(name='h2-download', env=env)
|
||||||
|
if not client.exists():
|
||||||
|
pytest.skip(f'example client not built: {client.name}')
|
||||||
|
r = client.run(args=[
|
||||||
|
'-n', f'{count}', '-m', f'{max_parallel}', '-a',
|
||||||
|
'-A', f'{abort_offset}', '-V', proto, url
|
||||||
|
])
|
||||||
|
r.check_exit_code(0)
|
||||||
|
srcfile = os.path.join(httpd.docs_dir, docname)
|
||||||
|
# downloads should be there, but not necessarily complete
|
||||||
|
self.check_downloads(client, srcfile, count, complete=False)
|
||||||
|
|
||||||
|
# download, several at a time, abort after n bytes
|
||||||
|
@pytest.mark.parametrize("proto", ['http/1.1', 'h2'])
|
||||||
|
def test_02_23c_lib_fail_offset(self, env: Env, httpd, nghttpx, proto, repeat):
|
||||||
|
if proto == 'h2':
|
||||||
|
count = 200
|
||||||
|
max_parallel = 100
|
||||||
|
fail_offset = 64 * 1024
|
||||||
|
else:
|
||||||
|
count = 10
|
||||||
|
max_parallel = 5
|
||||||
|
fail_offset = 12 * 1024
|
||||||
|
docname = 'data-1m'
|
||||||
|
url = f'https://localhost:{env.https_port}/{docname}'
|
||||||
|
client = LocalClient(name='h2-download', env=env)
|
||||||
|
if not client.exists():
|
||||||
|
pytest.skip(f'example client not built: {client.name}')
|
||||||
|
r = client.run(args=[
|
||||||
|
'-n', f'{count}', '-m', f'{max_parallel}', '-a',
|
||||||
|
'-F', f'{fail_offset}', '-V', proto, url
|
||||||
])
|
])
|
||||||
r.check_exit_code(0)
|
r.check_exit_code(0)
|
||||||
srcfile = os.path.join(httpd.docs_dir, docname)
|
srcfile = os.path.join(httpd.docs_dir, docname)
|
||||||
@ -419,3 +477,21 @@ class TestDownload:
|
|||||||
tofile=dfile,
|
tofile=dfile,
|
||||||
n=1))
|
n=1))
|
||||||
assert False, f'download {dfile} differs:\n{diff}'
|
assert False, f'download {dfile} differs:\n{diff}'
|
||||||
|
|
||||||
|
# download via lib client, 1 at a time, pause/resume at different offsets
|
||||||
|
@pytest.mark.parametrize("pause_offset", [0, 10*1024, 100*1023, 640000])
|
||||||
|
@pytest.mark.parametrize("proto", ['http/1.1', 'h2', 'h3'])
|
||||||
|
def test_02_29_h2_lib_serial(self, env: Env, httpd, nghttpx, proto, pause_offset, repeat):
|
||||||
|
count = 2 if proto == 'http/1.1' else 10
|
||||||
|
docname = 'data-10m'
|
||||||
|
url = f'https://localhost:{env.https_port}/{docname}'
|
||||||
|
client = LocalClient(name='h2-download', env=env)
|
||||||
|
if not client.exists():
|
||||||
|
pytest.skip(f'example client not built: {client.name}')
|
||||||
|
r = client.run(args=[
|
||||||
|
'-n', f'{count}', '-P', f'{pause_offset}', '-V', proto, url
|
||||||
|
])
|
||||||
|
r.check_exit_code(0)
|
||||||
|
srcfile = os.path.join(httpd.docs_dir, docname)
|
||||||
|
self.check_downloads(client, srcfile, count)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user