Esempio n. 1
0
    def testGetFormatStringAttributeNames(self):
        """Tests the GetFormatStringAttributeNames function."""
        event_formatter = mac_keychain.KeychainInternetRecordFormatter()

        expected_attribute_names = [
            'entry_name', 'account_name', 'where', 'protocol', 'type_protocol'
        ]

        self._TestGetFormatStringAttributeNames(event_formatter,
                                                expected_attribute_names)
Esempio n. 2
0
 def testInitialization(self):
     """Tests the initialization."""
     event_formatter = mac_keychain.KeychainInternetRecordFormatter()
     self.assertNotEqual(event_formatter, None)