2020-08-25 16:05:56 +02:00
|
|
|
/* === This file is part of Calamares - <https://calamares.io> ===
|
2019-06-24 12:47:14 +02:00
|
|
|
*
|
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
|
2019-06-24 12:47:14 +02:00
|
|
|
*
|
2020-08-25 16:05:56 +02:00
|
|
|
* Calamares is Free Software: see the License-Identifier above.
|
2019-06-24 12:47:14 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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 );
|
2019-06-24 12:47:14 +02:00
|
|
|
|
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.
|
|
|
|
*/
|
2019-06-24 12:47:14 +02:00
|
|
|
QStringList
|
2020-04-17 00:28:14 +02:00
|
|
|
getPartitionsForDevice_other( const QString& deviceName )
|
2019-06-24 12:47:14 +02:00
|
|
|
{
|
2019-06-24 13:10:45 +02:00
|
|
|
QProcess process;
|
|
|
|
process.setProgram( "sh" );
|
2022-02-01 16:03:49 +01:00
|
|
|
process.setArguments( { "-c",
|
|
|
|
QString( "echo $(awk '{print \"/dev/\"$4}' /proc/partitions | sed -e '/name/d' -e '/^$/d' "
|
|
|
|
"-e '/[1-9]/!d' | grep %1)" )
|
|
|
|
.arg( deviceName ) } );
|
2019-06-24 13:10:45 +02:00
|
|
|
process.start();
|
|
|
|
process.waitForFinished();
|
2019-06-24 12:47:14 +02:00
|
|
|
|
2020-04-21 13:35:01 +02:00
|
|
|
const QString partitions = process.readAllStandardOutput().trimmed();
|
|
|
|
if ( partitions.isEmpty() )
|
|
|
|
{
|
|
|
|
return QStringList();
|
|
|
|
}
|
2019-06-24 13:10:45 +02:00
|
|
|
const QStringList partitionsList = partitions.simplified().split( ' ' );
|
2019-06-24 13:07:19 +02:00
|
|
|
|
2019-06-24 13:10:45 +02:00
|
|
|
return partitionsList;
|
2019-06-24 12:47:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ClearMountsJobTests::ClearMountsJobTests()
|
|
|
|
{
|
2020-04-17 00:28:14 +02:00
|
|
|
Logger::setupLogLevel( Logger::LOGDEBUG );
|
2019-06-24 12:47:14 +02:00
|
|
|
}
|
|
|
|
|
2020-04-17 00:28:14 +02:00
|
|
|
void
|
|
|
|
ClearMountsJobTests::testFindPartitions()
|
2019-06-24 12:47:14 +02:00
|
|
|
{
|
|
|
|
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 );
|
|
|
|
}
|