65 lines
2.1 KiB
Python
65 lines
2.1 KiB
Python
"""
|
||
novelWriter – About Dialog Class Tester
|
||
=======================================
|
||
|
||
This file is a part of novelWriter
|
||
Copyright (C) 2020 Veronica Berglyd Olsen and novelWriter contributors
|
||
|
||
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 3 of the License, or
|
||
(at your option) any later version.
|
||
|
||
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 <https://www.gnu.org/licenses/>.
|
||
""" # noqa
|
||
from __future__ import annotations
|
||
|
||
from pathlib import Path
|
||
|
||
import pytest
|
||
|
||
from PyQt6.QtGui import QAction
|
||
from PyQt6.QtWidgets import QMessageBox
|
||
|
||
from novelwriter import SHARED
|
||
from novelwriter.dialogs.about import GuiAbout
|
||
|
||
|
||
@pytest.mark.gui
|
||
def testDlgAbout_NWDialog(qtbot, monkeypatch, nwGUI):
|
||
"""Test the novelWriter about dialogs."""
|
||
monkeypatch.setattr(GuiAbout, "exec", lambda *a: None)
|
||
|
||
nwGUI.showAboutNWDialog()
|
||
qtbot.waitUntil(lambda: SHARED.findTopLevelWidget(GuiAbout) is not None, timeout=1000)
|
||
msgAbout = SHARED.findTopLevelWidget(GuiAbout)
|
||
assert isinstance(msgAbout, GuiAbout)
|
||
|
||
document = msgAbout.txtCredits.document()
|
||
assert document is not None
|
||
assert document.characterCount() > 100
|
||
|
||
with monkeypatch.context() as mp:
|
||
mp.setattr("novelwriter.config.Config.assetPath", lambda *a: Path("whatever"))
|
||
msgAbout._fillCreditsPage()
|
||
assert msgAbout.txtCredits.toPlainText() == "Error loading credits text ..."
|
||
|
||
msgAbout.close()
|
||
|
||
|
||
@pytest.mark.gui
|
||
def testDlgAbout_QtDialog(monkeypatch, nwGUI):
|
||
"""Test the Qt about dialogs."""
|
||
monkeypatch.setattr(QMessageBox, "aboutQt", lambda *a, **k: None)
|
||
|
||
# Open About
|
||
# All it can do is check against a crash
|
||
nwGUI.showAboutQtDialog()
|
||
nwGUI.mainMenu.aAboutQt.activate(QAction.ActionEvent.Trigger)
|