pyqso/tests/test_logbook.py

59 wiersze
2.2 KiB
Python

#!/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 pyqso.logbook import *
class TestLogbook(unittest.TestCase):
""" The unit tests for the Logbook class. """
def setUp(self):
""" Set up the Logbook object and connection to the test database needed for the unit tests. """
self.logbook = Logbook(application=mock.MagicMock())
path_to_test_database = os.path.join(os.path.realpath(os.path.dirname(__file__)), os.pardir, "res/test.db")
success = self.logbook.db_connect(path_to_test_database)
assert success
# Populate test logs.
for log_name in ["test", "test2"]:
l = Log(self.logbook.connection, log_name)
l.populate()
self.logbook.logs.append(l)
def tearDown(self):
""" Disconnect from the test database. """
success = self.logbook.db_disconnect()
assert success
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 that the log count equals 2. """
assert self.logbook.log_count == 2 # A total of 2 logs in the logbook.
def test_record_count(self):
""" Check that the record count equals 5. """
assert self.logbook.record_count == 5 # A total of 5 records over all the logs in the logbook.
if(__name__ == '__main__'):
unittest.main()