File: Valtest.cs

package info (click to toggle)
gtk-sharp2 2.12.40-3.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 26,632 kB
  • sloc: xml: 351,292; cs: 26,444; sh: 4,228; ansic: 2,915; makefile: 1,288; perl: 1,179
file content (349 lines) | stat: -rw-r--r-- 10,709 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
// Valtest.cs: GLib.Value regression test
//
// Copyright (c) 2005 Novell, Inc.

using Gtksharp;
using System;

public class Valtest {

	static int errors = 0;

	const bool BOOL_VAL = true;
	const int INT_VAL = -73523;
	const uint UINT_VAL = 99999U;
	const long INT64_VAL = -5000000000;
	const ulong UINT64_VAL = 5000000000U;
	const char UNICHAR_VAL = '\x20AC'; // euro
	const Gtk.ArrowType ENUM_VAL = Gtk.ArrowType.Left;
	const Gtk.AttachOptions FLAGS_VAL = Gtk.AttachOptions.Expand | Gtk.AttachOptions.Fill;
	const float FLOAT_VAL = 1.5f;
	const double DOUBLE_VAL = Math.PI;
	const string STRING_VAL = "This is a test";
	static Gdk.Rectangle BOXED_VAL;
	static IntPtr POINTER_VAL;
	static Gtk.Widget OBJECT_VAL;

