Merge pull request #637 from LogosBible/enetdown
[mono.git] / mcs / class / System.ServiceProcess / Test / System.ServiceProcess / ServiceBaseTest.cs
1 //
2 // ServiceBaseTest.cs -
3 //      NUnit Test Cases for ServiceBase
4 //
5 // Author:
6 //      Andres G. Aragoneses  (andres@7digital.com)
7 //
8 // Copyright (C) 2013 7digital Media, Ltd (http://www.7digital.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 //
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 //
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System.ServiceProcess;
31 using NUnit.Framework;
32
33 namespace Test
34 {
35         [TestFixture]
36         public class ServiceBaseTest
37         {
38                 const int SOME_ERROR_CODE = 1;
39
40                 public partial class ServiceFoo : ServiceBase
41                 {
42                         public ServiceFoo ()
43                         {
44                                 InitializeComponent ();
45                         }
46
47                         protected override void OnStart (string[] args)
48                         {
49                         }
50
51                         protected override void OnStop ()
52                         {
53                                 ExitCode = SOME_ERROR_CODE;
54                         }
55
56                         public void StartHook ()
57                         {
58                                 OnStart (new string [] { });
59                         }
60                 }
61
62                 [Test]
63                 public void StopCallsOnStop ()
64                 {
65                         var s = new ServiceFoo ();
66                         Assert.AreEqual (0, s.ExitCode);
67                         s.Stop ();
68                         Assert.AreEqual (SOME_ERROR_CODE, s.ExitCode);
69                 }
70
71                 [Test]
72                 public void ExitCodeIsNotResetByBaseClassServiceBaseBetweenRuns ()
73                 {
74                         var s = new ServiceFoo ();
75                         Assert.AreEqual (0, s.ExitCode);
76                         s.Stop ();
77                         Assert.AreEqual (SOME_ERROR_CODE, s.ExitCode);
78                         s.StartHook ();
79                         Assert.AreEqual (SOME_ERROR_CODE, s.ExitCode);
80                 }
81
82                 partial class ServiceFoo
83                 {
84                         /// <summary>
85                         /// Required designer variable.
86                         /// </summary>
87                         private System.ComponentModel.IContainer components = null;
88
89                         /// <summary>
90                         /// Clean up any resources being used.
91                         /// </summary>
92                         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
93                         protected override void Dispose(bool disposing)
94                         {
95                                 if (disposing && (components != null))
96                                 {
97                                         components.Dispose();
98                                 }
99                                 base.Dispose(disposing);
100                         }
101
102                         #region Component Designer generated code
103
104                         /// <summary>
105                         /// Required method for Designer support - do not modify
106                         /// the contents of this method with the code editor.
107                         /// </summary>
108                         private void InitializeComponent()
109                         {
110                                 components = new System.ComponentModel.Container();
111                                 this.ServiceName = "ServiceFoo";
112                         }
113
114                         #endregion
115                 }
116         }
117 }
118