Test for the "Host" header containing the port.

* Also tests that receiving data using a listener works.
This commit is contained in:
Adrien Destugues 2014-07-28 16:05:52 +02:00
parent dc8665f745
commit 1dc356fb06
2 changed files with 100 additions and 36 deletions

View File

@ -16,7 +16,10 @@
#include <HttpRequest.h> #include <HttpRequest.h>
#include <cppunit/TestCaller.h> #include <cppunit/TestCaller.h>
#include <cppunit/TestSuite.h>
static const int kHeaderCountInTrivialRequest = 7;
// FIXME This is too strict and not very useful.
HttpTest::HttpTest() HttpTest::HttpTest()
@ -44,13 +47,13 @@ HttpTest::GetTest()
while(t.IsRunning()) while(t.IsRunning())
snooze(1000); snooze(1000);
CPPUNIT_ASSERT(t.Status() == B_OK); CPPUNIT_ASSERT_EQUAL(B_OK, t.Status());
const BHttpResult& r = dynamic_cast<const BHttpResult&>(t.Result()); const BHttpResult& r = dynamic_cast<const BHttpResult&>(t.Result());
CPPUNIT_ASSERT_EQUAL(200, r.StatusCode()); CPPUNIT_ASSERT_EQUAL(200, r.StatusCode());
CPPUNIT_ASSERT_EQUAL(BString("OK"), r.StatusText()); CPPUNIT_ASSERT_EQUAL(BString("OK"), r.StatusText());
CPPUNIT_ASSERT_EQUAL(6, r.Headers().CountHeaders()); CPPUNIT_ASSERT_EQUAL(kHeaderCountInTrivialRequest,
// FIXME This is too strict and not very useful. r.Headers().CountHeaders());
CPPUNIT_ASSERT_EQUAL(42, r.Length()); CPPUNIT_ASSERT_EQUAL(42, r.Length());
// Fixed size as we know the response format. // Fixed size as we know the response format.
CPPUNIT_ASSERT(!c.GetCookieJar().GetIterator().HasNext()); CPPUNIT_ASSERT(!c.GetCookieJar().GetIterator().HasNext());
@ -58,6 +61,47 @@ HttpTest::GetTest()
} }
class PortTestListener: public BUrlProtocolListener
{
public:
virtual ~PortTestListener() {};
void DataReceived(BUrlRequest*, const char* data, off_t,
ssize_t size)
{
fResult.Append(data, size);
}
BString fResult;
};
void
HttpTest::PortTest()
{
BUrl testUrl("http://portquiz.net:4242");
BHttpRequest t(testUrl);
// portquiz returns more easily parseable results when UA is Wget...
t.SetUserAgent("Wget/1.15 (haiku testsuite)");
PortTestListener listener;
t.SetListener(&listener);
CPPUNIT_ASSERT(t.Run());
while(t.IsRunning())
snooze(1000);
CPPUNIT_ASSERT_EQUAL(B_OK, t.Status());
const BHttpResult& r = dynamic_cast<const BHttpResult&>(t.Result());
CPPUNIT_ASSERT_EQUAL(200, r.StatusCode());
CPPUNIT_ASSERT(listener.fResult.StartsWith("Port 4242 test successful!"));
}
void void
HttpTest::UploadTest() HttpTest::UploadTest()
{ {
@ -79,12 +123,12 @@ HttpTest::UploadTest()
while(t.IsRunning()) while(t.IsRunning())
snooze(1000); snooze(1000);
CPPUNIT_ASSERT(t.Status() == B_OK); CPPUNIT_ASSERT_EQUAL(B_OK, t.Status());
const BHttpResult& r = dynamic_cast<const BHttpResult&>(t.Result()); const BHttpResult& r = dynamic_cast<const BHttpResult&>(t.Result());
CPPUNIT_ASSERT_EQUAL(200, r.StatusCode()); CPPUNIT_ASSERT_EQUAL(200, r.StatusCode());
CPPUNIT_ASSERT_EQUAL(BString("OK"), r.StatusText()); CPPUNIT_ASSERT_EQUAL(BString("OK"), r.StatusText());
CPPUNIT_ASSERT_EQUAL(460, r.Length()); CPPUNIT_ASSERT_EQUAL(474, r.Length());
// Fixed size as we know the response format. // Fixed size as we know the response format.
} }
@ -121,32 +165,53 @@ HttpTest::_AuthTest(BUrl& testUrl)
while(t.IsRunning()) while(t.IsRunning())
snooze(1000); snooze(1000);
CPPUNIT_ASSERT(t.Status() == B_OK); CPPUNIT_ASSERT_EQUAL(B_OK, t.Status());
const BHttpResult& r = dynamic_cast<const BHttpResult&>(t.Result()); const BHttpResult& r = dynamic_cast<const BHttpResult&>(t.Result());
CPPUNIT_ASSERT_EQUAL(200, r.StatusCode()); CPPUNIT_ASSERT_EQUAL(200, r.StatusCode());
CPPUNIT_ASSERT_EQUAL(BString("OK"), r.StatusText()); CPPUNIT_ASSERT_EQUAL(BString("OK"), r.StatusText());
CPPUNIT_ASSERT_EQUAL(6, r.Headers().CountHeaders()); CPPUNIT_ASSERT_EQUAL(kHeaderCountInTrivialRequest,
// FIXME This is too strict and not very useful. r.Headers().CountHeaders());
CPPUNIT_ASSERT_EQUAL(47, r.Length()); CPPUNIT_ASSERT_EQUAL(48, r.Length());
// Fixed size as we know the response format. // Fixed size as we know the response format.
} }
/* static */ template<class T> void
HttpTest::_AddCommonTests(BString prefix, CppUnit::TestSuite& suite)
{
BString name;
name = prefix;
name << "GetTest";
suite.addTest(new CppUnit::TestCaller<T>(name.String(), &T::GetTest));
name = prefix;
name << "UploadTest";
suite.addTest(new CppUnit::TestCaller<T>(name.String(), &T::UploadTest));
name = prefix;
name << "AuthBasicTest";
suite.addTest(new CppUnit::TestCaller<T>(name.String(), &T::AuthBasicTest));
name = prefix;
name << "AuthDigestTest";
suite.addTest(new CppUnit::TestCaller<T>(name.String(), &T::AuthDigestTest));
}
/* static */ void /* static */ void
HttpTest::AddTests(BTestSuite& parent) HttpTest::AddTests(BTestSuite& parent)
{ {
{ {
CppUnit::TestSuite& suite = *new CppUnit::TestSuite("HttpTest"); CppUnit::TestSuite& suite = *new CppUnit::TestSuite("HttpTest");
// HTTP + HTTPs
_AddCommonTests<HttpTest>("HttpTest::", suite);
// HTTP-only
suite.addTest(new CppUnit::TestCaller<HttpTest>( suite.addTest(new CppUnit::TestCaller<HttpTest>(
"HttpTest::GetTest", &HttpTest::GetTest)); "HttpTest::PortTest", &HttpTest::PortTest));
suite.addTest(new CppUnit::TestCaller<HttpTest>(
"HttpTest::UploadTest", &HttpTest::UploadTest));
suite.addTest(new CppUnit::TestCaller<HttpTest>(
"HttpTest::AuthBasicTest", &HttpTest::AuthBasicTest));
suite.addTest(new CppUnit::TestCaller<HttpTest>(
"HttpTest::AuthDigestTest", &HttpTest::AuthDigestTest));
parent.addTest("HttpTest", &suite); parent.addTest("HttpTest", &suite);
} }
@ -154,14 +219,8 @@ HttpTest::AddTests(BTestSuite& parent)
{ {
CppUnit::TestSuite& suite = *new CppUnit::TestSuite("HttpsTest"); CppUnit::TestSuite& suite = *new CppUnit::TestSuite("HttpsTest");
suite.addTest(new CppUnit::TestCaller<HttpsTest>( // HTTP + HTTPs
"HttpsTest::GetTest", &HttpsTest::GetTest)); _AddCommonTests<HttpsTest>("HttpsTest::", suite);
suite.addTest(new CppUnit::TestCaller<HttpsTest>(
"HttpsTest::UploadTest", &HttpsTest::UploadTest));
suite.addTest(new CppUnit::TestCaller<HttpsTest>(
"HttpsTest::AuthBasicTest", &HttpsTest::AuthBasicTest));
suite.addTest(new CppUnit::TestCaller<HttpsTest>(
"HttpsTest::AuthDigestTest", &HttpsTest::AuthDigestTest));
parent.addTest("HttpsTest", &suite); parent.addTest("HttpsTest", &suite);
} }

View File

@ -11,31 +11,36 @@
#include <TestCase.h> #include <TestCase.h>
#include <TestSuite.h> #include <TestSuite.h>
#include <cppunit/TestSuite.h>
class HttpTest: public BTestCase { class HttpTest: public BTestCase {
public: public:
HttpTest(); HttpTest();
virtual ~HttpTest(); virtual ~HttpTest();
void GetTest(); void GetTest();
void UploadTest(); void PortTest();
void AuthBasicTest(); void UploadTest();
void AuthDigestTest(); void AuthBasicTest();
void ListenerTest(); void AuthDigestTest();
static void AddTests(BTestSuite& suite); static void AddTests(BTestSuite& suite);
private: private:
void _AuthTest(BUrl& url); void _AuthTest(BUrl& url);
template<class T> static void _AddCommonTests(BString prefix,
CppUnit::TestSuite& suite);
protected: protected:
BUrl fBaseUrl; BUrl fBaseUrl;
}; };
class HttpsTest: public HttpTest { class HttpsTest: public HttpTest {
public: public:
HttpsTest(); HttpsTest();
}; };