2010-03-24 00:11:46 +01:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
|
|
|
|
Clementine 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.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-03-23 18:26:54 +01:00
|
|
|
#ifndef MOCK_LIBRARYBACKEND_H
|
|
|
|
#define MOCK_LIBRARYBACKEND_H
|
|
|
|
|
|
|
|
#include "librarybackend.h"
|
2010-03-24 20:05:49 +01:00
|
|
|
#include "test_utils.h"
|
2010-03-23 18:26:54 +01:00
|
|
|
|
2010-03-23 22:52:42 +01:00
|
|
|
#include <gmock/gmock.h>
|
|
|
|
|
2010-03-23 18:26:54 +01:00
|
|
|
class MockLibraryBackend : public LibraryBackendInterface {
|
|
|
|
public:
|
2010-03-23 22:52:42 +01:00
|
|
|
~MockLibraryBackend() { Die(); }
|
|
|
|
MOCK_METHOD0(Die, void());
|
|
|
|
|
2010-03-23 18:26:54 +01:00
|
|
|
MOCK_METHOD0(LoadDirectoriesAsync,
|
|
|
|
void());
|
|
|
|
MOCK_METHOD0(UpdateTotalSongCountAsync,
|
|
|
|
void());
|
|
|
|
MOCK_METHOD1(FindSongsInDirectory,
|
|
|
|
SongList(int id));
|
|
|
|
MOCK_METHOD1(GetAllArtists,
|
|
|
|
QStringList(const QueryOptions& opt));
|
|
|
|
MOCK_METHOD3(GetSongs,
|
|
|
|
SongList(const QString& artist, const QString& album, const QueryOptions& opt));
|
|
|
|
MOCK_METHOD1(HasCompilations,
|
|
|
|
bool(const QueryOptions& opt));
|
|
|
|
MOCK_METHOD2(GetCompilationSongs,
|
|
|
|
SongList(const QString& album, const QueryOptions& opt));
|
|
|
|
MOCK_METHOD1(GetAllAlbums,
|
|
|
|
AlbumList(const QueryOptions& opt));
|
|
|
|
MOCK_METHOD2(GetAlbumsByArtist,
|
|
|
|
AlbumList(const QString& artist, const QueryOptions& opt));
|
|
|
|
MOCK_METHOD1(GetCompilationAlbums,
|
|
|
|
AlbumList(const QueryOptions& opt));
|
|
|
|
MOCK_METHOD3(UpdateManualAlbumArtAsync,
|
|
|
|
void(const QString& artist, const QString& album, const QString& art));
|
|
|
|
MOCK_METHOD2(GetAlbumArt,
|
|
|
|
Album(const QString& artist, const QString& album));
|
|
|
|
MOCK_METHOD1(GetSongById,
|
|
|
|
Song(int id));
|
|
|
|
MOCK_METHOD1(AddDirectory,
|
|
|
|
void(const QString& path));
|
|
|
|
MOCK_METHOD1(RemoveDirectory,
|
|
|
|
void(const Directory& dir));
|
|
|
|
MOCK_METHOD0(UpdateCompilationsAsync,
|
|
|
|
void());
|
|
|
|
MOCK_METHOD0(LoadDirectories,
|
|
|
|
void());
|
|
|
|
MOCK_METHOD0(UpdateTotalSongCount,
|
|
|
|
void());
|
|
|
|
MOCK_METHOD1(AddOrUpdateSongs,
|
|
|
|
void(const SongList& songs));
|
|
|
|
MOCK_METHOD1(UpdateMTimesOnly,
|
|
|
|
void(const SongList& songs));
|
|
|
|
MOCK_METHOD1(DeleteSongs,
|
|
|
|
void(const SongList& songs));
|
|
|
|
MOCK_METHOD0(UpdateCompilations,
|
|
|
|
void());
|
|
|
|
MOCK_METHOD3(UpdateManualAlbumArt,
|
|
|
|
void(const QString& artist, const QString& album, const QString& art));
|
|
|
|
MOCK_METHOD3(ForceCompilation,
|
|
|
|
void(const QString& artist, const QString& album, bool on));
|
2010-03-23 22:52:42 +01:00
|
|
|
|
|
|
|
void ExpectSetup(bool has_compilations = false,
|
|
|
|
const QStringList& artists = QStringList());
|
2010-03-24 20:05:49 +01:00
|
|
|
|
|
|
|
EXPOSE_SIGNAL1(DirectoriesDiscovered, DirectoryList);
|
|
|
|
EXPOSE_SIGNAL1(DirectoriesDeleted, DirectoryList);
|
|
|
|
|
|
|
|
EXPOSE_SIGNAL1(SongsDiscovered, SongList);
|
|
|
|
EXPOSE_SIGNAL1(SongsDeleted, SongList);
|
|
|
|
|
|
|
|
EXPOSE_SIGNAL1(TotalSongCountUpdated, int);
|
2010-03-23 18:26:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|