Hugh McMaster : reg/tests: Test whether the 'copy' command copies user-defined key classes.

Alexandre Julliard julliard at winehq.org
Tue Jun 1 16:04:34 CDT 2021


Module: wine
Branch: master
Commit: 664f8b638d421540e73b4e046a9aa5e66f8cc4ff
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=664f8b638d421540e73b4e046a9aa5e66f8cc4ff

Author: Hugh McMaster <hugh.mcmaster at outlook.com>
Date:   Tue Jun  1 23:37:27 2021 +1000

reg/tests: Test whether the 'copy' command copies user-defined key classes.

Signed-off-by: Hugh McMaster <hugh.mcmaster at outlook.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 programs/reg/tests/copy.c | 43 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/programs/reg/tests/copy.c b/programs/reg/tests/copy.c
index 70f9496b149..2604d54b639 100644
--- a/programs/reg/tests/copy.c
+++ b/programs/reg/tests/copy.c
@@ -535,6 +535,48 @@ static void test_copy_escaped_null_values(void)
     delete_key(HKEY_CURRENT_USER, KEY_BASE);
 }
 
+static void test_copy_key_class(void)
+{
+    HKEY hkey;
+    LONG rc;
+    char class[] = "class";
+    char buf[16];
+    DWORD buf_size, r;
+
+    rc = RegCreateKeyExA(HKEY_CURRENT_USER, COPY_SRC, 0, class, REG_OPTION_NON_VOLATILE,
+                         KEY_READ|KEY_WRITE, NULL, &hkey, NULL);
+    ok(rc == ERROR_SUCCESS, "RegCreateKeyExA failed: got %d, expected 0\n", rc);
+
+    add_value(hkey, "String", REG_SZ, "Data", 5);
+
+    buf_size = sizeof(buf);
+
+    rc = RegQueryInfoKeyA(hkey, buf, &buf_size, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+    ok(rc == ERROR_SUCCESS, "RegQueryInfoKeyA failed: got %d, expected 0\n", rc);
+    ok(!strcmp(buf, "class"), "Incorrect key class set; got '%s', expected '%s'\n", buf, class);
+
+    RegCloseKey(hkey);
+
+    run_reg_exe("reg copy HKCU\\" COPY_SRC " HKCU\\" KEY_BASE " /f", &r);
+    ok(r == REG_EXIT_SUCCESS, "got exit code %d, expected 0\n", r);
+    verify_key(HKEY_CURRENT_USER, KEY_BASE);
+
+    open_key(HKEY_CURRENT_USER, KEY_BASE, 0, &hkey);
+    verify_reg(hkey, "String", REG_SZ, "Data", 5, 0);
+
+    memset(buf, 0, sizeof(buf));
+    buf_size = sizeof(buf);
+
+    rc = RegQueryInfoKeyA(hkey, buf, &buf_size, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
+    ok(rc == ERROR_SUCCESS, "RegQueryInfoKeyA failed: got %d, expected 0\n", rc);
+    ok(strlen(buf) == 0, "Key class should not exist\n");
+
+    RegCloseKey(hkey);
+
+    delete_key(HKEY_CURRENT_USER, COPY_SRC);
+    delete_key(HKEY_CURRENT_USER, KEY_BASE);
+}
+
 START_TEST(copy)
 {
     DWORD r;
@@ -554,4 +596,5 @@ START_TEST(copy)
     test_copy_embedded_null_values();
     test_copy_slashes();
     test_copy_escaped_null_values();
+    test_copy_key_class();
 }




More information about the wine-cvs mailing list