1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""Tests for Img_Info."""
import os
import unittest
import pytsk3
import test_lib
class TSKImgInfoTestCase(unittest.TestCase):
"""Img_Info test case."""
def _testInitialize(self, img_info):
"""Test the initialize functionality.
Args:
img_info: the Img_Info object.
"""
self.assertNotEquals(img_info, None)
def _testGetSize(self, img_info):
"""Test the get size functionality.
Args:
img_info: the Img_Info object.
"""
self.assertNotEquals(img_info, None)
self.assertEquals(img_info.get_size(), self._file_size)
def _testRead(self, img_info):
"""Test the read functionality.
Args:
img_info: the Img_Info object.
"""
self.assertNotEquals(img_info, None)
self.assertEquals(img_info.read(0x5800, 16), b'place,user,passw')
self.assertEquals(img_info.read(0x7c00, 16), b'This is another ')
# Conforming to the POSIX seek the offset can exceed the file size
# but reading will result in no data being returned.
self.assertEquals(img_info.read(0x19000, 16), b'')
with self.assertRaises(IOError):
img_info.read(-1, 16)
class TSKImgInfoTest(TSKImgInfoTestCase):
"""The unit test for the Img_Info object."""
def setUp(self):
"""Sets up the needed objects used throughout the test."""
self._test_file = os.path.join('test_data', 'image.raw')
self._file_size = 102400
def testInitialize(self):
"""Test the initialize functionality."""
img_info = pytsk3.Img_Info(url=self._test_file)
self._testInitialize(img_info)
img_info.close()
def testGetSize(self):
"""Test the get size functionality."""
img_info = pytsk3.Img_Info(url=self._test_file)
self._testGetSize(img_info)
img_info.close()
def testRead(self):
"""Test the read functionality."""
img_info = pytsk3.Img_Info(url=self._test_file)
self.assertNotEquals(img_info, None)
self.assertEquals(img_info.read(0x5800, 16), b'place,user,passw')
self.assertEquals(img_info.read(0x7c00, 16), b'This is another ')
# Conforming to the POSIX seek the offset can exceed the file size
# but reading will result in no data being returned. Note that the SleuthKit
# does not conform to the posix standard and will raise and IO error.
with self.assertRaises(IOError):
img_info.read(0x19000, 16)
with self.assertRaises(IOError):
img_info.read(-1, 16)
img_info.close()
class TSKImgInfoFileObjectTest(TSKImgInfoTestCase):
"""The unit test for the Img_Info object using a file-like object."""
def setUp(self):
"""Sets up the needed objects used throughout the test."""
test_file = os.path.join('test_data', 'image.raw')
self._file_object = open(test_file, 'rb')
stat_info = os.stat(test_file)
self._file_size = stat_info.st_size
def testInitialize(self):
"""Test the initialize functionality."""
img_info = test_lib.FileObjectImageInfo(self._file_object, self._file_size)
self._testInitialize(img_info)
img_info.close()
def testGetSize(self):
"""Test the get size functionality."""
img_info = test_lib.FileObjectImageInfo(self._file_object, self._file_size)
self._testGetSize(img_info)
img_info.close()
def testRead(self):
"""Test the read functionality."""
img_info = test_lib.FileObjectImageInfo(self._file_object, self._file_size)
self._testRead(img_info)
img_info.close()
class TSKImgInfoFileObjectWithDetectTest(TSKImgInfoTestCase):
"""The unit test for the Img_Info object using a file-like object
with image type: pytsk3.TSK_IMG_TYPE_DETECT."""
def setUp(self):
"""Sets up the needed objects used throughout the test."""
test_file = os.path.join('test_data', 'image.raw')
self._file_object = open(test_file, 'rb')
stat_info = os.stat(test_file)
self._file_size = stat_info.st_size
def testInitialize(self):
"""Test the initialize functionality."""
img_info = test_lib.FileObjectImageInfo(
self._file_object, self._file_size,
image_type=pytsk3.TSK_IMG_TYPE_DETECT)
self._testInitialize(img_info)
img_info.close()
def testGetSize(self):
"""Test the get size functionality."""
img_info = test_lib.FileObjectImageInfo(
self._file_object, self._file_size,
image_type=pytsk3.TSK_IMG_TYPE_DETECT)
self._testGetSize(img_info)
img_info.close()
def testRead(self):
"""Test the read functionality."""
img_info = test_lib.FileObjectImageInfo(
self._file_object, self._file_size,
image_type=pytsk3.TSK_IMG_TYPE_DETECT)
self._testRead(img_info)
img_info.close()
class TSKImgInfoFileObjectLargeSizeTest(TSKImgInfoTestCase):
"""The unit test for the Img_Info object using a file-like object
with a large size."""
def setUp(self):
"""Sets up the needed objects used throughout the test."""
test_file = os.path.join('test_data', 'image.raw')
self._file_object = open(test_file, 'rb')
self._file_size = 1024 * 1024 * 1024 * 1024
def testInitialize(self):
"""Test the initialize functionality."""
img_info = test_lib.FileObjectImageInfo(self._file_object, self._file_size)
self._testInitialize(img_info)
img_info.close()
def testGetSize(self):
"""Test the get size functionality."""
img_info = test_lib.FileObjectImageInfo(self._file_object, self._file_size)
self._testGetSize(img_info)
img_info.close()
def testRead(self):
"""Test the read functionality."""
img_info = test_lib.FileObjectImageInfo(self._file_object, self._file_size)
self._testRead(img_info)
img_info.close()
if __name__ == '__main__':
unittest.main()
|