shell32: RunFileDlg: make the error messages easier to understand for the user.
[wine] / dlls / secur32 / tests / secur32.c
1 /*
2  * tests
3  *
4  * Copyright 2006 Robert Reif
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20 #include <stdio.h>
21 #include <stdarg.h>
22 #include <windef.h>
23 #include <winbase.h>
24 #include <winnls.h>
25 #define SECURITY_WIN32
26 #include <security.h>
27 #include <schannel.h>
28
29 #include "wine/test.h"
30
31 static HMODULE secdll;
32
33 static BOOLEAN (WINAPI * pGetComputerObjectNameA)(EXTENDED_NAME_FORMAT NameFormat, LPSTR lpNameBuffer, PULONG lpnSize);
34 static BOOLEAN (WINAPI * pGetComputerObjectNameW)(EXTENDED_NAME_FORMAT NameFormat, LPWSTR lpNameBuffer, PULONG lpnSize);
35 static PSecurityFunctionTableA (SEC_ENTRY * pInitSecurityInterfaceA)(void);
36 static PSecurityFunctionTableW (SEC_ENTRY * pInitSecurityInterfaceW)(void);
37
38 static EXTENDED_NAME_FORMAT formats[] = {
39     NameUnknown, NameFullyQualifiedDN, NameSamCompatible, NameDisplay,
40     NameUniqueId, NameCanonical, NameUserPrincipal, NameCanonicalEx,
41     NameServicePrincipal, NameDnsDomain
42 };
43
44 static void testGetComputerObjectNameA(void)
45 {
46     char name[256];
47     ULONG size;
48     BOOLEAN rc;
49     int i;
50
51     for (i = 0; i < (sizeof(formats) / sizeof(formats[0])); i++) {
52         size = sizeof(name);
53         ZeroMemory(name, sizeof(name));
54         rc = pGetComputerObjectNameA(formats[i], name, &size);
55         ok(rc || ((formats[i] == NameUnknown) &&
56            (GetLastError() == ERROR_INVALID_PARAMETER)) ||
57            (GetLastError() == ERROR_CANT_ACCESS_DOMAIN_INFO) ||
58            (GetLastError() == ERROR_NO_SUCH_DOMAIN),
59            "GetComputerObjectNameA(%d) failed: %d\n",
60            formats[i], GetLastError());
61         if (rc)
62             trace("GetComputerObjectNameA() returned %s\n", name);
63     }
64 }
65
66 static void testGetComputerObjectNameW(void)
67 {
68     WCHAR nameW[256];
69     ULONG size;
70     BOOLEAN rc;
71     int i;
72
73     for (i = 0; i < (sizeof(formats) / sizeof(formats[0])); i++) {
74         size = sizeof(nameW)/sizeof(nameW[0]);
75         ZeroMemory(nameW, sizeof(nameW));
76         rc = pGetComputerObjectNameW(formats[i], nameW, &size);
77         ok(rc || ((formats[i] == NameUnknown) &&
78            (GetLastError() == ERROR_INVALID_PARAMETER)) ||
79            (GetLastError() == ERROR_CANT_ACCESS_DOMAIN_INFO) ||
80            (GetLastError() == ERROR_NO_SUCH_DOMAIN),
81            "GetComputerObjectNameW(%d) failed: %d\n",
82            formats[i], GetLastError());
83         if (rc) {
84             char name[256];
85             WideCharToMultiByte( CP_ACP, 0, nameW, -1, name, sizeof(name), NULL, NULL );
86             trace("GetComputerObjectNameW() returned %s\n", name);
87         }
88     }
89 }
90
91 static void test_InitSecurityInterface(void)
92 {
93     PSecurityFunctionTableA sftA;
94     PSecurityFunctionTableW sftW;
95
96     sftA = pInitSecurityInterfaceA();
97     ok(sftA != NULL, "pInitSecurityInterfaceA failed\n");
98     ok(sftA->dwVersion == SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION, "wrong dwVersion %ld in security function table\n", sftA->dwVersion);
99     ok(!sftA->Reserved2, "Reserved2 should be NULL instead of %p in security function table\n", sftA->Reserved2);
100     todo_wine
101     ok(sftA->Reserved3 != NULL, "Reserved3 should not be NULL in security function table\n");
102     todo_wine
103     ok(sftA->Reserved4 != NULL, "Reserved4 should not be NULL in security function table\n");
104
105     if (!pInitSecurityInterfaceW)
106     {
107         skip("InitSecurityInterfaceW not exported by secur32.dll\n");
108         return;
109     }
110
111     sftW = pInitSecurityInterfaceW();
112     ok(sftW != NULL, "pInitSecurityInterfaceW failed\n");
113     ok(sftW->dwVersion == SECURITY_SUPPORT_PROVIDER_INTERFACE_VERSION, "wrong dwVersion %ld in security function table\n", sftW->dwVersion);
114     ok(!sftW->Reserved2, "Reserved2 should be NULL instead of %p in security function table\n", sftW->Reserved2);
115     todo_wine
116     ok(sftW->Reserved3 != NULL, "Reserved3 should note be NULL in security function table\n");
117     todo_wine
118     ok(sftW->Reserved4 != NULL, "Reserved4 should not be NULL in security function table\n");
119 }
120
121 START_TEST(secur32)
122 {
123     secdll = LoadLibraryA("secur32.dll");
124
125     if (!secdll)
126         secdll = LoadLibraryA("security.dll");
127
128     if (secdll)
129     {
130         pGetComputerObjectNameA = (PVOID)GetProcAddress(secdll, "GetComputerObjectNameA");
131         pGetComputerObjectNameW = (PVOID)GetProcAddress(secdll, "GetComputerObjectNameW");
132         pInitSecurityInterfaceA = (PVOID)GetProcAddress(secdll, "InitSecurityInterfaceA");
133         pInitSecurityInterfaceW = (PVOID)GetProcAddress(secdll, "InitSecurityInterfaceW");
134  
135         if (pGetComputerObjectNameA)
136             testGetComputerObjectNameA();
137
138         if (pGetComputerObjectNameW)
139             testGetComputerObjectNameW();
140
141         test_InitSecurityInterface();
142
143         FreeLibrary(secdll);
144     }
145 }