mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
tests: fix the authretry tests
Do not call curl_easy_reset() between the requests, because the
auth state must be preserved for these tests.
Follow-up to 0afbcfd
This commit is contained in:
parent
e84a863dc3
commit
8d10520993
@ -111,12 +111,10 @@ int test(char *url)
|
|||||||
res = send_wrong_password(curl, url, 100, main_auth_scheme);
|
res = send_wrong_password(curl, url, 100, main_auth_scheme);
|
||||||
if(res != CURLE_OK)
|
if(res != CURLE_OK)
|
||||||
goto test_cleanup;
|
goto test_cleanup;
|
||||||
curl_easy_reset(curl);
|
|
||||||
|
|
||||||
res = send_right_password(curl, url, 200, fallback_auth_scheme);
|
res = send_right_password(curl, url, 200, fallback_auth_scheme);
|
||||||
if(res != CURLE_OK)
|
if(res != CURLE_OK)
|
||||||
goto test_cleanup;
|
goto test_cleanup;
|
||||||
curl_easy_reset(curl);
|
|
||||||
|
|
||||||
curl_easy_cleanup(curl);
|
curl_easy_cleanup(curl);
|
||||||
|
|
||||||
@ -131,17 +129,14 @@ int test(char *url)
|
|||||||
res = send_wrong_password(curl, url, 300, main_auth_scheme);
|
res = send_wrong_password(curl, url, 300, main_auth_scheme);
|
||||||
if(res != CURLE_OK)
|
if(res != CURLE_OK)
|
||||||
goto test_cleanup;
|
goto test_cleanup;
|
||||||
curl_easy_reset(curl);
|
|
||||||
|
|
||||||
res = send_wrong_password(curl, url, 400, fallback_auth_scheme);
|
res = send_wrong_password(curl, url, 400, fallback_auth_scheme);
|
||||||
if(res != CURLE_OK)
|
if(res != CURLE_OK)
|
||||||
goto test_cleanup;
|
goto test_cleanup;
|
||||||
curl_easy_reset(curl);
|
|
||||||
|
|
||||||
res = send_right_password(curl, url, 500, fallback_auth_scheme);
|
res = send_right_password(curl, url, 500, fallback_auth_scheme);
|
||||||
if(res != CURLE_OK)
|
if(res != CURLE_OK)
|
||||||
goto test_cleanup;
|
goto test_cleanup;
|
||||||
curl_easy_reset(curl);
|
|
||||||
|
|
||||||
test_cleanup:
|
test_cleanup:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user