mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
72 lines
2.7 KiB
C++
72 lines
2.7 KiB
C++
/*************************************************************************************
|
|
* Copyright (C) 2012 by Alejandro Fiestas Olivares <afiestas@kde.org> *
|
|
* *
|
|
* This library is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU Lesser General Public *
|
|
* License as published by the Free Software Foundation; either *
|
|
* version 2.1 of the License, or (at your option) any later version. *
|
|
* *
|
|
* This library 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 *
|
|
* Lesser General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
* License along with this library; if not, write to the Free Software *
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *
|
|
*************************************************************************************/
|
|
|
|
#define QT_GUI_LIB
|
|
|
|
#include <QtTest/QtTest>
|
|
#include <QtCore/QObject>
|
|
|
|
#include "../src/config.h"
|
|
#include "../src/output.h"
|
|
#include "../src/mode.h"
|
|
|
|
using namespace KScreen;
|
|
|
|
class testXRandR : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
private Q_SLOTS:
|
|
void initTestCase();
|
|
void singleOutput();
|
|
|
|
private:
|
|
QProcess m_process;
|
|
};
|
|
|
|
void testXRandR::initTestCase()
|
|
{
|
|
}
|
|
|
|
void testXRandR::singleOutput()
|
|
{
|
|
setenv("KSCREEN_BACKEND", "XRandR", 1);
|
|
Config *config = Config::current();
|
|
if (!config) {
|
|
QSKIP("XRandR X extension is not available", SkipAll);
|
|
}
|
|
|
|
QCOMPARE(config->outputs().count(), 1);
|
|
|
|
Output *output = config->outputs().take(327);
|
|
|
|
QCOMPARE(output->name(), QString("default"));
|
|
QCOMPARE(output->type(), Output::Unknown);
|
|
QCOMPARE(output->modes().count(), 15);
|
|
QCOMPARE(output->pos(), QPoint(0, 0));
|
|
QCOMPARE(output->currentModeId(), QLatin1String("338"));
|
|
QCOMPARE(output->rotation(), Output::None);
|
|
QCOMPARE(output->isConnected(), true);
|
|
QCOMPARE(output->isEnabled(), true);
|
|
QCOMPARE(output->isPrimary(), false);
|
|
QVERIFY2(output->clones().isEmpty(), "In singleOutput is impossible to have clones");
|
|
}
|
|
|
|
QTEST_MAIN(testXRandR)
|
|
|
|
#include "testxrandr.moc"
|