mirror of https://github.com/cutefishos/calamares
Salt: add test for salt format
parent
de45f43640
commit
9f526be198
@ -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;
|
||||
}
|
@ -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