269
229
            value += datetime.timedelta(0, 0, 0, int(num))
 
273
 
## Classes for commands.
 
275
 
# Abstract classes first
 
276
 
class Command(object):
 
277
 
    """Abstract class for commands"""
 
278
 
    def run(self, mandos, clients):
 
279
 
        """Normal commands should implement run_on_one_client(), but
 
280
 
        commands which want to operate on all clients at the same time
 
281
 
        can override this run() method instead."""
 
283
 
        for client, properties in clients.items():
 
284
 
            self.run_on_one_client(client, properties)
 
286
 
class PrintCmd(Command):
 
287
 
    """Abstract class for commands printing client details"""
 
288
 
    all_keywords = ("Name", "Enabled", "Timeout", "LastCheckedOK",
 
289
 
                    "Created", "Interval", "Host", "KeyID",
 
290
 
                    "Fingerprint", "CheckerRunning", "LastEnabled",
 
291
 
                    "ApprovalPending", "ApprovedByDefault",
 
292
 
                    "LastApprovalRequest", "ApprovalDelay",
 
293
 
                    "ApprovalDuration", "Checker", "ExtendedTimeout",
 
294
 
                    "Expires", "LastCheckerStatus")
 
295
 
    def run(self, mandos, clients):
 
296
 
        print(self.output(clients))
 
298
 
class PropertyCmd(Command):
 
299
 
    """Abstract class for Actions for setting one client property"""
 
300
 
    def run_on_one_client(self, client, properties):
 
301
 
        """Set the Client's D-Bus property"""
 
302
 
        client.Set(client_interface, self.property, self.value_to_set,
 
303
 
                   dbus_interface=dbus.PROPERTIES_IFACE)
 
305
 
class ValueArgumentMixIn(object):
 
306
 
    """Mixin class for commands taking a value as argument"""
 
307
 
    def __init__(self, value):
 
308
 
        self.value_to_set = value
 
310
 
class MillisecondsValueArgumentMixIn(ValueArgumentMixIn):
 
