Click here to Skip to main content
15,881,802 members
Articles / DevOps / Load Testing

Measuring and Monitoring WCF Web Service Performance

Rate me:
Please Sign up or sign in to vote.
5.00/5 (17 votes)
4 Oct 2012GPL310 min read 55.2K   2.2K   47  
Using ServiceMon to obtain performance statistics for web services
using System;
using System.Drawing;
using Kaleida.ServiceMonitor.Model;
using Kaleida.ServiceMonitor.Model.Runtime;
using NUnit.Framework;

namespace Kaleida.UnitTests.Model.Runtime
{
    [TestFixture]
    public class DefaultStatePresentationTests
    {
        [Test]
        public void TestGet10FootBackgroundColourIsGreyWhenNoScript()
        {
            var state = new MonitorState();
            var presentation = new DefaultStatePresentation(state);
            
            Assert.AreEqual(Color.Gray, presentation.GetNotificationColour());
        }

        [Test]
        public void TestGet10FootBackgroundColourIsGreyWhenNotRunning()
        {
            var state = new MonitorState();
            state.ScriptCompiled(ScriptCompilation.Success(new CompiledScript()));

            Assert.IsFalse(state.IsMonitoring);

            var presentation = new DefaultStatePresentation(state);

            Assert.AreEqual(Color.Gray, presentation.GetNotificationColour());
        }


        [Test]
        public void TestGet10FootBackgroundColourIsGreenWhenRunningAndNoErrors()
        {
            var state = new MonitorState();
            state.ScriptCompiled(ScriptCompilation.Success(new CompiledScript()));
            state.StartMonitoring();

            var presentation = new DefaultStatePresentation(state);

            Assert.IsTrue(state.IsMonitoring);
            Assert.IsFalse(state.HasOperationFailures);
            
            Assert.AreEqual(Color.LightGreen, presentation.GetNotificationColour());
        }

        [Test]
        public void TestGet10FootBackgroundColourChangesAsErrorsAccumulate()
        {
            var state = new MonitorState ();
            state.ScriptCompiled(ScriptCompilation.Success(new CompiledScript()));
            state.StartMonitoring();

            var presentation = new DefaultStatePresentation(state);

            Assert.IsTrue(state.IsMonitoring);
            Assert.IsFalse(state.HasOperationFailures);

            state.FlagError();
            Assert.AreEqual(Color.Yellow, presentation.GetNotificationColour());
            state.FlagError();
            Assert.AreEqual(Color.Orange, presentation.GetNotificationColour());

            state.IncrementErrorsCountBy(8);
            Assert.AreEqual(10, state.OperationErrorCount);

            Assert.AreEqual(Color.Orange, presentation.GetNotificationColour());
            state.FlagError();
            Assert.AreEqual(Color.LightCoral, presentation.GetNotificationColour());

            state.IncrementErrorsCountBy(89);
            Assert.AreEqual(100, state.OperationErrorCount);

            Assert.AreEqual(Color.LightCoral, presentation.GetNotificationColour());

            state.FlagError();
            Assert.AreEqual(Color.Crimson, presentation.GetNotificationColour());

            state.IncrementErrorsCountBy(1000);
            Assert.AreEqual(Color.Crimson, presentation.GetNotificationColour());
        }

        [Test]
        public void TestGet10FootSymbolWhenNotRunning()
        {
            var state = new MonitorState();
            var presentation = new DefaultStatePresentation(state);

            Assert.IsFalse(state.IsMonitoring);

            Assert.AreEqual("", presentation.GetNotificationWord());
        }

        [Test]
        public void TestGet10FootSymbolWhenNotRunningAndHasErrors()
        {
            var state = new MonitorState();
            state.FlagError();

            Assert.IsFalse(state.IsMonitoring);
            Assert.IsTrue(state.HasOperationFailures);

            var presentation = new DefaultStatePresentation(state);
            Assert.AreEqual(":-(", presentation.GetNotificationWord());
        }

        [Test]
        public void TestGet10FootSymbolWhenRunningAndNoErrors()
        {
            var state = new MonitorState();
            state.ScriptCompiled(ScriptCompilation.Success(new CompiledScript()));
            state.StartMonitoring();

            var presentation = new DefaultStatePresentation(state);

            Assert.IsTrue(state.IsMonitoring);
            Assert.IsFalse(state.HasOperationFailures);

            Assert.AreEqual(":-)", presentation.GetNotificationWord());
        }

        [Test]
        public void TestGet10FootSymbolWhenRunningAndHasErrors()
        {
            var state = new MonitorState();
            state.ScriptCompiled(ScriptCompilation.Success(new CompiledScript()));
            state.StartMonitoring();
            state.FlagError();

            var presentation = new DefaultStatePresentation(state);

            Assert.IsTrue(state.IsMonitoring);
            Assert.IsTrue(state.HasOperationFailures);

            Assert.AreEqual(":-(", presentation.GetNotificationWord());
        }

        [Test]
        public void TestGet10FootStatusMessage()
        {
            var state = new MonitorState();

            var presentation = new DefaultStatePresentation(state);

            Assert.AreEqual("", presentation.GetStateDetail());

            state.ScriptCompiled(ScriptCompilation.Success(new CompiledScript()));

            Assert.AreEqual("", presentation.GetStateDetail());

            state.StartMonitoring();

            state.FlagError(new OperationError("First Error", new DateTime(2012, 1, 5)));
            Assert.AreEqual("1 error:\r\n    05-Jan-2012 00:00:00 First Error\r\n", presentation.GetStateDetail());
            state.FlagError(new OperationError("Second Error", new DateTime(2012, 1, 6)));
            Assert.AreEqual("2 errors:\r\n    First:  05-Jan-2012 00:00:00 First Error\r\n    Latest: 06-Jan-2012 00:00:00 Second Error\r\n", presentation.GetStateDetail());
            state.FlagError(new OperationError("Third Error", new DateTime(2012, 1, 7)));
            Assert.AreEqual("3 errors:\r\n    First:  05-Jan-2012 00:00:00 First Error\r\n    Latest: 07-Jan-2012 00:00:00 Third Error\r\n", presentation.GetStateDetail());
            state.StopMonitoring();
            Assert.AreEqual("3 errors:\r\n    First:  05-Jan-2012 00:00:00 First Error\r\n    Latest: 07-Jan-2012 00:00:00 Third Error\r\n", presentation.GetStateDetail());
        }
    }

    internal static class TestHelper
    {
        internal static void IncrementErrorsCountBy(this MonitorState state, int count)
        {
            for (int i = 0; i < count; i++)
                state.FlagError();
        }

        internal static void FlagError(this MonitorState state)
        {
            state.FlagError(new OperationError("Dummy Error", DateTime.Now));
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Architect BlackJet Software Ltd
United Kingdom United Kingdom
Stuart Wheelwright is the Principal Architect and Software Developer at BlackJet Software Ltd.

He has over 16 years commercial experience producing robust, maintainable, web-based solutions and bespoke systems for Microsoft platforms.

His latest project is Shopping UK, an elegantly simple shopping list for iPhone.

Comments and Discussions