Merge pull request #1304 from slluis/mac-proxy-autoconfig
[mono.git] / mcs / class / System.Drawing / Test / System.Drawing / TestRectangleConverter.cs
1 //
2 // Tests for System.Drawing.RectangleConverter.cs 
3 //
4 // Author:
5 //      Ravindra (rkumar@novell.com)
6 //
7
8 //
9 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Collections;
33 using System.ComponentModel;
34 using System.ComponentModel.Design.Serialization;
35 using System.Drawing;
36 using System.Globalization;
37 using System.Security.Permissions;
38 using System.Threading;
39
40 using NUnit.Framework;
41
42 namespace MonoTests.System.Drawing
43 {
44         [TestFixture]
45         [SecurityPermission (SecurityAction.Deny, UnmanagedCode = true)]
46         public class RectangleConverterTest
47         {
48                 Rectangle rect;
49                 Rectangle rectneg;
50                 RectangleConverter rconv;
51                 String rectStrInvariant;
52                 String rectnegStrInvariant;
53
54                 [SetUp]
55                 public void SetUp ()
56                 {
57                         rect = new Rectangle (10, 10, 20, 30);
58                         rectStrInvariant = rect.X + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " +
59                         rect.Y + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " +
60                         rect.Width + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " + 
61                         rect.Height;
62
63                         rectneg = new Rectangle (-10, -10, 20, 30);
64                         rectnegStrInvariant = rectneg.X + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " 
65                         + rectneg.Y + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " + 
66                         rectneg.Width + CultureInfo.InvariantCulture.TextInfo.ListSeparator + " " + rectneg.Height;
67
68                         rconv = (RectangleConverter) TypeDescriptor.GetConverter (rect);
69                 }
70
71                 [Test]
72                 public void TestCanConvertFrom ()
73                 {
74                         Assert.IsTrue (rconv.CanConvertFrom (typeof (String)), "CCF#1");
75                         Assert.IsTrue (rconv.CanConvertFrom (null, typeof (String)), "CCF#2");
76                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (Rectangle)), "CCF#3");
77                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (RectangleF)), "CCF#4");
78                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (Point)), "CCF#5");
79                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (PointF)), "CCF#6");
80                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (Size)), "CCF#7");
81                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (SizeF)), "CCF#8");
82                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (Object)), "CCF#9");
83                         Assert.IsFalse (rconv.CanConvertFrom (null, typeof (int)), "CCF#10");
84                         Assert.IsTrue (rconv.CanConvertFrom (null, typeof (InstanceDescriptor)), "CCF#11");
85                 }
86
87                 [Test]
88                 public void TestCanConvertTo ()
89                 {
90                         Assert.IsTrue (rconv.CanConvertTo (typeof (String)), "CCT#1");
91                         Assert.IsTrue (rconv.CanConvertTo (null, typeof (String)), "CCT#2");
92                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (Rectangle)), "CCT#3");
93                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (RectangleF)), "CCT#4");
94                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (Point)), "CCT#5");
95                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (PointF)), "CCT#6");
96                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (Size)), "CCT#7");
97                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (SizeF)), "CCT#8");
98                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (Object)), "CCT#9");
99                         Assert.IsFalse (rconv.CanConvertTo (null, typeof (int)), "CCT#10");
100                 }
101
102                 [Test]
103                 public void TestConvertFrom ()
104                 {
105                         Assert.AreEqual (rect, (Rectangle) rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
106                                                                 "10, 10, 20, 30"), "CF#1");
107                         Assert.AreEqual (rectneg, (Rectangle) rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
108                                                                 "-10, -10, 20, 30"), "CF#2");
109
110                         try {
111                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture, 
112                                                    "10, 10");
113                                 Assert.Fail ("CF#3: must throw ArgumentException");
114                         } catch (Exception e) {
115                                 Assert.IsTrue (e is ArgumentException, "CF#3");
116                         }
117
118                         try {
119                                 rconv.ConvertFrom ("10");
120                                 Assert.Fail ("CF#3a: must throw ArgumentException");
121                         } catch (Exception e) {
122                                 Assert.IsTrue (e is ArgumentException, "CF#3a");
123                         }
124
125                         try {
126                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
127                                                    "1, 1, 1, 1, 1");
128                                 Assert.Fail ("CF#4: must throw ArgumentException");
129                         } catch (Exception e) {
130                                 Assert.IsTrue (e is ArgumentException, "CF#4");
131                         }
132
133                         try {
134                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
135                                                    "*1, 1, 1, 1");
136                                 Assert.Fail ("CF#5: must throw Exception");
137                         } catch (Exception ex) {
138                                 Assert.AreEqual (typeof (Exception), ex.GetType (), "CF#5-2");
139                                 Assert.IsNotNull (ex.InnerException, "CF#5-3");
140                                 Assert.AreEqual (typeof (FormatException), ex.InnerException.GetType (), "CF#5-4");
141                         }
142
143                         try {
144                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
145                                                    new Rectangle (10, 10, 100, 100));
146                                 Assert.Fail ("CF#6: must throw NotSupportedException");
147                         } catch (Exception e) {
148                                 Assert.IsTrue (e is NotSupportedException, "CF#6");
149                         }
150
151                         try {
152                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
153                                                    new RectangleF (10, 10, 100, 100));
154                                 Assert.Fail ("CF#7: must throw NotSupportedException");
155                         } catch (Exception e) {
156                                 Assert.IsTrue (e is NotSupportedException, "CF#7");
157                         }
158
159                         try {
160                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
161                                                    new Point (10, 10));
162                                 Assert.Fail ("CF#8: must throw NotSupportedException");
163                         } catch (Exception e) {
164                                 Assert.IsTrue (e is NotSupportedException, "CF#8");
165                         }
166
167                         try {
168                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
169                                                    new PointF (10, 10));
170                                 Assert.Fail ("CF#9: must throw NotSupportedException");
171                         } catch (Exception e) {
172                                 Assert.IsTrue (e is NotSupportedException, "CF#9");
173                         }
174
175                         try {
176                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
177                                                    new Size (10, 10));
178                                 Assert.Fail ("CF#10: must throw NotSupportedException");
179                         } catch (Exception e) {
180                                 Assert.IsTrue (e is NotSupportedException, "CF#10");
181                         }
182
183                         try {
184                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
185                                                    new SizeF (10, 10));
186                                 Assert.Fail ("CF#11: must throw NotSupportedException");
187                         } catch (Exception e) {
188                                 Assert.IsTrue (e is NotSupportedException, "CF#11");
189                         }
190
191                         try {
192                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture,
193                                                    new Object ());
194                                 Assert.Fail ("CF#12: must throw NotSupportedException");
195                         } catch (Exception e) {
196                                 Assert.IsTrue (e is NotSupportedException, "CF#12");
197                         }
198
199                         try {
200                                 rconv.ConvertFrom (null, CultureInfo.InvariantCulture, 1001);
201                                 Assert.Fail ("CF#13: must throw NotSupportedException");
202                         } catch (Exception e) {
203                                 Assert.IsTrue (e is NotSupportedException, "CF#13");
204                         }
205                 }
206
207                 [Test]
208                 public void TestConvertTo ()
209                 {
210                         Assert.AreEqual (rectStrInvariant, (String) rconv.ConvertTo (null,
211                                 CultureInfo.InvariantCulture, rect, typeof (String)), "CT#1");
212                         Assert.AreEqual (rectnegStrInvariant, (String) rconv.ConvertTo (null,
213                                 CultureInfo.InvariantCulture, rectneg, typeof (String)), "CT#2");
214
215                         try {
216                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture, 
217                                                  rect, typeof (Rectangle));
218                                 Assert.Fail ("CT#3: must throw NotSupportedException");
219                         } catch (Exception e) {
220                                 Assert.IsTrue (e is NotSupportedException, "CT#3");
221                         }
222
223                         try {
224                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture,
225                                                  rect, typeof (RectangleF));
226                                 Assert.Fail ("CT#4: must throw NotSupportedException");
227                         } catch (Exception e) {
228                                 Assert.IsTrue (e is NotSupportedException, "CT#4");
229                         }
230
231                         try {
232                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture,
233                                                  rect, typeof (Size));
234                                 Assert.Fail ("CT#5: must throw NotSupportedException");
235                         } catch (Exception e) {
236                                 Assert.IsTrue (e is NotSupportedException, "CT#5");
237                         }
238
239                         try {
240                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture,
241                                                  rect, typeof (SizeF));
242                                 Assert.Fail ("CT#6: must throw NotSupportedException");
243                         } catch (Exception e) {
244                                 Assert.IsTrue (e is NotSupportedException, "CT#6");
245                         }
246
247                         try {
248                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture,
249                                                  rect, typeof (Point));
250                                 Assert.Fail ("CT#7: must throw NotSupportedException");
251                         } catch (Exception e) {
252                                 Assert.IsTrue (e is NotSupportedException, "CT#7");
253                         }
254
255                         try {
256                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture,
257                                                  rect, typeof (PointF));
258                                 Assert.Fail ("CT#8: must throw NotSupportedException");
259                         } catch (Exception e) {
260                                 Assert.IsTrue (e is NotSupportedException, "CT#8");
261                         }
262
263                         try {
264                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture,
265                                                  rect, typeof (Object));
266                                 Assert.Fail ("CT#9: must throw NotSupportedException");
267                         } catch (Exception e) {
268                                 Assert.IsTrue (e is NotSupportedException, "CT#9");
269                         }
270
271                         try {
272                                 rconv.ConvertTo (null, CultureInfo.InvariantCulture,
273                                                  rect, typeof (int));
274                                 Assert.Fail ("CT#10: must throw NotSupportedException");
275                         } catch (Exception e) {
276                                 Assert.IsTrue (e is NotSupportedException, "CT#10");
277                         }
278                 }
279
280                 [Test]
281                 public void TestGetCreateInstanceSupported ()
282                 {
283                         Assert.IsTrue (rconv.GetCreateInstanceSupported (), "GCIS#1");
284                         Assert.IsTrue (rconv.GetCreateInstanceSupported (null), "GCIS#2");
285                 }
286
287                 [Test]
288                 public void TestCreateInstance ()
289                 {
290                         Rectangle rectInstance;
291
292                         Hashtable ht = new Hashtable ();
293                         ht.Add ("X", 10); ht.Add ("Y", 10);
294                         ht.Add ("Width", 20); ht.Add ("Height", 30);
295
296                         rectInstance = (Rectangle) rconv.CreateInstance (ht);
297                         Assert.AreEqual (rect, rectInstance, "CI#1");
298
299                         ht.Clear ();
300                         ht.Add ("X", -10); ht.Add ("Y", -10);
301                         ht.Add ("Width", 20); ht.Add ("Height", 30);
302
303                         rectInstance = (Rectangle) rconv.CreateInstance (null, ht);
304                         Assert.AreEqual (rectneg, rectInstance, "CI#2");
305                 }
306
307                 [Test]
308 #if NET_2_0
309                 [ExpectedException (typeof (ArgumentException))]
310 #else
311                 [ExpectedException (typeof (NullReferenceException))]
312 #endif
313                 public void TestCreateInstance_CaseSensitive ()
314                 {
315                         Hashtable ht = new Hashtable ();
316                         ht.Add ("x", -10);
317                         ht.Add ("Y", -10);
318                         ht.Add ("Width", 20);
319                         ht.Add ("Height", 30);
320                         rconv.CreateInstance (null, ht);
321                 }
322
323                 [Test]
324                 public void TestGetPropertiesSupported ()
325                 {
326                         Assert.IsTrue (rconv.GetPropertiesSupported (), "GPS#1");
327                         Assert.IsTrue (rconv.GetPropertiesSupported (null), "GPS#2");
328                 }
329
330                 [Test]
331                 public void TestGetProperties ()
332                 {
333                         Attribute [] attrs;
334                         PropertyDescriptorCollection propsColl;
335
336                         propsColl = rconv.GetProperties (rect);
337                         Assert.AreEqual (4, propsColl.Count, "GP1#1");
338                         Assert.AreEqual (rect.X, propsColl["X"].GetValue (rect), "GP1#2");
339                         Assert.AreEqual (rect.Y, propsColl["Y"].GetValue (rect), "GP1#3");
340                         Assert.AreEqual (rect.Width, propsColl["Width"].GetValue (rect), "GP1#4");
341                         Assert.AreEqual (rect.Height, propsColl["Height"].GetValue (rect), "GP1#5");
342
343                         propsColl = rconv.GetProperties (null, rectneg);
344                         Assert.AreEqual (4, propsColl.Count, "GP2#1");
345                         Assert.AreEqual (rectneg.X, propsColl["X"].GetValue (rectneg), "GP2#2");
346                         Assert.AreEqual (rectneg.Y, propsColl["Y"].GetValue (rectneg), "GP2#3");
347                         Assert.AreEqual (rectneg.Width, propsColl["Width"].GetValue (rectneg), "GP2#4");
348                         Assert.AreEqual (rectneg.Height, propsColl["Height"].GetValue (rectneg), "GP2#5");
349
350                         propsColl = rconv.GetProperties (null, rect, null);
351                         Assert.AreEqual (11, propsColl.Count, "GP3#1");
352                         Assert.AreEqual (rect.X, propsColl["X"].GetValue (rect), "GP3#2");
353                         Assert.AreEqual (rect.Y, propsColl["Y"].GetValue (rect), "GP3#3");
354                         Assert.AreEqual (rect.Width, propsColl["Width"].GetValue (rect), "GP3#4");
355                         Assert.AreEqual (rect.Height, propsColl["Height"].GetValue (rect), "GP3#5");
356
357                         Assert.AreEqual (rect.Top, propsColl["Top"].GetValue (rect), "GP3#6");
358                         Assert.AreEqual (rect.Bottom, propsColl["Bottom"].GetValue (rect), "GP3#7");
359                         Assert.AreEqual (rect.Left, propsColl["Left"].GetValue (rect), "GP3#8");
360                         Assert.AreEqual (rect.Right, propsColl["Right"].GetValue (rect), "GP3#9");
361                         Assert.AreEqual (rect.Location, propsColl["Location"].GetValue (rect), "GP3#10");
362                         Assert.AreEqual (rect.Size, propsColl["Size"].GetValue (rect), "GP3#11");
363                         Assert.AreEqual (rect.IsEmpty, propsColl["IsEmpty"].GetValue (rect), "GP3#12");
364
365                         Type type = typeof (Rectangle);
366                         attrs = Attribute.GetCustomAttributes (type, true);
367                         propsColl = rconv.GetProperties (null, rect, attrs);
368                         Assert.AreEqual (0, propsColl.Count, "GP3#13");
369                 }
370
371                 [Test]
372                 public void ConvertFromInvariantString_string ()
373                 {
374                         Assert.AreEqual (rect, rconv.ConvertFromInvariantString (rectStrInvariant),
375                                 "CFISS#1");
376                         Assert.AreEqual (rectneg, rconv.ConvertFromInvariantString (rectnegStrInvariant),
377                                 "CFISS#2");
378                 }
379
380                 [Test]
381                 [ExpectedException (typeof (ArgumentException))]
382                 public void ConvertFromInvariantString_string_exc_1 ()
383                 {
384                         rconv.ConvertFromInvariantString ("1, 2, 3");
385                 }
386
387                 [Test]
388                 public void ConvertFromInvariantString_string_exc_2 ()
389                 {
390                         try {
391                                 rconv.ConvertFromInvariantString ("hello");
392                                 Assert.Fail ("#1");
393                         } catch (Exception ex) {
394                                 Assert.AreEqual (typeof (Exception), ex.GetType (), "#2");
395                                 Assert.IsNotNull (ex.InnerException, "#3");
396                                 Assert.AreEqual (typeof (FormatException), ex.InnerException.GetType (), "#3");
397                         }
398                 }
399
400                 [Test]
401                 public void ConvertFromString_string ()
402                 {
403                         // save current culture
404                         CultureInfo currentCulture = Thread.CurrentThread.CurrentCulture;
405
406                         try {
407                                 PerformConvertFromStringTest (new CultureInfo ("en-US"));
408                                 PerformConvertFromStringTest (new CultureInfo ("nl-BE"));
409                                 PerformConvertFromStringTest (new MyCultureInfo ());
410                         } finally {
411                                 // restore original culture
412                                 Thread.CurrentThread.CurrentCulture = currentCulture;
413                         }
414                 }
415
416                 [Test]
417                 [ExpectedException (typeof (ArgumentException))]
418                 public void ConvertFromString_string_exc_1 ()
419                 {
420                         CultureInfo culture = CultureInfo.CurrentCulture;
421                         rconv.ConvertFromString (string.Format(culture,
422                                 "1{0} 2{0} 3{0} 4{0} 5", culture.TextInfo.ListSeparator));
423                 }
424
425                 [Test]
426                 public void ConvertFromString_string_exc_2 ()
427                 {
428                         try {
429                                 rconv.ConvertFromString ("hello");
430                                 Assert.Fail ("#1");
431                         } catch (Exception ex) {
432                                 Assert.AreEqual (typeof (Exception), ex.GetType (), "#2");
433                                 Assert.IsNotNull (ex.InnerException, "#3");
434                                 Assert.AreEqual (typeof (FormatException), ex.InnerException.GetType (), "#3");
435                         }
436                 }
437
438                 [Test]
439                 public void ConvertToInvariantString_string ()
440                 {
441                         Assert.AreEqual (rectStrInvariant, rconv.ConvertToInvariantString (rect),
442                                 "CFISS#1");
443                         Assert.AreEqual (rectnegStrInvariant, rconv.ConvertToInvariantString (rectneg),
444                                 "CFISS#2");
445                 }
446
447                 [Test]
448                 public void ConvertToString_string () {
449                         // save current culture
450                         CultureInfo currentCulture = Thread.CurrentThread.CurrentCulture;
451
452                         try {
453                                 PerformConvertToStringTest (new CultureInfo ("en-US"));
454                                 PerformConvertToStringTest (new CultureInfo ("nl-BE"));
455                                 PerformConvertToStringTest (new MyCultureInfo ());
456                         } finally {
457                                 // restore original culture
458                                 Thread.CurrentThread.CurrentCulture = currentCulture;
459                         }
460                 }
461
462                 [Test]
463                 public void GetStandardValuesSupported ()
464                 {
465                         Assert.IsFalse (rconv.GetStandardValuesSupported ());
466                 }
467
468                 [Test]
469                 public void GetStandardValues ()
470                 {
471                         Assert.IsNull (rconv.GetStandardValues ());
472                 }
473
474                 [Test]
475                 public void GetStandardValuesExclusive ()
476                 {
477                         Assert.IsFalse (rconv.GetStandardValuesExclusive ());
478                 }
479
480                 private void PerformConvertFromStringTest (CultureInfo culture)
481                 {
482                         // set current culture
483                         Thread.CurrentThread.CurrentCulture = culture;
484
485                         // perform tests
486                         Assert.AreEqual (rect, rconv.ConvertFromString (CreateRectangleString (rect)),
487                                 "CFSS#1-" + culture.Name);
488                         Assert.AreEqual (rectneg, rconv.ConvertFromString (CreateRectangleString (rectneg)),
489                                 "CFSS#2-" + culture.Name);
490                 }
491
492                 private void PerformConvertToStringTest (CultureInfo culture)
493                 {
494                         // set current culture
495                         Thread.CurrentThread.CurrentCulture = culture;
496
497                         // perform tests
498                         Assert.AreEqual (CreateRectangleString (rect), rconv.ConvertToString (rect),
499                                 "CFISS#1-" + culture.Name);
500                         Assert.AreEqual (CreateRectangleString (rectneg), rconv.ConvertToString (rectneg),
501                                 "CFISS#2-" + culture.Name);
502                 }
503
504                 private static string CreateRectangleString (Rectangle rectangle)
505                 {
506                         return CreateRectangleString (CultureInfo.CurrentCulture, rectangle);
507                 }
508
509                 private static string CreateRectangleString (CultureInfo culture, Rectangle rectangle)
510                 {
511                         return string.Format ("{0}{1} {2}{1} {3}{1} {4}", rectangle.X.ToString (culture),
512                                 culture.TextInfo.ListSeparator, rectangle.Y.ToString (culture),
513                                 rectangle.Width.ToString (culture), rectangle.Height.ToString (culture));
514                 }
515
516                 [Serializable]
517                 private sealed class MyCultureInfo : CultureInfo
518                 {
519                         internal MyCultureInfo ()
520                                 : base ("en-US")
521                         {
522                         }
523
524                         public override object GetFormat (Type formatType)
525                         {
526                                 if (formatType == typeof (NumberFormatInfo)) {
527                                         NumberFormatInfo nfi = (NumberFormatInfo) ((NumberFormatInfo) base.GetFormat (formatType)).Clone ();
528
529                                         nfi.NegativeSign = "myNegativeSign";
530                                         return NumberFormatInfo.ReadOnly (nfi);
531                                 } else {
532                                         return base.GetFormat (formatType);
533                                 }
534                         }
535                 }
536         }
537 }