Merge pull request #1275 from ranma42/fix-lib64
[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.ComponentModel;
31 using System.ServiceProcess;
32 using NUnit.Framework;
33
34 namespace MonoTests.System.ServiceProcess
35 {
36         [TestFixture]
37         public class ServiceBaseTest
38         {
39                 const int SOME_ERROR_CODE = 1;
40
41                 public partial class ServiceFoo : ServiceBase
42                 {
43                         public ServiceFoo ()
44                         {
45                                 InitializeComponent ();
46                         }
47
48                         protected override void OnStart (string[] args)
49                         {
50                         }
51
52                         protected override void OnStop ()
53                         {
54                                 ExitCode = SOME_ERROR_CODE;
55                         }
56
57                         public void StartHook ()
58                         {
59                                 OnStart (new string [] { });
60                         }
61                 }
62
63                 [Test]
64                 public void StopCallsOnStop ()
65                 {
66                         var s = new ServiceFoo ();
67                         Assert.AreEqual (0, s.ExitCode);
68                         s.Stop ();
69                         Assert.AreEqual (SOME_ERROR_CODE, s.ExitCode);
70                 }
71
72                 [Test]
73                 public void ExitCodeIsNotResetByBaseClassServiceBaseBetweenRuns ()
74                 {
75                         var s = new ServiceFoo ();
76                         Assert.AreEqual (0, s.ExitCode);
77                         s.Stop ();
78                         Assert.AreEqual (SOME_ERROR_CODE, s.ExitCode);
79                         s.StartHook ();
80                         Assert.AreEqual (SOME_ERROR_CODE, s.ExitCode);
81                 }
82
83                 partial class ServiceFoo
84                 {
85                         /// <summary>
86                         /// Required designer variable.
87                         /// </summary>
88                         private IContainer components = null;
89
90                         /// <summary>
91                         /// Clean up any resources being used.
92                         /// </summary>
93                         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
94                         protected override void Dispose(bool disposing)
95                         {
96                                 if (disposing && (components != null))
97                                 {
98                                         components.Dispose();
99                                 }
100                                 base.Dispose(disposing);
101                         }
102
103                         #region Component Designer generated code
104
105                         /// <summary>
106                         /// Required method for Designer support - do not modify
107                         /// the contents of this method with the code editor.
108                         /// </summary>
109                         private void InitializeComponent()
110                         {
111                                 components = new Container();
112                                 this.ServiceName = "ServiceFoo";
113                         }
114
115                         #endregion
116                 }
117         }
118 }
119