612
613
"Checker", "ExtendedTimeout", "Expires",
613
614
"LastCheckerStatus")
616
def run(self, clients, bus=None, mandos=None):
617
print(self.output(clients.values()))
619
def output(self, clients):
620
raise NotImplementedError()
616
623
class DumpJSON(Output):
617
def run(self, clients, bus=None, mandos=None):
624
def output(self, clients):
618
625
data = {client["Name"]:
619
626
{key: self.dbus_boolean_to_bool(client[key])
620
627
for key in self.all_keywords}
621
for client in clients.values()}
622
print(json.dumps(data, indent=4, separators=(',', ': ')))
628
for client in clients}
629
return json.dumps(data, indent=4, separators=(',', ': '))
625
632
def dbus_boolean_to_bool(value):
746
753
raise NotImplementedError()
749
class Enable(PropertySetter):
756
class Enable(Property):
750
757
propname = "Enabled"
751
758
value_to_set = dbus.Boolean(True)
754
class Disable(PropertySetter):
761
class Disable(Property):
755
762
propname = "Enabled"
756
763
value_to_set = dbus.Boolean(False)
759
class BumpTimeout(PropertySetter):
766
class BumpTimeout(Property):
760
767
propname = "LastCheckedOK"
761
768
value_to_set = ""
764
class StartChecker(PropertySetter):
765
propname = "CheckerRunning"
766
value_to_set = dbus.Boolean(True)
769
class StopChecker(PropertySetter):
770
propname = "CheckerRunning"
771
value_to_set = dbus.Boolean(False)
774
class ApproveByDefault(PropertySetter):
775
propname = "ApprovedByDefault"
776
value_to_set = dbus.Boolean(True)
779
class DenyByDefault(PropertySetter):
780
propname = "ApprovedByDefault"
781
value_to_set = dbus.Boolean(False)
784
class PropertySetterValue(PropertySetter):
785
"""Abstract class for PropertySetter recieving a value as
786
constructor argument instead of a class attribute."""
771
class StartChecker(Property):
772
propname = "CheckerRunning"
773
value_to_set = dbus.Boolean(True)
776
class StopChecker(Property):
777
propname = "CheckerRunning"
778
value_to_set = dbus.Boolean(False)
781
class ApproveByDefault(Property):
782
propname = "ApprovedByDefault"
783
value_to_set = dbus.Boolean(True)
786
class DenyByDefault(Property):
787
propname = "ApprovedByDefault"
788
value_to_set = dbus.Boolean(False)
791
class PropertyValue(Property):
792
"Abstract class for Property recieving a value as argument"
787
793
def __init__(self, value):
788
794
self.value_to_set = value
791
class SetChecker(PropertySetterValue):
797
class SetChecker(PropertyValue):
792
798
propname = "Checker"
795
class SetHost(PropertySetterValue):
801
class SetHost(PropertyValue):
796
802
propname = "Host"
799
class SetSecret(PropertySetterValue):
805
class SetSecret(PropertyValue):
800
806
propname = "Secret"
883
888
class Test_string_to_delta(TestCaseWithAssertLogs):
884
# Just test basic RFC 3339 functionality here, the doc string for
885
# rfc3339_duration_to_delta() already has more comprehensive
886
# tests, which is run by doctest.
888
def test_rfc3339_zero_seconds(self):
889
self.assertEqual(datetime.timedelta(),
890
string_to_delta("PT0S"))
892
def test_rfc3339_zero_days(self):
893
self.assertEqual(datetime.timedelta(), string_to_delta("P0D"))
895
def test_rfc3339_one_second(self):
896
self.assertEqual(datetime.timedelta(0, 1),
897
string_to_delta("PT1S"))
899
def test_rfc3339_two_hours(self):
900
self.assertEqual(datetime.timedelta(0, 7200),
901
string_to_delta("PT2H"))
889
def test_handles_basic_rfc3339(self):
890
self.assertEqual(string_to_delta("PT0S"),
891
datetime.timedelta())
892
self.assertEqual(string_to_delta("P0D"),
893
datetime.timedelta())
894
self.assertEqual(string_to_delta("PT1S"),
895
datetime.timedelta(0, 1))
896
self.assertEqual(string_to_delta("PT2H"),
897
datetime.timedelta(0, 7200))
903
899
def test_falls_back_to_pre_1_6_1_with_warning(self):
904
900
with self.assertLogs(log, logging.WARNING):
905
901
value = string_to_delta("2h")
906
self.assertEqual(datetime.timedelta(0, 7200), value)
902
self.assertEqual(value, datetime.timedelta(0, 7200))
909
905
class Test_check_option_syntax(unittest.TestCase):
952
948
# Exit code from argparse is guaranteed to be "2". Reference:
953
949
# https://docs.python.org/3/library
954
950
# /argparse.html#exiting-methods
955
self.assertEqual(2, e.exception.code)
951
self.assertEqual(e.exception.code, 2)
958
954
@contextlib.contextmanager
959
955
def redirect_stderr_to_devnull():
960
old_stderr = sys.stderr
961
with contextlib.closing(open(os.devnull, "w")) as null:
966
sys.stderr = old_stderr
956
null = os.open(os.path.devnull, os.O_RDWR)
957
stderrcopy = os.dup(sys.stderr.fileno())
958
os.dup2(null, sys.stderr.fileno())
964
os.dup2(stderrcopy, sys.stderr.fileno())
968
967
def check_option_syntax(self, options):
969
968
check_option_syntax(self.parser, options)
1090
1089
self.assertTrue(mockbus.called)
1092
1091
def test_logs_and_exits_on_dbus_error(self):
1093
class FailingBusStub(object):
1092
class MockBusFailing(object):
1094
1093
def get_object(self, busname, dbus_path):
1095
1094
raise dbus.exceptions.DBusException("Test")
1097
1096
with self.assertLogs(log, logging.CRITICAL):
1098
1097
with self.assertRaises(SystemExit) as e:
1099
bus = get_mandos_dbus_object(bus=FailingBusStub())
1098
bus = get_mandos_dbus_object(bus=MockBusFailing())
1101
1100
if isinstance(e.exception.code, int):
1102
self.assertNotEqual(0, e.exception.code)
1101
self.assertNotEqual(e.exception.code, 0)
1104
1103
self.assertIsNotNone(e.exception.code)
1107
1106
class Test_get_managed_objects(TestCaseWithAssertLogs):
1108
1107
def test_calls_and_returns_GetManagedObjects(self):
1109
managed_objects = {"/clients/client": { "Name": "client"}}
1110
class ObjectManagerStub(object):
1108
managed_objects = {"/clients/foo": { "Name": "foo"}}
1109
class MockObjectManager(object):
1111
1110
def GetManagedObjects(self):
1112
1111
return managed_objects
1113
retval = get_managed_objects(ObjectManagerStub())
1112
retval = get_managed_objects(MockObjectManager())
1114
1113
self.assertDictEqual(managed_objects, retval)
1116
1115
def test_logs_and_exits_on_dbus_error(self):
1117
1116
dbus_logger = logging.getLogger("dbus.proxies")
1119
class ObjectManagerFailingStub(object):
1118
class MockObjectManagerFailing(object):
1120
1119
def GetManagedObjects(self):
1121
1120
dbus_logger.error("Test")
1122
1121
raise dbus.exceptions.DBusException("Test")
1134
1133
with self.assertLogs(log, logging.CRITICAL) as watcher:
1135
1134
with self.assertRaises(SystemExit) as e:
1136
get_managed_objects(ObjectManagerFailingStub())
1135
get_managed_objects(MockObjectManagerFailing())
1138
1137
dbus_logger.removeFilter(counting_handler)
1140
1139
# Make sure the dbus logger was suppressed
1141
self.assertEqual(0, counting_handler.count)
1140
self.assertEqual(counting_handler.count, 0)
1143
1142
# Test that the dbus_logger still works
1144
1143
with self.assertLogs(dbus_logger, logging.ERROR):
1145
1144
dbus_logger.error("Test")
1147
1146
if isinstance(e.exception.code, int):
1148
self.assertNotEqual(0, e.exception.code)
1147
self.assertNotEqual(e.exception.code, 0)
1150
1149
self.assertIsNotNone(e.exception.code)
1166
1165
options = self.parser.parse_args(args)
1167
1166
check_option_syntax(self.parser, options)
1168
1167
commands = commands_from_options(options)
1169
self.assertEqual(1, len(commands))
1168
self.assertEqual(len(commands), 1)
1170
1169
command = commands[0]
1171
1170
self.assertIsInstance(command, command_cls)
1172
1171
for key, value in cmd_attrs.items():
1173
self.assertEqual(value, getattr(command, key))
1172
self.assertEqual(getattr(command, key), value)
1175
1174
def test_is_enabled_short(self):
1176
self.assert_command_from_args(["-V", "client"],
1175
self.assert_command_from_args(["-V", "foo"],
1177
1176
command.IsEnabled)
1179
1178
def test_approve(self):
1180
self.assert_command_from_args(["--approve", "client"],
1179
self.assert_command_from_args(["--approve", "foo"],
1181
1180
command.Approve)
1183
1182
def test_approve_short(self):
1184
self.assert_command_from_args(["-A", "client"],
1183
self.assert_command_from_args(["-A", "foo"], command.Approve)
1187
1185
def test_deny(self):
1188
self.assert_command_from_args(["--deny", "client"],
1186
self.assert_command_from_args(["--deny", "foo"], command.Deny)
1191
1188
def test_deny_short(self):
1192
self.assert_command_from_args(["-D", "client"], command.Deny)
1189
self.assert_command_from_args(["-D", "foo"], command.Deny)
1194
1191
def test_remove(self):
1195
self.assert_command_from_args(["--remove", "client"],
1192
self.assert_command_from_args(["--remove", "foo"],
1196
1193
command.Remove)
1198
1195
def test_deny_before_remove(self):
1199
1196
options = self.parser.parse_args(["--deny", "--remove",
1201
1198
check_option_syntax(self.parser, options)
1202
1199
commands = commands_from_options(options)
1203
self.assertEqual(2, len(commands))
1200
self.assertEqual(len(commands), 2)
1204
1201
self.assertIsInstance(commands[0], command.Deny)
1205
1202
self.assertIsInstance(commands[1], command.Remove)
1210
1207
check_option_syntax(self.parser, options)
1211
1208
commands = commands_from_options(options)
1212
self.assertEqual(2, len(commands))
1209
self.assertEqual(len(commands), 2)
1213
1210
self.assertIsInstance(commands[0], command.Deny)
1214
1211
self.assertIsInstance(commands[1], command.Remove)
1216
1213
def test_remove_short(self):
1217
self.assert_command_from_args(["-r", "client"],
1214
self.assert_command_from_args(["-r", "foo"], command.Remove)
1220
1216
def test_dump_json(self):
1221
1217
self.assert_command_from_args(["--dump-json"],
1222
1218
command.DumpJSON)
1224
1220
def test_enable(self):
1225
self.assert_command_from_args(["--enable", "client"],
1221
self.assert_command_from_args(["--enable", "foo"],
1226
1222
command.Enable)
1228
1224
def test_enable_short(self):
1229
self.assert_command_from_args(["-e", "client"],
1225
self.assert_command_from_args(["-e", "foo"], command.Enable)
1232
1227
def test_disable(self):
1233
self.assert_command_from_args(["--disable", "client"],
1228
self.assert_command_from_args(["--disable", "foo"],
1234
1229
command.Disable)
1236
1231
def test_disable_short(self):
1237
self.assert_command_from_args(["-d", "client"],
1232
self.assert_command_from_args(["-d", "foo"], command.Disable)
1240
1234
def test_bump_timeout(self):
1241
self.assert_command_from_args(["--bump-timeout", "client"],
1235
self.assert_command_from_args(["--bump-timeout", "foo"],
1242
1236
command.BumpTimeout)
1244
1238
def test_bump_timeout_short(self):
1245
self.assert_command_from_args(["-b", "client"],
1239
self.assert_command_from_args(["-b", "foo"],
1246
1240
command.BumpTimeout)
1248
1242
def test_start_checker(self):
1249
self.assert_command_from_args(["--start-checker", "client"],
1243
self.assert_command_from_args(["--start-checker", "foo"],
1250
1244
command.StartChecker)
1252
1246
def test_stop_checker(self):
1253
self.assert_command_from_args(["--stop-checker", "client"],
1247
self.assert_command_from_args(["--stop-checker", "foo"],
1254
1248
command.StopChecker)
1256
1250
def test_approve_by_default(self):
1257
self.assert_command_from_args(["--approve-by-default",
1251
self.assert_command_from_args(["--approve-by-default", "foo"],
1259
1252
command.ApproveByDefault)
1261
1254
def test_deny_by_default(self):
1262
self.assert_command_from_args(["--deny-by-default", "client"],
1255
self.assert_command_from_args(["--deny-by-default", "foo"],
1263
1256
command.DenyByDefault)
1265
1258
def test_checker(self):
1266
self.assert_command_from_args(["--checker", ":", "client"],
1259
self.assert_command_from_args(["--checker", ":", "foo"],
1267
1260
command.SetChecker,
1268
1261
value_to_set=":")
1270
1263
def test_checker_empty(self):
1271
self.assert_command_from_args(["--checker", "", "client"],
1264
self.assert_command_from_args(["--checker", "", "foo"],
1272
1265
command.SetChecker,
1273
1266
value_to_set="")
1275
1268
def test_checker_short(self):
1276
self.assert_command_from_args(["-c", ":", "client"],
1269
self.assert_command_from_args(["-c", ":", "foo"],
1277
1270
command.SetChecker,
1278
1271
value_to_set=":")
1280
1273
def test_host(self):
1281
self.assert_command_from_args(
1282
["--host", "client.example.org", "client"],
1283
command.SetHost, value_to_set="client.example.org")
1274
self.assert_command_from_args(["--host", "foo.example.org",
1275
"foo"], command.SetHost,
1276
value_to_set="foo.example.org")
1285
1278
def test_host_short(self):
1286
self.assert_command_from_args(
1287
["-H", "client.example.org", "client"], command.SetHost,
1288
value_to_set="client.example.org")
1279
self.assert_command_from_args(["-H", "foo.example.org",
1280
"foo"], command.SetHost,
1281
value_to_set="foo.example.org")
1290
1283
def test_secret_devnull(self):
1291
1284
self.assert_command_from_args(["--secret", os.path.devnull,
1292
"client"], command.SetSecret,
1285
"foo"], command.SetSecret,
1293
1286
value_to_set=b"")
1295
1288
def test_secret_tempfile(self):
1312
1304
value = b"secret\0xyzzy\nbar"
1315
self.assert_command_from_args(["-s", f.name, "client"],
1307
self.assert_command_from_args(["-s", f.name, "foo"],
1316
1308
command.SetSecret,
1317
1309
value_to_set=value)
1319
1311
def test_timeout(self):
1320
self.assert_command_from_args(["--timeout", "PT5M", "client"],
1312
self.assert_command_from_args(["--timeout", "PT5M", "foo"],
1321
1313
command.SetTimeout,
1322
1314
value_to_set=300000)
1324
1316
def test_timeout_short(self):
1325
self.assert_command_from_args(["-t", "PT5M", "client"],
1317
self.assert_command_from_args(["-t", "PT5M", "foo"],
1326
1318
command.SetTimeout,
1327
1319
value_to_set=300000)
1329
1321
def test_extended_timeout(self):
1330
1322
self.assert_command_from_args(["--extended-timeout", "PT15M",
1332
1324
command.SetExtendedTimeout,
1333
1325
value_to_set=900000)
1335
1327
def test_interval(self):
1336
self.assert_command_from_args(["--interval", "PT2M",
1337
"client"], command.SetInterval,
1328
self.assert_command_from_args(["--interval", "PT2M", "foo"],
1329
command.SetInterval,
1338
1330
value_to_set=120000)
1340
1332
def test_interval_short(self):
1341
self.assert_command_from_args(["-i", "PT2M", "client"],
1333
self.assert_command_from_args(["-i", "PT2M", "foo"],
1342
1334
command.SetInterval,
1343
1335
value_to_set=120000)
1345
1337
def test_approval_delay(self):
1346
1338
self.assert_command_from_args(["--approval-delay", "PT30S",
1348
1340
command.SetApprovalDelay,
1349
1341
value_to_set=30000)
1351
1343
def test_approval_duration(self):
1352
1344
self.assert_command_from_args(["--approval-duration", "PT1S",
1354
1346
command.SetApprovalDuration,
1355
1347
value_to_set=1000)
1380
1372
self.attributes["Name"] = name
1381
1373
self.calls = []
1382
1374
def Set(self, interface, propname, value, dbus_interface):
1383
testcase.assertEqual(client_dbus_interface, interface)
1384
testcase.assertEqual(dbus.PROPERTIES_IFACE,
1375
testcase.assertEqual(interface, client_dbus_interface)
1376
testcase.assertEqual(dbus_interface,
1377
dbus.PROPERTIES_IFACE)
1386
1378
self.attributes[propname] = value
1379
def Get(self, interface, propname, dbus_interface):
1380
testcase.assertEqual(interface, client_dbus_interface)
1381
testcase.assertEqual(dbus_interface,
1382
dbus.PROPERTIES_IFACE)
1383
return self.attributes[propname]
1387
1384
def Approve(self, approve, dbus_interface):
1388
testcase.assertEqual(client_dbus_interface,
1385
testcase.assertEqual(dbus_interface,
1386
client_dbus_interface)
1390
1387
self.calls.append(("Approve", (approve,
1391
1388
dbus_interface)))
1392
1389
self.client = MockClient(
1439
1436
LastCheckerStatus=-2)
1440
1437
self.clients = collections.OrderedDict(
1442
(self.client.__dbus_object_path__,
1443
self.client.attributes),
1444
(self.other_client.__dbus_object_path__,
1445
self.other_client.attributes),
1439
("/clients/foo", self.client.attributes),
1440
("/clients/barbar", self.other_client.attributes),
1447
self.one_client = {self.client.__dbus_object_path__:
1448
self.client.attributes}
1442
self.one_client = {"/clients/foo": self.client.attributes}
1452
class MockBus(object):
1454
1448
def get_object(client_bus_name, path):
1455
self.assertEqual(dbus_busname, client_bus_name)
1456
# Note: "self" here is the TestCmd instance, not the
1457
# MockBus instance, since this is a static method!
1458
if path == self.client.__dbus_object_path__:
1460
elif path == self.other_client.__dbus_object_path__:
1461
return self.other_client
1449
self.assertEqual(client_bus_name, dbus_busname)
1451
# Note: "self" here is the TestCmd instance, not
1452
# the Bus instance, since this is a static method!
1453
"/clients/foo": self.client,
1454
"/clients/barbar": self.other_client,
1465
1459
class TestBaseCommands(TestCommand):
1467
def test_IsEnabled_exits_successfully(self):
1461
def test_is_enabled(self):
1462
self.assertTrue(all(command.IsEnabled().is_enabled(client,
1464
for client, properties
1465
in self.clients.items()))
1467
def test_is_enabled_run_exits_successfully(self):
1468
1468
with self.assertRaises(SystemExit) as e:
1469
1469
command.IsEnabled().run(self.one_client)
1470
1470
if e.exception.code is not None:
1471
self.assertEqual(0, e.exception.code)
1471
self.assertEqual(e.exception.code, 0)
1473
1473
self.assertIsNone(e.exception.code)
1475
def test_IsEnabled_exits_with_failure(self):
1475
def test_is_enabled_run_exits_with_failure(self):
1476
1476
self.client.attributes["Enabled"] = dbus.Boolean(False)
1477
1477
with self.assertRaises(SystemExit) as e:
1478
1478
command.IsEnabled().run(self.one_client)
1479
1479
if isinstance(e.exception.code, int):
1480
self.assertNotEqual(0, e.exception.code)
1480
self.assertNotEqual(e.exception.code, 0)
1482
1482
self.assertIsNotNone(e.exception.code)
1484
def test_Approve(self):
1484
def test_approve(self):
1485
1485
command.Approve().run(self.clients, self.bus)
1486
1486
for clientpath in self.clients:
1487
1487
client = self.bus.get_object(dbus_busname, clientpath)
1488
1488
self.assertIn(("Approve", (True, client_dbus_interface)),
1491
def test_Deny(self):
1491
def test_deny(self):
1492
1492
command.Deny().run(self.clients, self.bus)
1493
1493
for clientpath in self.clients:
1494
1494
client = self.bus.get_object(dbus_busname, clientpath)
1495
1495
self.assertIn(("Approve", (False, client_dbus_interface)),
1498
def test_Remove(self):
1499
class MandosSpy(object):
1498
def test_remove(self):
1499
class MockMandos(object):
1500
1500
def __init__(self):
1501
1501
self.calls = []
1502
1502
def RemoveClient(self, dbus_path):
1503
1503
self.calls.append(("RemoveClient", (dbus_path,)))
1504
mandos = MandosSpy()
1504
mandos = MockMandos()
1505
super(TestBaseCommands, self).setUp()
1505
1506
command.Remove().run(self.clients, self.bus, mandos)
1507
self.assertEqual(len(mandos.calls), 2)
1506
1508
for clientpath in self.clients:
1507
1509
self.assertIn(("RemoveClient", (clientpath,)),
1561
1563
def test_DumpJSON_normal(self):
1562
with self.capture_stdout_to_buffer() as buffer:
1563
command.DumpJSON().run(self.clients)
1564
json_data = json.loads(buffer.getvalue())
1565
self.assertDictEqual(self.expected_json, json_data)
1568
@contextlib.contextmanager
1569
def capture_stdout_to_buffer():
1570
capture_buffer = io.StringIO()
1571
old_stdout = sys.stdout
1572
sys.stdout = capture_buffer
1574
yield capture_buffer
1576
sys.stdout = old_stdout
1564
output = command.DumpJSON().output(self.clients.values())
1565
json_data = json.loads(output)
1566
self.assertDictEqual(json_data, self.expected_json)
1578
1568
def test_DumpJSON_one_client(self):
1579
with self.capture_stdout_to_buffer() as buffer:
1580
command.DumpJSON().run(self.one_client)
1581
json_data = json.loads(buffer.getvalue())
1569
output = command.DumpJSON().output(self.one_client.values())
1570
json_data = json.loads(output)
1582
1571
expected_json = {"foo": self.expected_json["foo"]}
1583
self.assertDictEqual(expected_json, json_data)
1572
self.assertDictEqual(json_data, expected_json)
1585
1574
def test_PrintTable_normal(self):
1586
with self.capture_stdout_to_buffer() as buffer:
1587
command.PrintTable().run(self.clients)
1575
output = command.PrintTable().output(self.clients.values())
1588
1576
expected_output = "\n".join((
1589
1577
"Name Enabled Timeout Last Successful Check",
1590
1578
"foo Yes 00:05:00 2019-02-03T00:00:00 ",
1591
1579
"barbar Yes 00:05:00 2019-02-04T00:00:00 ",
1593
self.assertEqual(expected_output, buffer.getvalue())
1581
self.assertEqual(output, expected_output)
1595
1583
def test_PrintTable_verbose(self):
1596
with self.capture_stdout_to_buffer() as buffer:
1597
command.PrintTable(verbose=True).run(self.clients)
1584
output = command.PrintTable(verbose=True).output(
1585
self.clients.values())
1684
1672
num_lines = max(len(rows) for rows in columns)
1685
expected_output = ("\n".join("".join(rows[line]
1686
for rows in columns)
1687
for line in range(num_lines))
1689
self.assertEqual(expected_output, buffer.getvalue())
1673
expected_output = "\n".join("".join(rows[line]
1674
for rows in columns)
1675
for line in range(num_lines))
1676
self.assertEqual(output, expected_output)
1691
1678
def test_PrintTable_one_client(self):
1692
with self.capture_stdout_to_buffer() as buffer:
1693
command.PrintTable().run(self.one_client)
1679
output = command.PrintTable().output(self.one_client.values())
1694
1680
expected_output = "\n".join((
1695
1681
"Name Enabled Timeout Last Successful Check",
1696
1682
"foo Yes 00:05:00 2019-02-03T00:00:00 ",
1698
self.assertEqual(expected_output, buffer.getvalue())
1701
class TestPropertySetterCmd(TestCommand):
1702
"""Abstract class for tests of command.PropertySetter classes"""
1684
self.assertEqual(output, expected_output)
1687
class TestPropertyCmd(TestCommand):
1688
"""Abstract class for tests of command.Property classes"""
1703
1689
def runTest(self):
1704
1690
if not hasattr(self, "command"):
1726
1713
self.command().run(clients, self.bus)
1729
class TestEnableCmd(TestPropertySetterCmd):
1716
class TestEnableCmd(TestPropertyCmd):
1730
1717
command = command.Enable
1731
1718
propname = "Enabled"
1732
1719
values_to_set = [dbus.Boolean(True)]
1735
class TestDisableCmd(TestPropertySetterCmd):
1722
class TestDisableCmd(TestPropertyCmd):
1736
1723
command = command.Disable
1737
1724
propname = "Enabled"
1738
1725
values_to_set = [dbus.Boolean(False)]
1741
class TestBumpTimeoutCmd(TestPropertySetterCmd):
1728
class TestBumpTimeoutCmd(TestPropertyCmd):
1742
1729
command = command.BumpTimeout
1743
1730
propname = "LastCheckedOK"
1744
1731
values_to_set = [""]
1747
class TestStartCheckerCmd(TestPropertySetterCmd):
1734
class TestStartCheckerCmd(TestPropertyCmd):
1748
1735
command = command.StartChecker
1749
1736
propname = "CheckerRunning"
1750
1737
values_to_set = [dbus.Boolean(True)]
1753
class TestStopCheckerCmd(TestPropertySetterCmd):
1740
class TestStopCheckerCmd(TestPropertyCmd):
1754
1741
command = command.StopChecker
1755
1742
propname = "CheckerRunning"
1756
1743
values_to_set = [dbus.Boolean(False)]
1759
class TestApproveByDefaultCmd(TestPropertySetterCmd):
1746
class TestApproveByDefaultCmd(TestPropertyCmd):
1760
1747
command = command.ApproveByDefault
1761
1748
propname = "ApprovedByDefault"
1762
1749
values_to_set = [dbus.Boolean(True)]
1765
class TestDenyByDefaultCmd(TestPropertySetterCmd):
1752
class TestDenyByDefaultCmd(TestPropertyCmd):
1766
1753
command = command.DenyByDefault
1767
1754
propname = "ApprovedByDefault"
1768
1755
values_to_set = [dbus.Boolean(False)]
1771
class TestPropertySetterValueCmd(TestPropertySetterCmd):
1772
"""Abstract class for tests of PropertySetterValueCmd classes"""
1758
class TestPropertyValueCmd(TestPropertyCmd):
1759
"""Abstract class for tests of PropertyValueCmd classes"""
1774
1761
def runTest(self):
1775
if type(self) is TestPropertySetterValueCmd:
1762
if type(self) is TestPropertyValueCmd:
1777
return super(TestPropertySetterValueCmd, self).runTest()
1764
return super(TestPropertyValueCmd, self).runTest()
1779
1766
def run_command(self, value, clients):
1780
1767
self.command(value).run(clients, self.bus)
1783
class TestSetCheckerCmd(TestPropertySetterValueCmd):
1770
class TestSetCheckerCmd(TestPropertyValueCmd):
1784
1771
command = command.SetChecker
1785
1772
propname = "Checker"
1786
1773
values_to_set = ["", ":", "fping -q -- %s"]
1789
class TestSetHostCmd(TestPropertySetterValueCmd):
1776
class TestSetHostCmd(TestPropertyValueCmd):
1790
1777
command = command.SetHost
1791
1778
propname = "Host"
1792
values_to_set = ["192.0.2.3", "client.example.org"]
1795
class TestSetSecretCmd(TestPropertySetterValueCmd):
1779
values_to_set = ["192.0.2.3", "foo.example.org"]
1782
class TestSetSecretCmd(TestPropertyValueCmd):
1796
1783
command = command.SetSecret
1797
1784
propname = "Secret"
1798
1785
values_to_set = [io.BytesIO(b""),
1799
1786
io.BytesIO(b"secret\0xyzzy\nbar")]
1800
values_to_get = [f.getvalue() for f in values_to_set]
1803
class TestSetTimeoutCmd(TestPropertySetterValueCmd):
1787
values_to_get = [b"", b"secret\0xyzzy\nbar"]
1790
class TestSetTimeoutCmd(TestPropertyValueCmd):
1804
1791
command = command.SetTimeout
1805
1792
propname = "Timeout"
1806
1793
values_to_set = [datetime.timedelta(),