calamares/src/modules/partition/tests/ClearMountsJobTests.cpp

69 lines
1.9 KiB
C++
Raw Normal View History

/* === This file is part of Calamares - <https://calamares.io> ===
*
2020-08-22 01:19:58 +02:00
* SPDX-FileCopyrightText: 2019 Adriaan de Groot <groot@kde.org>
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Calamares is Free Software: see the License-Identifier above.
*
*/
#include "ClearMountsJobTests.h"
#include "utils/Logger.h"
#include <QtTest/QtTest>
QTEST_GUILESS_MAIN( ClearMountsJobTests )
/* Not exactly public API */
2020-04-17 00:28:14 +02:00
QStringList getPartitionsForDevice( const QString& deviceName );
2021-11-09 16:37:25 +01:00
/* At one point, the partitions-list was read from /proc/partitions by
* running awk and grep, as below. Check that the current implementation
* matches that crufty one.
*
* Update 2021-11-02: the newer implementation prepends /dev/ to the
* names of the partitions, for simplicity elsewhere, so that needs
* to be added in to the awk(1) program, too.
*/
QStringList
2020-04-17 00:28:14 +02:00
getPartitionsForDevice_other( const QString& deviceName )
{
QProcess process;
process.setProgram( "sh" );
2020-04-17 00:28:14 +02:00
process.setArguments(
{ "-c",
2021-11-09 16:37:25 +01:00
QString( "echo $(awk '{print \"/dev/\"$4}' /proc/partitions | sed -e '/name/d' -e '/^$/d' -e '/[1-9]/!d' | grep %1)" )
2020-04-17 00:28:14 +02:00
.arg( deviceName ) } );
process.start();
process.waitForFinished();
const QString partitions = process.readAllStandardOutput().trimmed();
if ( partitions.isEmpty() )
{
return QStringList();
}
const QStringList partitionsList = partitions.simplified().split( ' ' );
return partitionsList;
}
ClearMountsJobTests::ClearMountsJobTests()
{
2020-04-17 00:28:14 +02:00
Logger::setupLogLevel( Logger::LOGDEBUG );
}
2020-04-17 00:28:14 +02:00
void
ClearMountsJobTests::testFindPartitions()
{
QStringList partitions = getPartitionsForDevice( "sda" );
QStringList other_part = getPartitionsForDevice_other( "sda" );
cDebug() << "Initial implementation:" << Logger::DebugList( partitions );
cDebug() << "Other implementation:" << Logger::DebugList( other_part );
QCOMPARE( partitions, other_part );
}