d3d9/tests: Use a separate device for test_compare_instructions().
[wine.git] / dlls / wtsapi32 / tests / wtsapi.c
blobe8dced749e79168002c5370d3c9c55f827f61b3c
1 /*
2 * Copyright 2014 Stefan Leichter
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #include <stdarg.h>
20 #include <stdlib.h>
21 #include <windef.h>
22 #include <winbase.h>
23 #include <winternl.h>
24 #include <wtsapi32.h>
26 #include "wine/test.h"
28 static void test_WTSEnumerateProcessesW(void)
30 BOOL found = FALSE, ret;
31 DWORD count, i;
32 PWTS_PROCESS_INFOW info;
33 WCHAR *pname, nameW[MAX_PATH];
35 GetModuleFileNameW(NULL, nameW, MAX_PATH);
36 for (pname = nameW + lstrlenW(nameW); pname > nameW; pname--)
38 if(*pname == '/' || *pname == '\\')
40 pname++;
41 break;
45 info = NULL;
46 SetLastError(0xdeadbeef);
47 ret = WTSEnumerateProcessesW(WTS_CURRENT_SERVER_HANDLE, 1, 1, &info, &count);
48 ok(!ret, "expected WTSEnumerateProcessesW to fail\n");
49 ok(GetLastError()== ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER got: %d\n", GetLastError());
50 if (info) WTSFreeMemory(info);
52 info = NULL;
53 SetLastError(0xdeadbeef);
54 ret = WTSEnumerateProcessesW(WTS_CURRENT_SERVER_HANDLE, 0, 0, &info, &count);
55 ok(!ret, "expected WTSEnumerateProcessesW to fail\n");
56 ok(GetLastError()== ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER got: %d\n", GetLastError());
57 if (info) WTSFreeMemory(info);
59 info = NULL;
60 SetLastError(0xdeadbeef);
61 ret = WTSEnumerateProcessesW(WTS_CURRENT_SERVER_HANDLE, 0, 2, &info, &count);
62 ok(!ret, "expected WTSEnumerateProcessesW to fail\n");
63 ok(GetLastError()== ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER got: %d\n", GetLastError());
64 if (info) WTSFreeMemory(info);
66 SetLastError(0xdeadbeef);
67 ret = WTSEnumerateProcessesW(WTS_CURRENT_SERVER_HANDLE, 0, 1, NULL, &count);
68 ok(!ret, "expected WTSEnumerateProcessesW to fail\n");
69 ok(GetLastError()== ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER got: %d\n", GetLastError());
71 info = NULL;
72 SetLastError(0xdeadbeef);
73 ret = WTSEnumerateProcessesW(WTS_CURRENT_SERVER_HANDLE, 0, 1, &info, NULL);
74 ok(!ret, "expected WTSEnumerateProcessesW to fail\n");
75 ok(GetLastError()== ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER got: %d\n", GetLastError());
76 if (info) WTSFreeMemory(info);
78 count = 0;
79 info = NULL;
80 SetLastError(0xdeadbeef);
81 ret = WTSEnumerateProcessesW(WTS_CURRENT_SERVER_HANDLE, 0, 1, &info, &count);
82 ok(ret || broken(!ret), /* fails on Win2K with error ERROR_APP_WRONG_OS */
83 "expected WTSEnumerateProcessesW to succeed; failed with %d\n", GetLastError());
84 for(i = 0; ret && i < count; i++)
86 found = found || !lstrcmpW(pname, info[i].pProcessName);
88 todo_wine
89 ok(found || broken(!ret), "process name %s not found\n", wine_dbgstr_w(pname));
90 if (info) WTSFreeMemory(info);
93 START_TEST (wtsapi)
95 test_WTSEnumerateProcessesW();