kdelibs/solid/tests/solidnettestdbusservice.cpp
Ivailo Monev 82fc15f54b generic: use CMake moc instead of automoc4 by default
for compatibilty reasons automoc4 support is not removed but it
shall be in the future. automoc4 has not been maintained for a
while (last commit is from 2011) and the stable release is from
2009.

CMake version >= 2.8.6 provides the functionality for mocking so
I see no reason to not make use of it.
2015-02-27 07:40:26 +00:00

167 lines
4.7 KiB
C++

/*
Copyright 2007 Will Stephenson <wstephenson@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) version 3, or any
later version accepted by the membership of KDE e.V. (or its
successor approved by the membership of KDE e.V.), which shall
act as a proxy defined in Section 6 of version 3 of the license.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include <QtCore/QCoreApplication>
#include <QtDBus/QtDBus>
#include <QtCore/QTimer>
#include <solid/networking.h>
#include "solidnettestdbusservice.h"
#include "networkingadaptor.h"
QString statusToString( uint status )
{
QString asString;
switch ( status )
{
case Solid::Networking::Unknown:
asString = "Unknown";
break;
case Solid::Networking::Unconnected:
asString = "Unconnected";
break;
case Solid::Networking::Connecting:
asString ="Connecting";
break;
case Solid::Networking::Connected:
asString = "Connected";
break;
case Solid::Networking::Disconnecting:
asString ="Disconnecting";
break;
default:
asString = "Crap passed to statusAsString()!";
}
return asString;
}
Behaviour::Behaviour( TestNetworkingService * service ) : mService( service )
{
connect ( mService, SIGNAL(statusChanged(uint)), this, SLOT(serviceStatusChanged(uint)) );
}
GoOnlineOnRequest::GoOnlineOnRequest( TestNetworkingService * service ) : Behaviour( service )
{
}
void GoOnlineOnRequest::go()
{
// do nothing this only reacts to events
}
void GoOnlineOnRequest::serviceStatusChanged( uint status )
{
qDebug( "GoOnlineOnRequest::serviceStatusChanged()" );
switch ( status )
{
case Solid::Networking::Connecting:
qDebug( " connecting..." );
QTimer::singleShot( 5000, this, SLOT(doDelayedConnect()) );
break;
case Solid::Networking::Disconnecting:
qDebug( " disconnecting..." );
QTimer::singleShot( 5000, this, SLOT(doDelayedDisconnect()) );
break;
default:
;
}
}
void GoOnlineOnRequest::doDelayedConnect()
{
mService->setStatus( ( uint )Solid::Networking::Connected );
}
void GoOnlineOnRequest::doDelayedDisconnect()
{
mService->setStatus( ( uint )Solid::Networking::Unconnected );
}
TestNetworkingService::TestNetworkingService( const QString & ) : mStatus( Solid::Networking::Unconnected )
{
new NetworkingAdaptor( this );
mBehaviour = new GoOnlineOnRequest( this );
QDBusConnection dbus = QDBusConnection::sessionBus();
dbus.registerService( "org.kde.Solid.Networking" );
dbus.registerObject( "/status", this );
}
TestNetworkingService::~TestNetworkingService()
{
}
uint TestNetworkingService::requestConnection()
{
qDebug( "TestNetworkingService::requestConnection()" );
if ( mStatus == Solid::Networking::Unconnected )
{
setStatus( Solid::Networking::Connecting );
#ifdef __GNUC__
#warning "Fix return value"
#endif
return 1;//Solid::Networking::Accepted;
}
#ifdef __GNUC__
#warning "Fix return value"
#endif
return 2;//Solid::Networking::AlreadyConnected;
}
void TestNetworkingService::releaseConnection()
{
qDebug( "TestNetworkingService::releaseConnection()" );
if ( mStatus == Solid::Networking::Connected )
{
setStatus( Solid::Networking::Disconnecting );
}
}
uint TestNetworkingService::status() const
{
return mStatus;
}
void TestNetworkingService::setStatus( uint status )
{
qDebug( "Setting status to %s", qPrintable( statusToString( status ) ) );
mStatus = status;
emit statusChanged( mStatus );
}
int main( int argc, char** argv )
{
QCoreApplication app( argc, argv );
TestNetworkingService serv( "" );
return app.exec();
}
// add a ctor arg to TestNetworkingService that sets its behaviour
// behaviour types - request, delay, statuschanged
// - deny requests
// - request, delay, online, offline
// - offline, delay, unrequested online
// - intermittent on/offline
// - request, delay, online until released
//
#include "moc_solidnettestdbusservice.cpp"