diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2017-11-24 15:11:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-24 15:11:18 (GMT) |
commit | 19fb134185ce155bc53f517116fca73093ba55e9 (patch) | |
tree | e38accbe5c87a8c93a40ef649e2a07cd9cee79df /Lib | |
parent | 9e87e7776f7ace66baaf7247233afdabd00c2b44 (diff) | |
download | cpython-19fb134185ce155bc53f517116fca73093ba55e9.zip cpython-19fb134185ce155bc53f517116fca73093ba55e9.tar.gz cpython-19fb134185ce155bc53f517116fca73093ba55e9.tar.bz2 |
bpo-12239: Make GetProperty() return None for VT_EMPTY (GH-4539)
The previous behavior was to raise an exception
NotImplementedError: result of type 0
when the value of the property is VT_EMPTY.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_msilib.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_msilib.py b/Lib/test/test_msilib.py index 4093134..6d89ca4 100644 --- a/Lib/test/test_msilib.py +++ b/Lib/test/test_msilib.py @@ -53,6 +53,13 @@ class MsiDatabaseTestCase(unittest.TestCase): msilib.OpenDatabase(db_path, msilib.MSIDBOPEN_CREATE) self.assertEqual(str(cm.exception), 'create failed') + def test_get_property_vt_empty(self): + db, db_path = init_database() + summary = db.GetSummaryInformation(0) + self.assertIsNone(summary.GetProperty(msilib.PID_SECURITY)) + db.Close() + self.addCleanup(unlink, db_path) + class Test_make_id(unittest.TestCase): #http://msdn.microsoft.com/en-us/library/aa369212(v=vs.85).aspx |