/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos-ctl

  • Committer: teddy at recompile
  • Date: 2019-12-04 23:52:20 UTC
  • Revision ID: teddy@recompile.se-20191204235220-yn88brp0scmqwy2t
Remove non-project-specific pattern from .bzrignore

Only project-specific patterns should be in the .bzrignore file.
Other generic patterns should be in the ~/.config/breezy/ignore and
~/.bazaar/ignore files.

* .bzrignore (.tramp_history): Remove.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
 
1
#!/usr/bin/python3 -bbI
2
2
# -*- after-save-hook: (lambda () (let ((command (if (fboundp 'file-local-name) (file-local-name (buffer-file-name)) (or (file-remote-p (buffer-file-name) 'localname) (buffer-file-name))))) (if (= (progn (if (get-buffer "*Test*") (kill-buffer "*Test*")) (process-file-shell-command (format "%s --check" (shell-quote-argument command)) nil "*Test*")) 0) (let ((w (get-buffer-window "*Test*"))) (if w (delete-window w))) (progn (with-current-buffer "*Test*" (compilation-mode)) (display-buffer "*Test*" '(display-buffer-in-side-window)))))); coding: utf-8 -*-
3
3
#
4
4
# Mandos Monitor - Control and monitor the Mandos server
46
46
import tempfile
47
47
import contextlib
48
48
 
 
49
if sys.version_info.major == 2:
 
50
    __metaclass__ = type
 
51
    str = unicode
 
52
 
49
53
try:
50
54
    import pydbus
51
55
    import gi
53
57
except ImportError:
54
58
    import dbus as dbus_python
55
59
    pydbus = None
56
 
    class gi(object):
 
60
    class gi:
57
61
        """Dummy gi module, for the tests"""
58
 
        class repository(object):
59
 
            class GLib(object):
 
62
        class repository:
 
63
            class GLib:
60
64
                class Error(Exception):
61
65
                    pass
62
66
 
72
76
logging.captureWarnings(True)   # Show warnings via the logging system
73
77
 
74
78
if sys.version_info.major == 2:
75
 
    str = unicode
76
79
    import StringIO
77
80
    io.StringIO = StringIO.StringIO
78
81
 
79
82
locale.setlocale(locale.LC_ALL, "")
80
83
 
81
 
version = "1.8.4"
 
84
version = "1.8.9"
82
85
 
83
86
 
84
87
def main():
467
470
        parser.error("--remove can only be combined with --deny")
468
471
 
469
472
 
470
 
class dbus(object):
 
473
class dbus:
471
474
 
472
 
    class SystemBus(object):
 
475
    class SystemBus:
473
476
 
474
477
        object_manager_iface = "org.freedesktop.DBus.ObjectManager"
475
478
        def get_managed_objects(self, busname, objectpath):
521
524
        pass
522
525
 
523
526
 
524
 
class dbus_python_adapter(object):
 
527
class dbus_python_adapter:
525
528
 
526
529
    class SystemBus(dbus.MandosBus):
527
530
        """Use dbus-python"""
581
584
                                     self.client_interface, key,
582
585
                                     value)
583
586
 
584
 
    class SilenceLogger(object):
 
587
    class SilenceLogger:
585
588
        "Simple context manager to silence a particular logger"
586
589
        def __init__(self, loggername):
587
590
            self.logger = logging.getLogger(loggername)
616
619
                return new_object
617
620
 
618
621
 
619
 
class pydbus_adapter(object):
 
622
class pydbus_adapter:
620
623
    class SystemBus(dbus.MandosBus):
621
624
        def __init__(self, module=pydbus):
622
625
            self.pydbus = module
712
715
    return commands
713
716
 
714
717
 
715
 
class command(object):
 
718
class command:
716
719
    """A namespace for command classes"""
717
720
 
718
 
    class Base(object):
 
721
    class Base:
719
722
        """Abstract base class for commands"""
720
723
        def run(self, clients, bus=None):
721
724
            """Normal commands should implement run_on_one_client(),
784
787
                keywords = self.all_keywords
785
788
            print(self.TableOfClients(clients.values(), keywords))
786
789
 
787
 
        class TableOfClients(object):
 
790
        class TableOfClients:
788
791
            tableheaders = {
789
792
                "Name": "Name",
790
793
                "Enabled": "Enabled",
1021
1024
                                                     "output"))
1022
1025
 
1023
1026
 
1024
 
class Unique(object):
 
1027
class Unique:
1025
1028
    """Class for objects which exist only to be unique objects, since
