mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
66397a3a3f
- fix a test name - comment out more tests for EngReleaseSemaphore, they cause heap corruption on ros - convert more TEST -> RTEST svn path=/trunk/; revision=33994
74 lines
2.1 KiB
C
74 lines
2.1 KiB
C
|
|
INT
|
|
Test_AddFontResourceA(PTESTINFO pti)
|
|
{
|
|
CHAR szFileNameA[MAX_PATH];
|
|
CHAR szFileNameFont1A[MAX_PATH];
|
|
CHAR szFileNameFont2A[MAX_PATH];
|
|
|
|
GetCurrentDirectoryA(MAX_PATH,szFileNameA);
|
|
|
|
memcpy(szFileNameFont1A,szFileNameA,MAX_PATH );
|
|
strcat(szFileNameFont1A, "\\testdata\\test.ttf");
|
|
|
|
memcpy(szFileNameFont2A,szFileNameA,MAX_PATH );
|
|
strcat(szFileNameFont2A, "\\testdata\\test.otf");
|
|
|
|
RtlZeroMemory(szFileNameA,MAX_PATH);
|
|
|
|
/*
|
|
* Start testing Ansi version
|
|
*
|
|
*/
|
|
|
|
/* Testing NULL pointer */
|
|
SetLastError(ERROR_SUCCESS);
|
|
RTEST(AddFontResourceA(NULL) == 0);
|
|
RTEST(GetLastError() == ERROR_SUCCESS);
|
|
|
|
/* Testing -1 pointer */
|
|
SetLastError(ERROR_SUCCESS);
|
|
RTEST(AddFontResourceA((CHAR*)-1) == 0);
|
|
RTEST(GetLastError() == ERROR_SUCCESS);
|
|
|
|
/* Testing address 1 pointer */
|
|
SetLastError(ERROR_SUCCESS);
|
|
RTEST(AddFontResourceA((CHAR*)1) == 0);
|
|
RTEST(GetLastError() == ERROR_SUCCESS);
|
|
|
|
/* Testing address empty string */
|
|
SetLastError(ERROR_SUCCESS);
|
|
RTEST(AddFontResourceA("") == 0);
|
|
TEST(GetLastError() == ERROR_INVALID_PARAMETER);
|
|
|
|
/* Testing one ttf font */
|
|
SetLastError(ERROR_SUCCESS);
|
|
TEST(AddFontResourceA(szFileNameFont1A) == 1);
|
|
RTEST(GetLastError() == ERROR_SUCCESS);
|
|
|
|
/* Testing one otf font */
|
|
SetLastError(ERROR_SUCCESS);
|
|
TEST(AddFontResourceA(szFileNameFont2A) == 1);
|
|
RTEST(GetLastError() == ERROR_SUCCESS);
|
|
|
|
/* Testing two fonts */
|
|
SetLastError(ERROR_SUCCESS);
|
|
sprintf(szFileNameA,"%s|%s",szFileNameFont1A, szFileNameFont2A);
|
|
TEST(AddFontResourceA(szFileNameA) == 0);
|
|
TEST(GetLastError() == ERROR_SUCCESS);
|
|
|
|
SetLastError(ERROR_SUCCESS);
|
|
sprintf(szFileNameA,"%s |%s",szFileNameFont1A, szFileNameFont2A);
|
|
TEST(AddFontResourceA(szFileNameA) == 0);
|
|
TEST(GetLastError() == ERROR_SUCCESS);
|
|
|
|
SetLastError(ERROR_SUCCESS);
|
|
sprintf(szFileNameA,"%s | %s",szFileNameFont1A, szFileNameFont2A);
|
|
TEST(AddFontResourceA(szFileNameA) == 0);
|
|
TEST(GetLastError() == ERROR_FILE_NOT_FOUND);
|
|
|
|
return APISTATUS_NORMAL;
|
|
}
|
|
|
|
|
|
|