From 9f526be19833b7ffcf8bc970e07e8fcba963de31 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 20 Jun 2017 17:43:50 -0400 Subject: [PATCH] Salt: add test for salt format --- src/modules/users/CMakeLists.txt | 25 ++++++++++++- src/modules/users/PasswordTests.cpp | 54 +++++++++++++++++++++++++++++ src/modules/users/PasswordTests.h | 36 +++++++++++++++++++ 3 files changed, 114 insertions(+), 1 deletion(-) create mode 100644 src/modules/users/PasswordTests.cpp create mode 100644 src/modules/users/PasswordTests.h diff --git a/src/modules/users/CMakeLists.txt b/src/modules/users/CMakeLists.txt index b48390ee6..bd3798b8a 100644 --- a/src/modules/users/CMakeLists.txt +++ b/src/modules/users/CMakeLists.txt @@ -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" ) find_package( Crypt ) +include_directories( ${PROJECT_BINARY_DIR}/src/libcalamaresui ) + calamares_add_plugin( users TYPE viewmodule EXPORT_MACRO PLUGINDLLEXPORT_PRO @@ -21,3 +29,18 @@ calamares_add_plugin( users ${CRYPT_LIBRARIES} 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() diff --git a/src/modules/users/PasswordTests.cpp b/src/modules/users/PasswordTests.cpp new file mode 100644 index 000000000..cb52e7ef7 --- /dev/null +++ b/src/modules/users/PasswordTests.cpp @@ -0,0 +1,54 @@ +/* === This file is part of Calamares - === + * + * Copyright 2017, Adriaan de Groot + * + * 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 . + */ + +#include "SetPasswordJob.h" + +#include "PasswordTests.h" + +#include + +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; +} diff --git a/src/modules/users/PasswordTests.h b/src/modules/users/PasswordTests.h new file mode 100644 index 000000000..5b51fd11f --- /dev/null +++ b/src/modules/users/PasswordTests.h @@ -0,0 +1,36 @@ +/* === This file is part of Calamares - === + * + * Copyright 2017, Adriaan de Groot + * + * 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 . + */ + +#ifndef PASSWORDTESTS_H +#define PASSWORDTESTS_H + +#include + +class PasswordTests : public QObject +{ + Q_OBJECT +public: + PasswordTests(); + ~PasswordTests() override; + +private Q_SLOTS: + void initTestCase(); + void testSalt(); +}; + +#endif