1026
1029
unittest.mock.sentinel only exists in Python 3.3"""
1027
1030
 
1311
1314
class Test_dbus_python_adapter_SystemBus(TestCaseWithAssertLogs):
1312
1315
 
1313
1316
    def MockDBusPython_func(self, func):
1314
 
        class mock_dbus_python(object):
 
1317
        class mock_dbus_python:
1315
1318
            """mock dbus-python module"""
1316
 
            class exceptions(object):
 
1319
            class exceptions:
1317
1320
                """Pseudo-namespace"""
1318
1321
                class DBusException(Exception):
1319
1322
                    pass
1320
 
            class SystemBus(object):
 
1323
            class SystemBus:
1321
1324
                @staticmethod
1322
1325
                def get_object(busname, objectpath):
1323
1326
                    DBusObject = collections.namedtuple(
1337
1340
                                    dbus_interface=dbus_interface)
1338
1341
                    return DBusObject(methodname=method,
1339
1342
                                      Set=set_property)
1340
 
            class Boolean(object):
 
1343
            class Boolean:
1341
1344
                def __init__(self, value):
1342
1345
                    self.value = bool(value)
1343
1346
                def __bool__(self):
1555
1558
            self.call_method(bus, "methodname", "busname",
1556
1559
                             "objectpath", "interface")
1557
1560
 
1558
 
    class fake_dbus_python_raises_exception_on_connect(object):
 
1561
    class fake_dbus_python_raises_exception_on_connect:
1559
1562
        """fake dbus-python module"""
1560
 
        class exceptions(object):
 
1563
        class exceptions:
1561
1564
            """Pseudo-namespace"""
1562
1565
            class DBusException(Exception):
1563
1566
                pass
1571
1574
 
1572
1575
 
1573
1576
class Test_dbus_python_adapter_CachingBus(unittest.TestCase):
1574
 
    class mock_dbus_python(object):
 
1577
    class mock_dbus_python:
1575
1578
        """mock dbus-python modules"""
1576
 
        class SystemBus(object):
 
1579
        class SystemBus:
1577
1580
            @staticmethod
1578
1581
            def get_object(busname, objectpath):
1579
1582
                return Unique()
1625
1628
class Test_pydbus_adapter_SystemBus(TestCaseWithAssertLogs):
1626
1629
 
1627
1630
    def Stub_pydbus_func(self, func):
1628
 
        class stub_pydbus(object):
 
1631
        class stub_pydbus:
1629
1632
            """stub pydbus module"""
1630
 
            class SystemBus(object):
 
1633
            class SystemBus:
1631
1634
                @staticmethod
1632
1635
                def get(busname, objectpath):
1633
1636
                    DBusObject = collections.namedtuple(
1679
1682
            self.call_method(bus, "methodname", "busname",
1680
1683
                             "objectpath", "interface")
1681
1684
 
1682
 
    class fake_pydbus_raises_exception_on_connect(object):
 
1685
    class fake_pydbus_raises_exception_on_connect:
1683
1686
        """fake dbus-python module"""
1684
1687
        @classmethod
1685
1688
        def SystemBus(cls):
1689
1692
            return Bus(get=get)
1690
1693
 
1691
1694
    def test_set_property_uses_setattr(self):
1692
 
        class Object(object):
 
1695
        class Object:
1693
1696
            pass
1694
1697
        obj = Object()
1695
 
        class pydbus_spy(object):
1696
 
            class SystemBus(object):
 
1698
        class pydbus_spy:
 
1699
            class SystemBus:
1697
1700
                @staticmethod
1698
1701
                def get(busname, objectpath):
1699
1702
                    return {"interface": obj}
1706
1709
    def test_get_suppresses_xml_deprecation_warning(self):
1707
1710
        if sys.version_info.major >= 3:
1708
1711
            return
1709
 
        class stub_pydbus_get(object):
1710
 
            class SystemBus(object):
 
1712
        class stub_pydbus_get:
 
1713
            class SystemBus:
1711
1714
                @staticmethod
1712
1715
                def get(busname, objectpath):
1713
1716
                    warnings.warn_explicit(
1721
1724
 
1722
1725
 
1723
1726
class Test_pydbus_adapter_CachingBus(unittest.TestCase):
1724
 
    class stub_pydbus(object):
 
1727
    class stub_pydbus:
1725
1728
        """stub pydbus module"""
1726
 
        class SystemBus(object):
 
1729
        class SystemBus:
1727
1730
            @staticmethod
1728
1731
            def get(busname, objectpath):
1729
1732
                return Unique()