You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/kopete/protocols/oscar/liboscar/tests/redirecttest.h

52 lines
901 B

//
// C++ Implementation: clientstream_test
//
// Description:
//
//
// Author: Kopete Developers <kopete-devel@kde.org>, (C) 2004
// Licensed under the GNU General Public License
#ifndef RedirectTest_h
#define RedirectTest_h
#include <tqglobal.h>
#include <tqapplication.h>
#include <tqtimer.h>
#include "transfer.h"
#include "oscartypes.h"
#include "serverredirecttask.h"
#include "task.h"
#define TQT_FATAL_ASSERT 1
class RedirectTest : public TQApplication
{
public:
RedirectTest(int argc, char ** argv);
~RedirectTest();
bool testHandleRedirect();
bool testInvalidService();
bool testInvalidCookie();
bool testCookieIsSet();
void Setup();
void Teardown();
void CheckTest(bool TestPassed);
private:
//Helper functions
Buffer* SetupBuffer(WORD Service, TQString Cookie);
Task *m_root;
SnacTransfer * m_transfer;
ServerRedirectTask* m_task;
bool connected;
};
#endif