File: test_logbook.py

package info (click to toggle)
pyqso 1.1.0-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,836 kB
  • sloc: python: 4,225; makefile: 151; sh: 18
file content (144 lines) | stat: -rw-r--r-- 6,428 bytes parent folder | download | duplicates (5)
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#!/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/>.

import unittest
try:
    import unittest.mock as mock
except ImportError:
    import mock
import os
from shutil import copyfile
from pyqso.logbook import *


class TestLogbook(unittest.TestCase):

    """ The unit tests for the Logbook class. """

    @mock.patch('pyqso.logbook.Logbook.filter_by_callsign')
    def setUp(self, mock_filter_by_callsign):
        """ Set up the Logbook object and connection to the test database needed for the unit tests. """

        self.logbook = Logbook(application=mock.MagicMock())

        # Open the test database file.
        path_to_test_database = os.path.join(os.path.realpath(os.path.dirname(__file__)), "res", "test.db")
        opened = self.logbook.open(path=path_to_test_database)
        assert(opened)
        assert(self.logbook.connection is not None)

        # Check that the logs have been retrieved.
        assert(len(self.logbook.logs) == 2)
        assert(self.logbook.logs[0].name == "test")
        assert(self.logbook.logs[1].name == "test2")

    def tearDown(self):
        """ Close the logbook and disconnect from the test database. """
        self.logbook.notebook.get_n_pages.return_value = 0
        closed = self.logbook.close()
        assert(closed)

    def test_db_disconnect(self):
        """ Check that the logbook can disconnect from the database. """
        disconnected = self.logbook.db_disconnect()
        assert(disconnected)
        # Attempt to disconnect again. This shouldn't do anything.
        disconnected = self.logbook.db_disconnect()
        assert(disconnected)

    @mock.patch('pyqso.auxiliary_dialogs.handle_gtk_dialog')
    @mock.patch('gi.repository.Gtk.FileChooserDialog')
    def test_new(self, mock_FileChooserDialog, mock_handle_gtk_dialog):
        """ Check that a new logbook can be created. """
        mock_FileChooserDialog().run.return_value = Gtk.ResponseType.OK
        mock_FileChooserDialog().get_filename.return_value = "Logbook.test_new.db"
        self.logbook.new()
        assert(os.path.isfile("Logbook.test_new.db"))

    @mock.patch('pyqso.auxiliary_dialogs.handle_gtk_dialog')
    def test_open_invalid_logbook(self, mock_handle_gtk_dialog):
        """ Open an invalid database file (comprising only one line of plain text) and check that an error occurs. """
        invalid_logbook = Logbook(application=mock.MagicMock())
        path_to_invalid_database = os.path.join(os.path.realpath(os.path.dirname(__file__)), "res", "invalid.db")
        opened = invalid_logbook.open(path=path_to_invalid_database)
        assert(not opened)
        assert(not invalid_logbook.logs)

    @mock.patch('pyqso.logbook.Logbook.render_log')
    @mock.patch('pyqso.auxiliary_dialogs.handle_gtk_dialog')
    @mock.patch('pyqso.logbook.LogNameDialog')
    def test_new_log(self, mock_LogNameDialog, mock_handle_gtk_dialog, mock_render_log):
        """ Create an empty logbook file, open it, and check that a new log can successfully be added. """
        # Create a copy of the test database just for use in this particular test, since the contents will need to be modified.
        path_to_test_database = os.path.join(os.path.realpath(os.path.dirname(__file__)), "res", "test.db")
        destination = "Logbook.test_new_log.db"
        copyfile(path_to_test_database, destination)
        opened = self.logbook.open(path=destination)
        assert(opened)
        mock_LogNameDialog().dialog.run.return_value = Gtk.ResponseType.OK
        mock_LogNameDialog().name = "my_new_log"
        self.logbook.new_log()
        assert(len(self.logbook.logs) == 3)
        assert(self.logbook.logs[-1].name == "my_new_log")

    def test_log_name_exists(self):
        """ Check that only the log called 'test' exists. """
        assert(self.logbook.log_name_exists("test"))  # Log 'test' exists.
        assert(not self.logbook.log_name_exists("hello"))  # Log 'hello' should not exist.

    def test_log_count(self):
        """ Check the log count. """
        assert(self.logbook.log_count == 2)

    def test_record_count(self):
        """ Check the total number of records over all the logs in the logbook. """
        assert(self.logbook.record_count == 7)

    def test_filter_by_callsign(self):
        """ Check that callsigns are filtered correctly. """

        # Consider only the first record of the first log.
        model = self.logbook.logs[0]
        path = Gtk.TreePath(0)
        iter = model.get_iter(path)

        self.logbook.application.toolbar.filter_source.get_text.return_value = ""
        present = self.logbook.filter_by_callsign(model, iter, data=None)
        assert(present)  # Show all the callsigns.

        self.logbook.application.toolbar.filter_source.get_text.return_value = "TEST123"
        present = self.logbook.filter_by_callsign(model, iter, data=None)
        assert(present)  # "TEST123" is present.

        self.logbook.application.toolbar.filter_source.get_text.return_value = "TEST"
        present = self.logbook.filter_by_callsign(model, iter, data=None)
        assert(present)  # "TEST" is present in "TEST123"

        self.logbook.application.toolbar.filter_source.get_text.return_value = "HELLOWORLD"
        present = self.logbook.filter_by_callsign(model, iter, data=None)
        assert(not present)  # "HELLOWORLD" is not present in "TEST123"

    def test_get_log_index(self):
        """ Check that a log's index can be resolved using the log's name. """
        assert(self.logbook.get_log_index(name="test") == 0)
        assert(self.logbook.get_log_index(name="test2") == 1)
        assert(self.logbook.get_log_index(name="helloworld") is None)

if(__name__ == '__main__'):
    unittest.main()