2010-11-21 17:06:30 -05:00
|
|
|
/*
|
2018-01-17 14:52:29 -05:00
|
|
|
* Copyright (C) 2018 KeePassXC Team <team@keepassxc.org>
|
2010-11-21 17:06:30 -05:00
|
|
|
*
|
|
|
|
* This program 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 2 or (at your option)
|
|
|
|
* version 3 of the License.
|
|
|
|
*
|
|
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-01-17 14:52:29 -05:00
|
|
|
#ifndef KEEPASSXC_TEST_KDBX2_H
|
|
|
|
#define KEEPASSXC_TEST_KDBX2_H
|
2010-11-21 17:06:30 -05:00
|
|
|
|
2013-10-03 09:18:16 -04:00
|
|
|
#include <QObject>
|
2010-11-21 17:06:30 -05:00
|
|
|
|
2018-01-17 19:19:47 -05:00
|
|
|
class Database;
|
|
|
|
|
2018-01-17 14:52:29 -05:00
|
|
|
class TestKdbx2 : public QObject
|
2010-11-21 17:06:30 -05:00
|
|
|
{
|
2018-03-31 16:01:30 -04:00
|
|
|
Q_OBJECT
|
2010-11-21 17:06:30 -05:00
|
|
|
|
2017-03-10 09:58:42 -05:00
|
|
|
private slots:
|
2010-11-21 17:06:30 -05:00
|
|
|
void initTestCase();
|
2012-04-21 10:45:46 -04:00
|
|
|
void testFormat200();
|
2018-01-17 19:19:47 -05:00
|
|
|
void testFormat200Upgrade();
|
|
|
|
|
|
|
|
private:
|
2018-11-22 05:47:31 -05:00
|
|
|
void verifyKdbx2Db(QSharedPointer<Database> db);
|
2010-11-21 17:06:30 -05:00
|
|
|
};
|
|
|
|
|
2018-01-17 14:52:29 -05:00
|
|
|
#endif // KEEPASSXC_TEST_KDBX2_H
|