mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[APITESTS][WIN32KNT_APITEST] Use ok_long for NtGdiGetBitmapBits/NtGdiSetBitmapBits (#1275)
This commit is contained in:
parent
5d6c286981
commit
6846527f67
2 changed files with 36 additions and 36 deletions
|
@ -13,56 +13,56 @@ START_TEST(NtGdiGetBitmapBits)
|
|||
HBITMAP hBitmap;
|
||||
|
||||
SetLastError(ERROR_SUCCESS);
|
||||
RTEST(NtGdiGetBitmapBits(0, 0, 0) == 0);
|
||||
RTEST(GetLastError() == ERROR_INVALID_HANDLE);
|
||||
ok_long(NtGdiGetBitmapBits(0, 0, 0), 0);
|
||||
ok_long(GetLastError(), ERROR_INVALID_HANDLE);
|
||||
|
||||
/* Test NULL bitmap handle */
|
||||
SetLastError(ERROR_SUCCESS);
|
||||
RTEST(NtGdiGetBitmapBits(0, 5, Bits) == 0);
|
||||
RTEST(GetLastError() == ERROR_INVALID_HANDLE);
|
||||
ok_long(NtGdiGetBitmapBits(0, 5, Bits), 0);
|
||||
ok_long(GetLastError(), ERROR_INVALID_HANDLE);
|
||||
|
||||
/* Test invalid bitmap handle */
|
||||
hBitmap = (HBITMAP)CreatePen(PS_SOLID, 1, RGB(1,2,3));
|
||||
SetLastError(ERROR_SUCCESS);
|
||||
RTEST(NtGdiGetBitmapBits(hBitmap, 5, Bits) == 0);
|
||||
RTEST(GetLastError() == ERROR_INVALID_HANDLE);
|
||||
ok_long(NtGdiGetBitmapBits(hBitmap, 5, Bits), 0);
|
||||
ok_long(GetLastError(), ERROR_INVALID_HANDLE);
|
||||
DeleteObject(hBitmap);
|
||||
|
||||
hBitmap = CreateBitmap(3, 3, 1, 8, NULL);
|
||||
SetLastError(ERROR_SUCCESS);
|
||||
|
||||
/* test NULL pointer and count buffer size != 0 */
|
||||
RTEST(NtGdiGetBitmapBits(hBitmap, 5, NULL) == 12);
|
||||
ok_long(NtGdiGetBitmapBits(hBitmap, 5, NULL), 12);
|
||||
|
||||
/* test NULL pointer and buffer size == 0*/
|
||||
RTEST(NtGdiGetBitmapBits(hBitmap, 0, NULL) == 12);
|
||||
ok_long(NtGdiGetBitmapBits(hBitmap, 0, NULL), 12);
|
||||
|
||||
/* test bad pointer */
|
||||
RTEST(NtGdiGetBitmapBits(hBitmap, 5, (PBYTE)0x500) == 0);
|
||||
ok_long(NtGdiGetBitmapBits(hBitmap, 5, (PBYTE)0x500), 0);
|
||||
|
||||
/* Test if we can set a number of bytes between lines */
|
||||
RTEST(NtGdiGetBitmapBits(hBitmap, 5, Bits) == 5);
|
||||
ok_long(NtGdiGetBitmapBits(hBitmap, 5, Bits), 5);
|
||||
|
||||
/* Test alignment */
|
||||
RTEST(NtGdiGetBitmapBits(hBitmap, 4, Bits+1) == 4);
|
||||
ok_long(NtGdiGetBitmapBits(hBitmap, 4, Bits+1), 4);
|
||||
|
||||
/* Test 1 byte too much */
|
||||
RTEST(NtGdiGetBitmapBits(hBitmap, 10, Bits) == 10);
|
||||
ok_long(NtGdiGetBitmapBits(hBitmap, 10, Bits), 10);
|
||||
|
||||
/* Test one row too much */
|
||||
RTEST(NtGdiGetBitmapBits(hBitmap, 12, Bits) == 12);
|
||||
ok_long(NtGdiGetBitmapBits(hBitmap, 12, Bits), 12);
|
||||
|
||||
RTEST(NtGdiGetBitmapBits(hBitmap, 13, Bits) == 12);
|
||||
ok_long(NtGdiGetBitmapBits(hBitmap, 13, Bits), 12);
|
||||
|
||||
RTEST(NtGdiGetBitmapBits(hBitmap, 100, Bits) == 12);
|
||||
ok_long(NtGdiGetBitmapBits(hBitmap, 100, Bits), 12);
|
||||
|
||||
/* Test huge bytes count */
|
||||
RTEST(NtGdiGetBitmapBits(hBitmap, 12345678, Bits) == 12);
|
||||
ok_long(NtGdiGetBitmapBits(hBitmap, 12345678, Bits), 12);
|
||||
|
||||
/* Test negative bytes count */
|
||||
RTEST(NtGdiGetBitmapBits(hBitmap, -5, Bits) == 12);
|
||||
ok_long(NtGdiGetBitmapBits(hBitmap, -5, Bits), 12);
|
||||
|
||||
RTEST(GetLastError() == ERROR_SUCCESS);
|
||||
ok_long(GetLastError(), ERROR_SUCCESS);
|
||||
|
||||
DeleteObject(hBitmap);
|
||||
}
|
||||
|
|
|
@ -13,56 +13,56 @@ START_TEST(NtGdiSetBitmapBits)
|
|||
HBITMAP hBitmap;
|
||||
|
||||
SetLastError(ERROR_SUCCESS);
|
||||
RTEST(NtGdiSetBitmapBits(0, 0, 0) == 0);
|
||||
RTEST(GetLastError() == ERROR_SUCCESS);
|
||||
ok_long(NtGdiSetBitmapBits(0, 0, 0), 0);
|
||||
ok_long(GetLastError(), ERROR_SUCCESS);
|
||||
|
||||
/* Test NULL bitnap handle */
|
||||
SetLastError(ERROR_SUCCESS);
|
||||
RTEST(NtGdiSetBitmapBits(0, 5, Bits) == 0);
|
||||
RTEST(GetLastError() == ERROR_INVALID_HANDLE);
|
||||
ok_long(NtGdiSetBitmapBits(0, 5, Bits), 0);
|
||||
ok_long(GetLastError(), ERROR_INVALID_HANDLE);
|
||||
|
||||
/* Test invalid bitmap handle */
|
||||
hBitmap = (HBITMAP)CreatePen(PS_SOLID, 1, RGB(1,2,3));
|
||||
SetLastError(ERROR_SUCCESS);
|
||||
RTEST(NtGdiSetBitmapBits(hBitmap, 5, Bits) == 0);
|
||||
RTEST(GetLastError() == ERROR_INVALID_HANDLE);
|
||||
ok_long(NtGdiSetBitmapBits(hBitmap, 5, Bits), 0);
|
||||
ok_long(GetLastError(), ERROR_INVALID_HANDLE);
|
||||
DeleteObject(hBitmap);
|
||||
|
||||
hBitmap = CreateBitmap(3, 3, 1, 8, NULL);
|
||||
SetLastError(ERROR_SUCCESS);
|
||||
|
||||
/* test NULL pointer and count buffer size != 0 */
|
||||
RTEST(NtGdiSetBitmapBits(hBitmap, 5, NULL) == 0);
|
||||
ok_long(NtGdiSetBitmapBits(hBitmap, 5, NULL), 0);
|
||||
|
||||
/* test NULL pointer and buffer size == 0*/
|
||||
RTEST(NtGdiSetBitmapBits(hBitmap, 0, NULL) == 0);
|
||||
ok_long(NtGdiSetBitmapBits(hBitmap, 0, NULL), 0);
|
||||
|
||||
/* test bad pointer */
|
||||
RTEST(NtGdiSetBitmapBits(hBitmap, 5, (PBYTE)0x500) == 0);
|
||||
ok_long(NtGdiSetBitmapBits(hBitmap, 5, (PBYTE)0x500), 0);
|
||||
|
||||
/* Test if we can set a number of bytes between lines */
|
||||
RTEST(NtGdiSetBitmapBits(hBitmap, 5, Bits) == 5);
|
||||
ok_long(NtGdiSetBitmapBits(hBitmap, 5, Bits), 5);
|
||||
|
||||
/* Test alignment */
|
||||
RTEST(NtGdiSetBitmapBits(hBitmap, 4, Bits+1) == 4);
|
||||
ok_long(NtGdiSetBitmapBits(hBitmap, 4, Bits+1), 4);
|
||||
|
||||
/* Test 1 byte too much */
|
||||
RTEST(NtGdiSetBitmapBits(hBitmap, 10, Bits) == 10);
|
||||
ok_long(NtGdiSetBitmapBits(hBitmap, 10, Bits), 10);
|
||||
|
||||
/* Test one row too much */
|
||||
RTEST(NtGdiSetBitmapBits(hBitmap, 12, Bits) == 12);
|
||||
ok_long(NtGdiSetBitmapBits(hBitmap, 12, Bits), 12);
|
||||
|
||||
RTEST(NtGdiSetBitmapBits(hBitmap, 13, Bits) == 12);
|
||||
ok_long(NtGdiSetBitmapBits(hBitmap, 13, Bits), 12);
|
||||
|
||||
RTEST(NtGdiSetBitmapBits(hBitmap, 100, Bits) == 12);
|
||||
ok_long(NtGdiSetBitmapBits(hBitmap, 100, Bits), 12);
|
||||
|
||||
/* Test huge bytes count */
|
||||
TEST(NtGdiSetBitmapBits(hBitmap, 12345678, Bits) == 0);
|
||||
ok_long(NtGdiSetBitmapBits(hBitmap, 12345678, Bits), 0);
|
||||
|
||||
/* Test negative bytes count */
|
||||
RTEST(NtGdiSetBitmapBits(hBitmap, -5, Bits) == 0);
|
||||
ok_long(NtGdiSetBitmapBits(hBitmap, -5, Bits), 0);
|
||||
|
||||
RTEST(GetLastError() == ERROR_SUCCESS);
|
||||
ok_long(GetLastError(), ERROR_SUCCESS);
|
||||
|
||||
DeleteObject(hBitmap);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue