mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
99b62ed313
Make the tests actually succeed under Windows Server 2003. svn path=/branches/colins-printing-for-freedom/; revision=67884
42 lines
1.5 KiB
C
42 lines
1.5 KiB
C
/*
|
|
* PROJECT: ReactOS Print Spooler DLL API Tests
|
|
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation
|
|
* PURPOSE: Tests for StartDocPrinterA/StartDocPrinterW
|
|
* COPYRIGHT: Copyright 2015 Colin Finck <colin@reactos.org>
|
|
*/
|
|
|
|
#include <apitest.h>
|
|
|
|
#define WIN32_NO_STATUS
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <wingdi.h>
|
|
#include <winspool.h>
|
|
|
|
START_TEST(StartDocPrinter)
|
|
{
|
|
DWORD dwResult;
|
|
DOCINFOW docInfo = { 0 };
|
|
|
|
SetLastError(0xDEADBEEF);
|
|
dwResult = StartDocPrinterW(NULL, 0, NULL);
|
|
ok(dwResult == 0, "StartDocPrinterW returns %lu!\n", dwResult);
|
|
ok(GetLastError() == ERROR_INVALID_HANDLE, "StartDocPrinter returns error %lu!\n", GetLastError());
|
|
|
|
SetLastError(0xDEADBEEF);
|
|
dwResult = StartDocPrinterW(NULL, 1, NULL);
|
|
ok(dwResult == 0, "StartDocPrinterW returns %lu!\n", dwResult);
|
|
ok(GetLastError() == ERROR_INVALID_HANDLE, "StartDocPrinter returns error %lu!\n", GetLastError());
|
|
|
|
SetLastError(0xDEADBEEF);
|
|
dwResult = StartDocPrinterW(NULL, 0, (LPBYTE)&docInfo);
|
|
ok(dwResult == 0, "StartDocPrinterW returns %lu!\n", dwResult);
|
|
ok(GetLastError() == ERROR_INVALID_HANDLE, "StartDocPrinter returns error %lu!\n", GetLastError());
|
|
|
|
SetLastError(0xDEADBEEF);
|
|
dwResult = StartDocPrinterW(NULL, 1, (LPBYTE)&docInfo);
|
|
ok(dwResult == 0, "StartDocPrinterW returns %lu!\n", dwResult);
|
|
ok(GetLastError() == ERROR_INVALID_HANDLE, "StartDocPrinter returns error %lu!\n", GetLastError());
|
|
|
|
/// ERROR_INVALID_LEVEL with correct handle but invalid Level
|
|
}
|