[sgen] Refactor collection logging
[mono.git] / mcs / class / corlib / Test / System.Threading / ThreadTest.cs
1 // ThreadTest.cs - NUnit Test Cases for the System.Threading.Thread class
2 //
3 // Authors
4 //      Eduardo Garcia Cebollero (kiwnix@yahoo.es)
5 //      Sebastien Pouliot  <sebastien@ximian.com>
6 //
7 // (C) Eduardo Garcia Cebollero.
8 // (C) Ximian, Inc.  http://www.ximian.com
9 // (C) 2004 Novell (http://www.novell.com)
10 //
11
12 using System;
13 using System.Globalization;
14 using System.Security.Principal;
15 using System.Threading;
16 using System.Reflection;
17 using System.Collections.Generic;
18 using SD = System.Diagnostics;
19
20 using NUnit.Framework;
21
22 namespace MonoTests.System.Threading
23 {
24         // These tests seem to hang the 2.0 framework. So they are disabled for now
25         // Don't reenable them until you can run a few thousand times on an SMP box.
26         [Category ("NotWorking")]
27         public class ThreadedPrincipalTest
28         {
29                 public static void NoPrincipal () 
30                 {
31                         AppDomain.CurrentDomain.SetPrincipalPolicy (PrincipalPolicy.NoPrincipal);
32                         IPrincipal p = Thread.CurrentPrincipal;
33                         Assert.IsNull (p, "#1");
34
35                         Thread.CurrentPrincipal = new GenericPrincipal (new GenericIdentity ("mono"), null);
36                         Assert.IsNotNull (Thread.CurrentPrincipal, "#2");
37
38                         Thread.CurrentPrincipal = null;
39                         Assert.IsNull (Thread.CurrentPrincipal, "#3");
40                         // in this case we can return to null
41                 }
42
43                 public static void UnauthenticatedPrincipal () 
44                 {
45                         AppDomain.CurrentDomain.SetPrincipalPolicy (PrincipalPolicy.UnauthenticatedPrincipal);
46                         IPrincipal p = Thread.CurrentPrincipal;
47                         Assert.IsNotNull (p, "#1");
48                         Assert.IsTrue ((p is GenericPrincipal), "#2");
49                         Assert.AreEqual (String.Empty, p.Identity.Name, "#3");
50                         Assert.AreEqual (String.Empty, p.Identity.AuthenticationType, "#4");
51                         Assert.IsFalse (p.Identity.IsAuthenticated, "#5");
52
53                         Thread.CurrentPrincipal = new GenericPrincipal (new GenericIdentity ("mono"), null);
54                         Assert.IsNotNull (Thread.CurrentPrincipal, "#6");
55
56                         Thread.CurrentPrincipal = null;
57                         Assert.IsNotNull (Thread.CurrentPrincipal, "#7");
58                         // in this case we can't return to null
59                 }
60
61                 public static void WindowsPrincipal () 
62                 {
63                         AppDomain.CurrentDomain.SetPrincipalPolicy (PrincipalPolicy.WindowsPrincipal);
64                         IPrincipal p = Thread.CurrentPrincipal;
65                         Assert.IsNotNull (p, "#1");
66                         Assert.IsTrue ((p is WindowsPrincipal), "#2");
67                         Assert.IsNotNull (p.Identity.Name, "#3");
68                         Assert.IsNotNull (p.Identity.AuthenticationType, "#4");
69                         Assert.IsTrue (p.Identity.IsAuthenticated, "#5");
70
71                         // note: we can switch from a WindowsPrincipal to a GenericPrincipal
72                         Thread.CurrentPrincipal = new GenericPrincipal (new GenericIdentity ("mono"), null);
73                         Assert.IsNotNull (Thread.CurrentPrincipal, "#6");
74
75                         Thread.CurrentPrincipal = null;
76                         Assert.IsNotNull (Thread.CurrentPrincipal, "#7");
77                         // in this case we can't return to null
78                 }
79
80                 public static void CopyOnNewThread ()
81                 {
82                         Assert.IsNotNull (Thread.CurrentPrincipal, "#1");
83                         Assert.AreEqual ("good", Thread.CurrentPrincipal.Identity.Name, "#2");
84                 }
85         }
86
87         [TestFixture]
88         [Category("MobileNotWorking")] // Abort #10240
89         public class ThreadTest
90         {
91                 //TimeSpan Infinite = new TimeSpan (-10000);    // -10000 ticks == -1 ms
92                 TimeSpan SmallNegative = new TimeSpan (-2);     // between 0 and -1.0 (infinite) ms
93                 TimeSpan Negative = new TimeSpan (-20000);      // really negative
94                 //TimeSpan MaxValue = TimeSpan.FromMilliseconds ((long) Int32.MaxValue);
95                 TimeSpan TooLarge = TimeSpan.FromMilliseconds ((long) Int32.MaxValue + 1);
96
97                 static bool is_win32;
98                 static bool is_mono;
99
100                 static ThreadTest ()
101                 {
102                         switch (Environment.OSVersion.Platform) {
103                         case PlatformID.Win32NT:
104                         case PlatformID.Win32S:
105                         case PlatformID.Win32Windows:
106                         case PlatformID.WinCE:
107                                 is_win32 = true;
108                                 break;
109                         }
110
111                         // check a class in mscorlib to determine if we're running on Mono
112                         if (Type.GetType ("System.MonoType", false) != null)
113                                 is_mono = true;
114                 }
115
116                 //Some Classes to test as threads
117                 private class C1Test
118                 {
119                         public int cnt;
120                         public Thread thread1;
121                         public bool endm1;
122                         public bool endm2;
123
124                         public C1Test()
125                         {
126                                 thread1 = (Thread)null;
127                                 this.cnt = 0;
128                                 endm1 = endm2 = false;
129                         }
130                         
131                         public void TestMethod()
132                         {
133                                 while (cnt < 10)
134                                 {
135                                         cnt++;
136                                 }
137                                 endm1 = true;
138                         }
139                         public void TestMethod2()
140                         {
141                                 if (!(thread1==(Thread)null) )
142                                 {
143                                         thread1.Join();
144                                 }
145                                 endm2 = true;
146                         }
147                 }
148
149                 private class C2Test
150                 {
151                         public int cnt;
152                         public bool run = false;
153                         
154                         public C2Test()
155                         {
156                                 this.cnt = 0;
157                         }
158
159                         public void TestMethod()
160                         {
161                                 run = true;
162                                 while (true)
163                                 {
164                                         if (cnt < 1000)
165                                                 cnt++;
166                                         else
167                                                 cnt = 0;
168                                 }
169                         }
170                 }
171                 
172                 private class C3Test
173                 {
174                         public C1Test sub_class;
175                         public Thread sub_thread;
176
177                         public C3Test()
178                         {
179                                 sub_class = new C1Test();
180                                 sub_thread = new Thread(new ThreadStart(sub_class.TestMethod));
181                         }
182
183                         public void TestMethod1()
184                         {
185                                 sub_thread.Start();
186                                 Thread.Sleep (100);
187 #if MONO_FEATURE_THREAD_ABORT
188                                 sub_thread.Abort();
189 #else
190                                 sub_thread.Interrupt ();
191 #endif
192                         }
193                 }
194                 
195                 private class C4Test
196                 {
197                         public C1Test class1;
198                         public C1Test class2;
199                         public Thread thread1;
200                         public Thread thread2;
201                         public bool T1ON ;
202                         public bool T2ON ;
203
204                         public C4Test()
205                         {
206                                 T1ON = false;
207                                 T2ON = false;
208                                 class1 = new C1Test();
209                                 class2 = new C1Test();
210                                 thread1 = new Thread(new ThreadStart(class1.TestMethod));
211                                 thread2 = new Thread(new ThreadStart(class2.TestMethod));
212                         }
213
214                         public void TestMethod1()
215                         {
216                                 thread1.Start();
217                                 TestUtil.WaitForAlive (thread1, "wait1");
218                                 T1ON = true;
219                                 thread2.Start();
220                                 TestUtil.WaitForAlive (thread2, "wait2");
221                                 T2ON = true;
222 #if MONO_FEATURE_THREAD_ABORT
223                                 thread1.Abort();
224 #else
225                                 thread1.Interrupt ();
226 #endif
227                                 TestUtil.WaitForNotAlive (thread1, "wait3");
228                                 T1ON = false;
229 #if MONO_FEATURE_THREAD_ABORT
230                                 thread2.Abort();
231 #else
232                                 thread2.Interrupt ();
233 #endif
234                                 TestUtil.WaitForNotAlive (thread2, "wait4");
235                                 T2ON = false;
236                         }
237                         
238                         public void TestMethod2()
239                         {
240                                 thread1.Start();
241                                 thread1.Join();
242                         }
243                 }
244
245                 [Test]
246                 public void TestCtor1()
247                 {
248                         C1Test test1 = new C1Test();
249                         Thread t = new Thread (new ThreadStart (test1.TestMethod));
250
251                         Assert.IsTrue (t.CurrentCulture.IsReadOnly, "CurrentCulture.IsReadOnly");
252                         Assert.IsFalse (t.IsAlive, "IsAlive");
253                         Assert.IsFalse (t.IsBackground, "IsBackground");
254                         Assert.IsNull (t.Name, "Name");
255                         Assert.AreEqual (ThreadState.Unstarted, t.ThreadState, "ThreadState");
256                 }
257
258                 [Test]
259                 [Category ("NotWorking")] // we're not sharing (read-only) CultureInfo
260                 public void CultureInfo_Shared_Across_Threads ()
261                 {
262                         Thread t = new Thread (TestCtor1);
263                         Assert.AreSame (t.CurrentCulture, t.CurrentUICulture, "Culture");
264
265                         Assert.AreSame (t.CurrentCulture, CultureInfo.CurrentCulture, "CultureInfo.CurrentCulture");
266                         Assert.AreSame (t.CurrentUICulture, CultureInfo.CurrentUICulture, "CultureInfo.CurrentUICulture");
267
268                         Assert.AreSame (t.CurrentCulture, Thread.CurrentThread.CurrentCulture, "Thread.CurrentThread.CurrentCulture");
269                         Assert.AreSame (t.CurrentUICulture, Thread.CurrentThread.CurrentUICulture, "Thread.CurrentThread.CurrentUICulture");
270                 }
271
272                 [Test] // bug #325566
273                 public void GetHashCodeTest ()
274                 {
275                         C1Test test1 = new C1Test ();
276                         Thread tA = new Thread (new ThreadStart (test1.TestMethod));
277                         int hA1 = tA.GetHashCode ();
278                         Assert.IsTrue (hA1 > 0, "#A1");
279                         tA.Start ();
280                         int hA2 = tA.GetHashCode ();
281                         Assert.AreEqual (hA1, hA2, "#A2");
282                         tA.Join ();
283                         int hA3 = tA.GetHashCode ();
284                         Assert.AreEqual (hA1, hA3, "#A3");
285                         Assert.AreEqual (hA1, tA.ManagedThreadId, "#A4");
286
287                         test1 = new C1Test ();
288                         Thread tB = new Thread (new ThreadStart (test1.TestMethod));
289                         int hB1 = tB.GetHashCode ();
290                         Assert.IsTrue (hB1 > 0, "#B1");
291                         tB.Start ();
292                         int hB2 = tB.GetHashCode ();
293                         Assert.AreEqual (hB1, hB2, "#B2");
294                         tB.Join ();
295                         int hB3 = tB.GetHashCode ();
296                         Assert.AreEqual (hB1, hB3, "#B3");
297                         Assert.AreEqual (hB1, tB.ManagedThreadId, "#B4");
298                         Assert.IsFalse (hA2 == hB2, "#B5");
299                 }
300
301                 [Test] // bug #82700
302                 public void ManagedThreadId ()
303                 {
304                         C1Test test1 = new C1Test ();
305                         Thread t1 = new Thread (new ThreadStart (test1.TestMethod));
306                         int mtA1 = t1.ManagedThreadId;
307                         t1.Start ();
308                         int mtA2 = t1.ManagedThreadId;
309                         t1.Join ();
310                         int mtA3 = t1.ManagedThreadId;
311                         Assert.AreEqual (mtA1, mtA2, "#A1");
312                         Assert.AreEqual (mtA2, mtA3, "#A2");
313
314                         test1 = new C1Test ();
315                         Thread t2 = new Thread (new ThreadStart (test1.TestMethod));
316                         int mtB1 = t2.ManagedThreadId;
317                         t2.Start ();
318                         int mtB2 = t2.ManagedThreadId;
319                         t2.Join ();
320                         int mtB3 = t2.ManagedThreadId;
321                         Assert.AreEqual (mtB1, mtB2, "#B1");
322                         Assert.AreEqual (mtB2, mtB3, "#B2");
323                         Assert.IsFalse (mtB1 == mtA1, "#B3");
324                 }
325
326                 [Test]
327                 [Category ("NotDotNet")] // it hangs.
328                 public void TestStart()
329                 {
330                         if (is_win32 && is_mono)
331                                 Assert.Fail ("This test fails on Win32. The test should be fixed.");
332                 {
333                         C1Test test1 = new C1Test();
334                         Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
335                         TestThread.Start();
336                         TestThread.Join();
337                         Assert.AreEqual (10, test1.cnt, "#1");
338                 }
339                 {
340                         C2Test test1 = new C2Test();
341                         Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
342                         TestThread.Start();
343 #if MONO_FEATURE_THREAD_ABORT
344                         TestThread.Abort();
345 #else
346                         TestThread.Interrupt ();
347 #endif
348                         try {
349                                 TestThread.Start();
350                                 Assert.Fail ("#2");
351                         } catch (ThreadStateException) {
352                         }
353                 }
354                 {
355                         C2Test test1 = new C2Test();
356                         Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
357                         TestThread.Start();
358                         while (!test1.run) {
359                         }
360                         bool started = (TestThread.ThreadState == ThreadState.Running);
361                         Assert.AreEqual (started, test1.run, "#15 Thread Is not in the correct state: ");
362 #if MONO_FEATURE_THREAD_ABORT
363                         TestThread.Abort();
364 #else
365                         TestThread.Interrupt ();
366 #endif
367                 }
368                 }
369
370                 [Test]
371                 public void TestApartmentState ()
372                 {
373                         if (is_win32 && is_mono)
374                                 Assert.Fail ("This test fails on mono on win32. Our runtime should be fixed.");
375
376                         C2Test test1 = new C2Test();
377                         Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
378                         Assert.AreEqual (ApartmentState.Unknown, TestThread.ApartmentState, "#1");
379                         TestThread.Start();
380                         TestUtil.WaitForAlive (TestThread, "wait5");
381                         Assert.AreEqual (ApartmentState.MTA, TestThread.ApartmentState, "#2");
382 #if MONO_FEATURE_THREAD_ABORT
383                         TestThread.Abort();
384 #else
385                         TestThread.Interrupt ();
386 #endif
387                 }
388
389                 [Test]
390                 [Category ("NotWorking")] // setting the priority of a Thread before it is started isn't implemented in Mono yet
391                 public void TestPriority1()
392                 {
393                         if (is_win32 && is_mono)
394                                 Assert.Fail ("This test fails on mono on Win32. Our runtime should be fixed.");
395
396                         C2Test test1 = new C2Test();
397                         Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
398                         try {
399                                 TestThread.Priority=ThreadPriority.BelowNormal;
400                                 ThreadPriority before = TestThread.Priority;
401                                 Assert.AreEqual (ThreadPriority.BelowNormal, before, "#40 Unexpected priority before thread start: ");
402                                 TestThread.Start();
403                                 TestUtil.WaitForAlive (TestThread, "wait7");
404                                 ThreadPriority after = TestThread.Priority;
405                                 Assert.AreEqual (before, after, "#41 Unexpected Priority Change: ");
406                         } finally {
407 #if MONO_FEATURE_THREAD_ABORT
408                                 TestThread.Abort();
409 #else
410                                 TestThread.Interrupt ();
411 #endif
412                         }
413                 }
414
415 #if MONO_FEATURE_THREAD_ABORT
416                 [Test]
417                 [Category ("NotDotNet")] // on MS, Thread is still in AbortRequested state when Start is invoked
418                 public void AbortUnstarted ()
419                 {
420                         C2Test test1 = new C2Test();
421                         Thread th = new Thread (new ThreadStart (test1.TestMethod));
422                         th.Abort ();
423                         th.Start ();
424                 }
425 #endif
426
427                 [Test]
428                 [Category ("NotDotNet")] // on MS, ThreadState is immediately Stopped after Abort
429                 [Category ("NotWorking")] // this is a MonoTODO -> no support for Priority
430                 public void TestPriority2()
431                 {
432                         C2Test test1 = new C2Test();
433                         Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
434                         try {
435                                 Assert.AreEqual (ThreadPriority.Normal, TestThread.Priority, "#42 Incorrect Priority in New thread: ");
436                                 TestThread.Start();
437                                 TestUtil.WaitForAliveOrStop (TestThread, "wait8");
438                                 Assert.AreEqual (ThreadPriority.Normal, TestThread.Priority, "#43 Incorrect Priority in Started thread: ");
439                         } finally {
440 #if MONO_FEATURE_THREAD_ABORT
441                                 TestThread.Abort();
442 #else
443                                 TestThread.Interrupt ();
444 #endif
445                         }
446                         Assert.AreEqual (ThreadPriority.Normal, TestThread.Priority, "#44 Incorrect Priority in Aborted thread: ");
447                 }
448
449                 [Test]
450                 [Category ("NotWorking")] // this is a MonoTODO -> no support for Priority
451                 public void TestPriority3()
452                 {
453                         C2Test test1 = new C2Test();
454                         Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
455                         try {
456                                 TestThread.Start();
457                                 TestThread.Priority = ThreadPriority.Lowest;
458                                 Assert.AreEqual (ThreadPriority.Lowest, TestThread.Priority, "#45A Incorrect Priority:");
459                                 TestThread.Priority = ThreadPriority.BelowNormal;
460                                 Assert.AreEqual (ThreadPriority.BelowNormal, TestThread.Priority, "#45B Incorrect Priority:");
461                                 TestThread.Priority = ThreadPriority.Normal;
462                                 Assert.AreEqual (ThreadPriority.Normal, TestThread.Priority, "#45C Incorrect Priority:");
463                                 TestThread.Priority = ThreadPriority.AboveNormal;
464                                 Assert.AreEqual (ThreadPriority.AboveNormal, TestThread.Priority, "#45D Incorrect Priority:");
465                                 TestThread.Priority = ThreadPriority.Highest;
466                                 Assert.AreEqual (ThreadPriority.Highest, TestThread.Priority, "#45E Incorrect Priority:");
467                         }
468                         finally {
469 #if MONO_FEATURE_THREAD_ABORT
470                                 TestThread.Abort();
471 #else
472                                 TestThread.Interrupt ();
473 #endif
474                         }
475                 }
476
477                 [Test]
478                 public void TestUndivisibleByPageSizeMaxStackSize ()
479                 {
480                         const int undivisible_stacksize = 1048573;
481
482                         var thread = new Thread (new ThreadStart (delegate {}), undivisible_stacksize);
483                         thread.Start ();
484                         thread.Join ();
485                 }
486
487                 [Test]
488                 public void TestIsBackground1 ()
489                 {
490                         if (is_win32 && is_mono)
491                                 Assert.Fail ("This test fails on mono on Win32. Our runtime should be fixed.");
492
493                         C2Test test1 = new C2Test();
494                         Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
495                         try {
496                                 TestThread.Start();
497                                 TestUtil.WaitForAlive (TestThread, "wait9");
498                                 bool state = TestThread.IsBackground;
499                                 Assert.IsFalse (state, "#51 IsBackground not set at the default state: ");
500                         } finally {
501 #if MONO_FEATURE_THREAD_ABORT
502                                 TestThread.Abort();
503 #else
504                                 TestThread.Interrupt ();
505 #endif
506                         }
507                 }
508
509                 [Test]
510                 public void TestIsBackground2 ()
511                 {
512                         C2Test test1 = new C2Test();
513                         Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
514                         TestThread.IsBackground = true;
515                         try {
516                                 TestThread.Start();
517                         } finally {
518 #if MONO_FEATURE_THREAD_ABORT
519                                 TestThread.Abort();
520 #else
521                                 TestThread.Interrupt ();
522 #endif
523                         }
524                         
525                         if (TestThread.IsAlive) {
526                                 try {
527                                         Assert.IsTrue (TestThread.IsBackground, "#52 Is Background Changed to Start ");
528                                 } catch (ThreadStateException) {
529                                         // Ignore if thread died meantime
530                                 }
531                         }
532                 }
533
534                 [Test]
535                 public void TestName()
536                 {
537                         if (is_win32 && is_mono)
538                                 Assert.Fail ("This test fails on mono on Win32. Our runtime should be fixed.");
539
540                         C2Test test1 = new C2Test();
541                         Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
542                         try {
543                                 TestThread.Start();
544                                 TestUtil.WaitForAlive (TestThread, "wait10");
545                                 string name = TestThread.Name;
546                                 Assert.IsNull (name, "#61 Name set when mustn't be set: ");
547                                 string newname = "Testing....";
548                                 TestThread.Name = newname;
549                                 Assert.AreEqual (newname, TestThread.Name, "#62 Name not set when must be set: ");
550                         } finally {
551 #if MONO_FEATURE_THREAD_ABORT
552                                 TestThread.Abort();
553 #else
554                                 TestThread.Interrupt ();
555 #endif
556                         }
557                 }
558
559                 [Test]
560                 public void Name ()
561                 {
562                         Thread t = new Thread (new ThreadStart (Name));
563                         Assert.IsNull (t.Name, "Name-1");
564                         t.Name = null;
565                         Assert.IsNull (t.Name, "Name-2");
566                 }
567
568                 [Test]
569                 [ExpectedException (typeof (InvalidOperationException))]
570                 public void Rename ()
571                 {
572                         Thread t = new Thread (new ThreadStart (Rename));
573                         t.Name = "a";
574                         t.Name = "b";
575                 }
576
577                 [Test]
578                 public void TestNestedThreads1()
579                 {
580                         C3Test test1 = new C3Test();
581                         Thread TestThread = new Thread(new ThreadStart(test1.TestMethod1));
582                         try {
583                                 TestThread.Start();
584                                 TestUtil.WaitForAlive (TestThread, "wait11");
585                         } finally {
586 #if MONO_FEATURE_THREAD_ABORT
587                                 TestThread.Abort();
588 #else
589                                 TestThread.Interrupt ();
590 #endif
591                         }
592                 }
593
594                 [Test]
595                 public void TestNestedThreads2()
596                 {
597                         C4Test test1 = new C4Test();
598                         Thread TestThread = new Thread(new ThreadStart(test1.TestMethod1));
599                         try {
600                                 TestThread.Start();
601                         } finally {
602 #if MONO_FEATURE_THREAD_ABORT
603                                 TestThread.Abort();
604 #else
605                                 TestThread.Interrupt ();
606 #endif
607                         }
608                 }
609
610                 [Test]
611                 public void TestJoin1()
612                 {
613                         C1Test test1 = new C1Test();
614                         C1Test test2 = new C1Test();
615                         Thread thread1 = new Thread(new ThreadStart(test1.TestMethod));
616                         Thread thread2 = new Thread(new ThreadStart(test1.TestMethod2));
617                         try {
618                                 thread1.Start();
619                                 thread2.Start();
620                                 thread2.Join();
621                         } finally {
622 #if MONO_FEATURE_THREAD_ABORT
623                                 thread1.Abort();
624                                 thread2.Abort();
625 #else
626                                 thread1.Interrupt ();
627                                 thread2.Interrupt ();
628 #endif
629                         }
630                 }
631
632                 [Test]
633                 [ExpectedException (typeof (ArgumentOutOfRangeException))]
634                 public void Join_Int32_Negative ()
635                 {
636                         // -1 is Timeout.Infinite
637                         Thread.CurrentThread.Join (-2);
638                 }
639
640                 [Test]
641                 [ExpectedException (typeof (ArgumentOutOfRangeException))]
642                 public void Join_TimeSpan_Negative ()
643                 {
644                         Thread.CurrentThread.Join (Negative);
645                 }
646
647                 [Test]
648                 [ExpectedException (typeof (ArgumentOutOfRangeException))]
649                 public void Join_TimeSpan_TooLarge ()
650                 {
651                         Thread.CurrentThread.Join (TooLarge);
652                 }
653
654                 [Test]
655                 public void Join_TimeSpan_SmallNegative ()
656                 {
657                         Thread.CurrentThread.Join (SmallNegative);
658                 }
659
660                 [Test]
661                 [ExpectedException (typeof (ArgumentOutOfRangeException))]
662                 public void Sleep_Int32_Negative ()
663                 {
664                         // -1 is Timeout.Infinite
665                         Thread.Sleep (-2);
666                 }
667
668                 [Test]
669                 public void Sleep_TimeSpan_SmallNegative ()
670                 {
671                         Thread.Sleep (SmallNegative);
672                 }
673
674                 [Test]
675                 [ExpectedException (typeof (ArgumentOutOfRangeException))]
676                 public void Sleep_TimeSpan_Negative ()
677                 {
678                         Thread.Sleep (Negative);
679                 }
680
681                 [Test]
682                 [ExpectedException (typeof (ArgumentOutOfRangeException))]
683                 public void Sleep_TimeSpan_TooLarge ()
684                 {
685                         Thread.Sleep (TooLarge);
686                 }
687
688                 [Test]
689                 public void SpinWait ()
690                 {
691                         // no exception for negative numbers
692                         Thread.SpinWait (Int32.MinValue);
693                         Thread.SpinWait (0);
694                 }
695
696                 [Test]
697                 public void TestThreadState ()
698                 {
699                         if (is_win32 && is_mono)
700                                 Assert.Fail ("This test fails on mono on Win32. Our runtime should be fixed.");
701
702                         //TODO: Test The rest of the possible transitions
703                         C2Test test1 = new C2Test();
704                         Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
705                         Assert.AreEqual (ThreadState.Unstarted, TestThread.ThreadState, "#101 Wrong Thread State");
706                         try {
707                                 TestThread.Start();
708                                 //while(!TestThread.IsAlive); //In the MS Documentation this is not necessary
709                                                                                           //but in the MS SDK it is
710                                 Assert.IsTrue (TestThread.ThreadState == ThreadState.Running || (TestThread.ThreadState & ThreadState.Unstarted) != 0,
711                                         "#102 Wrong Thread State: " + TestThread.ThreadState.ToString ());
712                         } finally {
713 #if MONO_FEATURE_THREAD_ABORT
714                                 TestThread.Abort();
715 #else
716                                 TestThread.Interrupt ();
717 #endif
718                         }
719                         
720                         TestUtil.WaitForNotAlive (TestThread, "wait12");
721                         // Docs say state will be Stopped, but Aborted happens sometimes (?)
722                         Assert.IsTrue ((ThreadState.Stopped & TestThread.ThreadState) != 0 || (ThreadState.Aborted & TestThread.ThreadState) != 0,
723                                 "#103 Wrong Thread State: " + TestThread.ThreadState.ToString ());
724                 }
725
726                 [Test]
727                 [Ignore ("see comment below.")]
728                 public void CurrentPrincipal_PrincipalPolicy_NoPrincipal () 
729                 {
730                         // note: switching from PrincipalPolicy won't work inside the same thread
731                         // because as soon as a Principal object is created the Policy doesn't matter anymore
732                         Thread t = new Thread (new ThreadStart (ThreadedPrincipalTest.NoPrincipal));
733                         try {
734                                 t.Start ();
735                                 t.Join ();
736                         } catch {
737 #if MONO_FEATURE_THREAD_ABORT
738                                 t.Abort ();
739 #else
740                                 t.Interrupt ();
741 #endif
742                         }
743                 }
744
745                 [Test]
746                 [Ignore ("see comment below.")]
747                 public void CurrentPrincipal_PrincipalPolicy_UnauthenticatedPrincipal () 
748                 {
749                         // note: switching from PrincipalPolicy won't work inside the same thread
750                         // because as soon as a Principal object is created the Policy doesn't matter anymore
751                         Thread t = new Thread (new ThreadStart (ThreadedPrincipalTest.UnauthenticatedPrincipal));
752                         try {
753                                 t.Start ();
754                                 t.Join ();
755                         } catch {
756 #if MONO_FEATURE_THREAD_ABORT
757                                 t.Abort ();
758 #else
759                                 t.Interrupt ();
760 #endif
761                         }
762                 }
763
764                 [Test]
765                 public void CurrentPrincipal_PrincipalPolicy_WindowsPrincipal () 
766                 {
767                         // note: switching from PrincipalPolicy won't work inside the same thread
768                         // because as soon as a Principal object is created the Policy doesn't matter anymore
769                         Thread t = new Thread (new ThreadStart (ThreadedPrincipalTest.WindowsPrincipal));
770                         try {
771                                 t.Start ();
772                                 t.Join ();
773                         } catch {
774 #if MONO_FEATURE_THREAD_ABORT
775                                 t.Abort ();
776 #else
777                                 t.Interrupt ();
778 #endif
779                         }
780                 }
781                 
782                 [Test]
783                 public void IPrincipal_CopyOnNewThread () 
784                 {
785                         Thread.CurrentPrincipal = new GenericPrincipal (new GenericIdentity ("bad"), null);
786                         Thread t = new Thread (new ThreadStart (ThreadedPrincipalTest.CopyOnNewThread));
787                         try {
788                                 Thread.CurrentPrincipal = new GenericPrincipal (new GenericIdentity ("good"), null);
789                                 t.Start ();
790                                 t.Join ();
791                         } catch {
792 #if MONO_FEATURE_THREAD_ABORT
793                                 t.Abort ();
794 #else
795                                 t.Interrupt ();
796 #endif
797                         }
798                 }
799
800                 int counter = 0;
801
802 #if MONO_FEATURE_THREAD_SUSPEND_RESUME
803                 [Test]
804                 public void TestSuspend ()
805                 {
806                         Thread t = new Thread (new ThreadStart (DoCount));
807                         t.IsBackground = true;
808                         t.Start ();
809                         
810                         CheckIsRunning ("t1", t);
811                         
812                         t.Suspend ();
813                         WaitSuspended ("t2", t);
814                         
815                         CheckIsNotRunning ("t3", t);
816                         
817                         t.Resume ();
818                         WaitResumed ("t4", t);
819                         
820                         CheckIsRunning ("t5", t);
821                         
822                         t.Abort ();
823                         TestUtil.WaitForNotAlive (t, "wait13");
824                         CheckIsNotRunning ("t6", t);
825                 }
826 #endif
827                 
828 #if MONO_FEATURE_THREAD_SUSPEND_RESUME && MONO_FEATURE_THREAD_ABORT
829                 [Test]
830                 [Category("NotDotNet")] // On MS, ThreadStateException is thrown on Abort: "Thread is suspended; attempting to abort"
831                 public void TestSuspendAbort ()
832                 {
833                         if (is_win32 && is_mono)
834                                 Assert.Fail ("This test fails on Win32. The test should be fixed.");
835
836                         Thread t = new Thread (new ThreadStart (DoCount));
837                         t.IsBackground = true;
838                         t.Start ();
839                         
840                         CheckIsRunning ("t1", t);
841                         
842                         t.Suspend ();
843                         WaitSuspended ("t2", t);
844                         
845                         CheckIsNotRunning ("t3", t);
846                         
847                         t.Abort ();
848                         
849                         int n=0;
850                         while (t.IsAlive && n < 200) {
851                                 Thread.Sleep (10);
852                                 n++;
853                         }
854
855                         Assert.IsTrue (n < 200, "Timeout while waiting for abort");
856                         
857                         CheckIsNotRunning ("t6", t);
858                 }
859 #endif
860
861                 [Test]
862                 public void Test_Interrupt ()
863                 {
864                         ManualResetEvent mre = new ManualResetEvent (false);
865                         bool interruptedExceptionThrown = false;
866
867                         ThreadPool.QueueUserWorkItem (Test_Interrupt_Worker, Thread.CurrentThread);
868
869                         try {
870                                 try {
871                                         mre.WaitOne (3000);
872                                 } finally {
873                                         try {
874                                                 mre.WaitOne (0);
875                                         } catch (ThreadInterruptedException) {
876                                                 Assert.Fail ("ThreadInterruptedException thrown twice");
877                                         }
878                                 }
879                         } catch (ThreadInterruptedException) {
880                                 interruptedExceptionThrown = true;
881                         }
882
883                         Assert.IsTrue (interruptedExceptionThrown, "ThreadInterruptedException expected.");
884                 }
885
886                 [Test]
887                 [ExpectedException (typeof (ArgumentNullException))]
888                 public void TestQueueUserWorkItemNullCallback ()
889                 {
890                         ThreadPool.QueueUserWorkItem (null, null);
891                 }
892
893                 private void Test_Interrupt_Worker (object o)
894                 {
895                         Thread t = o as Thread;
896                         Thread.Sleep (100);
897                         t.Interrupt ();
898                 }
899                 
900                 [Test]
901                 [Category ("NotDotNet")] // it crashes nunit.
902                 public void Test_InterruptCurrentThread ()
903                 {
904                         ManualResetEvent mre = new ManualResetEvent (false);
905                         bool interruptedExceptionThrown = false;
906
907                         Thread.CurrentThread.Interrupt ();
908                         try {
909                                 mre.WaitOne (0);
910                                 Assert.Fail ();
911                         } catch (ThreadInterruptedException) {
912                         }
913                 }
914
915                 [Test]
916                 public void GetNamedDataSlotTest ()
917                 {
918                         Assert.IsNotNull (Thread.GetNamedDataSlot ("te#st"), "#1");
919                         Assert.AreSame (Thread.GetNamedDataSlot ("te#st"), Thread.GetNamedDataSlot ("te#st"), "#2");
920                 }
921
922                 class DomainClass : MarshalByRefObject {
923                         Thread m_thread;
924                         bool success;
925
926                         public bool Run () {
927                                 m_thread = new Thread(ThreadProc);
928                                 m_thread.Start(Thread.CurrentThread);
929                                 m_thread.Join();
930                                 return success;
931                         }
932
933                         public void ThreadProc (object arg) {
934                                 success = m_thread == Thread.CurrentThread;
935                         }
936                 }
937
938 #if MONO_FEATURE_MULTIPLE_APPDOMAINS
939                 [Test]
940                 public void CurrentThread_Domains ()
941                 {
942                         AppDomain ad = AppDomain.CreateDomain ("foo");
943                         ad.Load (typeof (DomainClass).Assembly.GetName ());
944                         var o = (DomainClass)ad.CreateInstanceAndUnwrap (typeof (DomainClass).Assembly.FullName, typeof (DomainClass).FullName);
945                         Assert.IsTrue (o.Run ());
946                         AppDomain.Unload (ad);
947                 }
948 #endif // MONO_FEATURE_MULTIPLE_APPDOMAINS
949
950                 void CheckIsRunning (string s, Thread t)
951                 {
952                         int c = counter;
953                         Thread.Sleep (100);
954                         Assert.IsTrue (counter > c, s);
955                 }
956                 
957                 void CheckIsNotRunning (string s, Thread t)
958                 {
959                         int c = counter;
960                         Thread.Sleep (100);
961                         Assert.AreEqual (counter, c, s);
962                 }
963                 
964                 void WaitSuspended (string s, Thread t)
965                 {
966                         int n=0;
967                         ThreadState state = t.ThreadState;
968                         while ((state & ThreadState.Suspended) == 0) {
969                                 Assert.IsTrue ((state & ThreadState.SuspendRequested) != 0, s + ": expected SuspendRequested state");
970                                 Thread.Sleep (10);
971                                 n++;
972                                 Assert.IsTrue (n < 100, s + ": failed to suspend");
973                                 state = t.ThreadState;
974                         }
975                         Assert.IsTrue ((state & ThreadState.SuspendRequested) == 0, s + ": SuspendRequested state not expected");
976                 }
977                 
978                 void WaitResumed (string s, Thread t)
979                 {
980                         int n=0;
981                         while ((t.ThreadState & ThreadState.Suspended) != 0) {
982                                 Thread.Sleep (10);
983                                 n++;
984                                 Assert.IsTrue (n < 100, s + ": failed to resume");
985                         }
986                 }
987                 
988                 public void DoCount ()
989                 {
990                         while (true) {
991                                 counter++;
992                                 Thread.Sleep (1);
993                         }
994                 }
995         }
996
997         [TestFixture]
998         public class ThreadStateTest {
999                 void Start ()
1000                 {
1001                 }
1002
1003                 [Test] // bug #81720
1004                 public void IsBackGround ()
1005                 {
1006                         Thread t1 = new Thread (new ThreadStart (Start));
1007                         Assert.AreEqual (ThreadState.Unstarted, t1.ThreadState, "#A1");
1008                         Assert.IsFalse (t1.IsBackground, "#A2");
1009                         t1.Start ();
1010                         t1.Join ();
1011                         Assert.AreEqual (ThreadState.Stopped, t1.ThreadState, "#A3");
1012
1013                         try {
1014                                 bool isBackGround = t1.IsBackground;
1015                                 Assert.Fail ("#A4: " + isBackGround.ToString ());
1016                         } catch (ThreadStateException ex) {
1017                                 Assert.AreEqual (typeof (ThreadStateException), ex.GetType (), "#A5");
1018                                 Assert.IsNull (ex.InnerException, "#A6");
1019                                 Assert.IsNotNull (ex.Message, "#A7");
1020                         }
1021
1022                         Thread t2 = new Thread (new ThreadStart (Start));
1023                         Assert.AreEqual (ThreadState.Unstarted, t2.ThreadState, "#B1");
1024                         t2.IsBackground = true;
1025                         Assert.AreEqual (ThreadState.Unstarted | ThreadState.Background, t2.ThreadState, "#B2");
1026                         Assert.IsTrue (t2.IsBackground, "#B3");
1027                         t2.Start ();
1028                         t2.Join ();
1029                         Assert.AreEqual (ThreadState.Stopped, t2.ThreadState, "#B4");
1030
1031                         try {
1032                                 bool isBackGround = t2.IsBackground;
1033                                 Assert.Fail ("#B5: " + isBackGround.ToString ());
1034                         } catch (ThreadStateException ex) {
1035                                 Assert.AreEqual (typeof (ThreadStateException), ex.GetType (), "#B6");
1036                                 Assert.IsNull (ex.InnerException, "#B7");
1037                                 Assert.IsNotNull (ex.Message, "#B8");
1038                         }
1039                 }
1040         }
1041
1042         [TestFixture]
1043         [Serializable]
1044         public class ThreadTest_ManagedThreadId
1045         {
1046                 AppDomain ad1;
1047                 AppDomain ad2;
1048                 MBRO mbro = new MBRO ();
1049
1050                 class MBRO : MarshalByRefObject {
1051                         public int id_a1;
1052                         public int id_b1;
1053                         public int id_b2;
1054                         public string ad_a1;
1055                         public string ad_b1;
1056                         public string ad_b2;
1057                         public string message;
1058                 }
1059 #if !MOBILE
1060                 [Test]
1061                 public void ManagedThreadId_AppDomains ()
1062                 {
1063                         AppDomain currentDomain = AppDomain.CurrentDomain;
1064                         ad1 = AppDomain.CreateDomain ("AppDomain 1", currentDomain.Evidence, currentDomain.SetupInformation);
1065                         ad2 = AppDomain.CreateDomain ("AppDomain 2", currentDomain.Evidence, currentDomain.SetupInformation);
1066
1067                         Thread a = new Thread (ThreadA);
1068                         Thread b = new Thread (ThreadB);
1069                         // execute on AppDomain 1 thread A
1070                         // execute on AppDomain 2 thread B
1071                         // execute on AppDomain 1 thread B - must have same ManagedThreadId as Ad 2 on thread B
1072                         a.Start ();
1073                         a.Join ();
1074                         b.Start ();
1075                         b.Join ();
1076
1077                         AppDomain.Unload (ad1);
1078                         AppDomain.Unload (ad2);
1079
1080                         if (mbro.message != null)
1081                                 Assert.Fail (mbro.message);
1082
1083                         // Console.WriteLine ("Done id_a1: {0} id_b1: {1} id_b2: {2} ad_a1: {3} ad_b1: {4} ad_b2: {5}", mbro.id_a1, mbro.id_b1, mbro.id_b2, mbro.ad_a1, mbro.ad_b1, mbro.ad_b2);
1084
1085                         Assert.AreEqual ("AppDomain 1", mbro.ad_a1, "Name #1");
1086                         Assert.AreEqual ("AppDomain 1", mbro.ad_b1, "Name #2");
1087                         Assert.AreEqual ("AppDomain 2", mbro.ad_b2, "Name #3");
1088
1089                         Assert.AreNotEqual (mbro.id_a1, mbro.id_b1, "Id #1");
1090                         Assert.AreNotEqual (mbro.id_a1, mbro.id_b2, "Id #2");
1091                         Assert.AreEqual (mbro.id_b1, mbro.id_b2, "Id #3");
1092
1093                         Assert.AreNotEqual (mbro.id_a1, Thread.CurrentThread.ManagedThreadId, "Id #4");
1094                         Assert.AreNotEqual (mbro.id_b1, Thread.CurrentThread.ManagedThreadId, "Id #5");
1095                         Assert.AreNotEqual (mbro.id_b2, Thread.CurrentThread.ManagedThreadId, "Id #6");
1096                         Assert.AreNotEqual (mbro.ad_a1, AppDomain.CurrentDomain.FriendlyName, "Name #4");
1097                         Assert.AreNotEqual (mbro.ad_b1, AppDomain.CurrentDomain.FriendlyName, "Name #5");
1098                         Assert.AreNotEqual (mbro.ad_b2, AppDomain.CurrentDomain.FriendlyName, "Name #6");
1099                 }
1100 #endif
1101                 void A1 ()
1102                 {
1103                         mbro.id_a1 = Thread.CurrentThread.ManagedThreadId;
1104                         mbro.ad_a1 = AppDomain.CurrentDomain.FriendlyName;
1105                 }
1106                 
1107                 void B2 ()
1108                 {
1109                         mbro.id_b2 = Thread.CurrentThread.ManagedThreadId;
1110                         mbro.ad_b2 = AppDomain.CurrentDomain.FriendlyName;
1111                 }
1112
1113                 void B1 ()
1114                 {
1115                         mbro.id_b1 = Thread.CurrentThread.ManagedThreadId;
1116                         mbro.ad_b1 = AppDomain.CurrentDomain.FriendlyName;
1117                 }
1118
1119                 void ThreadA (object obj)
1120                 {
1121                         // Console.WriteLine ("ThreadA");
1122                         try {
1123                                 ad1.DoCallBack (A1);
1124                         } catch (Exception ex) {
1125                                 mbro.message = string.Format ("ThreadA exception: {0}", ex);
1126                         }
1127                         // Console.WriteLine ("ThreadA Done");
1128                 }
1129
1130                 void ThreadB (object obj)
1131                 {
1132                         // Console.WriteLine ("ThreadB");
1133                         try {
1134                                 ad2.DoCallBack (B2);
1135                                 ad1.DoCallBack (B1);
1136                         } catch (Exception ex) {
1137                                 mbro.message = string.Format ("ThreadB exception: {0}", ex);
1138                         }
1139                         // Console.WriteLine ("ThreadB Done");
1140                 }
1141         }
1142
1143         [TestFixture]
1144         public class ThreadApartmentTest
1145         {
1146                 void Start ()
1147                 {
1148                 }
1149
1150                 [Test] // bug #81658
1151                 public void ApartmentState_StoppedThread ()
1152                 {
1153                         Thread t1 = new Thread (new ThreadStart (Start));
1154                         t1.Start ();
1155                         t1.Join ();
1156                         try {
1157                                 ApartmentState state = t1.ApartmentState;
1158                                 Assert.Fail ("#A1: " + state.ToString ());
1159                         } catch (ThreadStateException ex) {
1160                                 Assert.AreEqual (typeof (ThreadStateException), ex.GetType (), "#A2");
1161                                 Assert.IsNull (ex.InnerException, "#A3");
1162                                 Assert.IsNotNull (ex.Message, "#A4");
1163                         }
1164
1165                         Thread t2 = new Thread (new ThreadStart (Start));
1166                         t2.IsBackground = true;
1167                         t2.Start ();
1168                         t2.Join ();
1169                         try {
1170                                 ApartmentState state = t2.ApartmentState;
1171                                 Assert.Fail ("#B1: " + state.ToString ());
1172                         } catch (ThreadStateException ex) {
1173                                 Assert.AreEqual (typeof (ThreadStateException), ex.GetType (), "#B2");
1174                                 Assert.IsNull (ex.InnerException, "#B3");
1175                                 Assert.IsNotNull (ex.Message, "#B4");
1176                         }
1177                 }
1178
1179                 [Test]
1180                 public void ApartmentState_BackGround ()
1181                 {
1182                         Thread t1 = new Thread (new ThreadStart (Start));
1183                         t1.IsBackground = true;
1184                         Assert.AreEqual (ApartmentState.Unknown, t1.ApartmentState, "#1");
1185                         t1.ApartmentState = ApartmentState.STA;
1186                         Assert.AreEqual (ApartmentState.STA, t1.ApartmentState, "#2");
1187                 }
1188
1189                 [Test]
1190                 public void TestApartmentState ()
1191                 {
1192                         Thread t1 = new Thread (new ThreadStart (Start));
1193                         Thread t2 = new Thread (new ThreadStart (Start));
1194                         Thread t3 = new Thread (new ThreadStart (Start));
1195
1196                         Assert.AreEqual (ApartmentState.Unknown, t1.ApartmentState, "Thread1 Default");
1197                         Assert.AreEqual (ApartmentState.Unknown, t2.ApartmentState, "Thread2 Default");
1198                         Assert.AreEqual (ApartmentState.Unknown, t3.ApartmentState, "Thread3 Default");
1199
1200                         t1.ApartmentState = ApartmentState.STA;
1201                         Assert.AreEqual (ApartmentState.STA, t1.ApartmentState, "Thread1 Set Once");
1202                         t1.ApartmentState = ApartmentState.MTA;
1203                         Assert.AreEqual (ApartmentState.STA, t1.ApartmentState, "Thread1 Set Twice");
1204
1205                         t2.ApartmentState = ApartmentState.MTA;
1206                         Assert.AreEqual (ApartmentState.MTA, t2.ApartmentState, "Thread2 Set Once");
1207                         t2.ApartmentState = ApartmentState.STA;
1208                         Assert.AreEqual (ApartmentState.MTA, t2.ApartmentState, "Thread2 Set Twice");
1209
1210                         bool exception_occured = false;
1211                         try {
1212                                 t3.ApartmentState = ApartmentState.Unknown;
1213                         }
1214                         catch (Exception) {
1215                                 exception_occured = true;
1216                         }
1217                         Assert.AreEqual (ApartmentState.Unknown, t3.ApartmentState, "Thread3 Set Invalid");
1218                         Assert.IsFalse (exception_occured, "Thread3 Set Invalid Exception Occured");
1219
1220                         t1.Start ();
1221                         exception_occured = false;
1222                         try {
1223                                 t1.ApartmentState = ApartmentState.STA;
1224                         }
1225                         catch (Exception) {
1226                                 exception_occured = true;
1227                         }
1228                         Assert.IsTrue (exception_occured, "Thread1 Started Invalid Exception Occured");
1229                 }
1230
1231                 [Test]
1232                 public void TestSetApartmentStateSameState ()
1233                 {
1234                         Thread t1 = new Thread (new ThreadStart (Start));
1235                         t1.SetApartmentState (ApartmentState.STA);
1236                         Assert.AreEqual (ApartmentState.STA, t1.ApartmentState, "Thread1 Set Once");
1237
1238                         t1.SetApartmentState (ApartmentState.STA);
1239                         Assert.AreEqual (ApartmentState.STA, t1.ApartmentState, "Thread1 Set twice");
1240                 }
1241
1242                 [Test]
1243                 [ExpectedException(typeof(InvalidOperationException))]
1244                 public void TestSetApartmentStateDiffState ()
1245                 {
1246                         Thread t1 = new Thread (new ThreadStart (Start));
1247                         t1.SetApartmentState (ApartmentState.STA);
1248                         Assert.AreEqual (ApartmentState.STA, t1.ApartmentState, "Thread1 Set Once");
1249
1250                         t1.SetApartmentState (ApartmentState.MTA);
1251                 }
1252
1253                 [Test]
1254                 public void TestTrySetApartmentState ()
1255                 {
1256                         Thread t1 = new Thread (new ThreadStart (Start));
1257                         t1.SetApartmentState (ApartmentState.STA);
1258                         Assert.AreEqual (ApartmentState.STA, t1.ApartmentState, "#1");
1259
1260                         bool result = t1.TrySetApartmentState (ApartmentState.MTA);
1261                         Assert.IsFalse (result, "#2");
1262
1263                         result = t1.TrySetApartmentState (ApartmentState.STA);
1264                         Assert.IsTrue (result, "#3");
1265                 }
1266
1267                 [Test]
1268                 public void TestTrySetApartmentStateRunning ()
1269                 {
1270                         Thread t1 = new Thread (new ThreadStart (Start));
1271                         t1.SetApartmentState (ApartmentState.STA);
1272                         Assert.AreEqual (ApartmentState.STA, t1.ApartmentState, "#1");
1273
1274                         t1.Start ();
1275
1276                         try {
1277                                 t1.TrySetApartmentState (ApartmentState.STA);
1278                                 Assert.Fail ("#2");
1279                         } catch (ThreadStateException) {
1280                         }
1281
1282                         t1.Join ();
1283                 }
1284
1285                 [Test]
1286                 public void Volatile () {
1287                         double v3 = 55667;
1288                         Thread.VolatileWrite (ref v3, double.MaxValue);
1289                         Assert.AreEqual (v3, double.MaxValue);
1290
1291                         float v4 = 1;
1292                         Thread.VolatileWrite (ref v4, float.MaxValue);
1293                         Assert.AreEqual (v4, float.MaxValue);
1294                 }
1295
1296                 [Test]
1297                 public void Culture ()
1298                 {
1299                         Assert.IsNotNull (Thread.CurrentThread.CurrentCulture, "CurrentCulture");
1300                         Assert.IsNotNull (Thread.CurrentThread.CurrentUICulture, "CurrentUICulture");
1301                 }
1302
1303                 [Test]
1304                 public void ThreadStartSimple ()
1305                 {
1306                         int i = 0;
1307                         Thread t = new Thread (delegate () {
1308                                 // ensure the NSAutoreleasePool works
1309                                 i++;
1310                         });
1311                         t.Start ();
1312                         t.Join ();
1313                         Assert.AreEqual (1, i, "ThreadStart");
1314                 }
1315
1316                 [Test]
1317                 public void ParametrizedThreadStart ()
1318                 {
1319                         int i = 0;
1320                         object arg = null;
1321                         Thread t = new Thread (delegate (object obj) {
1322                                 // ensure the NSAutoreleasePool works
1323                                 i++;
1324                                 arg = obj;
1325                         });
1326                         t.Start (this);
1327                         t.Join ();
1328
1329                         Assert.AreEqual (1, i, "ParametrizedThreadStart");
1330                         Assert.AreEqual (this, arg, "obj");     
1331                 }               
1332
1333                 [Test]
1334                 public void SetNameTpThread () {
1335                         ThreadPool.QueueUserWorkItem(new WaitCallback(ThreadProc));
1336                 }
1337
1338                 static void ThreadProc(Object stateInfo) {
1339                         Thread.CurrentThread.Name = "My Worker";
1340                 }
1341
1342                 [Test]
1343                 public void GetStackTraces () {
1344                         var m = typeof (Thread).GetMethod ("Mono_GetStackTraces", BindingFlags.NonPublic|BindingFlags.Static);
1345                         if (m != null) {
1346                                 var res = (Dictionary<Thread,SD.StackTrace>)typeof (Thread).GetMethod ("Mono_GetStackTraces", BindingFlags.NonPublic|BindingFlags.Static).Invoke (null, null);
1347                                 foreach (var t in res.Keys) {
1348                                         var st = res [t].ToString ();
1349                                 }
1350                         }
1351                 }
1352         }
1353
1354         public class TestUtil
1355         {
1356                 public static void WaitForNotAlive (Thread t, string s)
1357                 {
1358                         WhileAlive (t, true, s);
1359                 }
1360                 
1361                 public static void WaitForAlive (Thread t, string s)
1362                 {
1363                         WhileAlive (t, false, s);
1364                 }
1365                 
1366                 public static bool WaitForAliveOrStop (Thread t, string s)
1367                 {
1368                         return WhileAliveOrStop (t, false, s);
1369                 }
1370                 
1371                 public static void WhileAlive (Thread t, bool alive, string s)
1372                 {
1373                         DateTime ti = DateTime.Now;
1374                         while (t.IsAlive == alive) {
1375                                 if ((DateTime.Now - ti).TotalSeconds > 10) {
1376                                         if (alive) Assert.Fail ("Timeout while waiting for not alive state. " + s);
1377                                         else Assert.Fail ("Timeout while waiting for alive state. " + s);
1378                                 }
1379                         }
1380                 }
1381
1382                 public static bool WhileAliveOrStop (Thread t, bool alive, string s)
1383                 {
1384                         DateTime ti = DateTime.Now;
1385                         while (t.IsAlive == alive) {
1386                                 if (t.ThreadState == ThreadState.Stopped)
1387                                         return false;
1388
1389                                 if ((DateTime.Now - ti).TotalSeconds > 10) {
1390                                         if (alive) Assert.Fail ("Timeout while waiting for not alive state. " + s);
1391                                         else Assert.Fail ("Timeout while waiting for alive state. " + s);
1392                                 }
1393                         }
1394
1395                         return true;
1396                 }
1397         }
1398 }