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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Tests for the encrypted stream file-like object."""
from __future__ import unicode_literals
import os
import unittest
from dfvfs.file_io import encrypted_stream_io
from dfvfs.file_io import os_file_io
from dfvfs.lib import definitions
from dfvfs.path import encrypted_stream_path_spec
from dfvfs.path import os_path_spec
from dfvfs.resolver import context
from dfvfs.resolver import resolver
from tests import test_lib as shared_test_lib
from tests.file_io import test_lib
@shared_test_lib.skipUnlessHasTestFile(['syslog.aes'])
class AESEncryptedStreamWithKeyChainTest(test_lib.PaddedSyslogTestCase):
"""Tests the RC4 encrypted stream file-like object.
The credentials are passed via the key chain.
"""
_AES_KEY = b'This is a key123'
_AES_MODE = definitions.ENCRYPTION_MODE_CBC
_AES_IV = b'This is an IV456'
def setUp(self):
"""Sets up the needed objects used throughout the test."""
self._resolver_context = context.Context()
test_file = self._GetTestFilePath(['syslog.aes'])
self._os_path_spec = os_path_spec.OSPathSpec(location=test_file)
self._encrypted_stream_path_spec = (
encrypted_stream_path_spec.EncryptedStreamPathSpec(
encryption_method=definitions.ENCRYPTION_METHOD_AES,
parent=self._os_path_spec))
resolver.Resolver.key_chain.SetCredential(
self._encrypted_stream_path_spec, 'key', self._AES_KEY)
resolver.Resolver.key_chain.SetCredential(
self._encrypted_stream_path_spec, 'initialization_vector',
self._AES_IV)
resolver.Resolver.key_chain.SetCredential(
self._encrypted_stream_path_spec, 'cipher_mode', self._AES_MODE)
self.padding_size = 1
def testOpenCloseFileObject(self):
"""Test the open and close functionality using a file-like object."""
os_file_object = os_file_io.OSFile(self._resolver_context)
os_file_object.open(path_spec=self._os_path_spec)
file_object = encrypted_stream_io.EncryptedStream(
self._resolver_context,
encryption_method=definitions.ENCRYPTION_METHOD_AES,
file_object=os_file_object)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestGetSizeFileObject(file_object)
file_object.close()
os_file_object.close()
def testOpenClosePathSpec(self):
"""Test the open and close functionality using a path specification."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestGetSizeFileObject(file_object)
file_object.close()
def testSeek(self):
"""Test the seek functionality."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestSeekFileObject(file_object)
file_object.close()
# TODO: Test SEEK_CUR after open.
# Test SEEK_END after open.
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
file_object.seek(-10 - self.padding_size, os.SEEK_END)
self.assertEqual(file_object.read(5), b'times')
file_object.close()
def testRead(self):
"""Test the read functionality."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestReadFileObject(file_object)
file_object.close()
@shared_test_lib.skipUnlessHasTestFile(['syslog.aes'])
class AESEncryptedStreamTest(test_lib.PaddedSyslogTestCase):
"""The unit test for a AES encrypted stream file-like object.
The credentials are passed via the path specification.
"""
_AES_CIPHER_MODE = definitions.ENCRYPTION_MODE_CBC
_AES_INITIALIZATION_VECTOR = b'This is an IV456'
_AES_KEY = b'This is a key123'
def setUp(self):
"""Sets up the needed objects used throughout the test."""
self._resolver_context = context.Context()
test_file = self._GetTestFilePath(['syslog.aes'])
self._os_path_spec = os_path_spec.OSPathSpec(location=test_file)
self._encrypted_stream_path_spec = (
encrypted_stream_path_spec.EncryptedStreamPathSpec(
cipher_mode=self._AES_CIPHER_MODE,
encryption_method=definitions.ENCRYPTION_METHOD_AES,
initialization_vector=self._AES_INITIALIZATION_VECTOR,
key=self._AES_KEY, parent=self._os_path_spec))
self.padding_size = 1
def testOpenCloseFileObject(self):
"""Test the open and close functionality using a file-like object."""
os_file_object = os_file_io.OSFile(self._resolver_context)
os_file_object.open(path_spec=self._os_path_spec)
file_object = encrypted_stream_io.EncryptedStream(
self._resolver_context,
encryption_method=definitions.ENCRYPTION_METHOD_AES,
file_object=os_file_object)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestGetSizeFileObject(file_object)
file_object.close()
os_file_object.close()
def testOpenClosePathSpec(self):
"""Test the open and close functionality using a path specification."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestGetSizeFileObject(file_object)
file_object.close()
def testSeek(self):
"""Test the seek functionality."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestSeekFileObject(file_object)
file_object.close()
# TODO: Test SEEK_CUR after open.
# Test SEEK_END after open.
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
file_object.seek(-10 - self.padding_size, os.SEEK_END)
self.assertEqual(file_object.read(5), b'times')
file_object.close()
def testRead(self):
"""Test the read functionality."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestReadFileObject(file_object)
file_object.close()
@shared_test_lib.skipUnlessHasTestFile(['syslog.blowfish'])
class BlowfishEncryptedStreamWithKeyChainTest(test_lib.PaddedSyslogTestCase):
"""Tests the Blowfish encrypted stream file-like object.
The credentials are passed via the key chain.
"""
_BLOWFISH_KEY = b'This is a key123'
_BLOWFISH_MODE = definitions.ENCRYPTION_MODE_CBC
_BLOWFISH_IV = b'This IV!'
def setUp(self):
"""Sets up the needed objects used throughout the test."""
self._resolver_context = context.Context()
test_file = self._GetTestFilePath(['syslog.blowfish'])
self._os_path_spec = os_path_spec.OSPathSpec(location=test_file)
self._encrypted_stream_path_spec = (
encrypted_stream_path_spec.EncryptedStreamPathSpec(
encryption_method=definitions.ENCRYPTION_METHOD_BLOWFISH,
parent=self._os_path_spec))
resolver.Resolver.key_chain.SetCredential(
self._encrypted_stream_path_spec, 'key', self._BLOWFISH_KEY)
resolver.Resolver.key_chain.SetCredential(
self._encrypted_stream_path_spec, 'initialization_vector',
self._BLOWFISH_IV)
resolver.Resolver.key_chain.SetCredential(
self._encrypted_stream_path_spec, 'cipher_mode', self._BLOWFISH_MODE)
self.padding_size = 1
def testOpenCloseFileObject(self):
"""Test the open and close functionality using a file-like object."""
os_file_object = os_file_io.OSFile(self._resolver_context)
os_file_object.open(path_spec=self._os_path_spec)
file_object = encrypted_stream_io.EncryptedStream(
self._resolver_context,
encryption_method=definitions.ENCRYPTION_METHOD_BLOWFISH,
file_object=os_file_object)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestGetSizeFileObject(file_object)
file_object.close()
os_file_object.close()
def testOpenClosePathSpec(self):
"""Test the open and close functionality using a path specification."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestGetSizeFileObject(file_object)
file_object.close()
def testSeek(self):
"""Test the seek functionality."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestSeekFileObject(file_object)
file_object.close()
# TODO: Test SEEK_CUR after open.
# Test SEEK_END after open.
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
file_object.seek(-10 - self.padding_size, os.SEEK_END)
self.assertEqual(file_object.read(5), b'times')
file_object.close()
def testRead(self):
"""Test the read functionality."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestReadFileObject(file_object)
file_object.close()
@shared_test_lib.skipUnlessHasTestFile(['syslog.des3'])
class DES3EncryptedStreamWithKeyChainTest(test_lib.PaddedSyslogTestCase):
"""Tests the Triple DES encrypted stream file-like object.
The credentials are passed via the key chain.
"""
_DES3_KEY = b'This is a key123'
_DES3_MODE = definitions.ENCRYPTION_MODE_CBC
_DES3_IV = b'This IV!'
def setUp(self):
"""Sets up the needed objects used throughout the test."""
self._resolver_context = context.Context()
test_file = self._GetTestFilePath(['syslog.des3'])
self._os_path_spec = os_path_spec.OSPathSpec(location=test_file)
self._encrypted_stream_path_spec = (
encrypted_stream_path_spec.EncryptedStreamPathSpec(
encryption_method=definitions.ENCRYPTION_METHOD_DES3,
parent=self._os_path_spec))
resolver.Resolver.key_chain.SetCredential(
self._encrypted_stream_path_spec, 'key', self._DES3_KEY)
resolver.Resolver.key_chain.SetCredential(
self._encrypted_stream_path_spec, 'initialization_vector',
self._DES3_IV)
resolver.Resolver.key_chain.SetCredential(
self._encrypted_stream_path_spec, 'cipher_mode', self._DES3_MODE)
self.padding_size = 1
def testOpenCloseFileObject(self):
"""Test the open and close functionality using a file-like object."""
os_file_object = os_file_io.OSFile(self._resolver_context)
os_file_object.open(path_spec=self._os_path_spec)
file_object = encrypted_stream_io.EncryptedStream(
self._resolver_context,
encryption_method=definitions.ENCRYPTION_METHOD_DES3,
file_object=os_file_object)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestGetSizeFileObject(file_object)
file_object.close()
os_file_object.close()
def testOpenClosePathSpec(self):
"""Test the open and close functionality using a path specification."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestGetSizeFileObject(file_object)
file_object.close()
def testSeek(self):
"""Test the seek functionality."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestSeekFileObject(file_object)
file_object.close()
# TODO: Test SEEK_CUR after open.
# Test SEEK_END after open.
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
file_object.seek(-10 - self.padding_size, os.SEEK_END)
self.assertEqual(file_object.read(5), b'times')
file_object.close()
def testRead(self):
"""Test the read functionality."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestReadFileObject(file_object)
file_object.close()
@shared_test_lib.skipUnlessHasTestFile(['syslog.rc4'])
class RC4EncryptedStreamWithKeyChainTest(test_lib.SylogTestCase):
"""Tests the RC4 encrypted stream file-like object.
The credentials are passed via the key chain.
"""
_RC4_KEY = b'rc4test'
def setUp(self):
"""Sets up the needed objects used throughout the test."""
self._resolver_context = context.Context()
test_file = self._GetTestFilePath(['syslog.rc4'])
self._os_path_spec = os_path_spec.OSPathSpec(location=test_file)
self._encrypted_stream_path_spec = (
encrypted_stream_path_spec.EncryptedStreamPathSpec(
encryption_method=definitions.ENCRYPTION_METHOD_RC4,
parent=self._os_path_spec))
resolver.Resolver.key_chain.SetCredential(
self._encrypted_stream_path_spec, 'key', self._RC4_KEY)
def testOpenCloseFileObject(self):
"""Test the open and close functionality using a file-like object."""
os_file_object = os_file_io.OSFile(self._resolver_context)
os_file_object.open(path_spec=self._os_path_spec)
file_object = encrypted_stream_io.EncryptedStream(
self._resolver_context,
encryption_method=definitions.ENCRYPTION_METHOD_RC4,
file_object=os_file_object)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestGetSizeFileObject(file_object)
file_object.close()
os_file_object.close()
def testOpenClosePathSpec(self):
"""Test the open and close functionality using a path specification."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestGetSizeFileObject(file_object)
file_object.close()
def testSeek(self):
"""Test the seek functionality."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestSeekFileObject(file_object)
file_object.close()
# TODO: Test SEEK_CUR after open.
# Test SEEK_END after open.
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
file_object.seek(-10, os.SEEK_END)
self.assertEqual(file_object.read(5), b'times')
file_object.close()
def testRead(self):
"""Test the read functionality."""
file_object = encrypted_stream_io.EncryptedStream(self._resolver_context)
file_object.open(path_spec=self._encrypted_stream_path_spec)
self._TestReadFileObject(file_object)
file_object.close()
if __name__ == '__main__':
unittest.main()
|