~dobey/unity8/no-verify

« back to all changes in this revision

Viewing changes to tests/plugins/SessionGrabber/sessiongrabbertest.cpp

  • Committer: CI Train Bot
  • Author(s): Albert Astals Cid
  • Date: 2015-07-02 16:09:51 UTC
  • mfrom: (1732.4.23 screenshoting)
  • Revision ID: ci-train-bot@canonical.com-20150702160951-3lato8sghjtb5m7c
Save screenshots of suspended apps to disk
Approved by: Michał Sawicz

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2015 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#include <QtTestGui>
 
18
#include <QQuickItem>
 
19
#include <QQuickView>
 
20
#include <QSignalSpy>
 
21
 
 
22
#include "sessiongrabber.h"
 
23
 
 
24
class SessionGrabberTest : public QObject
 
25
{
 
26
    Q_OBJECT
 
27
 
 
28
private Q_SLOTS:
 
29
 
 
30
    void init()
 
31
    {
 
32
        view = new QQuickView();
 
33
        view->setSource(QUrl::fromLocalFile(CURRENT_SOURCE_DIR "/sessiongrabbertest.qml"));
 
34
        view->show();
 
35
        QTest::qWaitForWindowExposed(view);
 
36
    }
 
37
 
 
38
    void testSessionGrabber()
 
39
    {
 
40
        SessionGrabber s;
 
41
        s.setAppId("test-app-id");
 
42
        s.setTarget(view->rootObject());
 
43
        QSignalSpy spy(&s, &SessionGrabber::screenshotGrabbed);
 
44
 
 
45
        QVERIFY(!QFile::exists(s.path()));
 
46
 
 
47
        view->rootObject()->setProperty("color", "red");
 
48
        s.grab();
 
49
        spy.wait();
 
50
 
 
51
        QVERIFY(QFile::exists(s.path()));
 
52
        QImage image(s.path());
 
53
        QCOMPARE(image.pixel(0, 0), qRgb(255, 0, 0));
 
54
 
 
55
        view->rootObject()->setProperty("color", "blue");
 
56
        s.grab();
 
57
        spy.wait();
 
58
 
 
59
        QVERIFY(QFile::exists(s.path()));
 
60
        image = QImage(s.path());
 
61
        QCOMPARE(image.pixel(0, 0), qRgb(0, 0, 255));
 
62
 
 
63
        s.removeScreenshot();
 
64
 
 
65
        QVERIFY(!QFile::exists(s.path()));
 
66
    }
 
67
 
 
68
    void cleanup()
 
69
    {
 
70
        delete view;
 
71
    }
 
72
 
 
73
private:
 
74
    QQuickView *view;
 
75
};
 
76
 
 
77
QTEST_MAIN(SessionGrabberTest)
 
78
 
 
79
#include "sessiongrabbertest.moc"