blob: 7c9abe2d97761eca4b625f3069485be91be42c5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# -*- coding: utf-8 -*-
import logging
import subprocess
import unittest
from .base import internet_available_only, log_info
__author__ = "Artur Barseghyan"
__copyright__ = "2013-2023 Artur Barseghyan"
__license__ = "GPL 2.0/LGPL 2.1"
__all__ = ("TestCommands",)
LOGGER = logging.getLogger(__name__)
class TestCommands(unittest.TestCase):
"""Tld commands tests."""
def setUp(self):
"""Set up."""
@internet_available_only
@log_info
def test_1_update_tld_names_command(self):
"""Test updating the tld names (re-fetch mozilla source)."""
res = subprocess.check_output(["update-tld-names"]).strip()
self.assertEqual(res, b"")
return res
@internet_available_only
@log_info
def test_1_update_tld_names_mozilla_command(self):
"""Test updating the tld names (re-fetch mozilla source)."""
res = subprocess.check_output(["update-tld-names", "mozilla"]).strip()
self.assertEqual(res, b"")
return res
|