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 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952
|
# -*- coding: utf-8 -*-
"""Shared test cases."""
from __future__ import unicode_literals
import os
from dfvfs.file_io import tsk_file_io
from dfvfs.file_io import tsk_partition_file_io
from dfvfs.lib import definitions
from dfvfs.lib import errors
from dfvfs.path import factory as path_spec_factory
from dfvfs.path import tsk_path_spec
from dfvfs.path import tsk_partition_path_spec
from dfvfs.resolver import context
from dfvfs.resolver import resolver
from tests import test_lib as shared_test_lib
class Ext2ImageFileTestCase(shared_test_lib.BaseTestCase):
"""Shared functionality for storage media image with an ext2 file system."""
_INODE_ANOTHER_FILE = 15
_INODE_PASSWORDS_TXT = 14
def setUp(self):
"""Sets up the needed objects used throughout the test."""
self._resolver_context = context.Context()
def tearDown(self):
"""Cleans up the needed objects used throughout the test."""
self._resolver_context.Empty()
def _TestOpenCloseInode(self, parent_path_spec):
"""Test the open and close functionality using an inode.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = path_spec_factory.Factory.NewPathSpec(
definitions.PREFERRED_EXT_BACK_END, inode=self._INODE_PASSWORDS_TXT,
parent=parent_path_spec)
file_object = resolver.Resolver.OpenFileObject(
path_spec, resolver_context=self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 116)
file_object.close()
def _TestOpenCloseLocation(self, parent_path_spec):
"""Test the open and close functionality using a location.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = path_spec_factory.Factory.NewPathSpec(
definitions.PREFERRED_EXT_BACK_END, location='/passwords.txt',
parent=parent_path_spec)
file_object = resolver.Resolver.OpenFileObject(
path_spec, resolver_context=self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 116)
file_object.close()
def _TestSeek(self, parent_path_spec):
"""Test the seek functionality.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = path_spec_factory.Factory.NewPathSpec(
definitions.PREFERRED_EXT_BACK_END, inode=self._INODE_ANOTHER_FILE,
location='/a_directory/another_file', parent=parent_path_spec)
file_object = resolver.Resolver.OpenFileObject(
path_spec, resolver_context=self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 22)
file_object.seek(10)
self.assertEqual(file_object.read(5), b'other')
self.assertEqual(file_object.get_offset(), 15)
file_object.seek(-10, os.SEEK_END)
self.assertEqual(file_object.read(5), b'her f')
file_object.seek(2, os.SEEK_CUR)
self.assertEqual(file_object.read(2), b'e.')
# Conforming to the POSIX seek the offset can exceed the file size
# but reading will result in no data being returned.
file_object.seek(300, os.SEEK_SET)
self.assertEqual(file_object.get_offset(), 300)
self.assertEqual(file_object.read(2), b'')
with self.assertRaises(IOError):
file_object.seek(-10, os.SEEK_SET)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), 300)
with self.assertRaises(IOError):
file_object.seek(10, 5)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), 300)
file_object.close()
def _TestRead(self, parent_path_spec):
"""Test the read functionality.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = path_spec_factory.Factory.NewPathSpec(
definitions.PREFERRED_EXT_BACK_END, inode=self._INODE_PASSWORDS_TXT,
location='/passwords.txt', parent=parent_path_spec)
file_object = resolver.Resolver.OpenFileObject(
path_spec, resolver_context=self._resolver_context)
file_object.open(path_spec=path_spec)
read_buffer = file_object.read()
expected_buffer = (
b'place,user,password\n'
b'bank,joesmith,superrich\n'
b'alarm system,-,1234\n'
b'treasure chest,-,1111\n'
b'uber secret laire,admin,admin\n')
self.assertEqual(read_buffer, expected_buffer)
# TODO: add boundary scenarios.
file_object.close()
class ImageFileTestCase(shared_test_lib.BaseTestCase):
"""The unit test case for storage media image based test data."""
_INODE_ANOTHER_FILE = 16
_INODE_PASSWORDS_TXT = 15
def setUp(self):
"""Sets up the needed objects used throughout the test."""
self._resolver_context = context.Context()
def tearDown(self):
"""Cleans up the needed objects used throughout the test."""
self._resolver_context.Empty()
def _TestOpenCloseInode(self, parent_path_spec):
"""Test the open and close functionality using an inode.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = tsk_path_spec.TSKPathSpec(
inode=self._INODE_PASSWORDS_TXT, parent=parent_path_spec)
file_object = tsk_file_io.TSKFile(self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 116)
file_object.close()
def _TestOpenCloseLocation(self, parent_path_spec):
"""Test the open and close functionality using a location.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = tsk_path_spec.TSKPathSpec(
location='/passwords.txt', parent=parent_path_spec)
file_object = tsk_file_io.TSKFile(self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 116)
file_object.close()
def _TestSeek(self, parent_path_spec):
"""Test the seek functionality.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = tsk_path_spec.TSKPathSpec(
inode=self._INODE_ANOTHER_FILE, location='/a_directory/another_file',
parent=parent_path_spec)
file_object = tsk_file_io.TSKFile(self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 22)
file_object.seek(10)
self.assertEqual(file_object.read(5), b'other')
self.assertEqual(file_object.get_offset(), 15)
file_object.seek(-10, os.SEEK_END)
self.assertEqual(file_object.read(5), b'her f')
file_object.seek(2, os.SEEK_CUR)
self.assertEqual(file_object.read(2), b'e.')
# Conforming to the POSIX seek the offset can exceed the file size
# but reading will result in no data being returned.
file_object.seek(300, os.SEEK_SET)
self.assertEqual(file_object.get_offset(), 300)
self.assertEqual(file_object.read(2), b'')
with self.assertRaises(IOError):
file_object.seek(-10, os.SEEK_SET)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), 300)
with self.assertRaises(IOError):
file_object.seek(10, 5)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), 300)
file_object.close()
def _TestRead(self, parent_path_spec):
"""Test the read functionality.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = tsk_path_spec.TSKPathSpec(
inode=self._INODE_PASSWORDS_TXT, location='/passwords.txt',
parent=parent_path_spec)
file_object = tsk_file_io.TSKFile(self._resolver_context)
file_object.open(path_spec=path_spec)
read_buffer = file_object.read()
expected_buffer = (
b'place,user,password\n'
b'bank,joesmith,superrich\n'
b'alarm system,-,1234\n'
b'treasure chest,-,1111\n'
b'uber secret laire,admin,admin\n')
self.assertEqual(read_buffer, expected_buffer)
# TODO: add boundary scenarios.
file_object.close()
class NTFSImageFileTestCase(shared_test_lib.BaseTestCase):
"""Shared functionality for storage media image with a NTFS file system."""
_MFT_ENTRY_ANOTHER_FILE = 67
_MFT_ENTRY_PASSWORDS_TXT = 66
def setUp(self):
"""Sets up the needed objects used throughout the test."""
self._resolver_context = context.Context()
def tearDown(self):
"""Cleans up the needed objects used throughout the test."""
self._resolver_context.Empty()
def _TestOpenCloseMFTEntry(self, path_spec, file_object):
"""Test the open and close functionality using a MFT entry.
Args:
path_spec (PathSpec): path specification.
file_object (FileIO): file-like object.
"""
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 116)
file_object.close()
# TODO: add a failing scenario.
def _TestOpenCloseLocation(self, path_spec, file_object):
"""Test the open and close functionality using a location.
Args:
path_spec (PathSpec): path specification.
file_object (FileIO): file-like object.
"""
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 116)
file_object.close()
# Try open with a path specification that has no parent.
path_spec.parent = None
with self.assertRaises(errors.PathSpecError):
file_object.open(path_spec=path_spec)
def _TestSeek(self, path_spec, file_object):
"""Test the seek functionality.
Args:
path_spec (PathSpec): path specification.
file_object (FileIO): file-like object.
"""
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 22)
file_object.seek(10)
self.assertEqual(file_object.read(5), b'other')
self.assertEqual(file_object.get_offset(), 15)
file_object.seek(-10, os.SEEK_END)
self.assertEqual(file_object.read(5), b'her f')
file_object.seek(2, os.SEEK_CUR)
self.assertEqual(file_object.read(2), b'e.')
# Conforming to the POSIX seek the offset can exceed the file size
# but reading will result in no data being returned.
file_object.seek(300, os.SEEK_SET)
self.assertEqual(file_object.get_offset(), 300)
self.assertEqual(file_object.read(2), b'')
with self.assertRaises(IOError):
file_object.seek(-10, os.SEEK_SET)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), 300)
with self.assertRaises(IOError):
file_object.seek(10, 5)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), 300)
file_object.close()
def _TestRead(self, path_spec, file_object):
"""Test the read functionality.
Args:
path_spec (PathSpec): path specification.
file_object (FileIO): file-like object.
"""
file_object.open(path_spec=path_spec)
read_buffer = file_object.read()
expected_buffer = (
b'place,user,password\n'
b'bank,joesmith,superrich\n'
b'alarm system,-,1234\n'
b'treasure chest,-,1111\n'
b'uber secret laire,admin,admin\n')
self.assertEqual(read_buffer, expected_buffer)
# TODO: add boundary scenarios.
file_object.close()
def _TestReadADS(self, path_spec, file_object):
"""Test the read functionality on an alternate data stream (ADS).
Args:
path_spec (PathSpec): path specification.
file_object (FileIO): file-like object.
"""
file_object.open(path_spec=path_spec)
expected_buffer = (
b'\xf0\x12\x03\xf8\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00')
read_buffer = file_object.read(size=16)
self.assertEqual(read_buffer, expected_buffer)
file_object.seek(-8, os.SEEK_END)
expected_buffer = b'\x20\x00\x00\x00\x20\x02\x00\x00'
read_buffer = file_object.read(size=16)
self.assertEqual(read_buffer, expected_buffer)
class MBRPartitionedImageFileTestCase(shared_test_lib.BaseTestCase):
"""Tests for MBR partitioned storage media image based test data."""
# mmls test_data/mbr.raw
# DOS Partition Table
# Offset Sector: 0
# Units are in 512-byte sectors
#
# Slot Start End Length Description
# 000: Meta 0000000000 0000000000 0000000001 Primary Table (#0)
# 001: ------- 0000000000 0000000000 0000000001 Unallocated
# 002: 000:000 0000000001 0000000129 0000000129 Linux (0x83)
# 003: Meta 0000000130 0000008191 0000008062 DOS Extended (0x05)
# 004: Meta 0000000130 0000000130 0000000001 Extended Table (#1)
# 005: ------- 0000000130 0000000130 0000000001 Unallocated
# 006: 001:000 0000000131 0000000259 0000000129 Linux (0x83)
# 007: ------- 0000000260 0000008191 0000007932 Unallocated
_BYTES_PER_SECTOR = 512
_OFFSET_P1 = 1 * _BYTES_PER_SECTOR
_SIZE_P1 = 129 * _BYTES_PER_SECTOR
_OFFSET_P2 = 131 * _BYTES_PER_SECTOR
_SIZE_P2 = 129 * _BYTES_PER_SECTOR
def setUp(self):
"""Sets up the needed objects used throughout the test."""
self._resolver_context = context.Context()
def tearDown(self):
"""Cleans up the needed objects used throughout the test."""
self._resolver_context.Empty()
def _TestOpenClose(self, parent_path_spec):
"""Test the open and close functionality.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = tsk_partition_path_spec.TSKPartitionPathSpec(
part_index=2, parent=parent_path_spec)
file_object = tsk_partition_file_io.TSKPartitionFile(self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), self._SIZE_P1)
file_object.close()
path_spec = tsk_partition_path_spec.TSKPartitionPathSpec(
part_index=13, parent=parent_path_spec)
file_object = tsk_partition_file_io.TSKPartitionFile(self._resolver_context)
with self.assertRaises(errors.PathSpecError):
file_object.open(path_spec=path_spec)
path_spec = tsk_partition_path_spec.TSKPartitionPathSpec(
location='/p2', parent=parent_path_spec)
file_object = tsk_partition_file_io.TSKPartitionFile(self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), self._SIZE_P2)
file_object.close()
path_spec = tsk_partition_path_spec.TSKPartitionPathSpec(
location='/p0', parent=parent_path_spec)
file_object = tsk_partition_file_io.TSKPartitionFile(self._resolver_context)
with self.assertRaises(errors.PathSpecError):
file_object.open(path_spec=path_spec)
path_spec = tsk_partition_path_spec.TSKPartitionPathSpec(
location='/p3', parent=parent_path_spec)
file_object = tsk_partition_file_io.TSKPartitionFile(self._resolver_context)
with self.assertRaises(errors.PathSpecError):
file_object.open(path_spec=path_spec)
path_spec = tsk_partition_path_spec.TSKPartitionPathSpec(
start_offset=self._OFFSET_P2, parent=parent_path_spec)
file_object = tsk_partition_file_io.TSKPartitionFile(self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), self._SIZE_P2)
file_object.close()
path_spec = tsk_partition_path_spec.TSKPartitionPathSpec(
start_offset=self._SIZE_P1, parent=parent_path_spec)
file_object = tsk_partition_file_io.TSKPartitionFile(self._resolver_context)
with self.assertRaises(errors.PathSpecError):
file_object.open(path_spec=path_spec)
def _TestSeek(self, parent_path_spec):
"""Test the seek functionality.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = tsk_partition_path_spec.TSKPartitionPathSpec(
part_index=6, parent=parent_path_spec)
file_object = tsk_partition_file_io.TSKPartitionFile(self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), self._SIZE_P2)
file_object.seek(4128)
self.assertEqual(file_object.get_offset(), 0x11620 - self._OFFSET_P2)
self.assertEqual(
file_object.read(16), b'lost+found\x00\x00\x0c\x00\x00\x00')
self.assertEqual(file_object.get_offset(), 0x11630 - self._OFFSET_P2)
file_object.seek(-28156, os.SEEK_END)
self.assertEqual(file_object.get_offset(), 0x19a04 - self._OFFSET_P2)
data = file_object.read(8)
self.assertEqual(data, b' is a te')
self.assertEqual(file_object.get_offset(), 0x19a0c - self._OFFSET_P2)
file_object.seek(4, os.SEEK_CUR)
self.assertEqual(file_object.get_offset(), 0x19a10 - self._OFFSET_P2)
data = file_object.read(7)
self.assertEqual(data, b'ile.\n\nW')
self.assertEqual(file_object.get_offset(), 0x19a17 - self._OFFSET_P2)
# Conforming to the POSIX seek the offset can exceed the file size
# but reading will result in no data being returned.
expected_offset = self._SIZE_P2 + 100
file_object.seek(expected_offset, os.SEEK_SET)
self.assertEqual(file_object.get_offset(), expected_offset)
self.assertEqual(file_object.read(20), b'')
with self.assertRaises(IOError):
file_object.seek(-10, os.SEEK_SET)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), expected_offset)
with self.assertRaises(IOError):
file_object.seek(10, 5)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), expected_offset)
file_object.close()
def _TestRead(self, parent_path_spec):
"""Test the read functionality.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = tsk_partition_path_spec.TSKPartitionPathSpec(
part_index=6, parent=parent_path_spec)
file_object = tsk_partition_file_io.TSKPartitionFile(self._resolver_context)
file_object.open(path_spec=path_spec)
try:
self.assertEqual(file_object.get_size(), self._SIZE_P2)
file_object.seek(0x19e00 - self._OFFSET_P2)
data = file_object.read(32)
finally:
file_object.close()
self.assertEqual(data, b'place,user,password\nbank,joesmit')
class SylogTestCase(shared_test_lib.BaseTestCase):
"""The unit test case for the syslog test data."""
def _TestGetSizeFileObject(self, file_object):
"""Runs the get size tests on the file-like object.
Args:
file_object (file): file-like object with the test data.
"""
self.assertEqual(file_object.get_size(), 1247)
def _TestReadFileObject(self, file_object, base_offset=167):
"""Runs the read tests on the file-like object.
Args:
file_object (file): file-like object with the test data.
base_offset (Optional[int]): base offset use in the tests.
"""
file_object.seek(base_offset, os.SEEK_SET)
self.assertEqual(file_object.get_offset(), base_offset)
expected_buffer = (
b'Jan 22 07:53:01 myhostname.myhost.com CRON[31051]: (root) CMD '
b'(touch /var/run/crond.somecheck)\n')
read_buffer = file_object.read(95)
self.assertEqual(read_buffer, expected_buffer)
expected_offset = base_offset + 95
self.assertEqual(file_object.get_offset(), expected_offset)
def _TestSeekFileObject(self, file_object, base_offset=167):
"""Runs the seek tests on the file-like object.
Args:
file_object (file): file-like object with the test data.
base_offset (Optional[int]): base offset use in the tests.
"""
file_object.seek(base_offset + 10)
self.assertEqual(file_object.read(5), b'53:01')
expected_offset = base_offset + 15
self.assertEqual(file_object.get_offset(), expected_offset)
file_object.seek(-10, os.SEEK_END)
self.assertEqual(file_object.read(5), b'times')
file_object.seek(2, os.SEEK_CUR)
self.assertEqual(file_object.read(2), b'--')
# Conforming to the POSIX seek the offset can exceed the file size
# but reading will result in no data being returned.
file_object.seek(2000, os.SEEK_SET)
self.assertEqual(file_object.get_offset(), 2000)
self.assertEqual(file_object.read(2), b'')
# Test with an invalid offset.
with self.assertRaises(IOError):
file_object.seek(-10, os.SEEK_SET)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), 2000)
# Test with an invalid whence.
with self.assertRaises(IOError):
file_object.seek(10, 5)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), 2000)
class PaddedSyslogTestCase(SylogTestCase):
"""The unit test case for padded syslog test data.
The syslog test data is padded with '=' characters.
"""
def setUp(self):
"""Sets up the needed objects used throughout the test."""
self.padding_size = 0
def _TestGetSizeFileObject(self, file_object):
"""Runs the get size tests on the file-like object.
Args:
file_object (file): file-like object with the test data.
"""
self.assertEqual(file_object.get_size(), 1247 + self.padding_size)
def _TestSeekFileObject(self, file_object, base_offset=167):
"""Runs the seek tests on the file-like object.
Args:
file_object (file): file-like object with the test data.
base_offset (Optional[int]): base offset use in the tests.
"""
file_object.seek(base_offset + 10)
self.assertEqual(file_object.read(5), b'53:01')
expected_offset = base_offset + 15
self.assertEqual(file_object.get_offset(), expected_offset)
file_object.seek(-10 - self.padding_size, os.SEEK_END)
self.assertEqual(file_object.read(5), b'times')
file_object.seek(2, os.SEEK_CUR)
self.assertEqual(file_object.read(2), b'--')
# Conforming to the POSIX seek the offset can exceed the file size
# but reading will result in no data being returned.
file_object.seek(2000, os.SEEK_SET)
self.assertEqual(file_object.get_offset(), 2000)
self.assertEqual(file_object.read(2), b'')
# Test with an invalid offset.
with self.assertRaises(IOError):
file_object.seek(-10, os.SEEK_SET)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), 2000)
# Test with an invalid whence.
with self.assertRaises(IOError):
file_object.seek(10, 5)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), 2000)
class WindowsFATImageFileTestCase(shared_test_lib.BaseTestCase):
"""Shared functionality for storage media image with a FAT file system."""
_INODE_ANOTHER_FILE = 615
_INODE_PASSWORDS_TXT = 10
def setUp(self):
"""Sets up the needed objects used throughout the test."""
self._resolver_context = context.Context()
def tearDown(self):
"""Cleans up the needed objects used throughout the test."""
self._resolver_context.Empty()
def _TestOpenCloseMFTEntry(self, parent_path_spec):
"""Test the open and close functionality using a MFT entry.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = tsk_path_spec.TSKPathSpec(
inode=self._INODE_PASSWORDS_TXT, parent=parent_path_spec)
file_object = tsk_file_io.TSKFile(self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 126)
file_object.close()
# TODO: add a failing scenario.
def _TestOpenCloseLocation(self, parent_path_spec):
"""Test the open and close functionality using a location.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = tsk_path_spec.TSKPathSpec(
location='/passwords.txt', parent=parent_path_spec)
file_object = tsk_file_io.TSKFile(self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 126)
file_object.close()
# Try open with a path specification that has no parent.
path_spec.parent = None
with self.assertRaises(errors.PathSpecError):
file_object.open(path_spec=path_spec)
def _TestSeek(self, parent_path_spec):
"""Test the seek functionality.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = tsk_path_spec.TSKPathSpec(
inode=self._INODE_ANOTHER_FILE, location='/a_directory/another_file',
parent=parent_path_spec)
file_object = tsk_file_io.TSKFile(self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 24)
file_object.seek(10)
self.assertEqual(file_object.read(5), b'other')
self.assertEqual(file_object.get_offset(), 15)
file_object.seek(-12, os.SEEK_END)
self.assertEqual(file_object.read(5), b'her f')
file_object.seek(2, os.SEEK_CUR)
self.assertEqual(file_object.read(2), b'e.')
# Conforming to the POSIX seek the offset can exceed the file size
# but reading will result in no data being returned.
file_object.seek(300, os.SEEK_SET)
self.assertEqual(file_object.get_offset(), 300)
self.assertEqual(file_object.read(2), b'')
with self.assertRaises(IOError):
file_object.seek(-10, os.SEEK_SET)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), 300)
with self.assertRaises(IOError):
file_object.seek(10, 5)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), 300)
file_object.close()
def _TestRead(self, parent_path_spec):
"""Test the read functionality.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = tsk_path_spec.TSKPathSpec(
inode=self._INODE_PASSWORDS_TXT, location='/passwords.txt',
parent=parent_path_spec)
file_object = tsk_file_io.TSKFile(self._resolver_context)
file_object.open(path_spec=path_spec)
read_buffer = file_object.read()
expected_buffer = (
b'place,user,password \r\n'
b'bank,joesmith,superrich \r\n'
b'alarm system,-,1234 \r\n'
b'treasure chest,-,1111 \r\n'
b'uber secret laire,admin,admin \r\n')
self.assertEqual(read_buffer, expected_buffer)
# TODO: add boundary scenarios.
file_object.close()
class WindowsNTFSImageFileTestCase(shared_test_lib.BaseTestCase):
"""Shared functionality for storage media image with a NTFS file system."""
_MFT_ENTRY_ANOTHER_FILE = 36
_MFT_ENTRY_PASSWORDS_TXT = 35
def setUp(self):
"""Sets up the needed objects used throughout the test."""
self._resolver_context = context.Context()
def tearDown(self):
"""Cleans up the needed objects used throughout the test."""
self._resolver_context.Empty()
def _TestOpenCloseMFTEntry(self, parent_path_spec):
"""Test the open and close functionality using a MFT entry.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
path_spec = path_spec_factory.Factory.NewPathSpec(
definitions.PREFERRED_NTFS_BACK_END, mft_attribute=1,
mft_entry=self._MFT_ENTRY_PASSWORDS_TXT, parent=parent_path_spec)
file_object = resolver.Resolver.OpenFileObject(
path_spec, resolver_context=self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 126)
file_object.close()
# TODO: add a failing scenario.
def _TestOpenCloseLocation(self, parent_path_spec):
"""Test the open and close functionality using a location.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
if definitions.PREFERRED_NTFS_BACK_END == definitions.TYPE_INDICATOR_TSK:
location = '/passwords.txt'
else:
location = '\\passwords.txt'
path_spec = path_spec_factory.Factory.NewPathSpec(
definitions.PREFERRED_NTFS_BACK_END, location=location,
parent=parent_path_spec)
file_object = resolver.Resolver.OpenFileObject(
path_spec, resolver_context=self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 126)
file_object.close()
# Try open with a path specification that has no parent.
path_spec.parent = None
with self.assertRaises(errors.PathSpecError):
resolver.Resolver.OpenFileObject(
path_spec, resolver_context=self._resolver_context)
def _TestSeek(self, parent_path_spec):
"""Test the seek functionality.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
if definitions.PREFERRED_NTFS_BACK_END == definitions.TYPE_INDICATOR_TSK:
location = '/a_directory/another_file'
else:
location = '\\a_directory\\another_file'
path_spec = path_spec_factory.Factory.NewPathSpec(
definitions.PREFERRED_NTFS_BACK_END, location=location,
mft_attribute=2, mft_entry=self._MFT_ENTRY_ANOTHER_FILE,
parent=parent_path_spec)
file_object = resolver.Resolver.OpenFileObject(
path_spec, resolver_context=self._resolver_context)
file_object.open(path_spec=path_spec)
self.assertEqual(file_object.get_size(), 24)
file_object.seek(10)
self.assertEqual(file_object.read(5), b'other')
self.assertEqual(file_object.get_offset(), 15)
file_object.seek(-12, os.SEEK_END)
self.assertEqual(file_object.read(5), b'her f')
file_object.seek(2, os.SEEK_CUR)
self.assertEqual(file_object.read(2), b'e.')
# Conforming to the POSIX seek the offset can exceed the file size
# but reading will result in no data being returned.
file_object.seek(300, os.SEEK_SET)
self.assertEqual(file_object.get_offset(), 300)
self.assertEqual(file_object.read(2), b'')
with self.assertRaises(IOError):
file_object.seek(-10, os.SEEK_SET)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), 300)
with self.assertRaises(IOError):
file_object.seek(10, 5)
# On error the offset should not change.
self.assertEqual(file_object.get_offset(), 300)
file_object.close()
def _TestRead(self, parent_path_spec):
"""Test the read functionality.
Args:
parent_path_spec (PathSpec): parent path specification.
"""
if definitions.PREFERRED_NTFS_BACK_END == definitions.TYPE_INDICATOR_TSK:
location = '/passwords.txt'
else:
location = '\\passwords.txt'
path_spec = path_spec_factory.Factory.NewPathSpec(
definitions.PREFERRED_NTFS_BACK_END, location=location,
mft_attribute=2, mft_entry=self._MFT_ENTRY_PASSWORDS_TXT,
parent=parent_path_spec)
file_object = resolver.Resolver.OpenFileObject(
path_spec, resolver_context=self._resolver_context)
file_object.open(path_spec=path_spec)
read_buffer = file_object.read()
expected_buffer = (
b'place,user,password \r\n'
b'bank,joesmith,superrich \r\n'
b'alarm system,-,1234 \r\n'
b'treasure chest,-,1111 \r\n'
b'uber secret laire,admin,admin \r\n')
self.assertEqual(read_buffer, expected_buffer)
# TODO: add boundary scenarios.
file_object.close()
|