You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.6 KiB
49 lines
1.6 KiB
#!/usr/bin/python3 -OO
|
|
# Copyright 2007-2021 The SABnzbd-Team <team@sabnzbd.org>
|
|
#
|
|
# This program 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 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program 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 this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
"""
|
|
tests.test_win_utils - Testing Windows utils
|
|
"""
|
|
|
|
import sys
|
|
|
|
import pytest
|
|
|
|
if not sys.platform.startswith("win"):
|
|
pytest.skip("Skipping Windows-only tests", allow_module_level=True)
|
|
|
|
import sabnzbd.utils.apireg as ar
|
|
|
|
|
|
class TestAPIReg:
|
|
def test_set_get_connection_info_user(self):
|
|
"""Test the saving of the URL in USER-registery
|
|
We can't test the SYSTEM one.
|
|
"""
|
|
|
|
test_url = "sab_test:8080"
|
|
ar.set_connection_info(test_url, True)
|
|
assert ar.get_connection_info(True) == test_url
|
|
assert not ar.get_connection_info(False)
|
|
|
|
# Remove and check if gone
|
|
ar.del_connection_info(True)
|
|
assert not ar.get_connection_info(True)
|
|
|
|
def test_get_install_lng(self):
|
|
"""Not much to test yet.."""
|
|
assert ar.get_install_lng() == "en"
|
|
|