~ubuntu-branches/ubuntu/lucid/lastfm/lucid

« back to all changes in this revision

Viewing changes to src/libUnicorn/tests/TestMetaData.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2007-12-31 09:49:54 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071231094954-ix1amvcsj9pk61ya
Tags: 1:1.4.1.57486.dfsg-1ubuntu1
* Merge from Debian unstable (LP: #180254), remaining changes:
  - debian/rules;
    - Added dh_icons
  - Modify Maintainer value to match Debian-Maintainer-Field Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2005 - 2007 by                                          *
 
3
 *      Last.fm Ltd <client@last.fm>                                       *
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 2 of the License, or     *
 
8
 *   (at your option) any later version.                                   *
 
9
 *                                                                         *
 
10
 *   This program is distributed in the hope that it will be useful,       *
 
11
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
12
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
13
 *   GNU General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program; if not, write to the                         *
 
17
 *   Free Software Foundation, Inc.,                                       *
 
18
 *   51 Franklin Steet, Fifth Floor, Boston, MA  02110-1301, USA.          *
 
19
 ***************************************************************************/
 
20
 
 
21
#include <QtTest/QtTest>
 
22
 
 
23
#include "MooseCommon.h"
 
24
#include "LastFmSettings.h"
 
25
#include "UnicornCommon.h"
 
26
#include "metadata.h"
 
27
 
 
28
class TestMetaData : public QObject
 
29
{
 
30
    Q_OBJECT
 
31
 
 
32
    private slots:
 
33
        void testTrackTags();
 
34
        void testTrackPageUrl();
 
35
        void testBuyTrackString();
 
36
        void testBuyTrackUrl();
 
37
        void testAlbumPicUrl();
 
38
        void testAlbumPageUrl();
 
39
 
 
40
    private:
 
41
        MetaData m_metadata;
 
42
};
 
43
 
 
44
 
 
45
void TestMetaData::testTrackTags()
 
46
{
 
47
    QStringList tags;
 
48
    tags << "one" << "two" << "three";
 
49
    m_metadata.setTrackTags( tags );
 
50
 
 
51
    QStringList cmp = m_metadata.trackTags();
 
52
    QCOMPARE( tags, cmp );
 
53
}
 
54
 
 
55
 
 
56
void TestMetaData::testTrackPageUrl()
 
57
{
 
58
    QString url( "http://testurl" );
 
59
    m_metadata.setTrackPageUrl( url );
 
60
 
 
61
    QString cmp = m_metadata.trackPageUrl();
 
62
    QCOMPARE( url, cmp );
 
63
}
 
64
 
 
65
 
 
66
void TestMetaData::testBuyTrackString()
 
67
{
 
68
    QString text( "mybuystring" );
 
69
    m_metadata.setBuyTrackString( text );
 
70
 
 
71
    QString cmp = m_metadata.buyTrackString();
 
72
    QCOMPARE( text, cmp );
 
73
}
 
74
 
 
75
 
 
76
void TestMetaData::testBuyTrackUrl()
 
77
{
 
78
    QString url( "http://testurl" );
 
79
    m_metadata.setBuyTrackUrl( url );
 
80
 
 
81
    QString cmp = m_metadata.buyTrackUrl();
 
82
    QCOMPARE( url, cmp );
 
83
}
 
84
 
 
85
 
 
86
void TestMetaData::testAlbumPicUrl()
 
87
{
 
88
    QUrl url( "http://testurl" );
 
89
    m_metadata.setAlbumPicUrl( url );
 
90
 
 
91
    QUrl cmp = m_metadata.albumPicUrl();
 
92
    QCOMPARE( url, cmp );
 
93
}
 
94
 
 
95
 
 
96
void TestMetaData::testAlbumPageUrl()
 
97
{
 
98
    QString url( "http://testurl" );
 
99
    m_metadata.setAlbumPageUrl( url );
 
100
 
 
101
    QString cmp = m_metadata.albumPageUrl();
 
102
    QCOMPARE( url, cmp );
 
103
}
 
104
 
 
105
 
 
106
QTEST_MAIN(TestMetaData)
 
107
#include "TestMetaData.moc"