Added a test for the autocomplete_band method.

pull/61/head
Christian T. Jacobs 2017-04-24 17:23:20 +01:00
rodzic 2561f29fcc
commit a97993d7ae
1 zmienionych plików z 54 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,54 @@
#!/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
from pyqso.record_dialog import *
from pyqso.adif import BANDS
class TestRecordDialog(unittest.TestCase):
""" The unit tests for the RecordDialog class. """
def setUp(self):
PyQSO = mock.MagicMock()
Log = mock.MagicMock()
self.record_dialog = RecordDialog(application=PyQSO(), log=Log())
self.record_dialog.sources["BAND"] = Gtk.ComboBoxText()
for band in BANDS:
self.record_dialog.sources["BAND"].append_text(band)
return
def tearDown(self):
return
def test_autocomplete_band(self):
""" Given a frequency, check that the band field is automatically set to the correct value. """
self.record_dialog.sources["FREQ"].get_text.return_value = "145.525"
self.record_dialog.autocomplete_band()
band = self.record_dialog.sources["BAND"].get_active_text()
assert(band == "2m")
if(__name__ == '__main__'):
unittest.main()