ReactOS 0.4.15-dev-7953-g1f49173
process.c
Go to the documentation of this file.
1/*
2 * Unit test suite for process functions
3 *
4 * Copyright 2017 Michael Müller
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
21#include <stdio.h>
22
23#include "ntdll_test.h"
24
25#include "windef.h"
26#include "winbase.h"
27
28static NTSTATUS (WINAPI *pNtResumeProcess)(HANDLE);
29static NTSTATUS (WINAPI *pNtSuspendProcess)(HANDLE);
30static NTSTATUS (WINAPI *pNtSuspendThread)(HANDLE,PULONG);
31static NTSTATUS (WINAPI *pNtResumeThread)(HANDLE);
32
33static void test_NtSuspendProcess(char *process_name)
34{
36 DEBUG_EVENT ev;
40 char buffer[MAX_PATH];
42 DWORD ret;
43
44 status = pNtResumeProcess(GetCurrentProcess());
45 ok(status == STATUS_SUCCESS, "NtResumeProcess failed: %x\n", status);
46
47 event = CreateEventA(NULL, TRUE, FALSE, "wine_suspend_event");
48 ok(!!event, "Failed to create event: %u\n", GetLastError());
49
50 memset(&startup, 0, sizeof(startup));
51 startup.cb = sizeof(startup);
52
53 sprintf(buffer, "%s tests/process.c dummy_process wine_suspend_event", process_name);
55 ok(ret, "CreateProcess failed with error %u\n", GetLastError());
56
58 ok(ret == WAIT_OBJECT_0, "Event was not signaled: %d\n", ret);
59
60 status = pNtSuspendProcess(info.hProcess);
61 ok(status == STATUS_SUCCESS, "NtResumeProcess failed: %x\n", status);
62
64
66 ok(ret == WAIT_TIMEOUT, "Expected timeout, got: %d\n", ret);
67
68 status = NtResumeThread(info.hThread, &count);
69 ok(status == STATUS_SUCCESS, "NtResumeProcess failed: %x\n", status);
70 ok(count == 1, "Expected count 1, got %d\n", count);
71
73 ok(ret == WAIT_OBJECT_0, "Event was not signaled: %d\n", ret);
74
75 status = pNtResumeProcess(info.hProcess);
76 ok(status == STATUS_SUCCESS, "NtResumeProcess failed: %x\n", status);
77
78 status = pNtSuspendThread(info.hThread, &count);
79 ok(status == STATUS_SUCCESS, "NtSuspendThread failed: %x\n", status);
80 ok(count == 0, "Expected count 0, got %d\n", count);
81
83
85 ok(ret == WAIT_TIMEOUT, "Expected timeout, got: %d\n", ret);
86
87 status = pNtResumeProcess(info.hProcess);
88 ok(status == STATUS_SUCCESS, "NtResumeProcess failed: %x\n", status);
89
91 ok(ret == WAIT_OBJECT_0, "Event was not signaled: %d\n", ret);
92
93 status = pNtSuspendThread(info.hThread, &count);
94 ok(status == STATUS_SUCCESS, "NtSuspendThread failed: %x\n", status);
95 ok(count == 0, "Expected count 0, got %d\n", count);
96
97 status = pNtSuspendThread(info.hThread, &count);
98 ok(status == STATUS_SUCCESS, "NtSuspendThread failed: %x\n", status);
99 ok(count == 1, "Expected count 1, got %d\n", count);
100
102
104 ok(ret == WAIT_TIMEOUT, "Expected timeout, got: %d\n", ret);
105
106 status = pNtResumeProcess(info.hProcess);
107 ok(status == STATUS_SUCCESS, "NtResumeProcess failed: %x\n", status);
108
110 ok(ret == WAIT_TIMEOUT, "Expected timeout, got: %d\n", ret);
111
112 status = pNtResumeProcess(info.hProcess);
113 ok(status == STATUS_SUCCESS, "NtResumeProcess failed: %x\n", status);
114
116 ok(ret == WAIT_OBJECT_0, "Event was not signaled: %d\n", ret);
117
118 ret = DebugActiveProcess(info.dwProcessId);
119 ok(ret, "Failed to debug process: %d\n", GetLastError());
120
122
124 ok(ret == WAIT_TIMEOUT, "Expected timeout, got: %d\n", ret);
125
127 for (;;)
128 {
130 ok(ret, "WaitForDebugEvent failed, last error %#x.\n", GetLastError());
131 if (!ret) break;
132
134
136 ok(ret, "ContinueDebugEvent failed, last error %#x.\n", GetLastError());
137 if (!ret) break;
138 }
139
141
143 ok(ret == WAIT_TIMEOUT, "Expected timeout, got: %d\n", ret);
144
145 status = pNtResumeProcess(info.hProcess);
146 ok(status == STATUS_SUCCESS, "NtResumeProcess failed: %x\n", status);
147
149 ok(ret == WAIT_TIMEOUT, "Expected timeout, got: %d\n", ret);
150
151 status = NtResumeThread(info.hThread, &count);
152 ok(status == STATUS_SUCCESS, "NtResumeProcess failed: %x\n", status);
153 ok(count == 0, "Expected count 0, got %d\n", count);
154
156 ok(ret == WAIT_TIMEOUT, "Expected timeout, got: %d\n", ret);
157
159 ok(ret, "ContinueDebugEvent failed, last error %#x.\n", GetLastError());
160
163 ok(ret == WAIT_OBJECT_0, "Event was not signaled: %d\n", ret);
164
165 TerminateProcess(info.hProcess, 0);
166
167 CloseHandle(info.hProcess);
168 CloseHandle(info.hThread);
169}
170
171static void dummy_process(char *event_name)
172{
173 HANDLE event = OpenEventA(EVENT_ALL_ACCESS, FALSE, event_name);
174
175 while (TRUE)
176 {
178 OutputDebugStringA("test");
179 Sleep(5);
180 }
181}
182
184{
185 HMODULE mod;
186 char **argv;
187 int argc;
188
190 if (argc >= 4 && strcmp(argv[2], "dummy_process") == 0)
191 {
193 return;
194 }
195
196 mod = GetModuleHandleA("ntdll.dll");
197 if (!mod)
198 {
199 win_skip("Not running on NT, skipping tests\n");
200 return;
201 }
202
203 pNtResumeProcess = (void*)GetProcAddress(mod, "NtResumeProcess");
204 pNtSuspendProcess = (void*)GetProcAddress(mod, "NtSuspendProcess");
205 pNtResumeThread = (void*)GetProcAddress(mod, "NtResumeThread");
206 pNtSuspendThread = (void*)GetProcAddress(mod, "NtSuspendThread");
207
209}
static int argc
Definition: ServiceArgs.c:12
int strcmp(const char *String1, const char *String2)
Definition: utclib.c:469
static void startup(void)
#define ok(value,...)
Definition: atltest.h:57
#define START_TEST(x)
Definition: atltest.h:75
LONG NTSTATUS
Definition: precomp.h:26
#define WAIT_TIMEOUT
Definition: dderror.h:14
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define NTSTATUS
Definition: precomp.h:21
#define CloseHandle
Definition: compat.h:739
#define GetProcAddress(x, y)
Definition: compat.h:753
#define GetCurrentProcess()
Definition: compat.h:759
#define MAX_PATH
Definition: compat.h:34
BOOL WINAPI ContinueDebugEvent(IN DWORD dwProcessId, IN DWORD dwThreadId, IN DWORD dwContinueStatus)
Definition: debugger.c:413
BOOL WINAPI DebugActiveProcess(IN DWORD dwProcessId)
Definition: debugger.c:445
BOOL WINAPI WaitForDebugEvent(IN LPDEBUG_EVENT lpDebugEvent, IN DWORD dwMilliseconds)
Definition: debugger.c:590
HMODULE WINAPI DECLSPEC_HOTPATCH GetModuleHandleA(LPCSTR lpModuleName)
Definition: loader.c:812
BOOL WINAPI DECLSPEC_HOTPATCH CreateProcessA(LPCSTR lpApplicationName, LPSTR lpCommandLine, LPSECURITY_ATTRIBUTES lpProcessAttributes, LPSECURITY_ATTRIBUTES lpThreadAttributes, BOOL bInheritHandles, DWORD dwCreationFlags, LPVOID lpEnvironment, LPCSTR lpCurrentDirectory, LPSTARTUPINFOA lpStartupInfo, LPPROCESS_INFORMATION lpProcessInformation)
Definition: proc.c:4741
BOOL WINAPI TerminateProcess(IN HANDLE hProcess, IN UINT uExitCode)
Definition: proc.c:1532
#define INFINITE
Definition: serial.h:102
unsigned long DWORD
Definition: ntddk_ex.h:95
GLuint GLuint GLsizei count
Definition: gl.h:1545
struct _cl_event * event
Definition: glext.h:7739
GLuint buffer
Definition: glext.h:5915
static int mod
Definition: i386-dis.c:1288
void WINAPI SHIM_OBJ_NAME() OutputDebugStringA(LPCSTR lpOutputString)
Definition: ignoredbgout.c:18
#define EVENT_ALL_ACCESS
Definition: isotest.c:82
#define sprintf(buf, format,...)
Definition: sprintf.c:55
static JOBOBJECTINFOCLASS LPVOID info
Definition: process.c:79
static PULONG
Definition: process.c:83
static void test_NtSuspendProcess(char *process_name)
Definition: process.c:33
static void dummy_process(char *event_name)
Definition: process.c:171
#define argv
Definition: mplay32.c:18
NTSTATUS NTAPI NtResumeThread(IN HANDLE ThreadHandle, OUT PULONG SuspendCount OPTIONAL)
Definition: state.c:290
#define DBG_CONTINUE
Definition: ntstatus.h:47
#define ros_skip_flaky
Definition: test.h:177
#define win_skip
Definition: test.h:160
int winetest_get_mainargs(char ***pargv)
#define disable_success_count
Definition: test.h:181
#define memset(x, y, z)
Definition: compat.h:39
#define STATUS_SUCCESS
Definition: shellext.h:65
DWORD dwDebugEventCode
Definition: winbase.h:788
DWORD dwThreadId
Definition: winbase.h:790
DWORD dwProcessId
Definition: winbase.h:789
Definition: ps.c:97
DWORD WINAPI WaitForSingleObject(IN HANDLE hHandle, IN DWORD dwMilliseconds)
Definition: synch.c:82
VOID WINAPI DECLSPEC_HOTPATCH Sleep(IN DWORD dwMilliseconds)
Definition: synch.c:790
HANDLE WINAPI DECLSPEC_HOTPATCH CreateEventA(IN LPSECURITY_ATTRIBUTES lpEventAttributes OPTIONAL, IN BOOL bManualReset, IN BOOL bInitialState, IN LPCSTR lpName OPTIONAL)
Definition: synch.c:637
BOOL WINAPI DECLSPEC_HOTPATCH SetEvent(IN HANDLE hEvent)
Definition: synch.c:733
HANDLE WINAPI DECLSPEC_HOTPATCH OpenEventA(IN DWORD dwDesiredAccess, IN BOOL bInheritHandle, IN LPCSTR lpName)
Definition: synch.c:669
BOOL WINAPI DECLSPEC_HOTPATCH ResetEvent(IN HANDLE hEvent)
Definition: synch.c:714
PVOID HANDLE
Definition: typedefs.h:73
uint32_t ULONG
Definition: typedefs.h:59
int ret
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
#define OUTPUT_DEBUG_STRING_EVENT
Definition: winbase.h:109
#define WAIT_OBJECT_0
Definition: winbase.h:406
#define WINAPI
Definition: msvc.h:6