https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4f72e9c9b06a8be0d0c625adadd508419abd40d0
commit 4f72e9c9b06a8be0d0c625adadd508419abd40d0 Author: Jose Carlos Jesus <zecarlos1...@hotmail.com> AuthorDate: Fri Apr 29 14:45:02 2022 +0100 Commit: GitHub <nore...@github.com> CommitDate: Fri Apr 29 16:45:02 2022 +0300 [GDI32_APITEST] Add CursorIcon tests to GetObject test (#3955) Thanks to @Doug-Lyons for testing. CORE-17752 --- modules/rostests/apitests/gdi32/GetObject.c | 44 +++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/modules/rostests/apitests/gdi32/GetObject.c b/modules/rostests/apitests/gdi32/GetObject.c index 6cd0d1c8ac5..7af4132e0de 100644 --- a/modules/rostests/apitests/gdi32/GetObject.c +++ b/modules/rostests/apitests/gdi32/GetObject.c @@ -11,6 +11,27 @@ #define INVALID_POINTER ((PVOID)(ULONG_PTR)0xdeadbeefdeadbeefULL) +UCHAR src_mask[] = { + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,255,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, + 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, +}; + + void Test_General(void) { @@ -701,6 +722,28 @@ Test_Region(void) DeleteObject(hRgn); } +void Test_CursorIcon() +{ + BITMAP bmp; + HBITMAP hbmMask; + CURSORINFO CursorInfo; + + /* On XP sp3 GetObject reports a 32x32 bitmap. */ + hbmMask = CreateBitmap(32, 64, 1, 1, src_mask); + GetObjectW(hbmMask, sizeof(BITMAP), &bmp); + ok(bmp.bmWidth == (bmp.bmHeight / 2), "ERR UNICODE CursorIcon RECT got %ldx%ld\n", bmp.bmWidth, bmp.bmHeight); + ok(bmp.bmHeight == 64, "ERR UNICODE CursorIcon Height got %ld\n", bmp.bmHeight); + DeleteObject(hbmMask); + + CursorInfo.cbSize = sizeof(CURSORINFO); + GetCursorInfo(&CursorInfo); + ok(CursorInfo.hCursor != NULL, "Invalid HCURSOR Handler\n"); + ok(CursorInfo.flags != 0, "Mouse cursor is hidden\n"); + GetObject(CursorInfo.hCursor, sizeof(BITMAP), &bmp); + ok(bmp.bmWidth == bmp.bmHeight / 2, "ERR CursorIcon RECT got %ldx%ld\n", bmp.bmWidth, bmp.bmHeight); + ok(bmp.bmHeight == 64, "ERR CursorIcon Height got %ld\n", bmp.bmHeight); +} + START_TEST(GetObject) { @@ -716,5 +759,6 @@ START_TEST(GetObject) Test_ExtPen(); // not implemented yet in ROS Test_MetaDC(); Test_Region(); + Test_CursorIcon(); }