ReactOS 0.4.16-dev-942-g91fadeb
main.cpp File Reference
#include "precomp.h"
#include <cstdio>
#include <ndk/setypes.h>
#include <ndk/exfuncs.h>
Include dependency graph for main.cpp:

Go to the source code of this file.

Functions

static void IntPrintUsage ()
 
static VOID SetNtGlobalFlags ()
 
int wmain (int argc, wchar_t *argv[])
 

Variables

WCHAR TestName [MAX_PATH]
 
CConfiguration Configuration
 

Function Documentation

◆ IntPrintUsage()

static void IntPrintUsage ( )
static

Prints the application usage.

Definition at line 21 of file main.cpp.

22{
23 cout << "rosautotest - ReactOS Automatic Testing Utility" << endl
24 << "Usage: rosautotest [options] [module] [test]" << endl
25 << " options:" << endl
26 << " /? - Shows this help." << endl
27 << " /c <comment> - Specifies the comment to be submitted to the Web Service." << endl
28 << " Skips the comment set in the configuration file (if any)." << endl
29 << " Only has an effect when /w is also used." << endl
30 << " /n - Do not print test output to console" << endl
31 << " /r - Maintain information to resume from ReactOS crashes" << endl
32 << " Can only be run under ReactOS and relies on sysreg2," << endl
33 << " so incompatible with /w" << endl
34 << " /s - Shut down the system after finishing the tests." << endl
35 << " /t <num> - Repeat the test <num> times (1-10000)" << endl
36 << " /w - Submit the results to the webservice." << endl
37 << " Requires a \"rosautotest.ini\" with valid login data." << endl
38 << " Incompatible with the /r option." << endl
39 << " /l - List all modules that would run." << endl
40 << endl
41 << " module:" << endl
42 << " The module to be tested (i.e. \"advapi32\")" << endl
43 << " If this parameter is specified without any test parameter," << endl
44 << " all tests of the specified module are run." << endl
45 << endl
46 << " test:" << endl
47 << " The test to be run. Needs to be a test of the specified module." << endl;
48}
basic_ostream< _CharT, _Traits > &_STLP_CALL endl(basic_ostream< _CharT, _Traits > &__os)
Definition: _ostream.h:357
#define cout
Definition: iostream.cpp:38

Referenced by wmain().

◆ SetNtGlobalFlags()

static VOID SetNtGlobalFlags ( )
static

Definition at line 52 of file main.cpp.

53{
54 ULONG NtGlobalFlags = 0;
55 BOOLEAN PrivilegeEnabled;
57
58 /* Enable SeDebugPrivilege */
60 if (!NT_SUCCESS(Status))
61 {
62 DbgPrint("Failed to enable SeDebugPrivilege: 0x%08lx\n", Status);
63 return;
64 }
65
66 /* Get current NtGlobalFlags */
67 Status = NtQuerySystemInformation(SystemFlagsInformation, &NtGlobalFlags, sizeof(NtGlobalFlags), NULL);
68 if (!NT_SUCCESS(Status))
69 {
70 DbgPrint("Failed to get NtGlobalFlags: 0x%08lx\n", Status);
71 return;
72 }
73
74 /* Disable debug prompts */
75 NtGlobalFlags |= FLG_DISABLE_DEBUG_PROMPTS;
76
77 /* Set new NtGlobalFlags */
78 Status = NtSetSystemInformation(SystemFlagsInformation, &NtGlobalFlags, sizeof(NtGlobalFlags));
79 if (!NT_SUCCESS(Status))
80 {
81 DbgPrint("Failed to set NtGlobalFlags: 0x%08lx\n", Status);
82 }
83}
NTSYSAPI NTSTATUS NTAPI NtSetSystemInformation(IN INT SystemInformationClass, IN PVOID SystemInformation, IN ULONG SystemInformationLength)
unsigned char BOOLEAN
LONG NTSTATUS
Definition: precomp.h:26
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
#define NT_SUCCESS(StatCode)
Definition: apphelp.c:33
@ SystemFlagsInformation
Definition: ntddk_ex.h:20
Status
Definition: gdiplustypes.h:25
#define DbgPrint
Definition: hal.h:12
#define FLG_DISABLE_DEBUG_PROMPTS
Definition: pstypes.h:86
#define SE_DEBUG_PRIVILEGE
Definition: security.c:674
NTSYSAPI NTSTATUS NTAPI RtlAdjustPrivilege(_In_ ULONG Privilege, _In_ BOOLEAN NewValue, _In_ BOOLEAN ForThread, _Out_ PBOOLEAN OldValue)
NTSYSAPI NTSTATUS NTAPI NtQuerySystemInformation(IN SYSTEM_INFORMATION_CLASS SystemInfoClass, OUT PVOID SystemInfoBuffer, IN ULONG SystemInfoBufferSize, OUT PULONG BytesReturned OPTIONAL)
uint32_t ULONG
Definition: typedefs.h:59

