62 lines
2.0 KiB
Python
62 lines
2.0 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright 2012 The Plaso Project Authors.
|
|
# Please see the AUTHORS file for details on individual authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
"""Tests for the pyregf Windows Registry back-end."""
|
|
|
|
import unittest
|
|
|
|
from plaso.winreg import test_lib
|
|
from plaso.winreg import winpyregf
|
|
|
|
|
|
class RegistryUnitTest(test_lib.WinRegTestCase):
|
|
"""Tests for the pyregf Windows Registry back-end."""
|
|
|
|
def _KeyPathCompare(self, winreg_file, key_path):
|
|
"""Retrieves a key from the file and checks if the path key matches.
|
|
|
|
Args:
|
|
winreg_file: the Windows Registry file (instance of WinPyregfFile).
|
|
key_path: the key path to retrieve and compare.
|
|
"""
|
|
key = winreg_file.GetKeyByPath(key_path)
|
|
self.assertEquals(key.path, key_path)
|
|
|
|
def testListKeys(self):
|
|
test_file = self._GetTestFilePath(['NTUSER.DAT'])
|
|
file_entry = self._GetTestFileEntry(test_file)
|
|
winreg_file = winpyregf.WinRegistry(file_entry)
|
|
keys = list(winreg_file)
|
|
|
|
# Count the number of Registry keys in the hive.
|
|
self.assertEquals(len(keys), 1126)
|
|
|
|
def testWinPyregf(self):
|
|
test_file = self._GetTestFilePath(['NTUSER.DAT'])
|
|
file_entry = self._GetTestFileEntry(test_file)
|
|
winreg_file = winpyregf.WinPyregfFile()
|
|
winreg_file.Open(file_entry)
|
|
|
|
self._KeyPathCompare(winreg_file, u'\\')
|
|
self._KeyPathCompare(winreg_file, u'\\Printers')
|
|
self._KeyPathCompare(winreg_file, u'\\Printers\\Connections')
|
|
self._KeyPathCompare(winreg_file, u'\\Software')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|