예제 #1
0
        public void MultipleInvalidServices()
        {
            const string serviceName1 = "ASDEDFG123234fwerw4f";
            const string serviceName2 = "ERseSfsdfDF23£23eE";

            using (var domain = new WindowServiceStartupDomain())
            {
                new Story("The ensure the HealthCheck behaves as expected")
                .Tag("HealthCheck")
                .InOrderTo("Ensure an exception is raised")
                .AsA("MonitorWang user")
                .IWant("The correct behaviour")
                .WithScenario("Multiple invalid windows service names supplied")
                .Given(domain.TheCheckComponent, new WindowsServiceStartupCheckConfig
                {
                    Enabled             = true,
                    ExpectedStartupType = "Auto",
                    FriendlyId          = "HealthCheckTest",
                    Services            = new List <string>
                    {
                        serviceName1,
                        serviceName2
                    }
                })
                .When(domain.TheHealthCheckIsInvoked)
                .Then(domain.ShouldThrow_Exception, typeof(InvalidOperationException))
                .And(domain._ShouldBeInTheExceptionMesssage, serviceName1)
                .And(domain._ShouldBeInTheExceptionMesssage, serviceName2)
                .ExecuteWithReport();
            }
        }
예제 #2
0
 public void ValidServiceIncorrectStartup()
 {
     using (var domain = new WindowServiceStartupDomain())
     {
         new Story("The ensure the HealthCheck behaves as expected")
         .Tag("HealthCheck")
         .InOrderTo("Ensure a failure message is published")
         .AsA("MonitorWang user")
         .IWant("The correct behaviour")
         .WithScenario("A valid windows service name specified but the startup type is incorrect")
         .Given(domain.TheCheckComponent, new WindowsServiceStartupCheckConfig
         {
             Enabled             = true,
             ExpectedStartupType = "Disabled",
             FriendlyId          = "HealthCheckTest",
             Services            = new List <string>
             {
                 "DHCP Client"
             }
         })
         .When(domain.TheHealthCheckIsInvoked)
         .Then(domain.ShouldHavePublished_Messages, 1)
         .And(domain.TheMessageShouldIndicateFailure)
         .ExecuteWithReport();
     }
 }