311
 
    """Mixin class for commands taking a value argument as
 
314
 
    def value_to_set(self):
 
317
 
    def value_to_set(self, value):
 
318
 
        """When setting, convert value to a datetime.timedelta"""
 
319
 
        self._vts = int(round(value.total_seconds() * 1000))
 
321
 
# Actual (non-abstract) command classes
 
323
 
class PrintTableCmd(PrintCmd):
 
324
 
    def __init__(self, verbose=False):
 
325
 
        self.verbose = verbose
 
327
 
    def output(self, clients):
 
328
 
        default_keywords = ("Name", "Enabled", "Timeout", "LastCheckedOK")
 
329
 
        keywords = default_keywords
 
331
 
            keywords = self.all_keywords
 
332
 
        return str(self.TableOfClients(clients.values(), keywords))
 
334
 
    class TableOfClients(object):
 
337
 
            "Enabled": "Enabled",
 
338
 
            "Timeout": "Timeout",
 
339
 
            "LastCheckedOK": "Last Successful Check",
 
340
 
            "LastApprovalRequest": "Last Approval Request",
 
341
 
            "Created": "Created",
 
342
 
            "Interval": "Interval",
 
344
 
            "Fingerprint": "Fingerprint",
 
346
 
            "CheckerRunning": "Check Is Running",
 
347
 
            "LastEnabled": "Last Enabled",
 
348
 
            "ApprovalPending": "Approval Is Pending",
 
349
 
            "ApprovedByDefault": "Approved By Default",
 
350
 
            "ApprovalDelay": "Approval Delay",
 
351
 
            "ApprovalDuration": "Approval Duration",
 
352
 
            "Checker": "Checker",
 
353
 
            "ExtendedTimeout": "Extended Timeout",
 
354
 
            "Expires": "Expires",
 
355
 
            "LastCheckerStatus": "Last Checker Status",
 
358
 
        def __init__(self, clients, keywords, tableheaders=None):
 
359
 
            self.clients = clients
 
360
 
            self.keywords = keywords
 
361
 
            if tableheaders is not None:
 
362
 
                self.tableheaders = tableheaders
 
365
 
            return "\n".join(self.rows())
 
367
 
        if sys.version_info.major == 2:
 
368
 
            __unicode__ = __str__
 
370
 
                return str(self).encode(locale.getpreferredencoding())
 
373
 
            format_string = self.row_formatting_string()
 
374
 
            rows = [self.header_line(format_string)]
 
375
 
            rows.extend(self.client_line(client, format_string)
 
376
 
                        for client in self.clients)
 
379
 
        def row_formatting_string(self):
 
380
 
            "Format string used to format table rows"
 
381
 
            return " ".join("{{{key}:{width}}}".format(
 
382
 
                width=max(len(self.tableheaders[key]),
 
383
 
                          *(len(self.string_from_client(client, key))
 
384
 
                            for client in self.clients)),
 
386
 
                            for key in self.keywords)
 
388
 
        def string_from_client(self, client, key):
 
389
 
            return self.valuetostring(client[key], key)
 
392
 
        def valuetostring(value, keyword):
 
393
 
            if isinstance(value, dbus.Boolean):
 
394
 
                return "Yes" if value else "No"
 
395
 
            if keyword in ("Timeout", "Interval", "ApprovalDelay",
 
396
 
                           "ApprovalDuration", "ExtendedTimeout"):
 
397
 
                return milliseconds_to_string(value)
 
400
 
        def header_line(self, format_string):
 
401
 
            return format_string.format(**self.tableheaders)
 
403
 
        def client_line(self, client, format_string):
 
404
 
            return format_string.format(
 
405
 
                **{key: self.string_from_client(client, key)
 
406
 
                   for key in self.keywords})
 
410
 
class DumpJSONCmd(PrintCmd):
 
411
 
    def output(self, clients):
 
412
 
        data = {client["Name"]:
 
413
 
                {key: self.dbus_boolean_to_bool(client[key])
 
414
 
                 for key in self.all_keywords}
 
415
 
                for client in clients.values()}
 
416
 
        return json.dumps(data, indent=4, separators=(',', ': '))
 
418
 
    def dbus_boolean_to_bool(value):
 
419
 
        if isinstance(value, dbus.Boolean):
 
423
 
class IsEnabledCmd(Command):
 
424
 
    def run_on_one_client(self, client, properties):
 
425
 
        if self.is_enabled(client, properties):
 
428
 
    def is_enabled(self, client, properties):
 
429
 
        return bool(properties["Enabled"])
 
431
 
class RemoveCmd(Command):
 
432
 
    def run_on_one_client(self, client, properties):
 
433
 
        self.mandos.RemoveClient(client.__dbus_object_path__)
 
435
 
class ApproveCmd(Command):
 
436
 
    def run_on_one_client(self, client, properties):
 
437
 
        client.Approve(dbus.Boolean(True),
 
438
 
                       dbus_interface=client_interface)
 
440
 
class DenyCmd(Command):
 
441
 
    def run_on_one_client(self, client, properties):
 
442
 
        client.Approve(dbus.Boolean(False),
 
443
 
                       dbus_interface=client_interface)
 
445
 
class EnableCmd(PropertyCmd):
 
447
 
    value_to_set = dbus.Boolean(True)
 
449
 
class DisableCmd(PropertyCmd):
 
451
 
    value_to_set = dbus.Boolean(False)
 
453
 
class BumpTimeoutCmd(PropertyCmd):
 
454
 
    property = "LastCheckedOK"
 
457
 
class StartCheckerCmd(PropertyCmd):
 
458
 
    property = "CheckerRunning"
 
459
 
    value_to_set = dbus.Boolean(True)
 
461
 
class StopCheckerCmd(PropertyCmd):
 
462
 
    property = "CheckerRunning"
 
463
 
    value_to_set = dbus.Boolean(False)
 
465
 
class ApproveByDefaultCmd(PropertyCmd):
 
466
 
    property = "ApprovedByDefault"
 
467
 
    value_to_set = dbus.Boolean(True)
 
469
 
class DenyByDefaultCmd(PropertyCmd):
 
470
 
    property = "ApprovedByDefault"
 
471
 
    value_to_set = dbus.Boolean(False)
 
473
 
class SetCheckerCmd(PropertyCmd, ValueArgumentMixIn):
 
476
 
class SetHostCmd(PropertyCmd, ValueArgumentMixIn):
 
479
 
class SetSecretCmd(PropertyCmd, ValueArgumentMixIn):
 
481
 
    def value_to_set(self):
 
484
 
    def value_to_set(self, value):
 
485
 
        """When setting, read data from supplied file object"""
 
486
 
        self._vts = value.read()
 
490
 
class SetTimeoutCmd(PropertyCmd, MillisecondsValueArgumentMixIn):
 
493
 
class SetExtendedTimeoutCmd(PropertyCmd,
 
494
 
                            MillisecondsValueArgumentMixIn):
 
495
 
    property = "ExtendedTimeout"
 
497
 
class SetIntervalCmd(PropertyCmd, MillisecondsValueArgumentMixIn):
 
498
 
    property = "Interval"
 
500
 
class SetApprovalDelayCmd(PropertyCmd,
 
501
 
                          MillisecondsValueArgumentMixIn):
 
502
 
    property = "ApprovalDelay"
 
504
 
class SetApprovalDurationCmd(PropertyCmd,
 
505
 
                             MillisecondsValueArgumentMixIn):
 
506
 
    property = "ApprovalDuration"
 
508
 
def add_command_line_options(parser):
 
 
232
def print_clients(clients, keywords):
 
 
233
    def valuetostring(value, keyword):
 
 
234
        if type(value) is dbus.Boolean:
 
 
235
            return "Yes" if value else "No"
 
 
236
        if keyword in ("Timeout", "Interval", "ApprovalDelay",
 
 
237
                       "ApprovalDuration", "ExtendedTimeout"):
 
 
238
            return milliseconds_to_string(value)
 
 
241
    # Create format string to print table rows
 
 
242
    format_string = " ".join("{{{key}:{width}}}".format(
 
 
243
            width = max(len(tablewords[key]),
 
 
244
                        max(len(valuetostring(client[key],
 
 
248
            key = key) for key in keywords)
 
 
250
    print(format_string.format(**tablewords))
 
 
251
    for client in clients:
 
 
252
        print(format_string.format(**dict((key,
 
 
253
                                           valuetostring(client[key],
 
 
255
                                          for key in keywords)))
 
 
257
def has_actions(options):
 
 
258
    return any((options.enable,
 
 
260
                options.bump_timeout,
 
 
261
                options.start_checker,
 
 
262
                options.stop_checker,
 
 
265
                options.checker is not None,
 
 
266
                options.timeout is not None,
 
 
267
                options.extended_timeout is not None,
 
 
268
                options.interval is not None,
 
 
269
                options.approved_by_default is not None,
 
 
270
                options.approval_delay is not None,
 
 
271
                options.approval_duration is not None,
 
 
272
                options.host is not None,
 
 
273
                options.secret is not None,
 
 
278
    parser = argparse.ArgumentParser()
 
509
279
    parser.add_argument("--version", action="version",
 
510
 
                        version="%(prog)s {}".format(version),
 
 
280
                        version = "%(prog)s {0}".format(version),
 
511
281
                        help="show version number and exit")
 
512
282
    parser.add_argument("-a", "--all", action="store_true",
 
513
283
                        help="Select all clients")
 
514
284
    parser.add_argument("-v", "--verbose", action="store_true",
 
515
285
                        help="Print all fields")
 
516
 
    parser.add_argument("-j", "--dump-json", action="store_true",
 
517
 
                        help="Dump client data in JSON format")
 
518
 
    enable_disable = parser.add_mutually_exclusive_group()
 
519
 
    enable_disable.add_argument("-e", "--enable", action="store_true",
 
520
 
                                help="Enable client")
 
521
 
    enable_disable.add_argument("-d", "--disable",
 
523
 
                                help="disable client")
 
 
286
    parser.add_argument("-e", "--enable", action="store_true",
 
 
287
                        help="Enable client")
 
 
288
    parser.add_argument("-d", "--disable", action="store_true",
 
 
289
                        help="disable client")
 
524
290
    parser.add_argument("-b", "--bump-timeout", action="store_true",
 
525
291
                        help="Bump timeout for client")
 
526
 
    start_stop_checker = parser.add_mutually_exclusive_group()
 
527
 
    start_stop_checker.add_argument("--start-checker",
 
529
 
                                    help="Start checker for client")
 
530
 
    start_stop_checker.add_argument("--stop-checker",
 
532
 
                                    help="Stop checker for client")
 
 
292
    parser.add_argument("--start-checker", action="store_true",
 
 
293
                        help="Start checker for client")
 
 
294
    parser.add_argument("--stop-checker", action="store_true",
 
 
295
                        help="Stop checker for client")
 
533
296
    parser.add_argument("-V", "--is-enabled", action="store_true",
 
534
297
                        help="Check if client is enabled")
 
535
298
    parser.add_argument("-r", "--remove", action="store_true",
 
536
299
                        help="Remove client")
 
537
300
    parser.add_argument("-c", "--checker",
 
538
301
                        help="Set checker command for client")
 
539
 
    parser.add_argument("-t", "--timeout", type=string_to_delta,
 
 
302
    parser.add_argument("-t", "--timeout",
 
540
303
                        help="Set timeout for client")
 
541
 
    parser.add_argument("--extended-timeout", type=string_to_delta,
 
 
304
    parser.add_argument("--extended-timeout",
 
542
305
                        help="Set extended timeout for client")
 
543
 
    parser.add_argument("-i", "--interval", type=string_to_delta,
 
 
306
    parser.add_argument("-i", "--interval",
 
544
307
                        help="Set checker interval for client")
 
545
 
    approve_deny_default = parser.add_mutually_exclusive_group()
 
546
 
    approve_deny_default.add_argument(
 
547
 
        "--approve-by-default", action="store_true",
 
548
 
        default=None, dest="approved_by_default",
 
549
 
        help="Set client to be approved by default")
 
550
 
    approve_deny_default.add_argument(
 
551
 
        "--deny-by-default", action="store_false",
 
552
 
        dest="approved_by_default",
 
553
 
        help="Set client to be denied by default")
 
554
 
    parser.add_argument("--approval-delay", type=string_to_delta,
 
 
308
    parser.add_argument("--approve-by-default", action="store_true",
 
 
309
                        default=None, dest="approved_by_default",
 
 
310
                        help="Set client to be approved by default")
 
 
311
    parser.add_argument("--deny-by-default", action="store_false",
 
 
312
                        dest="approved_by_default",
 
 
313
                        help="Set client to be denied by default")
 
 
314
    parser.add_argument("--approval-delay",
 
555
315
                        help="Set delay before client approve/deny")
 
556
 
    parser.add_argument("--approval-duration", type=string_to_delta,
 
 
316
    parser.add_argument("--approval-duration",
 
557
317
                        help="Set duration of one client approval")
 
558
318
    parser.add_argument("-H", "--host", help="Set host for client")
 
559
319
    parser.add_argument("-s", "--secret",
 
560
320
                        type=argparse.FileType(mode="rb"),
 
561
321
                        help="Set password blob (file) for client")
 
562
 
    approve_deny = parser.add_mutually_exclusive_group()
 
563
 
    approve_deny.add_argument(
 
564
 
        "-A", "--approve", action="store_true",
 
565
 
        help="Approve any current client request")
 
566
 
    approve_deny.add_argument("-D", "--deny", action="store_true",
 
567
 
                              help="Deny any current client request")
 
 
322
    parser.add_argument("-A", "--approve", action="store_true",
 
 
323
                        help="Approve any current client request")
 
 
324
    parser.add_argument("-D", "--deny", action="store_true",
 
 
325
                        help="Deny any current client request")
 
568
326
    parser.add_argument("--check", action="store_true",
 
569
327
                        help="Run self-test")
 
570
328
    parser.add_argument("client", nargs="*", help="Client name")
 
573
 
def commands_from_options(options):
 
577
 
    if options.dump_json:
 
578
 
        commands.append(DumpJSONCmd())
 
581
 
        commands.append(EnableCmd())
 
584
 
        commands.append(DisableCmd())
 
586
 
    if options.bump_timeout:
 
587
 
        commands.append(BumpTimeoutCmd())
 
589
 
    if options.start_checker:
 
590
 
        commands.append(StartCheckerCmd())
 
592
 
    if options.stop_checker:
 
593
 
        commands.append(StopCheckerCmd())
 
595
 
    if options.is_enabled:
 
596
 
        commands.append(IsEnabledCmd())
 
599
 
        commands.append(RemoveCmd())
 
601
 
    if options.checker is not None:
 
602
 
        commands.append(SetCheckerCmd(options.checker))
 
604
 
    if options.timeout is not None:
 
605
 
        commands.append(SetTimeoutCmd(options.timeout))
 
607
 
    if options.extended_timeout:
 
609
 
            SetExtendedTimeoutCmd(options.extended_timeout))
 
611
 
    if options.interval is not None:
 
612
 
        commands.append(SetIntervalCmd(options.interval))
 
614
 
    if options.approved_by_default is not None:
 
615
 
        if options.approved_by_default:
 
616
 
            commands.append(ApproveByDefaultCmd())
 
618
 
            commands.append(DenyByDefaultCmd())
 
620
 
    if options.approval_delay is not None:
 
621
 
        commands.append(SetApprovalDelayCmd(options.approval_delay))
 
623
 
    if options.approval_duration is not None:
 
625
 
            SetApprovalDurationCmd(options.approval_duration))
 
627
 
    if options.host is not None:
 
628
 
        commands.append(SetHostCmd(options.host))
 
630
 
    if options.secret is not None:
 
631
 
        commands.append(SetSecretCmd(options.secret))
 
634
 
        commands.append(ApproveCmd())
 
637
 
        commands.append(DenyCmd())
 
639
 
    # If no command option has been given, show table of clients,
 
640
 
    # optionally verbosely
 
642
 
        commands.append(PrintTableCmd(verbose=options.verbose))
 
648
 
    parser = argparse.ArgumentParser()
 
650
 
    add_command_line_options(parser)
 
652
329
    options = parser.parse_args()
 
654
 
    def has_actions(options):
 
655
 
        return any((options.enable,
 
657
 
                    options.bump_timeout,
 
658
 
                    options.start_checker,
 
659
 
                    options.stop_checker,
 
662
 
                    options.checker is not None,
 
663
 
                    options.timeout is not None,
 
664
 
                    options.extended_timeout is not None,
 
665
 
                    options.interval is not None,
 
666
 
                    options.approved_by_default is not None,
 
667
 
                    options.approval_delay is not None,
 
668
 
                    options.approval_duration is not None,
 
669
 
                    options.host is not None,
 
670
 
                    options.secret is not None,
 
674
331
    if has_actions(options) and not (options.client or options.all):
 
675
332
        parser.error("Options require clients names or --all.")
 
676
333
    if options.verbose and has_actions(options):
 
677
 
        parser.error("--verbose can only be used alone.")
 
678
 
    if options.dump_json and (options.verbose
 
679
 
                              or has_actions(options)):
 
680
 
        parser.error("--dump-json can only be used alone.")
 
 
334
        parser.error("--verbose can only be used alone or with"
 
681
336
    if options.all and not has_actions(options):
 
682
337
        parser.error("--all requires an action.")
 
683
 
    if options.is_enabled and len(options.client) > 1:
 
684
 
        parser.error("--is-enabled requires exactly one client")
 
686
 
    clientnames = options.client
 
 
340
        fail_count, test_count = doctest.testmod()
 
 
341
        sys.exit(os.EX_OK if fail_count == 0 else 1)
 
689
344
        bus = dbus.SystemBus()
 
690
345
        mandos_dbus_objc = bus.get_object(busname, server_path)
 
691
346
    except dbus.exceptions.DBusException:
 
692
 
        log.critical("Could not connect to Mandos server")
 
 
347
        print("Could not connect to Mandos server",
 
695
351
    mandos_serv = dbus.Interface(mandos_dbus_objc,
 
696
 
                                 dbus_interface=server_interface)
 
697
 
    mandos_serv_object_manager = dbus.Interface(
 
698
 
        mandos_dbus_objc, dbus_interface=dbus.OBJECT_MANAGER_IFACE)
 
700
 
    # Filter out log message from dbus module
 
701
 
    dbus_logger = logging.getLogger("dbus.proxies")
 
702
 
    class NullFilter(logging.Filter):
 
703
 
        def filter(self, record):
 
705
 
    dbus_filter = NullFilter()
 
 
352
                                 dbus_interface = server_interface)
 
 
354
    #block stderr since dbus library prints to stderr
 
 
355
    null = os.open(os.path.devnull, os.O_RDWR)
 
 
356
    stderrcopy = os.dup(sys.stderr.fileno())
 
 
357
    os.dup2(null, sys.stderr.fileno())
 
707
 
        dbus_logger.addFilter(dbus_filter)
 
708
 
        mandos_clients = {path: ifs_and_props[client_interface]
 
709
 
                          for path, ifs_and_props in
 
710
 
                          mandos_serv_object_manager
 
711
 
                          .GetManagedObjects().items()
 
712
 
                          if client_interface in ifs_and_props}
 
713
 
    except dbus.exceptions.DBusException as e:
 
714
 
        log.critical("Failed to access Mandos server through D-Bus:"
 
 
361
            mandos_clients = mandos_serv.GetAllClientsWithProperties()
 
 
364
            os.dup2(stderrcopy, sys.stderr.fileno())
 
 
366
    except dbus.exceptions.DBusException:
 
 
367
        print("Access denied: Accessing mandos server through dbus.",
 
718
 
        # restore dbus logger
 
719
 
        dbus_logger.removeFilter(dbus_filter)
 
721
371
    # Compile dict of (clients: properties) to process
 
725
 
        clients = {bus.get_object(busname, path): properties
 
726
 
                   for path, properties in mandos_clients.items()}
 
 
374
    if options.all or not options.client:
 
 
375
        clients = dict((bus.get_object(busname, path), properties)
 
 
376
                       for path, properties in
 
 
377
                       mandos_clients.items())
 
728
 
        for name in clientnames:
 
729
 
            for path, client in mandos_clients.items():
 
 
379
        for name in options.client:
 
 
380
            for path, client in mandos_clients.iteritems():
 
730
381
                if client["Name"] == name:
 
731
382
                    client_objc = bus.get_object(busname, path)
 
732
383
                    clients[client_objc] = client
 
735
 
                log.critical("Client not found on server: %r", name)
 
 
386
                print("Client not found on server: {0!r}"
 
 
387
                      .format(name), file=sys.stderr)
 
738
 
    # Run all commands on clients
 
739
 
    commands = commands_from_options(options)
 
740
 
    for command in commands:
 
741
 
        command.run(mandos_serv, clients)
 
744
 
class Test_milliseconds_to_string(unittest.TestCase):
 
746
 
        self.assertEqual(milliseconds_to_string(93785000),
 
748
 
    def test_no_days(self):
 
749
 
        self.assertEqual(milliseconds_to_string(7385000), "02:03:05")
 
750
 
    def test_all_zero(self):
 
751
 
        self.assertEqual(milliseconds_to_string(0), "00:00:00")
 
752
 
    def test_no_fractional_seconds(self):
 
753
 
        self.assertEqual(milliseconds_to_string(400), "00:00:00")
 
754
 
        self.assertEqual(milliseconds_to_string(900), "00:00:00")
 
755
 
        self.assertEqual(milliseconds_to_string(1900), "00:00:01")
 
757
 
class Test_string_to_delta(unittest.TestCase):
 
758
 
    def test_handles_basic_rfc3339(self):
 
759
 
        self.assertEqual(string_to_delta("PT0S"),
 
760
 
                         datetime.timedelta())
 
761
 
        self.assertEqual(string_to_delta("P0D"),
 
762
 
                         datetime.timedelta())
 
763
 
        self.assertEqual(string_to_delta("PT1S"),
 
764
 
                         datetime.timedelta(0, 1))
 
765
 
        self.assertEqual(string_to_delta("PT2H"),
 
766
 
                         datetime.timedelta(0, 7200))
 
767
 
    def test_falls_back_to_pre_1_6_1_with_warning(self):
 
768
 
        # assertLogs only exists in Python 3.4
 
769
 
        if hasattr(self, "assertLogs"):
 
770
 
            with self.assertLogs(log, logging.WARNING):
 
771
 
                value = string_to_delta("2h")
 
773
 
            class WarningFilter(logging.Filter):
 
774
 
                """Don't show, but record the presence of, warnings"""
 