Referenced by wmain().

◆ wmain()

int wmain ( int  argc,
wchar_t argv[] 
)

Main entry point

Definition at line 89 of file main.cpp.

90{
91 int ReturnValue = 1;
92 DWORD TestStartTime, TestEndTime;
93
95// printf("Full TestName is '%S'\n", TestName);
96 WCHAR* Name = wcsrchr(TestName, '\\');
97 if (Name)
98 memmove(TestName, Name + 1, (wcslen(Name + 1) + 1) * sizeof(WCHAR));
99// printf("Short TestName is '%S'.\n", TestName);
100
102
103 try
104 {
106
107 /* Set up the configuration */
108 Configuration.ParseParameters(argc, argv);
109 Configuration.GetSystemInformation();
110 Configuration.GetConfigurationFromFile();
111
113 ss << endl
114 << endl
115 << "[ROSAUTOTEST] System uptime " << setprecision(2) << fixed;
116 ss << ((float)GetTickCount()/1000) << " seconds" << endl;
117 StringOut(ss.str());
118
119 /* Report tests startup */
120 InitLogs();
123 0,
124 MSG_TESTS_STARTED,
125 NULL,
126 0,
127 0,
128 NULL,
129 NULL);
130
131 if (Configuration.GetRepeatCount() > 1)
132 {
133 stringstream ss1;
134
135 ss1 << "[ROSAUTOTEST] The test will be repeated " << Configuration.GetRepeatCount() << " times" << endl;
136 StringOut(ss1.str());
137 }
138
139 /* Run the tests */
140 for (unsigned long i = 0; i < Configuration.GetRepeatCount(); i++)
141 {
142 CWineTest WineTest;
143
144 if (Configuration.GetRepeatCount() > 1)
145 {
147 ss << "[ROSAUTOTEST] Running attempt #" << i+1 << endl;
148 StringOut(ss.str());
149 }
150 WineTest.Run();
151 }
152
153 /* Clear the stringstream */
154 ss.str("");
155 ss.clear();
156
157 /* Show the beginning time again */
158 ss << "[ROSAUTOTEST] System uptime at start was " << setprecision(2) << fixed;
159 ss << ((float)TestStartTime / 1000) << " seconds" << endl;
160
161 /* Show the time now so that we can see how long the tests took */
162 TestEndTime = GetTickCount();
163 ss << endl
164 << "[ROSAUTOTEST] System uptime at end was " << setprecision(2) << fixed;
165 ss << ((float)TestEndTime / 1000) << " seconds" << endl;
166 ss << "[ROSAUTOTEST] Duration was " << (((float)TestEndTime - (float)TestStartTime) / 1000) / 60;
167 ss << " minutes" << endl;
168 StringOut(ss.str());
169
170 /* For sysreg2 */
171 DbgPrint("SYSREG_CHECKPOINT:THIRDBOOT_COMPLETE\n");
172
173 ReturnValue = 0;
174 }
176 {
178 }
179 catch(CSimpleException& e)
180 {
182
183 // e.GetMessage() must include ending '\n'.
184 ss << "[ROSAUTOTEST] " << e.GetMessage();
185 StringOut(ss.str());
186 }
187 catch(CFatalException& e)
188 {
190
191 // e.GetMessage() must include ending '\n'.
192 ss << "An exception occured in rosautotest." << endl
193 << "Message: " << e.GetMessage()
194 << "File: " << e.GetFile() << endl
195 << "Line: " << e.GetLine() << endl
196 << "Last Win32 Error: " << GetLastError() << endl;
197 StringOut(ss.str());
198 }
199
200 /* For sysreg2 to notice if rosautotest itself failed */
201 if(ReturnValue == 1)
202 DbgPrint("SYSREG_ROSAUTOTEST_FAILURE\n");
203
204 /* Report successful end of tests */
207 0,
208 MSG_TESTS_SUCCESSFUL,
209 NULL,
210 0,
211 0,
212 NULL,
213 NULL);
214 FreeLogs();
215
216 /* Shut down the system if requested, also in case of an exception above */
217 if(Configuration.DoShutdown() && !ShutdownSystem())
218 ReturnValue = 1;
219
220 return ReturnValue;
221}
static LARGE_INTEGER TestStartTime
static int argc
Definition: ServiceArgs.c:12
_STLP_PRIV _Ios_Manip_1< streamsize > _STLP_CALL setprecision(int __n)
Definition: _iomanip.h:119
UINT32 void void ** ReturnValue
Definition: acevents.h:216
VOID InitLogs()
Definition: misc.cpp:272
VOID FreeLogs()
Definition: misc.cpp:310
static HANDLE hLog
Definition: misc.cpp:13
void Run()
Definition: CWineTest.cpp:397
_String str() const
Definition: _sstream.h:230
BOOL WINAPI ReportEventW(IN HANDLE hEventLog, IN WORD wType, IN WORD wCategory, IN DWORD dwEventID, IN PSID lpUserSid, IN WORD wNumStrings, IN DWORD dwDataSize, IN LPCWSTR *lpStrings, IN LPVOID lpRawData)
Definition: eventlog.c:1516
#define wcsrchr
Definition: compat.h:16
DWORD WINAPI GetModuleFileNameW(HINSTANCE hModule, LPWSTR lpFilename, DWORD nSize)
Definition: loader.c:600
DWORD WINAPI GetTickCount(VOID)
Definition: time.c:455
unsigned long DWORD
Definition: ntddk_ex.h:95
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
#define ss
Definition: i386-dis.c:441
_CRTIMP size_t __cdecl wcslen(_In_z_ const wchar_t *_Str)
#define e
Definition: ke_i.h:82
#define memmove(s1, s2, n)
Definition: mkisofs.h:881
static void IntPrintUsage()
Definition: main.cpp:21
WCHAR TestName[MAX_PATH]
Definition: main.cpp:13
static VOID SetNtGlobalFlags()
Definition: main.cpp:52
string StringOut(const string &String, bool forcePrint=true)
Definition: tools.cpp:96
bool ShutdownSystem()
Definition: shutdown.cpp:16
static float(__cdecl *square_half_float)(float x
#define argv
Definition: mplay32.c:18
#define _countof(array)
Definition: sndvol32.h:70
_Must_inspect_result_ _In_ WDFDEVICE _In_ PWDF_INTERRUPT_CONFIG Configuration
Definition: wdfinterrupt.h:374
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
#define EVENTLOG_INFORMATION_TYPE
Definition: winnt_old.h:2871
#define EVENTLOG_SUCCESS
Definition: winnt_old.h:2868
__wchar_t WCHAR
Definition: xmlstorage.h:180

Variable Documentation

◆ Configuration

Definition at line 15 of file main.cpp.

◆ TestName