1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import pytest
import os
"""
Test PDF export dialog in schematic editor
"""
@pytest.fixture
def dialog(project_editor):
"""
Fixture opening the PDF export dialog in the schematic editor
"""
project_editor.action('schematicEditorActionExportPdf').\
trigger(blocking=False)
dialog = project_editor.widget('schematicEditorGraphicsExportDialog')
# Do not open exported files since this would be annoying here.
project_editor.widget(
'schematicEditorGraphicsExportDialogOpenFileCheckbox').\
set_property('checked', False)
yield dialog
def test_active_widget(dialog, project_editor, helpers):
"""
Test if the dialog is the active widget after opening it
"""
helpers.wait_for_active_dialog(project_editor, dialog) # raises on timeout
def test_cancel_by_button(dialog, project_editor, helpers):
"""
Test if the cancel button closes the dialog
"""
project_editor.widget(
'schematicEditorGraphicsExportDialogButtonCancel').click()
helpers.wait_until_widget_hidden(dialog) # raises on timeout
def test_cancel_by_escape(dialog, project_editor, helpers):
"""
Test if the escape key closes the dialog
"""
dialog.shortcut('Escape')
helpers.wait_until_widget_hidden(dialog) # raises on timeout
def test_restore_defaults(dialog, project_editor, librepcb, helpers):
"""
Test if the restore defaults button resets the settings
"""
cbx = project_editor.widget(
'schematicEditorGraphicsExportDialogPageSizeComboBox')
index = cbx.properties()['currentIndex']
cbx.set_property('currentIndex', index + 1)
assert cbx.properties()['currentIndex'] == index + 1
project_editor.widget(
'schematicEditorGraphicsExportDialogButtonRestoreDefaults').click()
assert cbx.properties()['currentIndex'] == index
def test_export(dialog, project_editor, librepcb, helpers):
"""
Test if the accept button asks for a filepath and then creates the PDF file
"""
project_editor.widget(
'schematicEditorGraphicsExportDialogButtonAccept').click()
path = librepcb.abspath('test export.pdf')
project_editor.widget(
'schematicEditorGraphicsExportSaveFileDialogFileNameEdit').\
set_property('text', path)
project_editor.widget(
'schematicEditorGraphicsExportSaveFileDialogOkButton').click()
helpers.wait_until_widget_hidden(dialog) # raises on timeout
assert os.path.exists(path)
|