Felix Nawothnig : gdi32: Add PS_ALTERNATE tests.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Mar 13 16:56:46 CDT 2007


Module: wine
Branch: master
Commit: 7fc0becf6ef4b3a8a4fae02afb781bae3f30b38a
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=7fc0becf6ef4b3a8a4fae02afb781bae3f30b38a

Author: Felix Nawothnig <flexo at holycrap.org>
Date:   Mon Mar 12 20:47:17 2007 +0100

gdi32: Add PS_ALTERNATE tests.

---

 dlls/gdi32/tests/pen.c |   56 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 56 insertions(+), 0 deletions(-)

diff --git a/dlls/gdi32/tests/pen.c b/dlls/gdi32/tests/pen.c
index 77b1044..77073f1 100644
--- a/dlls/gdi32/tests/pen.c
+++ b/dlls/gdi32/tests/pen.c
@@ -28,6 +28,8 @@
 
 #include "wine/test.h"
 
+#define expect(expected, got) ok(got == expected, "Expected %.8x, got %.8x\n", expected, got)
+
 static void test_logpen(void)
 {
     static const struct
@@ -427,7 +429,61 @@ else
     }
 }
 
+static unsigned int atoi2(const char *s)
+{
+    unsigned int ret = 0;
+    while(*s) ret = (ret << 1) | (*s++ == '1');
+    return ret;
+}
+
+#define TEST_LINE(x1, x2, z) \
+    { int buf = 0; \
+      SetBitmapBits(bmp, sizeof(buf), &buf); \
+      MoveToEx(hdc, x1, 0, NULL); \
+      LineTo(hdc, x2, 0); \
+      GetBitmapBits(bmp, sizeof(buf), &buf); \
+      expect(atoi2(z), buf); }
+
+static void test_ps_alternate(void)
+{
+    HDC hdc;
+    HBITMAP bmp;
+    HPEN pen;
+    LOGBRUSH lb;
+
+    lb.lbStyle = BS_SOLID;
+    lb.lbColor = RGB(0xff,0xff,0xff);
+
+    SetLastError(0xdeadbeef);
+    pen = ExtCreatePen(PS_COSMETIC|PS_ALTERNATE, 1, &lb, 0, NULL);
+    if(pen == NULL && GetLastError() == 0xdeadbeef) {
+        skip("looks like 9x, skipping PS_ALTERNATE tests\n");
+        return;
+    }
+    ok(pen != NULL, "gle=%d\n", GetLastError());
+    hdc = CreateCompatibleDC(NULL);
+    ok(hdc != NULL, "gle=%d\n", GetLastError());
+    bmp = CreateBitmap(8, 1, 1, 1, NULL);
+    ok(bmp != NULL, "gle=%d\n", GetLastError());
+    ok(SelectObject(hdc, bmp) != NULL, "gle=%d\n", GetLastError());
+    ok(SelectObject(hdc, pen) != NULL, "gle=%d\n", GetLastError());
+    ok(SetBkMode(hdc, TRANSPARENT), "gle=%d\n", GetLastError());
+
+    TEST_LINE(0, 1, "10000000")
+    TEST_LINE(0, 2, "10000000")
+    TEST_LINE(0, 3, "10100000")
+    TEST_LINE(0, 4, "10100000")
+    TEST_LINE(1, 4, "01010000")
+    TEST_LINE(1, 5, "01010000")
+    TEST_LINE(4, 8, "00001010")
+
+    DeleteObject(pen);
+    DeleteObject(bmp);
+    DeleteDC(hdc);
+}
+
 START_TEST(pen)
 {
     test_logpen();
+    test_ps_alternate();
 }




More information about the wine-cvs mailing list