From 83cdd6c29d1a53d18c7640d4e7dfa79aecc167f7 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 19 Feb 2019 08:18:45 +0100 Subject: test 597: adjust since connect_only never reuses connections now --- tests/data/test597 | 1 - tests/libtest/lib597.c | 104 ++++++++++++++++++++----------------------------- 2 files changed, 42 insertions(+), 63 deletions(-) diff --git a/tests/data/test597 b/tests/data/test597 index 458bb6453..3eb9ed8b8 100644 --- a/tests/data/test597 +++ b/tests/data/test597 @@ -31,7 +31,6 @@ ftp://%HOSTIP:%FTPPORT USER anonymous PASS ftp@example.com PWD -QUIT diff --git a/tests/libtest/lib597.c b/tests/libtest/lib597.c index d7f38c4c8..e34505cd2 100644 --- a/tests/libtest/lib597.c +++ b/tests/libtest/lib597.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2017, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2019, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -32,20 +32,12 @@ /* * Test case for below scenario: * - Connect to an FTP server using CONNECT_ONLY option - * - transfer some files with re-using the connection (omitted in test case) - * - Disconnect from FTP server with sending QUIT command * * The test case originated for verifying CONNECT_ONLY option shall not * block after protocol connect is done, but it returns the message * with function curl_multi_info_read(). */ -enum { - CONNECT_ONLY_PHASE = 0, - QUIT_PHASE, - LAST_PHASE -}; - int test(char *URL) { CURL *easy = NULL; @@ -53,7 +45,6 @@ int test(char *URL) int res = 0; int running; int msgs_left; - int phase; CURLMsg *msg; start_test_timing(); @@ -64,76 +55,65 @@ int test(char *URL) multi_init(multi); - for(phase = CONNECT_ONLY_PHASE; phase < LAST_PHASE; ++phase) { - /* go verbose */ - easy_setopt(easy, CURLOPT_VERBOSE, 1L); - - /* specify target */ - easy_setopt(easy, CURLOPT_URL, URL); - - /* enable 'CONNECT_ONLY' option when in connect phase */ - if(phase == CONNECT_ONLY_PHASE) - easy_setopt(easy, CURLOPT_CONNECT_ONLY, 1L); - - /* enable 'NOBODY' option to send 'QUIT' command in quit phase */ - if(phase == QUIT_PHASE) { - easy_setopt(easy, CURLOPT_CONNECT_ONLY, 0L); - easy_setopt(easy, CURLOPT_NOBODY, 1L); - easy_setopt(easy, CURLOPT_FORBID_REUSE, 1L); - } + /* go verbose */ + easy_setopt(easy, CURLOPT_VERBOSE, 1L); - multi_add_handle(multi, easy); + /* specify target */ + easy_setopt(easy, CURLOPT_URL, URL); - for(;;) { - struct timeval interval; - fd_set fdread; - fd_set fdwrite; - fd_set fdexcep; - long timeout = -99; - int maxfd = -99; + easy_setopt(easy, CURLOPT_CONNECT_ONLY, 1L); - multi_perform(multi, &running); + multi_add_handle(multi, easy); - abort_on_test_timeout(); + for(;;) { + struct timeval interval; + fd_set fdread; + fd_set fdwrite; + fd_set fdexcep; + long timeout = -99; + int maxfd = -99; - if(!running) - break; /* done */ + multi_perform(multi, &running); - FD_ZERO(&fdread); - FD_ZERO(&fdwrite); - FD_ZERO(&fdexcep); + abort_on_test_timeout(); - multi_fdset(multi, &fdread, &fdwrite, &fdexcep, &maxfd); + if(!running) + break; /* done */ - /* At this point, maxfd is guaranteed to be greater or equal than -1. */ + FD_ZERO(&fdread); + FD_ZERO(&fdwrite); + FD_ZERO(&fdexcep); - multi_timeout(multi, &timeout); + multi_fdset(multi, &fdread, &fdwrite, &fdexcep, &maxfd); - /* At this point, timeout is guaranteed to be greater or equal than - -1. */ + /* At this point, maxfd is guaranteed to be greater or equal than -1. */ - if(timeout != -1L) { - int itimeout = (timeout > (long)INT_MAX) ? INT_MAX : (int)timeout; - interval.tv_sec = itimeout/1000; - interval.tv_usec = (itimeout%1000)*1000; - } - else { - interval.tv_sec = TEST_HANG_TIMEOUT/1000 + 1; - interval.tv_usec = 0; - } + multi_timeout(multi, &timeout); - select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &interval); + /* At this point, timeout is guaranteed to be greater or equal than + -1. */ - abort_on_test_timeout(); + if(timeout != -1L) { + int itimeout = (timeout > (long)INT_MAX) ? INT_MAX : (int)timeout; + interval.tv_sec = itimeout/1000; + interval.tv_usec = (itimeout%1000)*1000; + } + else { + interval.tv_sec = TEST_HANG_TIMEOUT/1000 + 1; + interval.tv_usec = 0; } - msg = curl_multi_info_read(multi, &msgs_left); - if(msg) - res = msg->data.result; + select_test(maxfd + 1, &fdread, &fdwrite, &fdexcep, &interval); - multi_remove_handle(multi, easy); + abort_on_test_timeout(); } + msg = curl_multi_info_read(multi, &msgs_left); + if(msg) + res = msg->data.result; + + multi_remove_handle(multi, easy); + test_cleanup: /* undocumented cleanup sequence - type UA */ -- cgit v1.2.1