[corlib] Improve CancellationTokenSource test
[mono.git] / mcs / class / System / Test / System.Timers / TimerCas.cs
1 //
2 // TimerCas.cs - CAS unit tests for System.Timers.Timer
3 //
4 // Author:
5 //      Sebastien Pouliot  <sebastien@ximian.com>
6 //
7 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using NUnit.Framework;
30
31 using System;
32 using System.ComponentModel;
33 using System.Reflection;
34 using System.Security;
35 using System.Security.Permissions;
36 using System.Timers;
37
38 namespace MonoCasTests.System.Timers {
39
40         class TestSyncInvoke: ISynchronizeInvoke {
41
42                 public IAsyncResult BeginInvoke (Delegate method, object[] args)
43                 {
44                         return null;
45                 }
46
47                 public object EndInvoke (IAsyncResult result)
48                 {
49                         return null;
50                 }
51
52                 public object Invoke (Delegate method, object[] args)
53                 {
54                         return EndInvoke (BeginInvoke (method, args));
55                 }
56
57                 public bool InvokeRequired {
58                         get { return true; }
59                 }
60         }
61
62         [TestFixture]
63         [NUnit.Framework.Category ("CAS")]
64         public class TimerCas {
65
66                 [SetUp]
67                 public void SetUp ()
68                 {
69                         if (!SecurityManager.SecurityEnabled)
70                                 Assert.Ignore ("SecurityManager.SecurityEnabled is OFF");
71                 }
72
73                 private void Callback (object sender, ElapsedEventArgs e)
74                 {
75                 }
76
77                 private void CommonTests (Timer t)
78                 {
79                         Assert.IsTrue (t.AutoReset, "AutoReset");
80                         t.AutoReset = false;
81                         Assert.IsFalse (t.Enabled, "Enabled");
82                         t.Enabled = true;
83                         Assert.IsNull (t.Site, "Site");
84                         t.Site = null;
85                         Assert.IsNull (t.SynchronizingObject, "SynchronizingObject");
86                         t.SynchronizingObject = new TestSyncInvoke ();
87
88                         t.Elapsed += new ElapsedEventHandler (Callback);
89                         t.Elapsed -= new ElapsedEventHandler (Callback);
90
91                         t.BeginInit ();
92                         t.EndInit ();
93                         t.Start ();
94                         t.Stop ();
95                         t.Close ();
96
97                         (t as IDisposable).Dispose ();
98                 }
99
100                 [Test]
101                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
102                 public void Constructor_Deny_Unrestricted ()
103                 {
104                         Timer t = new Timer ();
105                         Assert.AreEqual (100.0, t.Interval, "Interval");
106                         t.Interval = 200.0;
107                         CommonTests (t);
108                 }
109
110                 [Test]
111                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
112                 public void ConstructorDouble_Deny_Unrestricted ()
113                 {
114                         Timer t = new Timer (200.0);
115                         Assert.AreEqual (200.0, t.Interval, "Interval");
116                         t.Interval = 100.0;
117                         CommonTests (t);
118                 }
119
120                 [Test]
121                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
122                 public void LinkDemand_Deny_Unrestricted ()
123                 {
124                         ConstructorInfo ci = typeof (Timer).GetConstructor (new Type [0]);
125                         Assert.IsNotNull (ci, "default .ctor");
126                         Assert.IsNotNull (ci.Invoke (null), "invoke");
127                 }
128         }
129 }