diff options
Diffstat (limited to 'Swiften/QA/NetworkTest/BoostConnectionTest.cpp')
| -rw-r--r-- | Swiften/QA/NetworkTest/BoostConnectionTest.cpp | 9 | 
1 files changed, 6 insertions, 3 deletions
diff --git a/Swiften/QA/NetworkTest/BoostConnectionTest.cpp b/Swiften/QA/NetworkTest/BoostConnectionTest.cpp index e38b895..9929eaa 100644 --- a/Swiften/QA/NetworkTest/BoostConnectionTest.cpp +++ b/Swiften/QA/NetworkTest/BoostConnectionTest.cpp @@ -5,9 +5,13 @@  #include "Swiften/Base/String.h"  #include "Swiften/Base/sleep.h"  #include "Swiften/Network/BoostConnection.h" +#include "Swiften/Network/HostAddress.h" +#include "Swiften/Network/HostAddressPort.h"  #include "Swiften/Network/BoostIOServiceThread.h"  #include "Swiften/EventLoop/DummyEventLoop.h" +const unsigned char* address = reinterpret_cast<const unsigned char*>("\x41\x63\xde\x89"); +  using namespace Swift;  class BoostConnectionTest : public CppUnit::TestFixture { @@ -31,16 +35,15 @@ class BoostConnectionTest : public CppUnit::TestFixture {  		void testDestructor() {  			{ -				std::string domain("el-tramo.be");  				boost::shared_ptr<BoostConnection> testling(new BoostConnection(&boostIOServiceThread_->getIOService())); -				testling->connect(domain); +				testling->connect(HostAddressPort(HostAddress(address, 4), 5222));  			}  		}  		void testDestructor_PendingEvents() {  			{  				boost::shared_ptr<BoostConnection> testling(new BoostConnection(&boostIOServiceThread_->getIOService())); -				testling->connect("el-tramo.be"); +				testling->connect(HostAddressPort(HostAddress(address, 4), 5222));  				while (!eventLoop_->hasEvents()) {  					Swift::sleep(10);  				}  | 
 Swift