コード例 #1
0
ファイル: mac_securityd.py プロジェクト: x35029/plaso
    def testGetFormatStringAttributeNames(self):
        """Tests the GetFormatStringAttributeNames function."""
        event_formatter = mac_securityd.MacOSSecuritydLogFormatter()

        expected_attribute_names = [
            'sender', 'sender_pid', 'level', 'facility', 'message'
        ]

        self._TestGetFormatStringAttributeNames(event_formatter,
                                                expected_attribute_names)
コード例 #2
0
ファイル: mac_securityd.py プロジェクト: x35029/plaso
 def testInitialization(self):
     """Tests the initialization."""
     event_formatter = mac_securityd.MacOSSecuritydLogFormatter()
     self.assertIsNotNone(event_formatter)