1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 03:10:12 +02:00

* Added (very) basic Query & Result unit tests.

This commit is contained in:
Christian Muehlhaeuser
2013-05-04 06:40:07 +02:00
parent 2558905891
commit 5c6b100de7
3 changed files with 66 additions and 10 deletions

View File

@@ -1,4 +1,5 @@
include_directories(${CMAKE_CURRENT_LIST_DIR}/../src)
include_directories(${CMAKE_CURRENT_LIST_DIR}/../src ${CMAKE_CURRENT_LIST_DIR}/../src/libtomahawk)
include(tomahawk_add_test.cmake)
tomahawk_add_test(Foo)
tomahawk_add_test(Result)
tomahawk_add_test(Query)

View File

@@ -1,6 +1,6 @@
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
*
* Copyright 2013, Dominik Schmidt <domme@tomahawk-player.org>
* Copyright 2013, Christian Muehlhaeuser <muesli@tomahawk-player.org>
*
* Tomahawk is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -16,21 +16,24 @@
* along with Tomahawk. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef TOMAHAWK_TESTFOO_H
#define TOMAHAWK_TESTFOO_H
#ifndef TOMAHAWK_TESTQUERY_H
#define TOMAHAWK_TESTQUERY_H
#include <QtTest>
class TestFoo : public QObject
#include "libtomahawk/Query.h"
#include "libtomahawk/Source.h"
class TestQuery : public QObject
{
Q_OBJECT
private slots:
void testBar()
void testGet()
{
QVERIFY( true );
Tomahawk::query_ptr q = Tomahawk::Query::get( "", "", "" );
QVERIFY( !q );
}
};
#endif
#endif

52
tests/TestResult.h Normal file
View File

@@ -0,0 +1,52 @@
/* === This file is part of Tomahawk Player - <http://tomahawk-player.org> ===
*
* Copyright 2013, Christian Muehlhaeuser <muesli@tomahawk-player.org>
*
* Tomahawk 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 3 of the License, or
* (at your option) any later version.
*
* Tomahawk 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 Tomahawk. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef TOMAHAWK_TESTRESULT_H
#define TOMAHAWK_TESTRESULT_H
#include <QtTest>
#include "libtomahawk/Result.h"
#include "libtomahawk/Source.h"
class TestResult : public QObject
{
Q_OBJECT
private slots:
void testIsValid()
{
Tomahawk::result_ptr r = Tomahawk::Result::get( "/tmp/test.mp3" );
QVERIFY( !r->isValid() );
Tomahawk::track_ptr t = Tomahawk::Track::get( "Artist", "Track" );
r->setTrack( t );
QVERIFY( r->isValid() );
}
void testGet()
{
Tomahawk::result_ptr r = Tomahawk::Result::get( "" );
QVERIFY( !r );
Tomahawk::result_ptr vr = Tomahawk::Result::get( "/tmp/test.mp3" );
QVERIFY( vr );
}
};
#endif