2018-10-24 17:55:27 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: tests/net/webrequest.cpp
|
|
|
|
// Purpose: wxWebRequest test
|
|
|
|
// Author: Tobias Taschner
|
|
|
|
// Created: 2018-10-24
|
|
|
|
// Copyright: (c) 2018 wxWidgets development team
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "testprec.h"
|
|
|
|
|
|
|
|
#ifdef __BORLANDC__
|
|
|
|
#pragma hdrstop
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include "wx/wx.h"
|
|
|
|
#endif // WX_PRECOMP
|
|
|
|
|
|
|
|
#include "wx/webrequest.h"
|
2018-10-30 16:54:40 -04:00
|
|
|
#include "wx/filename.h"
|
2018-10-24 17:55:27 -04:00
|
|
|
#include "wx/wfstream.h"
|
|
|
|
|
|
|
|
// This test requires the URL to an httpbin instance.
|
|
|
|
// httpbin is a HTTP Request & Response Service available at:
|
|
|
|
// https://httpbin.org
|
|
|
|
// It can also be run locally via a simple docker run
|
|
|
|
//
|
|
|
|
// For this test to run the the base URL has to be specified with
|
|
|
|
// an environment variable, e.g.:
|
|
|
|
// WX_TEST_WEBREQUEST_URL=https://httpbin.org
|
|
|
|
|
|
|
|
#if wxUSE_WEBREQUEST
|
|
|
|
|
|
|
|
class RequestFixture
|
|
|
|
{
|
|
|
|
public:
|
2018-10-30 16:54:40 -04:00
|
|
|
RequestFixture()
|
|
|
|
{
|
|
|
|
expectedFileSize = 0;
|
|
|
|
dataSize = 0;
|
|
|
|
}
|
2018-10-24 17:55:27 -04:00
|
|
|
|
|
|
|
void Create(const wxString& subURL)
|
|
|
|
{
|
|
|
|
wxString baseURL;
|
|
|
|
wxGetEnv("WX_TEST_WEBREQUEST_URL", &baseURL);
|
|
|
|
CreateAbs(baseURL + subURL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CreateAbs(const wxString& url)
|
|
|
|
{
|
|
|
|
request.reset(wxWebSession::GetDefault().CreateRequest(url));
|
|
|
|
request->Bind(wxEVT_WEBREQUEST_STATE, &RequestFixture::OnRequestState, this);
|
2018-10-30 16:54:40 -04:00
|
|
|
request->Bind(wxEVT_WEBREQUEST_DATA, &RequestFixture::OnData, this);
|
2018-10-24 17:55:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void OnRequestState(wxWebRequestEvent& evt)
|
|
|
|
{
|
|
|
|
switch (evt.GetState())
|
|
|
|
{
|
2018-10-25 17:33:05 -04:00
|
|
|
case wxWebRequest::State_Unauthorized:
|
2018-10-24 17:55:27 -04:00
|
|
|
case wxWebRequest::State_Completed:
|
2018-10-30 16:54:40 -04:00
|
|
|
if ( request->GetStorage() == wxWebRequest::Storage_File )
|
|
|
|
{
|
|
|
|
wxFileName fn(evt.GetResponseFileName());
|
|
|
|
REQUIRE( fn.GetSize() == expectedFileSize );
|
|
|
|
}
|
|
|
|
wxFALLTHROUGH;
|
2018-10-24 17:55:27 -04:00
|
|
|
case wxWebRequest::State_Failed:
|
|
|
|
case wxWebRequest::State_Cancelled:
|
|
|
|
loop.Exit();
|
|
|
|
break;
|
2020-12-12 12:12:44 -05:00
|
|
|
|
|
|
|
case wxWebRequest::State_Idle:
|
|
|
|
case wxWebRequest::State_Active:
|
|
|
|
break;
|
2018-10-24 17:55:27 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-30 16:54:40 -04:00
|
|
|
void OnData(wxWebRequestEvent& evt)
|
|
|
|
{
|
|
|
|
// Count all bytes recieved via data event for Storage_None
|
|
|
|
dataSize += evt.GetDataSize();
|
|
|
|
}
|
|
|
|
|
2018-10-24 17:55:27 -04:00
|
|
|
void Run(wxWebRequest::State requiredState = wxWebRequest::State_Completed,
|
|
|
|
int requiredStatus = 200)
|
|
|
|
{
|
|
|
|
REQUIRE( request->GetState() == wxWebRequest::State_Idle );
|
|
|
|
request->Start();
|
|
|
|
loop.Run();
|
|
|
|
REQUIRE( request->GetState() == requiredState );
|
|
|
|
if (requiredStatus)
|
|
|
|
REQUIRE( request->GetResponse()->GetStatus() == requiredStatus );
|
|
|
|
}
|
|
|
|
|
|
|
|
wxEventLoop loop;
|
|
|
|
wxObjectDataPtr<wxWebRequest> request;
|
2018-10-30 16:54:40 -04:00
|
|
|
wxInt64 expectedFileSize;
|
|
|
|
wxInt64 dataSize;
|
2018-10-24 17:55:27 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
TEST_CASE_METHOD(RequestFixture, "WebRequest", "[net][.]")
|
|
|
|
{
|
|
|
|
wxString baseURL;
|
|
|
|
if ( !wxGetEnv("WX_TEST_WEBREQUEST_URL", &baseURL) )
|
|
|
|
{
|
|
|
|
WARN("Skipping WebRequest test because required WX_TEST_WEBREQUEST_URL"
|
|
|
|
" environment variable is not defined.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("GET 64kb to memory")
|
|
|
|
{
|
|
|
|
Create("/bytes/65536");
|
|
|
|
Run();
|
|
|
|
REQUIRE( request->GetResponse()->GetContentLength() == 65536 );
|
2018-10-26 17:38:40 -04:00
|
|
|
REQUIRE( request->GetBytesExpectedToReceive() == 65536 );
|
|
|
|
REQUIRE( request->GetBytesReceived() == 65536 );
|
2018-10-24 17:55:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("GET 404 error")
|
|
|
|
{
|
|
|
|
Create("/status/404");
|
|
|
|
Run(wxWebRequest::State_Failed, 404);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Connect to invalid host")
|
|
|
|
{
|
|
|
|
CreateAbs("http://127.0.0.1:51234");
|
|
|
|
Run(wxWebRequest::State_Failed, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("POST form data")
|
|
|
|
{
|
|
|
|
Create("/post");
|
|
|
|
request->SetData("app=WebRequestSample&version=1", "application/x-www-form-urlencoded");
|
|
|
|
Run();
|
|
|
|
}
|
|
|
|
|
2018-10-29 18:20:47 -04:00
|
|
|
SECTION("GET data as string")
|
|
|
|
{
|
|
|
|
Create("/base64/VGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIHRoZSBsYXp5IGRvZw==");
|
|
|
|
Run();
|
|
|
|
REQUIRE( request->GetResponse()->AsString() == "The quick brown fox jumps over the lazy dog" );
|
|
|
|
}
|
|
|
|
|
2018-10-30 16:54:40 -04:00
|
|
|
SECTION("GET 99KB to file")
|
|
|
|
{
|
|
|
|
expectedFileSize = 99 * 1024;
|
|
|
|
Create(wxString::Format("/bytes/%lld", expectedFileSize));
|
|
|
|
request->SetStorage(wxWebRequest::Storage_File);
|
|
|
|
Run();
|
|
|
|
REQUIRE( request->GetBytesReceived() == expectedFileSize );
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Process 99KB data")
|
|
|
|
{
|
|
|
|
int processingSize = 99 * 1024;
|
|
|
|
Create(wxString::Format("/bytes/%d", processingSize));
|
|
|
|
request->SetStorage(wxWebRequest::Storage_None);
|
|
|
|
Run();
|
|
|
|
REQUIRE( request->GetBytesReceived() == processingSize );
|
|
|
|
REQUIRE( dataSize == processingSize );
|
|
|
|
}
|
|
|
|
|
2018-10-24 17:55:27 -04:00
|
|
|
SECTION("PUT file data")
|
|
|
|
{
|
|
|
|
Create("/put");
|
2020-12-12 12:46:28 -05:00
|
|
|
wxSharedPtr<wxInputStream> is(new wxFileInputStream("horse.png"));
|
|
|
|
REQUIRE( is->IsOk() );
|
|
|
|
|
|
|
|
request->SetData(is, "image/png");
|
2018-10-24 17:55:27 -04:00
|
|
|
request->SetMethod("PUT");
|
|
|
|
Run();
|
|
|
|
}
|
2018-10-25 17:33:05 -04:00
|
|
|
|
|
|
|
SECTION("Server auth BASIC")
|
|
|
|
{
|
|
|
|
Create("/digest-auth/auth/wxtest/wxwidgets");
|
|
|
|
Run(wxWebRequest::State_Unauthorized, 401);
|
|
|
|
REQUIRE( request->GetAuthChallenge() != NULL );
|
|
|
|
request->GetAuthChallenge()->SetCredentials("wxtest", "wxwidgets");
|
|
|
|
loop.Run();
|
|
|
|
REQUIRE( request->GetResponse()->GetStatus() == 200 );
|
|
|
|
REQUIRE( request->GetState() == wxWebRequest::State_Completed );
|
|
|
|
}
|
|
|
|
|
|
|
|
SECTION("Server auth DIGEST")
|
|
|
|
{
|
|
|
|
Create("/digest-auth/auth/wxtest/wxwidgets");
|
|
|
|
Run(wxWebRequest::State_Unauthorized, 401);
|
|
|
|
REQUIRE( request->GetAuthChallenge() != NULL );
|
|
|
|
request->GetAuthChallenge()->SetCredentials("wxtest", "wxwidgets");
|
|
|
|
loop.Run();
|
|
|
|
REQUIRE( request->GetResponse()->GetStatus() == 200 );
|
|
|
|
REQUIRE( request->GetState() == wxWebRequest::State_Completed );
|
|
|
|
}
|
2018-10-24 17:55:27 -04:00
|
|
|
}
|
|
|
|
|
2018-11-01 12:33:56 -04:00
|
|
|
TEST_CASE("WebRequestUtils", "[net]")
|
|
|
|
{
|
|
|
|
wxString value;
|
|
|
|
wxWebRequestHeaderMap params;
|
|
|
|
|
|
|
|
wxString header = "multipart/mixed; boundary=\"MIME_boundary_01234567\"";
|
|
|
|
|
|
|
|
wxWebRequest::SplitParameters(header, value, params);
|
|
|
|
REQUIRE( value == "multipart/mixed" );
|
|
|
|
REQUIRE( params.size() == 1 );
|
|
|
|
REQUIRE( params["boundary"] == "MIME_boundary_01234567" );
|
|
|
|
}
|
|
|
|
|
2018-10-24 17:55:27 -04:00
|
|
|
#endif // wxUSE_WEBREQUEST
|