2009-06-01 07:30:50 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: tests/uris/url.cpp
|
|
|
|
// Purpose: wxURL unit test
|
|
|
|
// Author: Francesco Montorsi
|
|
|
|
// Created: 2009-5-31
|
|
|
|
// Copyright: (c) 2009 Francesco Montorsi
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "testprec.h"
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef WX_PRECOMP
|
|
|
|
#include "wx/wx.h"
|
|
|
|
#endif // WX_PRECOMP
|
|
|
|
|
|
|
|
#include "wx/url.h"
|
|
|
|
#include "wx/mstream.h"
|
2019-01-12 09:35:44 -05:00
|
|
|
#include "wx/scopedptr.h"
|
2019-01-12 09:39:09 -05:00
|
|
|
#include "wx/utils.h"
|
2009-06-01 07:30:50 -04:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// test class
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class URLTestCase : public CppUnit::TestCase
|
|
|
|
{
|
|
|
|
public:
|
2018-07-29 05:09:17 -04:00
|
|
|
URLTestCase();
|
2009-06-01 07:30:50 -04:00
|
|
|
~URLTestCase();
|
|
|
|
|
|
|
|
private:
|
|
|
|
CPPUNIT_TEST_SUITE( URLTestCase );
|
|
|
|
CPPUNIT_TEST( GetInputStream );
|
2010-03-30 17:38:31 -04:00
|
|
|
CPPUNIT_TEST( CopyAndAssignment );
|
2009-06-01 07:30:50 -04:00
|
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
|
|
|
|
void GetInputStream();
|
2010-03-30 17:38:31 -04:00
|
|
|
void CopyAndAssignment();
|
2009-06-01 07:30:50 -04:00
|
|
|
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_NO_COPY_CLASS(URLTestCase);
|
2009-06-01 07:30:50 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// register in the unnamed registry so that these tests are run by default
|
|
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( URLTestCase );
|
|
|
|
|
2011-04-30 06:57:04 -04:00
|
|
|
// also include in its own registry so that these tests can be run alone
|
2009-06-01 07:30:50 -04:00
|
|
|
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( URLTestCase, "URLTestCase" );
|
|
|
|
|
|
|
|
|
|
|
|
URLTestCase::URLTestCase()
|
|
|
|
{
|
|
|
|
wxSocketBase::Initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
URLTestCase::~URLTestCase()
|
|
|
|
{
|
|
|
|
wxSocketBase::Shutdown();
|
|
|
|
}
|
|
|
|
|
|
|
|
void URLTestCase::GetInputStream()
|
|
|
|
{
|
|
|
|
if (!IsNetworkAvailable()) // implemented in test.cpp
|
|
|
|
{
|
2022-04-23 10:36:40 -04:00
|
|
|
WARN("No network connectivity; skipping the URLTestCase::GetInputStream test unit.");
|
2009-06-01 07:30:50 -04:00
|
|
|
return;
|
|
|
|
}
|
2010-03-30 17:38:31 -04:00
|
|
|
|
2022-12-31 11:47:47 -05:00
|
|
|
// We need a site never redirecting to HTTPs and this one seems better than
|
|
|
|
// the other alternatives such as Microsoft's www.msftconnecttest.com or
|
|
|
|
// Apple's captive.apple.com. IANAs example.com might be another good
|
|
|
|
// choice but it's not clear if it's never going to redirect to HTTPs.
|
|
|
|
wxURL url("http://detectportal.firefox.com/");
|
2009-06-01 07:30:50 -04:00
|
|
|
CPPUNIT_ASSERT_EQUAL(wxURL_NOERR, url.GetError());
|
|
|
|
|
2019-01-12 09:35:44 -05:00
|
|
|
wxScopedPtr<wxInputStream> in_stream(url.GetInputStream());
|
2019-01-12 09:39:09 -05:00
|
|
|
if ( !in_stream && IsAutomaticTest() )
|
|
|
|
{
|
2020-12-04 13:29:59 -05:00
|
|
|
// Sometimes the connection fails during CI runs, don't consider this
|
|
|
|
// as a fatal error because it happens from time to time and there is
|
|
|
|
// nothing we can do about it.
|
2022-12-31 11:47:47 -05:00
|
|
|
WARN("Connection to HTTP URL failed, skipping the test.");
|
2020-12-04 13:29:59 -05:00
|
|
|
return;
|
2019-01-12 09:39:09 -05:00
|
|
|
}
|
|
|
|
|
Replace CppUnit with Catch for unit tests
Drop the legacy CppUnit testing framework used for the unit tests.
Replacing it with Catch has the advantage of not requiring CppUnit
libraries to be installed on the system in order to be able to run
tests (Catch is header-only and a copy of it is now included in the
main repository itself) and, in the future, of being able to write
the tests in a much more natural way.
For now, however, avoid changing the existing tests code as much as
[reasonably] possible to avoid introducing bugs in them and provide
the CppUnit compatibility macros in the new wx/catch_cppunit.h header
which allow to preserve the 99% of the existing code unchanged. Some
of the required changes are:
- Decompose asserts using "a && b" conditions into multiple asserts
checking "a" and "b" independently. This would have been better
even with CppUnit (to know which part of condition exactly failed)
and is required with Catch.
- Use extra parentheses around such conditions when they can't be
easily decomposed in the arrays test, due to the use of macros.
This is not ideal from the point of view of messages given when
the tests fail but will do for now.
- Rewrite asserts using "a || b" as a combination of condition
checks and assert macros. Again, this is better anyhow, and is
required with Catch. Incidentally, this allowed to fix a bug in
the "exec" unit test which didn't leave enough time for the new
process to be launched before trying to kill it.
- Remove multiple CPPUNIT_TEST_SUITE_NAMED_REGISTRATION() macros,
our emulation of this macro can be used only once.
- Provide string conversions using Catch-specific StringMaker for
a couple of types.
- Replace custom wxImage comparison with a Catch-specific matcher
class.
- Remove most of test running logic from test.cpp, in particular don't
parse command line ourselves any longer but use Catch built-in
command line parser. This is a source of a minor regression:
previously, both "Foo" and "FooTestCase" could be used as the name of
the test to run, but now only the latter is accepted.
2017-11-01 14:15:24 -04:00
|
|
|
CPPUNIT_ASSERT(in_stream);
|
|
|
|
CPPUNIT_ASSERT(in_stream->IsOk());
|
2009-06-01 07:30:50 -04:00
|
|
|
|
|
|
|
wxMemoryOutputStream ostream;
|
|
|
|
CPPUNIT_ASSERT(in_stream->Read(ostream).GetLastError() == wxSTREAM_EOF);
|
2010-03-30 17:38:31 -04:00
|
|
|
|
2022-12-31 11:47:47 -05:00
|
|
|
CPPUNIT_ASSERT_EQUAL(strlen("success\n"), ostream.GetSize());
|
2009-06-01 07:30:50 -04:00
|
|
|
}
|
|
|
|
|
2010-03-30 17:38:31 -04:00
|
|
|
void URLTestCase::CopyAndAssignment()
|
|
|
|
{
|
|
|
|
wxURL url1("http://www.example.org/");
|
|
|
|
wxURL url2;
|
|
|
|
wxURI *puri = &url2; // downcast
|
|
|
|
|
|
|
|
{ // Copy constructor
|
|
|
|
wxURL url3(url1);
|
|
|
|
CPPUNIT_ASSERT(url1 == url3);
|
|
|
|
}
|
|
|
|
{ // Constructor for string
|
|
|
|
wxURL url3(url1.GetURL());
|
|
|
|
CPPUNIT_ASSERT(url1 == url3);
|
|
|
|
}
|
|
|
|
{ // 'Copy' constructor for uri
|
|
|
|
wxURL url3(*puri);
|
|
|
|
CPPUNIT_ASSERT(url2 == url3);
|
|
|
|
}
|
|
|
|
|
|
|
|
// assignment for uri
|
|
|
|
*puri = url1;
|
|
|
|
CPPUNIT_ASSERT(url1 == url2);
|
|
|
|
|
|
|
|
// assignment to self through base pointer
|
|
|
|
*puri = url2;
|
|
|
|
|
|
|
|
// Assignment of string
|
|
|
|
url1 = wxS("http://www.example2.org/index.html");
|
|
|
|
*puri = wxS("http://www.example2.org/index.html");
|
|
|
|
CPPUNIT_ASSERT(url1 == url2);
|
|
|
|
|
|
|
|
// Assignment
|
|
|
|
url1 = wxS("");
|
|
|
|
url2 = url1;
|
|
|
|
CPPUNIT_ASSERT(url1 == url2);
|
|
|
|
|
|
|
|
// assignment to self
|
2019-01-04 17:36:44 -05:00
|
|
|
wxCLANG_WARNING_SUPPRESS(self-assign-overloaded)
|
2010-03-30 17:38:31 -04:00
|
|
|
url2 = url2;
|
2019-01-04 17:36:44 -05:00
|
|
|
wxCLANG_WARNING_RESTORE(self-assign-overloaded)
|
2010-03-30 17:38:31 -04:00
|
|
|
|
|
|
|
// check for destructor (with base pointer!)
|
|
|
|
puri = new wxURL();
|
|
|
|
delete puri;
|
|
|
|
}
|