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
|
#!/usr/bin/env python3
# Copyright (C) 2017 Christian Thomas Jacobs.
# This file is part of PyQSO.
# PyQSO 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.
#
# PyQSO 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 PyQSO. If not, see <http://www.gnu.org/licenses/>.
from gi.repository import Gtk
import unittest
try:
import unittest.mock as mock
except ImportError:
import mock
import os
from pyqso.printer import *
class TestPrinter(unittest.TestCase):
""" The unit tests for the Printer class. """
def setUp(self):
""" Set up the Printer object. """
PyQSO = mock.MagicMock()
self.printer = Printer(application=PyQSO())
self.printer.application.window = Gtk.Window()
def test_print_records(self):
""" Check that a list of records can be printed to a PDF file. """
self.printer.action = Gtk.PrintOperationAction.EXPORT
pdf = "Printer.test_print_records.pdf"
self.printer.operation.set_export_filename(pdf)
records = [{"id": 1, "CALL": "MYCALL", "QSO_DATE": "24062017", "TIME_ON": "1519", "FREQ": "145.550", "MODE": "FM", "RST_SENT": "59", "RST_RCVD": "57"}]
result = self.printer.print_records(records)
assert(result != Gtk.PrintOperationResult.ERROR)
assert(result == Gtk.PrintOperationResult.APPLY)
assert(os.path.exists(pdf))
if(__name__ == '__main__'):
unittest.main()
|