2020-08-25 16:05:56 +02:00
|
|
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
2020-07-27 15:35:24 +02:00
|
|
|
*
|
|
|
|
* SPDX-FileCopyrightText: 2020 Adriaan de Groot <groot@kde.org>
|
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
*
|
2020-08-25 16:05:56 +02:00
|
|
|
* Calamares is Free Software: see the License-Identifier above.
|
2020-07-27 15:35:24 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "CreateUserJob.h"
|
|
|
|
|
2020-10-23 12:19:28 +02:00
|
|
|
#include "JobQueue.h"
|
2020-07-27 15:35:24 +02:00
|
|
|
#include "utils/Logger.h"
|
|
|
|
|
|
|
|
#include <QDir>
|
|
|
|
#include <QtTest/QtTest>
|
|
|
|
|
|
|
|
// Implementation details
|
2020-10-22 14:21:14 +02:00
|
|
|
extern QStringList groupsInTargetSystem(); // CreateUserJob
|
2020-07-27 15:35:24 +02:00
|
|
|
|
2020-10-22 14:21:14 +02:00
|
|
|
class GroupTests : public QObject
|
2020-07-27 15:35:24 +02:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2020-10-22 14:21:14 +02:00
|
|
|
GroupTests();
|
|
|
|
~GroupTests() override {}
|
2020-07-27 15:35:24 +02:00
|
|
|
|
|
|
|
private Q_SLOTS:
|
|
|
|
void initTestCase();
|
|
|
|
|
|
|
|
void testReadGroup();
|
|
|
|
};
|
|
|
|
|
2020-10-22 14:21:14 +02:00
|
|
|
GroupTests::GroupTests() {}
|
2020-07-27 15:35:24 +02:00
|
|
|
|
|
|
|
void
|
2020-10-22 14:21:14 +02:00
|
|
|
GroupTests::initTestCase()
|
2020-07-27 15:35:24 +02:00
|
|
|
{
|
|
|
|
Logger::setupLogLevel( Logger::LOGDEBUG );
|
|
|
|
cDebug() << "Users test started.";
|
2020-10-23 12:19:28 +02:00
|
|
|
if ( !Calamares::JobQueue::instance() )
|
|
|
|
{
|
|
|
|
(void)new Calamares::JobQueue();
|
|
|
|
}
|
2020-07-27 15:35:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-10-22 14:21:14 +02:00
|
|
|
GroupTests::testReadGroup()
|
2020-07-27 15:35:24 +02:00
|
|
|
{
|
|
|
|
// Get the groups in the host system
|
2020-10-22 14:21:14 +02:00
|
|
|
QStringList groups = groupsInTargetSystem();
|
2020-07-27 15:35:24 +02:00
|
|
|
QVERIFY( groups.count() > 2 );
|
|
|
|
#ifdef __FreeBSD__
|
|
|
|
QVERIFY( groups.contains( QStringLiteral( "wheel" ) ) );
|
|
|
|
#else
|
|
|
|
QVERIFY( groups.contains( QStringLiteral( "root" ) ) );
|
|
|
|
#endif
|
2020-08-11 22:16:03 +02:00
|
|
|
// openSUSE doesn't have "sys"
|
|
|
|
// QVERIFY( groups.contains( QStringLiteral( "sys" ) ) );
|
|
|
|
QVERIFY( groups.contains( QStringLiteral( "nogroup" ) ) );
|
|
|
|
QVERIFY( groups.contains( QStringLiteral( "tty" ) ) );
|
2020-07-27 15:35:24 +02:00
|
|
|
|
|
|
|
for ( const QString& s : groups )
|
|
|
|
{
|
|
|
|
QVERIFY( !s.isEmpty() );
|
|
|
|
QVERIFY( !s.contains( '#' ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-22 14:21:14 +02:00
|
|
|
QTEST_GUILESS_MAIN( GroupTests )
|
2020-07-27 15:35:24 +02:00
|
|
|
|
|
|
|
#include "utils/moc-warnings.h"
|
|
|
|
|
2020-10-23 11:14:59 +02:00
|
|
|
#include "TestGroupInformation.moc"
|