~ubuntu-branches/ubuntu/vivid/akonadi/vivid

« back to all changes in this revision

Viewing changes to server/tests/unittest/itemretrievertest.cpp

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2013-11-11 17:38:58 UTC
  • mfrom: (1.1.46)
  • Revision ID: package-import@ubuntu.com-20131111173858-kltz6s4ebjishfej
Tags: 1.10.80-0ubuntu1
* New upstream release
 - Update install files
 - Update disable_dbus_requiring_tests.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (c) 2013 Volker Krause <vkrause@kde.org>
 
3
 
 
4
    This library is free software; you can redistribute it and/or modify it
 
5
    under the terms of the GNU Library General Public License as published by
 
6
    the Free Software Foundation; either version 2 of the License, or (at your
 
7
    option) any later version.
 
8
 
 
9
    This library is distributed in the hope that it will be useful, but WITHOUT
 
10
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
11
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
 
12
    License for more details.
 
13
 
 
14
    You should have received a copy of the GNU Library General Public License
 
15
    along with this library; see the file COPYING.LIB.  If not, write to the
 
16
    Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 
17
    02110-1301, USA.
 
18
*/
 
19
 
 
20
#include <QObject>
 
21
#include <QtTest/QTest>
 
22
#include <QtCore/QBuffer>
 
23
 
 
24
#include "storage/itemretriever.h"
 
25
 
 
26
using namespace Akonadi;
 
27
 
 
28
class ItemRetrieverTest : public QObject
 
29
{
 
30
  Q_OBJECT
 
31
  private Q_SLOTS:
 
32
    void testFullPayload()
 
33
    {
 
34
      ItemRetriever r1( 0 );
 
35
      r1.setRetrieveFullPayload( true );
 
36
      QCOMPARE( r1.retrieveParts().size(), 1 );
 
37
      QCOMPARE( r1.retrieveParts().at( 0 ), QString::fromLatin1( "PLD:RFC822" ) );
 
38
      r1.setRetrieveParts( QStringList() << QLatin1String( "PLD:FOO" ) );
 
39
      QCOMPARE( r1.retrieveParts().size(), 2 );
 
40
    }
 
41
};
 
42
 
 
43
QTEST_MAIN( ItemRetrieverTest )
 
44
 
 
45
#include "itemretrievertest.moc"