~mardy/online-accounts-api/sasl-1519330

« back to all changes in this revision

Viewing changes to tests/lib/OnlineAccounts/tst_authentication_data/tst_authentication_data.cpp

  • Committer: Alberto Mardegan
  • Date: 2015-04-28 17:01:03 UTC
  • mfrom: (5.1.30 qt-api-impl)
  • Revision ID: alberto.mardegan@canonical.com-20150428170103-9hty50555f6e7uz6
Qt client API implementation

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of libOnlineAccounts
 
3
 *
 
4
 * Copyright (C) 2015 Canonical Ltd.
 
5
 *
 
6
 * Contact: Alberto Mardegan <alberto.mardegan@canonical.com>
 
7
 *
 
8
 * This program is free software: you can redistribute it and/or modify it
 
9
 * under the terms of the GNU Lesser General Public License version 3, as
 
10
 * published by the Free Software Foundation.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful, but
 
13
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
14
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
15
 * PURPOSE.  See the GNU Lesser General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Lesser General Public License
 
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
 */
 
20
 
 
21
#include <QObject>
 
22
#include <QTest>
 
23
#include "authentication_data.h"
 
24
 
 
25
using namespace OnlineAccounts;
 
26
 
 
27
class AuthenticationDataTest : public QObject
 
28
{
 
29
    Q_OBJECT
 
30
 
 
31
private Q_SLOTS:
 
32
    void testData();
 
33
};
 
34
 
 
35
void AuthenticationDataTest::testData()
 
36
{
 
37
    OAuth2Data oauth2;
 
38
 
 
39
    oauth2.setClientId("client");
 
40
    QCOMPARE(oauth2.clientId(), QByteArray("client"));
 
41
 
 
42
    oauth2.setInteractive(false);
 
43
    QCOMPARE(oauth2.interactive(), false);
 
44
 
 
45
    OAuth2Data copy = oauth2;
 
46
    QCOMPARE(copy.clientId(), QByteArray("client"));
 
47
    QCOMPARE(copy.interactive(), false);
 
48
 
 
49
    oauth2.setClientId("client-changed");
 
50
    QCOMPARE(oauth2.clientId(), QByteArray("client-changed"));
 
51
    QCOMPARE(copy.clientId(), QByteArray("client"));
 
52
}
 
53
 
 
54
QTEST_MAIN(AuthenticationDataTest)
 
55
#include "tst_authentication_data.moc"