Skip to content

Commit

Permalink
Changes for pyfwnt 20210717 (log2timeline#586)
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimmetz authored Jul 21, 2021
1 parent ddeabfe commit 1608914
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion config/dpkg/control
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Homepage: https://github.com/log2timeline/dfvfs

Package: python3-dfvfs
Architecture: all
Depends: libbde-python3 (>= 20140531), libewf-python3 (>= 20131210), libfsapfs-python3 (>= 20201107), libfsext-python3 (>= 20210424), libfshfs-python3 (>= 20210530), libfsntfs-python3 (>= 20200921), libfsxfs-python3 (>= 20201114), libfvde-python3 (>= 20160719), libfwnt-python3 (>= 20160418), libluksde-python3 (>= 20200101), libmodi-python3 (>= 20210405), libqcow-python3 (>= 20201213), libsigscan-python3 (>= 20191221), libsmdev-python3 (>= 20140529), libsmraw-python3 (>= 20140612), libvhdi-python3 (>= 20201014), libvmdk-python3 (>= 20140421), libvsgpt-python3 (>= 20210207), libvshadow-python3 (>= 20160109), libvslvm-python3 (>= 20160109), python3-cffi-backend (>= 1.9.1), python3-cryptography (>= 2.0.2), python3-dfdatetime (>= 20210509), python3-dtfabric (>= 20170524), python3-idna (>= 2.5), python3-pytsk3 (>= 20210419), python3-yaml (>= 3.10), ${python3:Depends}, ${misc:Depends}
Depends: libbde-python3 (>= 20140531), libewf-python3 (>= 20131210), libfsapfs-python3 (>= 20201107), libfsext-python3 (>= 20210424), libfshfs-python3 (>= 20210530), libfsntfs-python3 (>= 20200921), libfsxfs-python3 (>= 20201114), libfvde-python3 (>= 20160719), libfwnt-python3 (>= 20210717), libluksde-python3 (>= 20200101), libmodi-python3 (>= 20210405), libqcow-python3 (>= 20201213), libsigscan-python3 (>= 20191221), libsmdev-python3 (>= 20140529), libsmraw-python3 (>= 20140612), libvhdi-python3 (>= 20201014), libvmdk-python3 (>= 20140421), libvsgpt-python3 (>= 20210207), libvshadow-python3 (>= 20160109), libvslvm-python3 (>= 20160109), python3-cffi-backend (>= 1.9.1), python3-cryptography (>= 2.0.2), python3-dfdatetime (>= 20210509), python3-dtfabric (>= 20170524), python3-idna (>= 2.5), python3-pytsk3 (>= 20210419), python3-yaml (>= 3.10), ${python3:Depends}, ${misc:Depends}
Description: Python 3 module of dfVFS
dfVFS, or Digital Forensics Virtual File System, provides read-only access to
file-system objects from various storage media types and file formats. The goal
Expand Down
2 changes: 1 addition & 1 deletion dependencies.ini
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ version_property: get_version()
[pyfwnt]
dpkg_name: libfwnt-python3
l2tbinaries_name: libfwnt
minimum_version: 20160418
minimum_version: 20210717
pypi_name: libfwnt-python
rpm_name: libfwnt-python3
version_property: get_version()
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ libfshfs-python >= 20210530
libfsntfs-python >= 20200921
libfsxfs-python >= 20201114
libfvde-python >= 20160719
libfwnt-python >= 20160418
libfwnt-python >= 20210717
libluksde-python >= 20200101
libmodi-python >= 20210405
libqcow-python >= 20201213
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ requires = libbde-python3 >= 20140531
libfsntfs-python3 >= 20200921
libfsxfs-python3 >= 20201114
libfvde-python3 >= 20160719
libfwnt-python3 >= 20160418
libfwnt-python3 >= 20210717
libluksde-python3 >= 20200101
libmodi-python3 >= 20210405
libqcow-python3 >= 20201213
Expand Down
8 changes: 4 additions & 4 deletions tests/vfs/ntfs_file_entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,10 +605,10 @@ def testAttributes(self):
self.assertIsNotNone(security_identifier)
self.assertEqual(security_identifier.string, 'S-1-5-32-544')

access_control_list = security_descriptor.discretionary_acl
access_control_list = security_descriptor.system_acl
self.assertIsNone(access_control_list)

access_control_list = security_descriptor.system_acl
access_control_list = security_descriptor.discretionary_acl
self.assertIsNotNone(access_control_list)
self.assertEqual(access_control_list.number_of_entries, 1)

Expand Down Expand Up @@ -716,10 +716,10 @@ def testGetSecurityDescriptor(self):
self.assertIsNotNone(security_identifier)
self.assertEqual(security_identifier.string, 'S-1-5-32-544')

access_control_list = security_descriptor.discretionary_acl
access_control_list = security_descriptor.system_acl
self.assertIsNone(access_control_list)

access_control_list = security_descriptor.system_acl
access_control_list = security_descriptor.discretionary_acl
self.assertIsNotNone(access_control_list)
self.assertEqual(access_control_list.number_of_entries, 1)

Expand Down

0 comments on commit 1608914

Please sign in to comment.