mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 19:32:54 +00:00
224 lines
7.4 KiB
C++
224 lines
7.4 KiB
C++
/****************************************************************************************
|
|
* Copyright (c) 2013 Konrad Zemek <konrad.zemek@gmail.com> *
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify it under *
|
|
* the terms of the GNU General Public License as published by the Free Software *
|
|
* Foundation; either version 2 of the License, or (at your option) any later *
|
|
* version. *
|
|
* *
|
|
* This program 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 General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License along with *
|
|
* this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
****************************************************************************************/
|
|
|
|
#include "TestAmarokImporter.h"
|
|
|
|
#include "MetaValues.h"
|
|
#include "importers/amarok/AmarokConfigWidget.h"
|
|
#include "importers/amarok/AmarokManager.h"
|
|
#include "importers/amarok/AmarokProvider.h"
|
|
|
|
#include <qtest_kde.h>
|
|
|
|
Q_DECLARE_METATYPE( QProcess::ProcessError )
|
|
QTEST_KDEMAIN( TestAmarokImporter, GUI )
|
|
|
|
using namespace StatSyncing;
|
|
|
|
ProviderPtr
|
|
TestAmarokImporter::getProvider()
|
|
{
|
|
QVariantMap cfg = AmarokConfigWidget( QVariantMap() ).config();
|
|
cfg.insert( "name", "Amarok2Test" );
|
|
cfg.insert( "embedded", true );
|
|
cfg.insert( "dbPath", QCoreApplication::applicationDirPath() +
|
|
"/importers_files/amarok2_mysqle" );
|
|
|
|
return ProviderPtr( new AmarokProvider( cfg, 0 ) );
|
|
}
|
|
|
|
ProviderPtr
|
|
TestAmarokImporter::getWritableProvider()
|
|
{
|
|
QDir base( QCoreApplication::applicationDirPath() );
|
|
QDir files( base.filePath( "importers_files" ) );
|
|
QDir tmp( base.filePath( "importers_tmp" ) );
|
|
|
|
foreach( const QString &subdir,
|
|
QList<QString>() << "amarok2_mysqle" << "amarok2_mysqle/amarok" )
|
|
{
|
|
tmp.mkpath( subdir );
|
|
|
|
QDir src( files.filePath( subdir ) );
|
|
QDir dst( tmp.filePath( subdir ) );
|
|
|
|
foreach( const QString &filename, src.entryList( QStringList(), QDir::Files ) )
|
|
{
|
|
QFile( dst.filePath( filename ) ).remove();
|
|
QFile( src.filePath( filename ) ).copy( dst.filePath( filename ) );
|
|
}
|
|
}
|
|
|
|
QVariantMap cfg = AmarokConfigWidget( QVariantMap() ).config();
|
|
cfg.insert( "name", "Amarok2Test" );
|
|
cfg.insert( "embedded", true );
|
|
cfg.insert( "dbPath", tmp.filePath( "amarok2_mysqle" ) );
|
|
|
|
return ProviderPtr( new AmarokProvider( cfg, 0 ) );
|
|
}
|
|
|
|
qint64
|
|
TestAmarokImporter::reliableStatistics() const
|
|
{
|
|
return Meta::valFirstPlayed | Meta::valLastPlayed | Meta::valRating
|
|
| Meta::valPlaycount | Meta::valLabel;
|
|
}
|
|
|
|
void
|
|
TestAmarokImporter::initTestCase()
|
|
{
|
|
qRegisterMetaType<QProcess::ProcessError>();
|
|
}
|
|
|
|
void
|
|
TestAmarokImporter::init()
|
|
{
|
|
m_cfg = AmarokConfigWidget( QVariantMap() ).config();
|
|
m_cfg.insert( "embedded", true );
|
|
}
|
|
|
|
void
|
|
TestAmarokImporter::configWidgetShouldOnlyShowFieldsRelevantToConnection()
|
|
{
|
|
AmarokConfigWidget widget( m_cfg );
|
|
|
|
const QList<QWidget*> remoteConfigWidgets = QList<QWidget*>()
|
|
<< widget.m_databaseName << widget.m_hostname << widget.m_port
|
|
<< widget.m_password << widget.m_username;
|
|
|
|
widget.m_connectionType->setCurrentIndex( AmarokConfigWidget::Embedded );
|
|
QVERIFY( !widget.m_databaseLocation->isHidden() );
|
|
foreach( QWidget *w, remoteConfigWidgets )
|
|
QVERIFY( w->isHidden() );
|
|
|
|
widget.m_connectionType->setCurrentIndex( AmarokConfigWidget::External );
|
|
QVERIFY( widget.m_databaseLocation->isHidden() );
|
|
foreach( QWidget *w, remoteConfigWidgets )
|
|
QVERIFY( !w->isHidden() );
|
|
}
|
|
|
|
void
|
|
TestAmarokImporter::configWidgetShouldNotSetDriver()
|
|
{
|
|
AmarokConfigWidget widget( m_cfg );
|
|
|
|
widget.m_connectionType->setCurrentIndex( AmarokConfigWidget::Embedded );
|
|
QVERIFY( !widget.config().contains( "dbDriver" ) );
|
|
|
|
widget.m_connectionType->setCurrentIndex( AmarokConfigWidget::External );
|
|
QVERIFY( !widget.config().contains( "dbDriver" ) );
|
|
}
|
|
|
|
void
|
|
TestAmarokImporter::configWidgetShouldShowExternalAsDefault()
|
|
{
|
|
QVariantMap cfg;
|
|
AmarokConfigWidget widget( cfg );
|
|
QCOMPARE( widget.m_connectionType->currentIndex(),
|
|
static_cast<int>( AmarokConfigWidget::External ) );
|
|
}
|
|
|
|
void
|
|
TestAmarokImporter::configWidgetShouldNotBreakOnNonsenseInitialValues()
|
|
{
|
|
m_cfg.insert( "dbName", QColor( Qt::red ) );
|
|
m_cfg.insert( "dbPort", "nonsensePort" );
|
|
m_cfg.insert( "dbPath", reinterpret_cast<qptrdiff>( this ) );
|
|
|
|
AmarokConfigWidget widget( m_cfg );
|
|
|
|
QVERIFY( !widget.m_databaseName->text().isEmpty() );
|
|
QVERIFY( !widget.m_databaseLocation->text().isEmpty() );
|
|
}
|
|
|
|
void
|
|
TestAmarokImporter::configWidgetShouldReadSavedConfig()
|
|
{
|
|
m_cfg.insert( "embedded", true );
|
|
m_cfg.insert( "dbName", "MyName" );
|
|
m_cfg.insert( "dbPort", 19 );
|
|
m_cfg.insert( "name", "theName" );
|
|
AmarokConfigWidget widget( m_cfg );
|
|
|
|
QCOMPARE( widget.m_connectionType->currentIndex(),
|
|
static_cast<int>( AmarokConfigWidget::Embedded ) );
|
|
|
|
QCOMPARE( widget.m_databaseName->text(), QString( "MyName" ) );
|
|
QCOMPARE( widget.m_port->value(), 19 );
|
|
QCOMPARE( widget.m_targetName->text(), QString( "theName" ) );
|
|
|
|
m_cfg.insert( "embedded", false );
|
|
AmarokConfigWidget widgetExternal( m_cfg );
|
|
|
|
QCOMPARE( widgetExternal.m_connectionType->currentIndex(),
|
|
static_cast<int>( AmarokConfigWidget::External ) );
|
|
}
|
|
|
|
void
|
|
TestAmarokImporter::providerShouldIgnoreConfigsDbDriver()
|
|
{
|
|
if( !QFileInfo( "/usr/bin/mysqld" ).isExecutable() )
|
|
QSKIP( "/usr/bin/mysqld is not executable", SkipAll );
|
|
|
|
m_cfg.insert( "dbDriver", "QPSQL" );
|
|
m_cfg.insert( "dbPath", QCoreApplication::applicationDirPath() +
|
|
"/importers_files/amarok2_mysqle" );
|
|
|
|
AmarokProvider provider( m_cfg, 0 );
|
|
|
|
// The database isn't accessible by QPSQL driver, but it still should work
|
|
QVERIFY( !provider.artists().empty() );
|
|
}
|
|
|
|
void
|
|
TestAmarokImporter::providerShouldHandleNonexistentDbDir()
|
|
{
|
|
m_cfg.insert( "dbPath", "/Im/sure/this/wont/exist" );
|
|
|
|
AmarokProvider provider( m_cfg, 0 );
|
|
QVERIFY( provider.artists().isEmpty() );
|
|
}
|
|
|
|
void
|
|
TestAmarokImporter::providerShouldHandleInvalidDbDir()
|
|
{
|
|
m_cfg.insert( "dbPath", QApplication::applicationDirPath() );
|
|
|
|
AmarokProvider provider( m_cfg, 0 );
|
|
QVERIFY( provider.artists().isEmpty() );
|
|
}
|
|
|
|
void
|
|
TestAmarokImporter::providerShouldHandleExternalConnectionError()
|
|
{
|
|
m_cfg.insert( "dbHost", "I hope this isn't a valid hostname" );
|
|
|
|
AmarokProvider provider( m_cfg, 0 );
|
|
QVERIFY( provider.artists().isEmpty() );
|
|
}
|
|
|
|
void
|
|
TestAmarokImporter::providerShouldHandleErroneousConfigValues()
|
|
{
|
|
m_cfg.insert( "dbDriver", 19 );
|
|
m_cfg.insert( "dbName", QColor( Qt::red ) );
|
|
m_cfg.insert( "dbPort", "nonsensePort" );
|
|
|
|
AmarokProvider provider( m_cfg, 0 );
|
|
QVERIFY( provider.artists().isEmpty() );
|
|
}
|
|
|
|
#include "moc_TestAmarokImporter.cpp"
|