	public static int Main ()
	{
		Gtk.Application.Init ();

		BOXED_VAL = new Gdk.Rectangle (1, 2, 3, 4);
		POINTER_VAL = (IntPtr) System.Runtime.InteropServices.GCHandle.Alloc ("foo");
		OBJECT_VAL = new Gtk.DrawingArea ();

		// Part 1: Make sure values of all types round-trip correctly within Gtk#
		GLib.Value val;

		try {
			val = new GLib.Value (BOOL_VAL);
			if ((bool)val != BOOL_VAL)
				CVError ("boolean cast", BOOL_VAL, (bool)val, val.Val);
			if ((bool)val.Val != BOOL_VAL)
				CVError ("boolean Val", BOOL_VAL, (bool)val, val.Val);
		} catch (Exception e) {
			ExceptionError ("boolean", e);
		}

		try {
			val = new GLib.Value (INT_VAL);
			if ((int)val != INT_VAL)
				CVError ("int cast", INT_VAL, (int)val, val.Val);
			if ((int)val.Val != INT_VAL)
				CVError ("int Val", INT_VAL, (int)val, val.Val);
		} catch (Exception e) {
			ExceptionError ("int", e);
		}

		try {
			val = new GLib.Value (UINT_VAL);
			if ((uint)val != UINT_VAL)
				CVError ("uint cast", UINT_VAL, (uint)val, val.Val);
			if ((uint)val.Val != UINT_VAL)
				CVError ("uint Val", UINT_VAL, (uint)val, val.Val);
		} catch (Exception e) {
			ExceptionError ("uint", e);
		}

		try {
			val = new GLib.Value (INT64_VAL);
			if ((long)val != INT64_VAL)
				CVError ("int64 cast", INT64_VAL, (long)val, val.Val);
			if ((long)val.Val != INT64_VAL)
				CVError ("int64 Val", INT64_VAL, (long)val, val.Val);
		} catch (Exception e) {
			ExceptionError ("int64", e);
		}

		try {
			val = new GLib.Value (UINT64_VAL);
			if ((ulong)val != UINT64_VAL)
				CVError ("uint64 cast", UINT64_VAL, (ulong)val, val.Val);
			if ((ulong)val.Val != UINT64_VAL)
				CVError ("uint64 Val", UINT64_VAL, (ulong)val, val.Val);
		} catch (Exception e) {
			ExceptionError ("uint64", e);
		}

		// gunichar doesn't have its own GValue type, it shares with guint

		try {
			val = new GLib.Value (ENUM_VAL);
			if ((Gtk.ArrowType)(Enum)val != ENUM_VAL)
				CVError ("enum cast", ENUM_VAL, (Gtk.ArrowType)(Enum)val, val.Val);
			if ((Gtk.ArrowType)(Enum)val.Val != ENUM_VAL)
				CVError ("enum Val", ENUM_VAL, (Gtk.ArrowType)(Enum)val, val.Val);
		} catch (Exception e) {
			ExceptionError ("enum", e);
		}

		try {
			val = new GLib.Value (FLAGS_VAL);
			if ((Gtk.AttachOptions)(Enum)val != FLAGS_VAL)
				CVError ("flags cast", FLAGS_VAL, (Gtk.AttachOptions)(Enum)val, val.Val);
			if ((Gtk.AttachOptions)(Enum)val.Val != FLAGS_VAL)
				CVError ("flags Val", FLAGS_VAL, (Gtk.AttachOptions)(Enum)val, val.Val);
		} catch (Exception e) {
			ExceptionError ("flags", e);
		}

		try {
			val = new GLib.Value (FLOAT_VAL);
			if ((float)val != FLOAT_VAL)
				CVError ("float cast", FLOAT_VAL, (float)val, val.Val);
			if ((float)val.Val != FLOAT_VAL)
				CVError ("float Val", FLOAT_VAL, (float)val, val.Val);
		} catch (Exception e) {
			ExceptionError ("float", e);
		}

		try {
			val = new GLib.Value (DOUBLE_VAL);
			if ((double)val != DOUBLE_VAL)
				CVError ("double cast", DOUBLE_VAL, (double)val, val.Val);
			if ((double)val.Val != DOUBLE_VAL)
				CVError ("double Val", DOUBLE_VAL, (double)val, val.Val);
		} catch (Exception e) {
			ExceptionError ("double", e);
		}

		try {
			val = new GLib.Value (STRING_VAL);
			if ((string)val != STRING_VAL)
				CVError ("string cast", STRING_VAL, (string)val, val.Val);
			if ((string)val.Val != STRING_VAL)
				CVError ("string Val", STRING_VAL, (string)val, val.Val);
		} catch (Exception e) {
			ExceptionError ("string", e);
		}

		try {
			val = new GLib.Value (BOXED_VAL);
			if ((Gdk.Rectangle)val != BOXED_VAL)
				CVError ("boxed cast", BOXED_VAL, (Gdk.Rectangle)val, val.Val);
			// Can't currently use .Val on boxed types
		} catch (Exception e) {
			ExceptionError ("boxed", e);
		}

		try {
			val = new GLib.Value (POINTER_VAL);
			if ((IntPtr)val != POINTER_VAL)
				CVError ("pointer cast", POINTER_VAL, (IntPtr)val, val.Val);
			if ((IntPtr)val.Val != POINTER_VAL)
				CVError ("pointer Val", POINTER_VAL, (IntPtr)val, val.Val);
		} catch (Exception e) {
			ExceptionError ("pointer", e);
		}

		try {
			val = new GLib.Value (OBJECT_VAL);
			if ((Gtk.DrawingArea)val != OBJECT_VAL)
				CVError ("object cast", OBJECT_VAL, (Gtk.DrawingArea)val, val.Val);
			if ((Gtk.DrawingArea)val.Val != OBJECT_VAL)
				CVError ("object Val", OBJECT_VAL, (Gtk.DrawingArea)val, val.Val);
		} catch (Exception e) {
			ExceptionError ("object", e);
		}

		// Test ManagedValue

		Structtest st = new Structtest (5, "foo");
		try {
			val = new GLib.Value (st);
			// No direct GLib.Value -> ManagedValue cast
			Structtest st2 = (Structtest)val.Val;
			if (st.Int != st2.Int || st.String != st2.String)
				CVError ("ManagedValue Val", st, (Gtk.DrawingArea)val, val.Val);
		} catch (Exception e) {
			ExceptionError ("ManagedValue", e);
		}

		// Part 2: method->unmanaged->property round trip
		Valobj vo;
		vo = new Valobj ();

		vo.Boolean = BOOL_VAL;
		if (vo.BooleanProp != BOOL_VAL)
			MPError ("boolean method->prop", BOOL_VAL, vo.Boolean, vo.BooleanProp);

		vo.Int = INT_VAL;
		if (vo.IntProp != INT_VAL)
			MPError ("int method->prop", INT_VAL, vo.Int, vo.IntProp);

		vo.Uint = UINT_VAL;
		if (vo.UintProp != UINT_VAL)
			MPError ("uint method->prop", UINT_VAL, vo.Uint, vo.UintProp);

		vo.Int64 = INT64_VAL;
		if (vo.Int64Prop != INT64_VAL)
			MPError ("int64 method->prop", INT64_VAL, vo.Int64, vo.Int64Prop);

		vo.Uint64 = UINT64_VAL;
		if (vo.Uint64Prop != UINT64_VAL)
			MPError ("uint64 method->prop", UINT64_VAL, vo.Uint64, vo.Uint64Prop);

		vo.Unichar = UNICHAR_VAL;
		if (vo.UnicharProp != UNICHAR_VAL)
			MPError ("unichar method->prop", UNICHAR_VAL, vo.Unichar, vo.UnicharProp);

		vo.Enum = ENUM_VAL;
		if (vo.EnumProp != ENUM_VAL)
			MPError ("enum method->prop", ENUM_VAL, vo.Enum, vo.EnumProp);

		vo.Flags = FLAGS_VAL;
		if (vo.FlagsProp != (FLAGS_VAL))
			MPError ("flags method->prop", FLAGS_VAL, vo.Flags, vo.FlagsProp);

		vo.Float = FLOAT_VAL;
		if (vo.FloatProp != FLOAT_VAL)
			MPError ("float method->prop", FLOAT_VAL, vo.Float, vo.FloatProp);

		vo.Double = DOUBLE_VAL;
		if (vo.DoubleProp != DOUBLE_VAL)
			MPError ("double method->prop", DOUBLE_VAL, vo.Double, vo.DoubleProp);

		vo.String = STRING_VAL;
		if (vo.StringProp != STRING_VAL)
			MPError ("string method->prop", STRING_VAL, vo.String, vo.StringProp);

		vo.Boxed = BOXED_VAL;
		if (vo.BoxedProp != BOXED_VAL)
			MPError ("boxed method->prop", BOXED_VAL, vo.Boxed, vo.BoxedProp);

		vo.Pointer = POINTER_VAL;
		if (vo.PointerProp != POINTER_VAL)
			MPError ("pointer method->prop", POINTER_VAL, vo.Pointer, vo.PointerProp);

		vo.Object = OBJECT_VAL;
		if (vo.ObjectProp != OBJECT_VAL) {
			MPError ("object method->prop", OBJECT_VAL.GetType().Name + " " + OBJECT_VAL.GetHashCode (),
				 vo.Object == null ? "null" : vo.Object.GetType().Name + " " + vo.Object.GetHashCode (),
				 vo.ObjectProp == null ? "null" : vo.ObjectProp.GetType().Name + " " + vo.ObjectProp.GetHashCode ());
		}


		// Part 3: property->unmanaged->method round trip
		vo = new Valobj ();

		vo.BooleanProp = BOOL_VAL;
		if (vo.Boolean != BOOL_VAL)
			MPError ("boolean prop->method", BOOL_VAL, vo.Boolean, vo.BooleanProp);

		vo.IntProp = INT_VAL;
		if (vo.Int != INT_VAL)
			MPError ("int prop->method", INT_VAL, vo.Int, vo.IntProp);

		vo.UintProp = UINT_VAL;
		if (vo.Uint != UINT_VAL)
			MPError ("uint prop->method", UINT_VAL, vo.Uint, vo.UintProp);

		vo.Int64Prop = INT64_VAL;
		if (vo.Int64 != INT64_VAL)
			MPError ("int64 prop->method", INT64_VAL, vo.Int64, vo.Int64Prop);

		vo.Uint64Prop = UINT64_VAL;
		if (vo.Uint64 != UINT64_VAL)
			MPError ("uint64 prop->method", UINT64_VAL, vo.Uint64, vo.Uint64Prop);

		vo.UnicharProp = UNICHAR_VAL;
		if (vo.Unichar != UNICHAR_VAL)
			MPError ("unichar prop->method", UNICHAR_VAL, vo.Unichar, vo.UnicharProp);

		vo.EnumProp = ENUM_VAL;
		if (vo.Enum != ENUM_VAL)
			MPError ("enum prop->method", ENUM_VAL, vo.Enum, vo.EnumProp);

		vo.FlagsProp = FLAGS_VAL;
		if (vo.Flags != (FLAGS_VAL))
			MPError ("flags prop->method", FLAGS_VAL, vo.Flags, vo.FlagsProp);

		vo.FloatProp = FLOAT_VAL;
		if (vo.Float != FLOAT_VAL)
			MPError ("float prop->method", FLOAT_VAL, vo.Float, vo.FloatProp);

		vo.DoubleProp = DOUBLE_VAL;
		if (vo.Double != DOUBLE_VAL)
			MPError ("double prop->method", DOUBLE_VAL, vo.Double, vo.DoubleProp);

		vo.StringProp = STRING_VAL;
		if (vo.String != STRING_VAL)
			MPError ("string prop->method", STRING_VAL, vo.String, vo.StringProp);

		vo.BoxedProp = BOXED_VAL;
		if (vo.Boxed != BOXED_VAL)
			MPError ("boxed prop->method", BOXED_VAL, vo.Boxed, vo.BoxedProp);

		vo.PointerProp = POINTER_VAL;
		if (vo.Pointer != POINTER_VAL)
			MPError ("pointer prop->method", POINTER_VAL, vo.Pointer, vo.PointerProp);

		vo.ObjectProp = OBJECT_VAL;
		if (vo.Object != OBJECT_VAL) {
			MPError ("object prop->method", OBJECT_VAL.GetType().Name + " " + OBJECT_VAL.GetHashCode (),
				 vo.Object == null ? "null" : vo.Object.GetType().Name + " " + vo.Object.GetHashCode (),
				 vo.ObjectProp == null ? "null" : vo.ObjectProp.GetType().Name + " " + vo.ObjectProp.GetHashCode ());
		}

		Console.WriteLine ("{0} errors", errors);

		return errors;
	}

	static void CVError (string test, object expected, object cast, object value)
	{
		Console.Error.WriteLine ("Failed test {0}. Expected '{1}', got '{2}' from cast, '{3}' from Value",
					 test, expected, cast, value);
		errors++;
	}

	static void ExceptionError (string test, Exception e)
	{
		Console.Error.WriteLine ("Exception in test {0}: {1}",
					 test, e.Message);
		errors++;
	}

	static void MPError (string test, object expected, object method, object prop)
	{
		Console.Error.WriteLine ("Failed test {0}. Expected '{1}', got '{2}' from method, '{3}' from prop",
					 test, expected, method, prop);
		errors++;
	}
}

public struct Structtest {
	public int Int;
	public string String;

	public Structtest (int Int, string String)
	{
		this.Int = Int;
		this.String = String;
	}

	public override string ToString ()
	{
		return Int.ToString () + "/" + String.ToString ();
	}
}