| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472 |
- // ThreadTest.cs - NUnit Test Cases for the System.Threading.Thread class
- //
- // Authors
- // Eduardo Garcia Cebollero ([email protected])
- // Sebastien Pouliot <[email protected]>
- //
- // (C) Eduardo Garcia Cebollero.
- // (C) Ximian, Inc. http://www.ximian.com
- // (C) 2004 Novell (http://www.novell.com)
- //
- using NUnit.Framework;
- using System;
- using System.Security.Principal;
- using System.Threading;
- namespace MonoTests.System.Threading {
- public class ThreadedPrincipalTest : Assertion {
- public static void NoPrincipal ()
- {
- AppDomain.CurrentDomain.SetPrincipalPolicy (PrincipalPolicy.NoPrincipal);
- IPrincipal p = Thread.CurrentPrincipal;
- AssertNull ("Thread.CurrentPrincipal-1", p);
- Thread.CurrentPrincipal = new GenericPrincipal (new GenericIdentity ("mono"), null);
- AssertNotNull ("Thread.CurrentPrincipal-2", Thread.CurrentPrincipal);
- Thread.CurrentPrincipal = null;
- AssertNull ("Thread.CurrentPrincipal-3", Thread.CurrentPrincipal);
- // in this case we can return to null
- }
- public static void UnauthenticatedPrincipal ()
- {
- AppDomain.CurrentDomain.SetPrincipalPolicy (PrincipalPolicy.UnauthenticatedPrincipal);
- IPrincipal p = Thread.CurrentPrincipal;
- AssertNotNull ("Thread.CurrentPrincipal", p);
- Assert ("Type", (p is GenericPrincipal));
- AssertEquals ("Name", String.Empty, p.Identity.Name);
- AssertEquals ("AuthenticationType", String.Empty, p.Identity.AuthenticationType);
- Assert ("IsAuthenticated", !p.Identity.IsAuthenticated);
- Thread.CurrentPrincipal = new GenericPrincipal (new GenericIdentity ("mono"), null);
- AssertNotNull ("Thread.CurrentPrincipal-2", Thread.CurrentPrincipal);
- Thread.CurrentPrincipal = null;
- AssertNotNull ("Thread.CurrentPrincipal-3", Thread.CurrentPrincipal);
- // in this case we can't return to null
- }
- public static void WindowsPrincipal ()
- {
- AppDomain.CurrentDomain.SetPrincipalPolicy (PrincipalPolicy.WindowsPrincipal);
- IPrincipal p = Thread.CurrentPrincipal;
- AssertNotNull ("Thread.CurrentPrincipal", p);
- Assert ("Type", (p is WindowsPrincipal));
- Assert ("Name", (p.Identity.Name.IndexOf (@"\") > 0)); // DOMAIN\User
- AssertEquals ("AuthenticationType", "NTLM", p.Identity.AuthenticationType);
- Assert ("IsAuthenticated", p.Identity.IsAuthenticated);
- // note: we can switch from a WindowsPrincipal to a GenericPrincipal
- Thread.CurrentPrincipal = new GenericPrincipal (new GenericIdentity ("mono"), null);
- AssertNotNull ("Thread.CurrentPrincipal-2", Thread.CurrentPrincipal);
- Thread.CurrentPrincipal = null;
- AssertNotNull ("Thread.CurrentPrincipal-3", Thread.CurrentPrincipal);
- // in this case we can't return to null
- }
- }
- [TestFixture]
- public class ThreadTest : Assertion {
- //Some Classes to test as threads
- private class C1Test
- {
- public int cnt;
- public Thread thread1;
- public bool endm1;
- public bool endm2;
- public C1Test()
- {
- thread1 = (Thread)null;
- this.cnt = 0;
- endm1 = endm2 = false;
- }
-
- public void TestMethod()
- {
- while (cnt < 10)
- {
- cnt++;
- }
- endm1 = true;
- }
- public void TestMethod2()
- {
- if (!(thread1==(Thread)null) )
- {
- thread1.Join();
- }
- endm2 = true;
- }
- }
- private class C2Test
- {
- public int cnt;
- public bool run = false;
-
- public C2Test()
- {
- this.cnt = 0;
- }
- public void TestMethod()
- {
- run = true;
- while (true)
- {
- if (cnt < 1000)
- cnt++;
- else
- cnt = 0;
- }
- }
- }
-
- private class C3Test
- {
- public C1Test sub_class;
- public Thread sub_thread;
- public C3Test()
- {
- sub_class = new C1Test();
- sub_thread = new Thread(new ThreadStart(sub_class.TestMethod));
- }
- public void TestMethod1()
- {
- sub_thread.Start();
- sub_thread.Abort();
- }
- }
-
- private class C4Test
- {
- public C1Test class1;
- public C1Test class2;
- public Thread thread1;
- public Thread thread2;
- public bool T1ON ;
- public bool T2ON ;
- public C4Test()
- {
- T1ON = false;
- T2ON = false;
- class1 = new C1Test();
- class2 = new C1Test();
- thread1 = new Thread(new ThreadStart(class1.TestMethod));
- thread2 = new Thread(new ThreadStart(class2.TestMethod));
- }
- public void TestMethod1()
- {
- thread1.Start();
- while (!thread1.IsAlive);
- T1ON = true;
- thread2.Start();
- while (!thread2.IsAlive);
- T2ON = true;
- thread1.Abort();
- while (thread1.IsAlive);
- T1ON = false;
- thread2.Abort();
- while (thread2.IsAlive);
- T2ON = false;
- }
-
- public void TestMethod2()
- {
- thread1.Start();
- thread1.Join();
- }
- }
- [Ignore("these tests fail randomly")]
- public void TestCtor1()
- {
- C1Test test1 = new C1Test();
- try
- {
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
- }
- catch (Exception e)
- {
- Fail ("#01 Unexpected Exception Thrown: " + e.ToString ());
- }
- }
- [Ignore("these tests fail randomly")]
- public void TestStart()
- {
- {
- C1Test test1 = new C1Test();
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
- try
- {
- TestThread.Start();
- }
- catch (Exception e)
- {
- Fail ("#12 Unexpected Exception Thrown: " + e.ToString ());
- }
- TestThread.Join();
- AssertEquals("#13 Thread Not started: ", 10,test1.cnt);
- }
- {
- bool errorThrown = false;
- C2Test test1 = new C2Test();
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
- TestThread.Start();
- TestThread.Abort();
- try
- {
- TestThread.Start();
- }
- catch(ThreadStateException)
- {
- errorThrown = true;
- }
- Assert ("#14 no ThreadStateException trown", errorThrown);
- }
- {
- C2Test test1 = new C2Test();
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
- TestThread.Start();
- while(!test1.run);
- bool started = (TestThread.ThreadState == ThreadState.Running);
- AssertEquals("#15 Thread Is not in the correct state: ", started , test1.run);
- TestThread.Abort();
- }
- }
- [Ignore("these tests fail randomly")]
- public void TestApartment()
- {
- C2Test test1 = new C2Test();
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
- ApartmentState before = TestThread.ApartmentState;
- TestThread.Start();
- while(!TestThread.IsAlive);
- ApartmentState after = TestThread.ApartmentState;
- TestThread.Abort();
- AssertEquals("#21 Apartment State Changed when not needed",before,after);
- }
- [Ignore("these tests fail randomly")]
- public void TestApartmentState()
- {
- C2Test test1 = new C2Test();
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
- ApartmentState before = TestThread.ApartmentState;
- TestThread.Start();
- while(!TestThread.IsAlive);
- ApartmentState after = TestThread.ApartmentState;
- TestThread.Abort();
- AssertEquals("#31 Apartment State Changed when not needed: ",before,after);
- }
- [Ignore("these tests fail randomly")]
- public void TestPriority1()
- {
- C2Test test1 = new C2Test();
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
- TestThread.Priority=ThreadPriority.BelowNormal;
- ThreadPriority after = TestThread.Priority;
- TestThread.Start();
- while(!TestThread.IsAlive);
- ThreadPriority before = TestThread.Priority;
- TestThread.Abort();
- AssertEquals("#41 Unexpected Priority Change: ",before,after);
- }
- [Ignore("these tests fail randomly")]
- public void TestPriority2()
- {
- C2Test test1 = new C2Test();
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
- AssertEquals("#42 Incorrect Priority in New thread: ",ThreadPriority.Normal, TestThread.Priority);
- TestThread.Start();
- while(!TestThread.IsAlive);
- AssertEquals("#43 Incorrect Priority in Started thread: ",ThreadPriority.Normal, TestThread.Priority);
- TestThread.Abort();
- AssertEquals("#44 Incorrect Priority in Aborted thread: ",ThreadPriority.Normal, TestThread.Priority);
- }
- [Ignore("these tests fail randomly")]
- public void TestPriority3()
- {
-
- C2Test test1 = new C2Test();
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
- TestThread.Start();
- TestThread.Priority = ThreadPriority.Lowest;
- AssertEquals("#45A Incorrect Priority:",ThreadPriority.Lowest,TestThread.Priority);
- TestThread.Priority = ThreadPriority.BelowNormal;
- AssertEquals("#45B Incorrect Priority:",ThreadPriority.BelowNormal,TestThread.Priority);
- TestThread.Priority = ThreadPriority.Normal;
- AssertEquals("#45C Incorrect Priority:",ThreadPriority.Normal,TestThread.Priority);
- TestThread.Priority = ThreadPriority.AboveNormal;
- AssertEquals("#45D Incorrect Priority:",ThreadPriority.AboveNormal,TestThread.Priority);
- TestThread.Priority = ThreadPriority.Highest;
- AssertEquals("#45E Incorrect Priority:",ThreadPriority.Highest,TestThread.Priority);
- TestThread.Abort();
- }
- [Ignore("these tests fail randomly")]
- public void TestIsBackground1()
- {
- C2Test test1 = new C2Test();
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
- TestThread.Start();
- while(!TestThread.IsAlive);
- bool state = TestThread.IsBackground;
- TestThread.Abort();
- Assert("#51 IsBackground not set at the default state: ",!(state));
- }
- [Ignore("these tests fail randomly")]
- public void TestIsBackground2()
- {
- C2Test test1 = new C2Test();
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
- TestThread.IsBackground = true;
- TestThread.Start();
- TestThread.Abort();
- Assert("#52 Is Background Changed ot Start ",TestThread.IsBackground);
- }
- [Ignore("these tests fail randomly")]
- public void TestName()
- {
- C2Test test1 = new C2Test();
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
- TestThread.Start();
- while(!TestThread.IsAlive);
- string name = TestThread.Name;
- AssertEquals("#61 Name set when mustn't be set: ", name, (string)null);
- string newname = "Testing....";
- TestThread.Name = newname;
- AssertEquals("#62 Name not set when must be set: ",TestThread.Name,newname);
- TestThread.Abort();
- }
- [Ignore("these tests fail randomly")]
- public void TestNestedThreads1()
- {
- C3Test test1 = new C3Test();
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod1));
- try
- {
- TestThread.Start();
- while(!TestThread.IsAlive);
- TestThread.Abort();
- }
- catch(Exception e)
- {
- Fail("#71 Unexpected Exception" + e.Message);
- }
- }
- [Ignore("causes seg fault on mono")]
- public void TestNestedThreads2()
- {
- C4Test test1 = new C4Test();
- test1.thread1.Start();
- test1.thread1.Abort();
- while(test1.thread1.IsAlive);
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod1));
- try
- {
- TestThread.Start();
- TestThread.Abort();
- }
- catch(Exception e)
- {
- Fail("#81 Unexpected Exception" + e.ToString());
- }
- }
- [Ignore("these tests fail randomly")]
- public void TestJoin1()
- {
- C1Test test1 = new C1Test();
- C1Test test2 = new C1Test();
- Thread thread1 = new Thread(new ThreadStart(test1.TestMethod));
- Thread thread2 = new Thread(new ThreadStart(test1.TestMethod2));
- try
- {
- thread1.Start();
- thread2.Start();
- thread2.Join();
- }
- catch(Exception e)
- {
- Fail("#91 Unexpected Exception " + e.ToString());
- }
- finally
- {
- thread1.Abort();
- thread2.Abort();
- }
- }
-
- [Ignore("these tests fail randomly")]
- public void TestThreadState()
- {
- //TODO: Test The rest of the possible transitions
- C2Test test1 = new C2Test();
- Thread TestThread = new Thread(new ThreadStart(test1.TestMethod));
- AssertEquals("#101 Wrong Thread State",ThreadState.Unstarted,TestThread.ThreadState);
- TestThread.Start();
- //while(!TestThread.IsAlive); //In the MS Documentation this is not necessary
- //but in the MS SDK it is
- AssertEquals("#102 Wrong Thread State", ThreadState.Running | ThreadState.Unstarted ,TestThread.ThreadState);
- TestThread.Abort();
- while(TestThread.IsAlive);
- // Docs say state will be Stopped, but Aborted happens sometimes (?)
- Assert("#103 Wrong Thread State", ThreadState.Stopped == TestThread.ThreadState
- || ThreadState.Aborted == TestThread.ThreadState);
- }
- [Test]
- public void CurrentPrincipal_PrincipalPolicy_NoPrincipal ()
- {
- // note: switching from PrincipalPolicy won't work inside the same thread
- // because as soon as a Principal object is created the Policy doesn't matter anymore
- Thread t = new Thread (new ThreadStart (ThreadedPrincipalTest.NoPrincipal));
- t.Start ();
- while (t.IsAlive) {}
- }
- [Test]
- public void CurrentPrincipal_PrincipalPolicy_UnauthenticatedPrincipal ()
- {
- // note: switching from PrincipalPolicy won't work inside the same thread
- // because as soon as a Principal object is created the Policy doesn't matter anymore
- Thread t = new Thread (new ThreadStart (ThreadedPrincipalTest.UnauthenticatedPrincipal));
- t.Start ();
- while (t.IsAlive) {}
- }
- [Test]
- [Ignore ("WindowsPrincipal is not yet supported on Mono")]
- public void CurrentPrincipal_PrincipalPolicy_WindowsPrincipal ()
- {
- // note: switching from PrincipalPolicy won't work inside the same thread
- // because as soon as a Principal object is created the Policy doesn't matter anymore
- Thread t = new Thread (new ThreadStart (ThreadedPrincipalTest.WindowsPrincipal));
- t.Start ();
- while (t.IsAlive) {}
- }
- }
- }
|