2 * Unit test suite for pens (and init)
4 * Copyright (C) 2007 Google (Evan Stade)
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "wine/test.h"
27 #define expect(expected, got) ok(got == expected, "Expected %.8x, got %.8x\n", expected, got)
28 #define expectf(expected, got) ok(fabs(got - expected) < 0.1, "Expected %.2f, got %.2f\n", expected, got)
30 static void test_startup(void)
34 struct GdiplusStartupInput gdiplusStartupInput;
35 ULONG_PTR gdiplusToken;
37 gdiplusStartupInput.GdiplusVersion = 1;
38 gdiplusStartupInput.DebugEventCallback = NULL;
39 gdiplusStartupInput.SuppressBackgroundThread = 0;
40 gdiplusStartupInput.SuppressExternalCodecs = 0;
42 status = GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
44 GdiplusShutdown(gdiplusToken);
46 gdiplusStartupInput.GdiplusVersion = 2;
48 status = GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
49 expect(UnsupportedGdiplusVersion, status);
50 GdiplusShutdown(gdiplusToken);
52 status = GdipCreatePen1((ARGB)0xffff00ff, 10.0f, UnitPixel, &pen);
55 expect(GdiplusNotInitialized, status);
60 static void test_constructor_destructor(void)
65 status = GdipCreatePen1((ARGB)0xffff00ff, 10.0f, UnitPixel, &pen);
67 ok(pen != NULL, "Expected pen to be initialized\n");
69 status = GdipDeletePen(NULL);
70 expect(InvalidParameter, status);
72 status = GdipDeletePen(pen);
76 static void test_brushfill(void)
80 GpBrush *brush, *brush2;
85 GdipCreatePen1(0xdeadbeef, 4.5, UnitWorld, &pen);
86 status = GdipGetPenBrushFill(pen, &brush);
88 GdipGetBrushType(brush, &type);
89 expect(BrushTypeSolidColor, type);
90 GdipGetPenColor(pen, &color);
91 expect(0xdeadbeef, color);
92 GdipDeleteBrush(brush);
94 /* color controlled by brush */
95 GdipCreateSolidFill(0xabaddeed, (GpSolidFill**)&brush);
96 status = GdipSetPenBrushFill(pen, brush);
98 GdipGetPenColor(pen, &color);
99 expect(0xabaddeed, color);
100 GdipDeleteBrush(brush);
103 /* get returns a clone, not a reference */
104 GdipGetPenBrushFill(pen, &brush);
105 GdipSetSolidFillColor((GpSolidFill*)brush, 0xbeadfeed);
106 GdipGetPenBrushFill(pen, &brush2);
107 ok(brush != brush2, "Expected to get a clone, not a copy of the reference\n");
108 GdipGetSolidFillColor((GpSolidFill*)brush2, &color);
109 expect(0xabaddeed, color);
110 GdipDeleteBrush(brush);
111 GdipDeleteBrush(brush2);
113 /* brush cannot be NULL */
114 status = GdipSetPenBrushFill(pen, NULL);
115 expect(InvalidParameter, status);
120 static void test_dasharray(void)
127 GdipCreatePen1(0xdeadbeef, 10.0, UnitWorld, &pen);
135 dashes[7] = dashes[8] = dashes[9] = dashes[10] = dashes[11] = 0.0;
137 /* setting the array sets the type to custom */
138 GdipGetPenDashStyle(pen, &style);
139 expect(DashStyleSolid, style);
140 status = GdipSetPenDashArray(pen, dashes, 2);
142 GdipGetPenDashStyle(pen, &style);
143 expect(DashStyleCustom, style);
145 /* Getting the array on a non-custom pen returns invalid parameter (unless
146 * you are getting 0 elements).*/
147 GdipSetPenDashStyle(pen, DashStyleSolid);
148 status = GdipGetPenDashArray(pen, &dashes[5], 2);
149 expect(InvalidParameter, status);
150 status = GdipGetPenDashArray(pen, &dashes[5], 0);
153 /* What does setting DashStyleCustom do to the array length? */
154 GdipSetPenDashArray(pen, dashes, 2);
155 GdipSetPenDashStyle(pen, DashStyleCustom);
156 status = GdipGetPenDashArray(pen, &dashes[5], 2);
158 expectf(10.0, dashes[5]);
159 expectf(11.0, dashes[6]);
161 /* Set the array, then get with different sized buffers. */
162 status = GdipSetPenDashArray(pen, dashes, 5);
166 status = GdipGetPenDashArray(pen, &dashes[5], 1);
167 expect(Ok, status); /* not InsufficientBuffer! */
168 expectf(10.0, dashes[5]);
169 expectf(-100.0, dashes[6]);
171 status = GdipGetPenDashArray(pen, &dashes[5], 6);
172 expect(InvalidParameter, status); /* not Ok! */
173 expectf(-100.0, dashes[5]);
174 expectf(-100.0, dashes[6]);
176 /* Some invalid array values. */
177 status = GdipSetPenDashArray(pen, &dashes[7], 5);
178 expect(InvalidParameter, status);
180 status = GdipSetPenDashArray(pen, &dashes[7], 5);
181 expect(InvalidParameter, status);
183 /* Try to set with count = 0. */
184 GdipSetPenDashStyle(pen, DashStyleDot);
185 status = GdipSetPenDashArray(pen, dashes, 0);
186 expect(OutOfMemory, status);
187 GdipGetPenDashStyle(pen, &style);
188 expect(DashStyleDot, style);
195 struct GdiplusStartupInput gdiplusStartupInput;
196 ULONG_PTR gdiplusToken;
200 gdiplusStartupInput.GdiplusVersion = 1;
201 gdiplusStartupInput.DebugEventCallback = NULL;
202 gdiplusStartupInput.SuppressBackgroundThread = 0;
203 gdiplusStartupInput.SuppressExternalCodecs = 0;
205 GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
207 test_constructor_destructor();
211 GdiplusShutdown(gdiplusToken);