mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-03 20:47:37 +03:00
Implemented database file hidden attribute preservation on Windows (#10343)
* Implemented database file hidden attribute preservation on Windows Implemented database file hidden attribute preservation on Windows by modifying the save function to check the hidden attribute of the original database before saving and then reapply it post-saving if running on Windows so that users can easily store their database in a hidden file without having to re-hide it every time it's modified. Updated the TestDatabase::testSaveAs() unit test to first verify after the initial save that the database file is not hidden before hiding it then saving again and verifying that it is now hidden. Signed-off-by: Drwsburah <Drwsburah@yahoo.com> Co-authored-by: Jonathan White <support@dmapps.us>
This commit is contained in:
parent
db0b659a53
commit
812bb606c7
2 changed files with 27 additions and 0 deletions
|
@ -30,6 +30,11 @@
|
|||
#include "format/KeePass2Writer.h"
|
||||
#include "util/TemporaryFile.h"
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
#include <QFileInfo>
|
||||
#include <Windows.h>
|
||||
#endif
|
||||
|
||||
QTEST_GUILESS_MAIN(TestDatabase)
|
||||
|
||||
static QString dbFileName = QStringLiteral(KEEPASSX_TEST_DATA_DIR).append("/NewDatabase.kdbx");
|
||||
|
@ -118,6 +123,12 @@ void TestDatabase::testSaveAs()
|
|||
QVERIFY(!db->isModified());
|
||||
QCOMPARE(spyFilePathChanged.count(), 1);
|
||||
QVERIFY(QFile::exists(newDbFileName));
|
||||
#ifdef Q_OS_WIN
|
||||
QVERIFY(!QFileInfo::QFileInfo(newDbFileName).isHidden());
|
||||
SetFileAttributes(newDbFileName.toStdString().c_str(), FILE_ATTRIBUTE_HIDDEN);
|
||||
QVERIFY2(db->saveAs(newDbFileName, Database::Atomic, QString(), &error), error.toLatin1());
|
||||
QVERIFY(QFileInfo::QFileInfo(newDbFileName).isHidden());
|
||||
#endif
|
||||
QFile::remove(newDbFileName);
|
||||
QVERIFY(!QFile::exists(newDbFileName));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue