mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-23 23:10:44 -04:00
Fix assert hit when viewing entry history
* Fixes #11371 * Adds test for showing entry history * Improved page switching capabilities for entry edit widget
This commit is contained in:
parent
5d24495704
commit
2738a72b43
6 changed files with 110 additions and 23 deletions
|
@ -627,8 +627,28 @@ void TestGui::testEditEntry()
|
|||
QCOMPARE(entry->historyItems().size(), ++editCount);
|
||||
QVERIFY(!applyButton->isEnabled());
|
||||
|
||||
// Test viewing entry history
|
||||
auto historyView = editEntryWidget->findChild<QTreeView*>("historyView");
|
||||
auto showButton = editEntryWidget->findChild<QPushButton*>("showButton");
|
||||
QVERIFY(historyView);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::History);
|
||||
QApplication::processEvents();
|
||||
QVERIFY(historyView->isVisible());
|
||||
QVERIFY(!showButton->isEnabled());
|
||||
// Select the second row in the history view
|
||||
historyView->setCurrentIndex(historyView->model()->index(1, 0));
|
||||
QVERIFY(showButton->isEnabled());
|
||||
QTest::mouseClick(showButton, Qt::LeftButton);
|
||||
// Verify that the entry history widget is shown
|
||||
auto entryHistoryWidget = m_dbWidget->findChild<QWidget*>("editEntryHistoryWidget");
|
||||
QVERIFY(entryHistoryWidget);
|
||||
QVERIFY(entryHistoryWidget->isVisible());
|
||||
QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode);
|
||||
QTest::keyClick(entryHistoryWidget, Qt::Key_Escape);
|
||||
QVERIFY(historyView->isVisible());
|
||||
|
||||
// Test the "known bad" checkbox
|
||||
editEntryWidget->setCurrentPage(1);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::Advanced);
|
||||
auto excludeReportsCheckBox = editEntryWidget->findChild<QCheckBox*>("excludeReportsCheckBox");
|
||||
QVERIFY(excludeReportsCheckBox);
|
||||
QCOMPARE(excludeReportsCheckBox->isChecked(), false);
|
||||
|
@ -651,7 +671,7 @@ void TestGui::testEditEntry()
|
|||
QCOMPARE(tags->tags().last(), QString("tag 2_is!awesome"));
|
||||
|
||||
// Test entry colors (simulate choosing a color)
|
||||
editEntryWidget->setCurrentPage(1);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::Advanced);
|
||||
auto fgColor = QString("#FF0000");
|
||||
auto bgColor = QString("#0000FF");
|
||||
// Set foreground color
|
||||
|
@ -668,7 +688,7 @@ void TestGui::testEditEntry()
|
|||
QCOMPARE(entry->historyItems().size(), ++editCount);
|
||||
|
||||
// Test protected attributes
|
||||
editEntryWidget->setCurrentPage(1);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::Advanced);
|
||||
auto* attrTextEdit = editEntryWidget->findChild<QPlainTextEdit*>("attributesEdit");
|
||||
QTest::mouseClick(editEntryWidget->findChild<QAbstractButton*>("addAttributeButton"), Qt::LeftButton);
|
||||
QString attrText = "TEST TEXT";
|
||||
|
@ -678,7 +698,7 @@ void TestGui::testEditEntry()
|
|||
QVERIFY(attrTextEdit->toPlainText().contains("PROTECTED"));
|
||||
QTest::mouseClick(editEntryWidget->findChild<QAbstractButton*>("revealAttributeButton"), Qt::LeftButton);
|
||||
QCOMPARE(attrTextEdit->toPlainText(), attrText);
|
||||
editEntryWidget->setCurrentPage(0);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::Main);
|
||||
|
||||
// Save the edit (press OK)
|
||||
QTest::mouseClick(okButton, Qt::LeftButton);
|
||||
|
@ -1057,7 +1077,7 @@ void TestGui::testTotp()
|
|||
QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode);
|
||||
|
||||
auto* editEntryWidget = m_dbWidget->findChild<EditEntryWidget*>("editEntryWidget");
|
||||
editEntryWidget->setCurrentPage(1);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::Advanced);
|
||||
auto* attrTextEdit = editEntryWidget->findChild<QPlainTextEdit*>("attributesEdit");
|
||||
QTest::mouseClick(editEntryWidget->findChild<QAbstractButton*>("revealAttributeButton"), Qt::LeftButton);
|
||||
QCOMPARE(attrTextEdit->toPlainText(), expectedFinalSeed);
|
||||
|
@ -1779,7 +1799,7 @@ void TestGui::testDatabaseSettings()
|
|||
QTest::keyClicks(titleEdit, "Test autosaveDelay 1");
|
||||
|
||||
// 2.b) Save changes
|
||||
editEntryWidget->setCurrentPage(0);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::Main);
|
||||
auto* editEntryWidgetButtonBox = editEntryWidget->findChild<QDialogButtonBox*>("buttonBox");
|
||||
QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton);
|
||||
|
||||
|
@ -1793,7 +1813,7 @@ void TestGui::testDatabaseSettings()
|
|||
QTest::keyClicks(titleEdit, "Test autosaveDelay 2");
|
||||
|
||||
// 2.e) Save changes
|
||||
editEntryWidget->setCurrentPage(0);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::Main);
|
||||
editEntryWidgetButtonBox = editEntryWidget->findChild<QDialogButtonBox*>("buttonBox");
|
||||
QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton);
|
||||
|
||||
|
@ -1813,7 +1833,7 @@ void TestGui::testDatabaseSettings()
|
|||
QTest::keyClicks(titleEdit, "Test autosaveDelay 3");
|
||||
|
||||
// 4.b) Save changes
|
||||
editEntryWidget->setCurrentPage(0);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::Main);
|
||||
editEntryWidgetButtonBox = editEntryWidget->findChild<QDialogButtonBox*>("buttonBox");
|
||||
QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton);
|
||||
|
||||
|
@ -1832,7 +1852,7 @@ void TestGui::testDatabaseSettings()
|
|||
QTest::mouseClick(entryNewWidget, Qt::LeftButton);
|
||||
QCOMPARE(m_dbWidget->currentMode(), DatabaseWidget::Mode::EditEntryMode);
|
||||
QTest::keyClicks(titleEdit, "Test autosaveDelay 4");
|
||||
editEntryWidget->setCurrentPage(0);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::Main);
|
||||
editEntryWidgetButtonBox = editEntryWidget->findChild<QDialogButtonBox*>("buttonBox");
|
||||
QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton);
|
||||
Tools::wait(150); // due to modify timer
|
||||
|
@ -2124,7 +2144,7 @@ void TestGui::testAutoType()
|
|||
QTest::keyClicks(usernameComboBox, "AutocompletionUsername");
|
||||
|
||||
// 1.b) Uncheck Auto-Type checkbox
|
||||
editEntryWidget->setCurrentPage(3);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::AutoType);
|
||||
auto* enableAutoTypeButton = editEntryWidget->findChild<QCheckBox*>("enableButton");
|
||||
QVERIFY(enableAutoTypeButton);
|
||||
QVERIFY(enableAutoTypeButton->isVisible());
|
||||
|
@ -2134,7 +2154,7 @@ void TestGui::testAutoType()
|
|||
QVERIFY(!enableAutoTypeButton->isChecked());
|
||||
|
||||
// 1.c) Save changes
|
||||
editEntryWidget->setCurrentPage(0);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::Main);
|
||||
auto* editEntryWidgetButtonBox = editEntryWidget->findChild<QDialogButtonBox*>("buttonBox");
|
||||
QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton);
|
||||
|
||||
|
@ -2148,13 +2168,13 @@ void TestGui::testAutoType()
|
|||
QTest::keyClicks(usernameComboBox, "AutocompletionUsername");
|
||||
|
||||
// 2.b) Confirm AutoType is enabled and default
|
||||
editEntryWidget->setCurrentPage(3);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::AutoType);
|
||||
QVERIFY(enableAutoTypeButton->isChecked());
|
||||
auto* inheritSequenceButton = editEntryWidget->findChild<QRadioButton*>("inheritSequenceButton");
|
||||
QVERIFY(inheritSequenceButton->isChecked());
|
||||
|
||||
// 2.c) Save changes
|
||||
editEntryWidget->setCurrentPage(0);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::Main);
|
||||
QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton);
|
||||
|
||||
// 3. Create an entry with custom Auto-Type sequence
|
||||
|
@ -2167,7 +2187,7 @@ void TestGui::testAutoType()
|
|||
QTest::keyClicks(usernameComboBox, "AutocompletionUsername");
|
||||
|
||||
// 3.b) Confirm AutoType is enabled and set custom sequence
|
||||
editEntryWidget->setCurrentPage(3);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::AutoType);
|
||||
QVERIFY(enableAutoTypeButton->isChecked());
|
||||
auto* customSequenceButton = editEntryWidget->findChild<QRadioButton*>("customSequenceButton");
|
||||
QTest::mouseClick(customSequenceButton, Qt::LeftButton);
|
||||
|
@ -2180,7 +2200,7 @@ void TestGui::testAutoType()
|
|||
QTest::keyClicks(sequenceEdit, "{USERNAME}{TAB}{TAB}{PASSWORD}{ENTER}");
|
||||
|
||||
// 3.c) Save changes
|
||||
editEntryWidget->setCurrentPage(0);
|
||||
editEntryWidget->switchToPage(EditEntryWidget::Page::Main);
|
||||
QTest::mouseClick(editEntryWidgetButtonBox->button(QDialogButtonBox::Ok), Qt::LeftButton);
|
||||
QApplication::processEvents();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue