Salt: add test for salt format
This commit is contained in:
parent
de45f43640
commit
9f526be198
@ -1,8 +1,16 @@
|
|||||||
include_directories( ${PROJECT_BINARY_DIR}/src/libcalamaresui )
|
find_package(ECM 5.10.0 NO_MODULE)
|
||||||
|
if( ECM_FOUND )
|
||||||
|
set(CMAKE_MODULE_PATH ${ECM_MODULE_PATH} ${CMAKE_MODULE_PATH})
|
||||||
|
include( ECMAddTests )
|
||||||
|
endif()
|
||||||
|
|
||||||
|
find_package( Qt5 COMPONENTS Core Test REQUIRED )
|
||||||
|
|
||||||
list( APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules" )
|
list( APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules" )
|
||||||
find_package( Crypt )
|
find_package( Crypt )
|
||||||
|
|
||||||
|
include_directories( ${PROJECT_BINARY_DIR}/src/libcalamaresui )
|
||||||
|
|
||||||
calamares_add_plugin( users
|
calamares_add_plugin( users
|
||||||
TYPE viewmodule
|
TYPE viewmodule
|
||||||
EXPORT_MACRO PLUGINDLLEXPORT_PRO
|
EXPORT_MACRO PLUGINDLLEXPORT_PRO
|
||||||
@ -21,3 +29,18 @@ calamares_add_plugin( users
|
|||||||
${CRYPT_LIBRARIES}
|
${CRYPT_LIBRARIES}
|
||||||
SHARED_LIB
|
SHARED_LIB
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if( ECM_FOUND )
|
||||||
|
ecm_add_test(
|
||||||
|
PasswordTests.cpp
|
||||||
|
SetPasswordJob.cpp
|
||||||
|
TEST_NAME
|
||||||
|
passwordtest
|
||||||
|
LINK_LIBRARIES
|
||||||
|
${CALAMARES_LIBRARIES}
|
||||||
|
Qt5::Core
|
||||||
|
Qt5::Test
|
||||||
|
${CRYPT_LIBRARIES}
|
||||||
|
)
|
||||||
|
set_target_properties( passwordtest PROPERTIES AUTOMOC TRUE )
|
||||||
|
endif()
|
||||||
|
54
src/modules/users/PasswordTests.cpp
Normal file
54
src/modules/users/PasswordTests.cpp
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
||||||
|
*
|
||||||
|
* Copyright 2017, Adriaan de Groot <groot@kde.org>
|
||||||
|
*
|
||||||
|
* Calamares is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Calamares 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "SetPasswordJob.h"
|
||||||
|
|
||||||
|
#include "PasswordTests.h"
|
||||||
|
|
||||||
|
#include <QtTest/QtTest>
|
||||||
|
|
||||||
|
QTEST_GUILESS_MAIN( PasswordTests )
|
||||||
|
|
||||||
|
PasswordTests::PasswordTests()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
PasswordTests::~PasswordTests()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
PasswordTests::initTestCase()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
PasswordTests::testSalt()
|
||||||
|
{
|
||||||
|
QString s = SetPasswordJob::make_salt( 8 );
|
||||||
|
QCOMPARE( s.length(), 4 + 8 ); // 8 salt chars, plus $6$, plus trailing $
|
||||||
|
QVERIFY( s.startsWith( "$6$" ) );
|
||||||
|
QVERIFY( s.endsWith( '$' ) );
|
||||||
|
qDebug() << "Obtained salt" << s;
|
||||||
|
|
||||||
|
s = SetPasswordJob::make_salt( 11 );
|
||||||
|
QCOMPARE( s.length(), 4 + 11 );
|
||||||
|
QVERIFY( s.startsWith( "$6$" ) );
|
||||||
|
QVERIFY( s.endsWith( '$' ) );
|
||||||
|
qDebug() << "Obtained salt" << s;
|
||||||
|
}
|
36
src/modules/users/PasswordTests.h
Normal file
36
src/modules/users/PasswordTests.h
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
/* === This file is part of Calamares - <http://github.com/calamares> ===
|
||||||
|
*
|
||||||
|
* Copyright 2017, Adriaan de Groot <groot@kde.org>
|
||||||
|
*
|
||||||
|
* Calamares is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* Calamares 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef PASSWORDTESTS_H
|
||||||
|
#define PASSWORDTESTS_H
|
||||||
|
|
||||||
|
#include <QObject>
|
||||||
|
|
||||||
|
class PasswordTests : public QObject
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
public:
|
||||||
|
PasswordTests();
|
||||||
|
~PasswordTests() override;
|
||||||
|
|
||||||
|
private Q_SLOTS:
|
||||||
|
void initTestCase();
|
||||||
|
void testSalt();
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user