diff --git a/tests/test_record_dialog.py b/tests/test_record_dialog.py new file mode 100644 index 0000000..5765d4d --- /dev/null +++ b/tests/test_record_dialog.py @@ -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 . + +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()