775
 
                def filter(self, record):
 
776
 
                    is_warning = record.levelno >= logging.WARNING
 
777
 
                    self.found = is_warning or getattr(self, "found",
 
779
 
                    return not is_warning
 
780
 
            warning_filter = WarningFilter()
 
781
 
            log.addFilter(warning_filter)
 
783
 
                value = string_to_delta("2h")
 
785
 
                log.removeFilter(warning_filter)
 
786
 
            self.assertTrue(getattr(warning_filter, "found", False))
 
787
 
        self.assertEqual(value, datetime.timedelta(0, 7200))
 
790
 
class TestCmd(unittest.TestCase):
 
791
 
    """Abstract class for tests of command classes"""
 
794
 
        class MockClient(object):
 
795
 
            def __init__(self, name, **attributes):
 
796
 
                self.__dbus_object_path__ = "objpath_{}".format(name)
 
797
 
                self.attributes = attributes
 
798
 
                self.attributes["Name"] = name
 
800
 
            def Set(self, interface, property, value, dbus_interface):
 
801
 
                testcase.assertEqual(interface, client_interface)
 
802
 
                testcase.assertEqual(dbus_interface,
 
803
 
                                     dbus.PROPERTIES_IFACE)
 
804
 
                self.attributes[property] = value
 
805
 
            def Get(self, interface, property, dbus_interface):
 
806
 
                testcase.assertEqual(interface, client_interface)
 
807
 
                testcase.assertEqual(dbus_interface,
 
808
 
                                     dbus.PROPERTIES_IFACE)
 
809
 
                return self.attributes[property]
 
810
 
            def Approve(self, approve, dbus_interface):
 
811
 
                testcase.assertEqual(dbus_interface, client_interface)
 
812
 
                self.calls.append(("Approve", (approve,
 
814
 
        self.client = MockClient(
 
816
 
            KeyID=("92ed150794387c03ce684574b1139a65"
 
817
 
                   "94a34f895daaaf09fd8ea90a27cddb12"),
 
819
 
            Host="foo.example.org",
 
820
 
            Enabled=dbus.Boolean(True),
 
822
 
            LastCheckedOK="2019-02-03T00:00:00",
 
823
 
            Created="2019-01-02T00:00:00",
 
825
 
            Fingerprint=("778827225BA7DE539C5A"
 
826
 
                         "7CFA59CFF7CDBD9A5920"),
 
827
 
            CheckerRunning=dbus.Boolean(False),
 
828
 
            LastEnabled="2019-01-03T00:00:00",
 
829
 
            ApprovalPending=dbus.Boolean(False),
 
830
 
            ApprovedByDefault=dbus.Boolean(True),
 
831
 
            LastApprovalRequest="",
 
833
 
            ApprovalDuration=1000,
 
834
 
            Checker="fping -q -- %(host)s",
 
835
 
            ExtendedTimeout=900000,
 
836
 
            Expires="2019-02-04T00:00:00",
 
838
 
        self.other_client = MockClient(
 
840
 
            KeyID=("0558568eedd67d622f5c83b35a115f79"
 
841
 
                   "6ab612cff5ad227247e46c2b020f441c"),
 
844
 
            Enabled=dbus.Boolean(True),
 
846
 
            LastCheckedOK="2019-02-04T00:00:00",
 
847
 
            Created="2019-01-03T00:00:00",
 
849
 
            Fingerprint=("3E393AEAEFB84C7E89E2"
 
850
 
                         "F547B3A107558FCA3A27"),
 
851
 
            CheckerRunning=dbus.Boolean(True),
 
852
 
            LastEnabled="2019-01-04T00:00:00",
 
853
 
            ApprovalPending=dbus.Boolean(False),
 
854
 
            ApprovedByDefault=dbus.Boolean(False),
 
855
 
            LastApprovalRequest="2019-01-03T00:00:00",
 
857
 
            ApprovalDuration=1000,
 
859
 
            ExtendedTimeout=900000,
 
860
 
            Expires="2019-02-05T00:00:00",
 
861
 
            LastCheckerStatus=-2)
 
862
 
        self.clients =  collections.OrderedDict(
 
864
 
                (self.client, self.client.attributes),
 
865
 
                (self.other_client, self.other_client.attributes),
 
867
 
        self.one_client = {self.client: self.client.attributes}
 
869
 
class TestPrintTableCmd(TestCmd):
 
870
 
    def test_normal(self):
 
871
 
        output = PrintTableCmd().output(self.clients)
 
872
 
        expected_output = """
 
873
 
Name   Enabled Timeout  Last Successful Check
 
874
 
foo    Yes     00:05:00 2019-02-03T00:00:00  
 
875
 
barbar Yes     00:05:00 2019-02-04T00:00:00  
 
877
 
        self.assertEqual(output, expected_output)
 
878
 
    def test_verbose(self):
 
879
 
        output = PrintTableCmd(verbose=True).output(self.clients)
 
880
 
        expected_output = """
 
881
 
Name   Enabled Timeout  Last Successful Check Created             Interval Host            Key ID                                                           Fingerprint                              Check Is Running Last Enabled        Approval Is Pending Approved By Default Last Approval Request Approval Delay Approval Duration Checker              Extended Timeout Expires             Last Checker Status
 
882
 
foo    Yes     00:05:00 2019-02-03T00:00:00   2019-01-02T00:00:00 00:02:00 foo.example.org 92ed150794387c03ce684574b1139a6594a34f895daaaf09fd8ea90a27cddb12 778827225BA7DE539C5A7CFA59CFF7CDBD9A5920 No               2019-01-03T00:00:00 No                  Yes                                       00:00:00       00:00:01          fping -q -- %(host)s 00:15:00         2019-02-04T00:00:00 0                  
 
883
 
barbar Yes     00:05:00 2019-02-04T00:00:00   2019-01-03T00:00:00 00:02:00 192.0.2.3       0558568eedd67d622f5c83b35a115f796ab612cff5ad227247e46c2b020f441c 3E393AEAEFB84C7E89E2F547B3A107558FCA3A27 Yes              2019-01-04T00:00:00 No                  No                  2019-01-03T00:00:00   00:00:30       00:00:01          :                    00:15:00         2019-02-05T00:00:00 -2                 
 
885
 
        self.assertEqual(output, expected_output)
 
886
 
    def test_one_client(self):
 
887
 
        output = PrintTableCmd().output(self.one_client)
 
888
 
        expected_output = """
 
889
 
Name Enabled Timeout  Last Successful Check
 
890
 
foo  Yes     00:05:00 2019-02-03T00:00:00  
 
892
 
        self.assertEqual(output, expected_output)
 
894
 
class TestDumpJSONCmd(TestCmd):
 
896
 
        self.expected_json = {
 
899
 
                "KeyID": ("92ed150794387c03ce684574b1139a65"
 
900
 
                          "94a34f895daaaf09fd8ea90a27cddb12"),
 
901
 
                "Host": "foo.example.org",
 
904
 
                "LastCheckedOK": "2019-02-03T00:00:00",
 
905
 
                "Created": "2019-01-02T00:00:00",
 
907
 
                "Fingerprint": ("778827225BA7DE539C5A"
 
908
 
                                "7CFA59CFF7CDBD9A5920"),
 
909
 
                "CheckerRunning": False,
 
910
 
                "LastEnabled": "2019-01-03T00:00:00",
 
911
 
                "ApprovalPending": False,
 
912
 
                "ApprovedByDefault": True,
 
913
 
                "LastApprovalRequest": "",
 
915
 
                "ApprovalDuration": 1000,
 
916
 
                "Checker": "fping -q -- %(host)s",
 
917
 
                "ExtendedTimeout": 900000,
 
918
 
                "Expires": "2019-02-04T00:00:00",
 
919
 
                "LastCheckerStatus": 0,
 
923
 
                "KeyID": ("0558568eedd67d622f5c83b35a115f79"
 
924
 
                          "6ab612cff5ad227247e46c2b020f441c"),
 
928
 
                "LastCheckedOK": "2019-02-04T00:00:00",
 
929
 
                "Created": "2019-01-03T00:00:00",
 
931
 
                "Fingerprint": ("3E393AEAEFB84C7E89E2"
 
932
 
                                "F547B3A107558FCA3A27"),
 
933
 
                "CheckerRunning": True,
 
934
 
                "LastEnabled": "2019-01-04T00:00:00",
 
935
 
                "ApprovalPending": False,
 
936
 
                "ApprovedByDefault": False,
 
937
 
                "LastApprovalRequest": "2019-01-03T00:00:00",
 
938
 
                "ApprovalDelay": 30000,
 
939
 
                "ApprovalDuration": 1000,
 
941
 
                "ExtendedTimeout": 900000,
 
942
 
                "Expires": "2019-02-05T00:00:00",
 
943
 
                "LastCheckerStatus": -2,
 
946
 
        return super(TestDumpJSONCmd, self).setUp()
 
947
 
    def test_normal(self):
 
948
 
        json_data = json.loads(DumpJSONCmd().output(self.clients))
 
949
 
        self.assertDictEqual(json_data, self.expected_json)
 
950
 
    def test_one_client(self):
 
951
 
        clients = self.one_client
 
952
 
        json_data = json.loads(DumpJSONCmd().output(clients))
 
953
 
        expected_json = {"foo": self.expected_json["foo"]}
 
954
 
        self.assertDictEqual(json_data, expected_json)
 
956
 
class TestIsEnabledCmd(TestCmd):
 
957
 
    def test_is_enabled(self):
 
958
 
        self.assertTrue(all(IsEnabledCmd().is_enabled(client, properties)
 
959
 
                            for client, properties in self.clients.items()))
 
960
 
    def test_is_enabled_run_exits_successfully(self):
 
961
 
        with self.assertRaises(SystemExit) as e:
 
962
 
            IsEnabledCmd().run(None, self.one_client)
 
963
 
        if e.exception.code is not None:
 
964
 
            self.assertEqual(e.exception.code, 0)
 
966
 
            self.assertIsNone(e.exception.code)
 
967
 
    def test_is_enabled_run_exits_with_failure(self):
 
968
 
        self.client.attributes["Enabled"] = dbus.Boolean(False)
 
969
 
        with self.assertRaises(SystemExit) as e:
 
970
 
            IsEnabledCmd().run(None, self.one_client)
 
971
 
        if isinstance(e.exception.code, int):
 
972
 
            self.assertNotEqual(e.exception.code, 0)
 
974
 
            self.assertIsNotNone(e.exception.code)
 
976
 
class TestRemoveCmd(TestCmd):
 
977
 
    def test_remove(self):
 
978
 
        class MockMandos(object):
 
981
 
            def RemoveClient(self, dbus_path):
 
982
 
                self.calls.append(("RemoveClient", (dbus_path,)))
 
983
 
        mandos = MockMandos()
 
984
 
        super(TestRemoveCmd, self).setUp()
 
985
 
        RemoveCmd().run(mandos, self.clients)
 
986
 
        self.assertEqual(len(mandos.calls), 2)
 
987
 
        for client in self.clients:
 
988
 
            self.assertIn(("RemoveClient",
 
989
 
                           (client.__dbus_object_path__,)),
 
992
 
class TestApproveCmd(TestCmd):
 
993
 
    def test_approve(self):
 
994
 
        ApproveCmd().run(None, self.clients)
 
995
 
        for client in self.clients:
 
996
 
            self.assertIn(("Approve", (True, client_interface)),
 
999
 
class TestDenyCmd(TestCmd):
 
1000
 
    def test_deny(self):
 
1001
 
        DenyCmd().run(None, self.clients)
 
1002
 
        for client in self.clients:
 
1003
 
            self.assertIn(("Approve", (False, client_interface)),
 
1006
 
class TestEnableCmd(TestCmd):
 
1007
 
    def test_enable(self):
 
1008
 
        for client in self.clients:
 
1009
 
            client.attributes["Enabled"] = False
 
1011
 
        EnableCmd().run(None, self.clients)
 
1013
 
        for client in self.clients:
 
1014
 
            self.assertTrue(client.attributes["Enabled"])
 
1016
 
class TestDisableCmd(TestCmd):
 
1017
 
    def test_disable(self):
 
1018
 
        DisableCmd().run(None, self.clients)
 
1020
 
        for client in self.clients:
 
1021
 
            self.assertFalse(client.attributes["Enabled"])
 
1023
 
class Unique(object):
 
1024
 
    """Class for objects which exist only to be unique objects, since
 
1025
 
unittest.mock.sentinel only exists in Python 3.3"""
 
1027
 
class TestPropertyCmd(TestCmd):
 
1028
 
    """Abstract class for tests of PropertyCmd classes"""
 
1030
 
        if not hasattr(self, "command"):
 
1032
 
        values_to_get = getattr(self, "values_to_get",
 
1034
 
        for value_to_set, value_to_get in zip(self.values_to_set,
 
1036
 
            for client in self.clients:
 
1037
 
                old_value = client.attributes[self.property]
 
1038
 
                self.assertNotIsInstance(old_value, Unique)
 
1039
 
                client.attributes[self.property] = Unique()
 
1040
 
            self.run_command(value_to_set, self.clients)
 
1041
 
            for client in self.clients:
 
1042
 
                value = client.attributes[self.property]
 
1043
 
                self.assertNotIsInstance(value, Unique)
 
1044
 
                self.assertEqual(value, value_to_get)
 
1045
 
    def run_command(self, value, clients):
 
1046
 
        self.command().run(None, clients)
 
1048
 
class TestBumpTimeoutCmd(TestPropertyCmd):
 
1049
 
    command = BumpTimeoutCmd
 
1050
 
    property = "LastCheckedOK"
 
1051
 
    values_to_set = [""]
 
1053
 
class TestStartCheckerCmd(TestPropertyCmd):
 
1054
 
    command = StartCheckerCmd
 
1055
 
    property = "CheckerRunning"
 
1056
 
    values_to_set = [dbus.Boolean(True)]
 
1058
 
class TestStopCheckerCmd(TestPropertyCmd):
 
1059
 
    command = StopCheckerCmd
 
1060
 
    property = "CheckerRunning"
 
1061
 
    values_to_set = [dbus.Boolean(False)]
 
1063
 
class TestApproveByDefaultCmd(TestPropertyCmd):
 
1064
 
    command = ApproveByDefaultCmd
 
1065
 
    property = "ApprovedByDefault"
 
1066
 
    values_to_set = [dbus.Boolean(True)]
 
1068
 
class TestDenyByDefaultCmd(TestPropertyCmd):
 
1069
 
    command = DenyByDefaultCmd
 
1070
 
    property = "ApprovedByDefault"
 
1071
 
    values_to_set = [dbus.Boolean(False)]
 
1073
 
class TestValueArgumentPropertyCmd(TestPropertyCmd):
 
1074
 
    """Abstract class for tests of PropertyCmd classes using the
 
1075
 
ValueArgumentMixIn"""
 
1077
 
        if type(self) is TestValueArgumentPropertyCmd:
 
1079
 
        return super(TestValueArgumentPropertyCmd, self).runTest()
 
1080
 
    def run_command(self, value, clients):
 
1081
 
        self.command(value).run(None, clients)
 
1083
 
class TestSetCheckerCmd(TestValueArgumentPropertyCmd):
 
1084
 
    command = SetCheckerCmd
 
1085
 
    property = "Checker"
 
1086
 
    values_to_set = ["", ":", "fping -q -- %s"]
 
1088
 
class TestSetHostCmd(TestValueArgumentPropertyCmd):
 
1089
 
    command = SetHostCmd
 
1091
 
    values_to_set = ["192.0.2.3", "foo.example.org"]
 
1093
 
class TestSetSecretCmd(TestValueArgumentPropertyCmd):
 
1094
 
    command = SetSecretCmd
 
1096
 
    values_to_set = [open("/dev/null", "rb"),
 
1097
 
                     io.BytesIO(b"secret\0xyzzy\nbar")]
 
1098
 
    values_to_get = [b"", b"secret\0xyzzy\nbar"]
 
1100
 
class TestSetTimeoutCmd(TestValueArgumentPropertyCmd):
 
1101
 
    command = SetTimeoutCmd
 
1102
 
    property = "Timeout"
 
1103
 
    values_to_set = [datetime.timedelta(),
 
1104
 
                     datetime.timedelta(minutes=5),
 
1105
 
                     datetime.timedelta(seconds=1),
 
1106
 
                     datetime.timedelta(weeks=1),
 
1107
 
                     datetime.timedelta(weeks=52)]
 
1108
 
    values_to_get = [0, 300000, 1000, 604800000, 31449600000]
 
1110
 
class TestSetExtendedTimeoutCmd(TestValueArgumentPropertyCmd):
 
1111
 
    command = SetExtendedTimeoutCmd
 
1112
 
    property = "ExtendedTimeout"
 
1113
 
    values_to_set = [datetime.timedelta(),
 
1114
 
                     datetime.timedelta(minutes=5),
 
1115
 
                     datetime.timedelta(seconds=1),
 
1116
 
                     datetime.timedelta(weeks=1),
 
1117
 
                     datetime.timedelta(weeks=52)]
 
1118
 
    values_to_get = [0, 300000, 1000, 604800000, 31449600000]
 
1120
 
class TestSetIntervalCmd(TestValueArgumentPropertyCmd):
 
1121
 
    command = SetIntervalCmd
 
1122
 
    property = "Interval"
 
1123
 
    values_to_set = [datetime.timedelta(),
 
1124
 
                     datetime.timedelta(minutes=5),
 
1125
 
                     datetime.timedelta(seconds=1),
 
1126
 
                     datetime.timedelta(weeks=1),
 
1127
 
                     datetime.timedelta(weeks=52)]
 
1128
 
    values_to_get = [0, 300000, 1000, 604800000, 31449600000]
 
1130
 
class TestSetApprovalDelayCmd(TestValueArgumentPropertyCmd):
 
1131
 
    command = SetApprovalDelayCmd
 
1132
 
    property = "ApprovalDelay"
 
1133
 
    values_to_set = [datetime.timedelta(),
 
1134
 
                     datetime.timedelta(minutes=5),
 
1135
 
                     datetime.timedelta(seconds=1),
 
1136
 
                     datetime.timedelta(weeks=1),
 
1137
 
                     datetime.timedelta(weeks=52)]
 
1138
 
    values_to_get = [0, 300000, 1000, 604800000, 31449600000]
 
1140
 
class TestSetApprovalDurationCmd(TestValueArgumentPropertyCmd):
 
1141
 
    command = SetApprovalDurationCmd
 
1142
 
    property = "ApprovalDuration"
 
1143
 
    values_to_set = [datetime.timedelta(),
 
1144
 
                     datetime.timedelta(minutes=5),
 
1145
 
                     datetime.timedelta(seconds=1),
 
1146
 
                     datetime.timedelta(weeks=1),
 
1147
 
                     datetime.timedelta(weeks=52)]
 
1148
 
    values_to_get = [0, 300000, 1000, 604800000, 31449600000]
 
1150
 
class Test_command_from_options(unittest.TestCase):
 
1152
 
        self.parser = argparse.ArgumentParser()
 
1153
 
        add_command_line_options(self.parser)
 
1154
 
    def assert_command_from_args(self, args, command_cls, **cmd_attrs):
 
1155
 
        """Assert that parsing ARGS should result in an instance of
 
1156
 
COMMAND_CLS with (optionally) all supplied attributes (CMD_ATTRS)."""
 
1157
 
        options = self.parser.parse_args(args)
 
1158
 
        commands = commands_from_options(options)
 
1159
 
        self.assertEqual(len(commands), 1)
 
1160
 
        command = commands[0]
 
1161
 
        self.assertIsInstance(command, command_cls)
 
1162
 
        for key, value in cmd_attrs.items():
 
1163
 
            self.assertEqual(getattr(command, key), value)
 
1164
 
    def test_print_table(self):
 
1165
 
        self.assert_command_from_args([], PrintTableCmd,
 
1168
 
    def test_print_table_verbose(self):
 
1169
 
        self.assert_command_from_args(["--verbose"], PrintTableCmd,
 
1172
 
    def test_print_table_verbose_short(self):
 
1173
 
        self.assert_command_from_args(["-v"], PrintTableCmd,
 
1176
 
    def test_enable(self):
 
1177
 
        self.assert_command_from_args(["--enable", "foo"], EnableCmd)
 
1179
 
    def test_enable_short(self):
 
1180
 
        self.assert_command_from_args(["-e", "foo"], EnableCmd)
 
1182
 
    def test_disable(self):
 
1183
 
        self.assert_command_from_args(["--disable", "foo"],
 
1186
 
    def test_disable_short(self):
 
1187
 
        self.assert_command_from_args(["-d", "foo"], DisableCmd)
 
1189
 
    def test_bump_timeout(self):
 
1190
 
        self.assert_command_from_args(["--bump-timeout", "foo"],
 
1193
 
    def test_bump_timeout_short(self):
 
1194
 
        self.assert_command_from_args(["-b", "foo"], BumpTimeoutCmd)
 
1196
 
    def test_start_checker(self):
 
1197
 
        self.assert_command_from_args(["--start-checker", "foo"],
 
1200
 
    def test_stop_checker(self):
 
1201
 
        self.assert_command_from_args(["--stop-checker", "foo"],
 
1204
 
    def test_remove(self):
 
1205
 
        self.assert_command_from_args(["--remove", "foo"],
 
1208
 
    def test_remove_short(self):
 
1209
 
        self.assert_command_from_args(["-r", "foo"], RemoveCmd)
 
1211
 
    def test_checker(self):
 
1212
 
        self.assert_command_from_args(["--checker", ":", "foo"],
 
1213
 
                                      SetCheckerCmd, value_to_set=":")
 
1215
 
    def test_checker_empty(self):
 
1216
 
        self.assert_command_from_args(["--checker", "", "foo"],
 
1217
 
                                      SetCheckerCmd, value_to_set="")
 
1219
 
    def test_checker_short(self):
 
1220
 
        self.assert_command_from_args(["-c", ":", "foo"],
 
1221
 
                                      SetCheckerCmd, value_to_set=":")
 
1223
 
    def test_timeout(self):
 
1224
 
        self.assert_command_from_args(["--timeout", "PT5M", "foo"],
 
1226
 
                                      value_to_set=300000)
 
1228
 
    def test_timeout_short(self):
 
1229
 
        self.assert_command_from_args(["-t", "PT5M", "foo"],
 
1231
 
                                      value_to_set=300000)
 
1233
 
    def test_extended_timeout(self):
 
1234
 
        self.assert_command_from_args(["--extended-timeout", "PT15M",
 
1236
 
                                      SetExtendedTimeoutCmd,
 
1237
 
                                      value_to_set=900000)
 
1239
 
    def test_interval(self):
 
1240
 
        self.assert_command_from_args(["--interval", "PT2M", "foo"],
 
1242
 
                                      value_to_set=120000)
 
1244
 
    def test_interval_short(self):
 
1245
 
        self.assert_command_from_args(["-i", "PT2M", "foo"],
 
1247
 
                                      value_to_set=120000)
 
1249
 
    def test_approve_by_default(self):
 
1250
 
        self.assert_command_from_args(["--approve-by-default", "foo"],
 
1251
 
                                      ApproveByDefaultCmd)
 
1253
 
    def test_deny_by_default(self):
 
1254
 
        self.assert_command_from_args(["--deny-by-default", "foo"],
 
1257
 
    def test_approval_delay(self):
 
1258
 
        self.assert_command_from_args(["--approval-delay", "PT30S",
 
1259
 
                                       "foo"], SetApprovalDelayCmd,
 
1262
 
    def test_approval_duration(self):
 
1263
 
        self.assert_command_from_args(["--approval-duration", "PT1S",
 
1264
 
                                       "foo"], SetApprovalDurationCmd,
 
1267
 
    def test_host(self):
 
1268
 
        self.assert_command_from_args(["--host", "foo.example.org",
 
1270
 
                                      value_to_set="foo.example.org")
 
1272
 
    def test_host_short(self):
 
1273
 
        self.assert_command_from_args(["-H", "foo.example.org",
 
1275
 
                                      value_to_set="foo.example.org")
 
1277
 
    def test_secret_devnull(self):
 
1278
 
        self.assert_command_from_args(["--secret", os.path.devnull,
 
1279
 
                                       "foo"], SetSecretCmd,
 
1282
 
    def test_secret_tempfile(self):
 
1283
 
        with tempfile.NamedTemporaryFile(mode="r+b") as f:
 
1284
 
            value = b"secret\0xyzzy\nbar"
 
1287
 
            self.assert_command_from_args(["--secret", f.name,
 
1288
 
                                           "foo"], SetSecretCmd,
 
1291
 
    def test_secret_devnull_short(self):
 
1292
 
        self.assert_command_from_args(["-s", os.path.devnull, "foo"],
 
1293
 
                                      SetSecretCmd, value_to_set=b"")
 
1295
 
    def test_secret_tempfile_short(self):
 
1296
 
        with tempfile.NamedTemporaryFile(mode="r+b") as f:
 
1297
 
            value = b"secret\0xyzzy\nbar"
 
1300
 
            self.assert_command_from_args(["-s", f.name, "foo"],
 
1304
 
    def test_approve(self):
 
1305
 
        self.assert_command_from_args(["--approve", "foo"],
 
1308
 
    def test_approve_short(self):
 
1309
 
        self.assert_command_from_args(["-A", "foo"], ApproveCmd)
 
1311
 
    def test_deny(self):
 
1312
 
        self.assert_command_from_args(["--deny", "foo"], DenyCmd)
 
1314
 
    def test_deny_short(self):
 
1315
 
        self.assert_command_from_args(["-D", "foo"], DenyCmd)
 
1317
 
    def test_dump_json(self):
 
1318
 
        self.assert_command_from_args(["--dump-json"], DumpJSONCmd)
 
1320
 
    def test_is_enabled(self):
 
1321
 
        self.assert_command_from_args(["--is-enabled", "foo"],
 
1324
 
    def test_is_enabled_short(self):
 
1325
 
        self.assert_command_from_args(["-V", "foo"], IsEnabledCmd)
 
1329
 
def should_only_run_tests():
 
1330
 
    parser = argparse.ArgumentParser(add_help=False)
 
1331
 
    parser.add_argument("--check", action='store_true')
 
1332
 
    args, unknown_args = parser.parse_known_args()
 
1333
 
    run_tests = args.check
 
1335
 
        # Remove --check argument from sys.argv
 
1336
 
        sys.argv[1:] = unknown_args
 
1339
 
# Add all tests from doctest strings
 
1340
 
def load_tests(loader, tests, none):
 
1342
 
    tests.addTests(doctest.DocTestSuite())
 
 
390
    if not has_actions(options) and clients:
 
 
392
            keywords = ("Name", "Enabled", "Timeout",
 
 
393
                        "LastCheckedOK", "Created", "Interval",
 
 
394
                        "Host", "Fingerprint", "CheckerRunning",
 
 
395
                        "LastEnabled", "ApprovalPending",
 
 
397
                        "LastApprovalRequest", "ApprovalDelay",
 
 
398
                        "ApprovalDuration", "Checker",
 
 
401
            keywords = defaultkeywords
 
 
403
        print_clients(clients.values(), keywords)
 
 
405
        # Process each client in the list by all selected options
 
 
406
        for client in clients:
 
 
407
            def set_client_prop(prop, value):
 
 
408
                """Set a Client D-Bus property"""
 
 
409
                client.Set(client_interface, prop, value,
 
 
410
                           dbus_interface=dbus.PROPERTIES_IFACE)
 
 
411
            def set_client_prop_ms(prop, value):
 
 
412
                """Set a Client D-Bus property, converted
 
 
413
                from a string to milliseconds."""
 
 
414
                set_client_prop(prop,
 
 
415
                                timedelta_to_milliseconds
 
 
416
                                (string_to_delta(value)))
 
 
418
                mandos_serv.RemoveClient(client.__dbus_object_path__)
 
 
420
                set_client_prop("Enabled", dbus.Boolean(True))
 
 
422
                set_client_prop("Enabled", dbus.Boolean(False))
 
 
423
            if options.bump_timeout:
 
 
424
                set_client_prop("LastCheckedOK", "")
 
 
425
            if options.start_checker:
 
 
426
                set_client_prop("CheckerRunning", dbus.Boolean(True))
 
 
427
            if options.stop_checker:
 
 
428
                set_client_prop("CheckerRunning", dbus.Boolean(False))
 
 
429
            if options.is_enabled:
 
 
430
                sys.exit(0 if client.Get(client_interface,
 
 
433
                                         dbus.PROPERTIES_IFACE)
 
 
435
            if options.checker is not None:
 
 
436
                set_client_prop("Checker", options.checker)
 
 
437
            if options.host is not None:
 
 
438
                set_client_prop("Host", options.host)
 
 
439
            if options.interval is not None:
 
 
440
                set_client_prop_ms("Interval", options.interval)
 
 
441
            if options.approval_delay is not None:
 
 
442
                set_client_prop_ms("ApprovalDelay",
 
 
443
                                   options.approval_delay)
 
 
444
            if options.approval_duration is not None:
 
 
445
                set_client_prop_ms("ApprovalDuration",
 
 
446
                                   options.approval_duration)
 
 
447
            if options.timeout is not None:
 
 
448
                set_client_prop_ms("Timeout", options.timeout)
 
 
449
            if options.extended_timeout is not None:
 
 
450
                set_client_prop_ms("ExtendedTimeout",
 
 
451
                                   options.extended_timeout)
 
 
452
            if options.secret is not None:
 
 
453
                set_client_prop("Secret",
 
 
454
                                dbus.ByteArray(options.secret.read()))
 
 
455
            if options.approved_by_default is not None:
 
 
456
                set_client_prop("ApprovedByDefault",
 
 
458
                                             .approved_by_default))
 
 
460
                client.Approve(dbus.Boolean(True),
 
 
461
                               dbus_interface=client_interface)
 
 
463
                client.Approve(dbus.Boolean(False),
 
 
464
                               dbus_interface=client_interface)
 
1345
466
if __name__ == "__main__":
 
1346
 
    if should_only_run_tests():
 
1347
 
        # Call using ./tdd-python-script --check [--verbose]