mirror of
https://github.com/python/cpython.git
synced 2024-12-01 22:04:04 +08:00
a21e4ca3c6
........ r70734 | r.david.murray | 2009-03-30 15:04:00 -0400 (Mon, 30 Mar 2009) | 7 lines Add import_function method to test.test_support, and modify a number of tests that expect to be skipped if imports fail or functions don't exist to use import_function and import_module. The ultimate goal is to change regrtest to not skip automatically on ImportError. Checking in now to make sure the buldbots don't show any errors on platforms I can't direct test on. ........ r70775 | r.david.murray | 2009-03-30 19:05:48 -0400 (Mon, 30 Mar 2009) | 4 lines Change more tests to use import_module for the modules that should cause tests to be skipped. Also rename import_function to the more descriptive get_attribute and add a docstring. ........ r70856 | r.david.murray | 2009-03-31 14:32:17 -0400 (Tue, 31 Mar 2009) | 7 lines A few more test skips via import_module, and change import_module to return the error message produced by importlib, so that if an import in the package whose import is being wrapped is what failed the skip message will contain the name of that module instead of the name of the wrapped module. Also fixed formatting of some previous comments. ........ r70874 | r.david.murray | 2009-03-31 15:33:15 -0400 (Tue, 31 Mar 2009) | 5 lines Improve test_support.import_module docstring, remove deprecated flag from get_attribute since it isn't likely to do anything useful. ........ r70876 | r.david.murray | 2009-03-31 15:49:15 -0400 (Tue, 31 Mar 2009) | 4 lines Remove the regrtest check that turns any ImportError into a skipped test. Hopefully all modules whose imports legitimately result in a skipped test have been properly wrapped by the previous commits. ........ r70877 | r.david.murray | 2009-03-31 15:57:24 -0400 (Tue, 31 Mar 2009) | 2 lines Add NEWS entry for regrtest change. ........
178 lines
7.0 KiB
Python
178 lines
7.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Test the windows specific win32reg module.
|
|
# Only win32reg functions not hit here: FlushKey, LoadKey and SaveKey
|
|
|
|
import os, sys
|
|
import unittest
|
|
from test import support
|
|
|
|
# Do this first so test will be skipped if module doesn't exist
|
|
support.import_module('winreg')
|
|
# Now import everything
|
|
from winreg import *
|
|
|
|
test_key_name = "SOFTWARE\\Python Registry Test Key - Delete Me"
|
|
|
|
test_data = [
|
|
("Int Value", 45, REG_DWORD),
|
|
("String Val", "A string value", REG_SZ),
|
|
("StringExpand", "The path is %path%", REG_EXPAND_SZ),
|
|
("Multi-string", ["Lots", "of", "string", "values"], REG_MULTI_SZ),
|
|
("Raw Data", b"binary\x00data", REG_BINARY),
|
|
("Big String", "x"*(2**14-1), REG_SZ),
|
|
("Big Binary", b"x"*(2**14), REG_BINARY),
|
|
# Two and three kanjis, meaning: "Japan" and "Japanese")
|
|
("Japanese 日本", "日本語", REG_SZ),
|
|
]
|
|
|
|
class WinregTests(unittest.TestCase):
|
|
remote_name = None
|
|
|
|
def WriteTestData(self, root_key, subkeystr="sub_key"):
|
|
# Set the default value for this key.
|
|
SetValue(root_key, test_key_name, REG_SZ, "Default value")
|
|
key = CreateKey(root_key, test_key_name)
|
|
self.assert_(key.handle != 0)
|
|
# Create a sub-key
|
|
sub_key = CreateKey(key, subkeystr)
|
|
# Give the sub-key some named values
|
|
|
|
for value_name, value_data, value_type in test_data:
|
|
SetValueEx(sub_key, value_name, 0, value_type, value_data)
|
|
|
|
# Check we wrote as many items as we thought.
|
|
nkeys, nvalues, since_mod = QueryInfoKey(key)
|
|
self.assertEquals(nkeys, 1, "Not the correct number of sub keys")
|
|
self.assertEquals(nvalues, 1, "Not the correct number of values")
|
|
nkeys, nvalues, since_mod = QueryInfoKey(sub_key)
|
|
self.assertEquals(nkeys, 0, "Not the correct number of sub keys")
|
|
self.assertEquals(nvalues, len(test_data),
|
|
"Not the correct number of values")
|
|
# Close this key this way...
|
|
# (but before we do, copy the key as an integer - this allows
|
|
# us to test that the key really gets closed).
|
|
int_sub_key = int(sub_key)
|
|
CloseKey(sub_key)
|
|
try:
|
|
QueryInfoKey(int_sub_key)
|
|
self.fail("It appears the CloseKey() function does "
|
|
"not close the actual key!")
|
|
except EnvironmentError:
|
|
pass
|
|
# ... and close that key that way :-)
|
|
int_key = int(key)
|
|
key.Close()
|
|
try:
|
|
QueryInfoKey(int_key)
|
|
self.fail("It appears the key.Close() function "
|
|
"does not close the actual key!")
|
|
except EnvironmentError:
|
|
pass
|
|
|
|
def ReadTestData(self, root_key, subkeystr="sub_key"):
|
|
# Check we can get default value for this key.
|
|
val = QueryValue(root_key, test_key_name)
|
|
self.assertEquals(val, "Default value",
|
|
"Registry didn't give back the correct value")
|
|
|
|
key = OpenKey(root_key, test_key_name)
|
|
# Read the sub-keys
|
|
with OpenKey(key, subkeystr) as sub_key:
|
|
# Check I can enumerate over the values.
|
|
index = 0
|
|
while 1:
|
|
try:
|
|
data = EnumValue(sub_key, index)
|
|
except EnvironmentError:
|
|
break
|
|
self.assertEquals(data in test_data, True,
|
|
"Didn't read back the correct test data")
|
|
index = index + 1
|
|
self.assertEquals(index, len(test_data),
|
|
"Didn't read the correct number of items")
|
|
# Check I can directly access each item
|
|
for value_name, value_data, value_type in test_data:
|
|
read_val, read_typ = QueryValueEx(sub_key, value_name)
|
|
self.assertEquals(read_val, value_data,
|
|
"Could not directly read the value")
|
|
self.assertEquals(read_typ, value_type,
|
|
"Could not directly read the value")
|
|
sub_key.Close()
|
|
# Enumerate our main key.
|
|
read_val = EnumKey(key, 0)
|
|
self.assertEquals(read_val, subkeystr, "Read subkey value wrong")
|
|
try:
|
|
EnumKey(key, 1)
|
|
self.fail("Was able to get a second key when I only have one!")
|
|
except EnvironmentError:
|
|
pass
|
|
|
|
key.Close()
|
|
|
|
def DeleteTestData(self, root_key, subkeystr="sub_key"):
|
|
key = OpenKey(root_key, test_key_name, 0, KEY_ALL_ACCESS)
|
|
sub_key = OpenKey(key, subkeystr, 0, KEY_ALL_ACCESS)
|
|
# It is not necessary to delete the values before deleting
|
|
# the key (although subkeys must not exist). We delete them
|
|
# manually just to prove we can :-)
|
|
for value_name, value_data, value_type in test_data:
|
|
DeleteValue(sub_key, value_name)
|
|
|
|
nkeys, nvalues, since_mod = QueryInfoKey(sub_key)
|
|
self.assertEquals(nkeys, 0, "subkey not empty before delete")
|
|
self.assertEquals(nvalues, 0, "subkey not empty before delete")
|
|
sub_key.Close()
|
|
DeleteKey(key, subkeystr)
|
|
|
|
try:
|
|
# Shouldnt be able to delete it twice!
|
|
DeleteKey(key, subkeystr)
|
|
self.fail("Deleting the key twice succeeded")
|
|
except EnvironmentError:
|
|
pass
|
|
key.Close()
|
|
DeleteKey(root_key, test_key_name)
|
|
# Opening should now fail!
|
|
try:
|
|
key = OpenKey(root_key, test_key_name)
|
|
self.fail("Could open the non-existent key")
|
|
except WindowsError: # Use this error name this time
|
|
pass
|
|
|
|
def TestAll(self, root_key, subkeystr="sub_key"):
|
|
self.WriteTestData(root_key, subkeystr)
|
|
self.ReadTestData(root_key, subkeystr)
|
|
self.DeleteTestData(root_key, subkeystr)
|
|
|
|
def testLocalMachineRegistryWorks(self):
|
|
self.TestAll(HKEY_CURRENT_USER)
|
|
self.TestAll(HKEY_CURRENT_USER, "日本-subkey")
|
|
|
|
def testConnectRegistryToLocalMachineWorks(self):
|
|
# perform minimal ConnectRegistry test which just invokes it
|
|
h = ConnectRegistry(None, HKEY_LOCAL_MACHINE)
|
|
h.Close()
|
|
|
|
def testRemoteMachineRegistryWorks(self):
|
|
if not self.remote_name:
|
|
return # remote machine name not specified
|
|
remote_key = ConnectRegistry(self.remote_name, HKEY_CURRENT_USER)
|
|
self.TestAll(remote_key)
|
|
|
|
def testExpandEnvironmentStrings(self):
|
|
r = ExpandEnvironmentStrings("%windir%\\test")
|
|
self.assertEqual(type(r), str)
|
|
self.assertEqual(r, os.environ["windir"] + "\\test")
|
|
|
|
def test_main():
|
|
support.run_unittest(WinregTests)
|
|
|
|
if __name__ == "__main__":
|
|
try:
|
|
WinregTests.remote_name = sys.argv[sys.argv.index("--remote")+1]
|
|
except (IndexError, ValueError):
|
|
print("Remote registry calls can be tested using",
|
|
"'test_winreg.py --remote \\\\machine_name'")
|
|
WinregTests.remote_name = None
|
|
test_main()
|