Added a test for the Awards class.

pull/61/head
Christian T. Jacobs 2017-04-20 23:24:50 +01:00
rodzic 9194a71a99
commit 3809b4b852
5 zmienionych plików z 63 dodań i 5 usunięć

Wyświetl plik

@ -104,4 +104,4 @@ class Awards:
self.awards.append([self.modes[i]] + count[i])
logging.debug("Awards table updated.")
return
return count

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -0,0 +1,58 @@
#!/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 os
import unittest
try:
import unittest.mock as mock
except ImportError:
import mock
from pyqso.awards import *
from pyqso.logbook import Logbook
class TestAwards(unittest.TestCase):
""" The unit tests for the DXCluster class. """
def setUp(self):
""" Set up the objects needed for the unit tests. """
PyQSO = mock.MagicMock()
self.awards = Awards(application=PyQSO())
self.logbook = Logbook(application=PyQSO())
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)
self.logbook.logs = self.logbook.get_logs()
assert(self.logbook.logs is not None)
def tearDown(self):
""" Destroy any unit test resources. """
pass
def test_count(self):
""" Check that there are 3 FM/AM/SSB/SSTV QSOs and 1 CW QSO. Note that the BAND must be specified in order to be counted. """
count = self.awards.count(self.logbook)
assert(sum(count[0]) == 3) # FM/AM/SSB/SSTV
assert(sum(count[1]) == 1) # CW
assert(sum(count[2]) == 1) # Other modes
assert(sum(count[3]) == 5) # Mixed
if(__name__ == '__main__'):
unittest.main()

Wyświetl plik

@ -58,12 +58,12 @@ class TestLogbook(unittest.TestCase):
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. """
""" Check the log count. """
assert(self.logbook.log_count == 2)
def test_record_count(self):
""" Check that there is a total of 6 records over all the logs in the logbook. """
assert(self.logbook.record_count == 6)
""" Check the total number of records over all the logs in the logbook. """
assert(self.logbook.record_count == 7)
if(__name__ == '__main__'):
unittest.main()

Wyświetl plik

@ -24,7 +24,7 @@ try:
except ImportError:
import mock
from pyqso.summary import *
from pyqso.logbook import *
from pyqso.logbook import Logbook
class TestSummary(unittest.TestCase):