#region CPL License /* Nuclex Framework Copyright (C) 2002-2007 Nuclex Development Labs This library is free software; you can redistribute it and/or modify it under the terms of the IBM Common Public License as published by the IBM Corporation; either version 1.0 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the IBM Common Public License for more details. You should have received a copy of the IBM Common Public License along with this library */ #endregion using System; using System.Collections.Generic; using System.IO; #if UNITTEST using NUnit.Framework; using NMock2; namespace Nuclex.Support.Tracking { /// Unit Test for the progression set class [TestFixture] public class SetProgressionTest { #region interface ISetProgressionSubscriber /// Interface used to test the set progression. public interface ISetProgressionSubscriber { /// Called when the set progression's progress changes /// Set progression whose progress has changed /// Contains the new progress achieved void ProgressUpdated(object sender, ProgressUpdateEventArgs e); /// Called when the set progression has ended /// Set progression that as ended /// Not used void Ended(object sender, EventArgs e); } #endregion // interface ISetProgressionSubscriber #region class ProgressUpdateEventArgsMatcher /// Compares two ProgressUpdateEventArgsInstances for NMock validation private class ProgressUpdateEventArgsMatcher : Matcher { /// Initializes a new ProgressUpdateEventArgsMatcher /// Expected progress update event arguments public ProgressUpdateEventArgsMatcher(ProgressUpdateEventArgs expected) { this.expected = expected; } /// /// Called by NMock to verfiy the ProgressUpdateEventArgs match the expected value /// /// Actual value to compare to the expected value /// /// True if the actual value matches the expected value; otherwise false /// public override bool Matches(object actualAsObject) { ProgressUpdateEventArgs actual = (actualAsObject as ProgressUpdateEventArgs); if(actual == null) return false; return (actual.Progress == this.expected.Progress); } /// Creates a string representation of the expected value /// Writer to write the string representation into public override void DescribeTo(TextWriter writer) { writer.Write(this.expected.Progress.ToString()); } /// Expected progress update event args value private ProgressUpdateEventArgs expected; } #endregion // class ProgressUpdateEventArgsMatcher #region class TestProgression /// Progression used for testing in this unit test private class TestProgression : Progression { /// Changes the testing progression's indicated progress /// /// New progress to be reported by the testing progression /// public void ChangeProgress(float progress) { OnAsyncProgressUpdated(progress); } /// Transitions the progression into the ended state public void End() { OnAsyncEnded(); } } #endregion // class TestProgression /// Initialization routine executed before each test is run [SetUp] public void Setup() { this.mockery = new Mockery(); } /// Validates that the set progression properly sums the progress [Test] public void TestSummedProgress() { SetProgression testSetProgression = new SetProgression( new TestProgression[] { new TestProgression(), new TestProgression() } ); ISetProgressionSubscriber mockedSubscriber = mockSubscriber(testSetProgression); Expect.Once.On(mockedSubscriber). Method("ProgressUpdated"). With( new Matcher[] { new NMock2.Matchers.TypeMatcher(typeof(SetProgression)), new ProgressUpdateEventArgsMatcher(new ProgressUpdateEventArgs(0.25f)) } ); testSetProgression.Children[0].Progression.ChangeProgress(0.5f); this.mockery.VerifyAllExpectationsHaveBeenMet(); } /// Validates that the set progression respects the weights [Test] public void TestWeightedSummedProgress() { SetProgression testSetProgression = new SetProgression( new WeightedProgression[] { new WeightedProgression(new TestProgression(), 1.0f), new WeightedProgression(new TestProgression(), 2.0f) } ); ISetProgressionSubscriber mockedSubscriber = mockSubscriber(testSetProgression); Expect.Once.On(mockedSubscriber). Method("ProgressUpdated"). With( new Matcher[] { new NMock2.Matchers.TypeMatcher(typeof(SetProgression)), new ProgressUpdateEventArgsMatcher(new ProgressUpdateEventArgs(0.5f / 3.0f)) } ); testSetProgression.Children[0].Progression.ChangeProgress(0.5f); Expect.Once.On(mockedSubscriber). Method("ProgressUpdated"). With( new Matcher[] { new NMock2.Matchers.TypeMatcher(typeof(SetProgression)), new ProgressUpdateEventArgsMatcher(new ProgressUpdateEventArgs(0.5f)) } ); testSetProgression.Children[1].Progression.ChangeProgress(0.5f); this.mockery.VerifyAllExpectationsHaveBeenMet(); } /// /// Validates that the ended event is triggered when the last progression ends /// [Test] public void TestEndedEvent() { SetProgression testSetProgression = new SetProgression( new TestProgression[] { new TestProgression(), new TestProgression() } ); ISetProgressionSubscriber mockedSubscriber = mockSubscriber(testSetProgression); Expect.Exactly(2).On(mockedSubscriber). Method("ProgressUpdated"). WithAnyArguments(); Expect.Once.On(mockedSubscriber). Method("Ended"). WithAnyArguments(); testSetProgression.Children[0].Progression.End(); testSetProgression.Children[1].Progression.End(); this.mockery.VerifyAllExpectationsHaveBeenMet(); } /// Mocks a subscriber for the events of a progression /// Progression to mock an event subscriber for /// The mocked event subscriber private ISetProgressionSubscriber mockSubscriber(Progression progression) { ISetProgressionSubscriber mockedSubscriber = this.mockery.NewMock(); progression.AsyncEnded += new EventHandler(mockedSubscriber.Ended); progression.AsyncProgressUpdated += new EventHandler(mockedSubscriber.ProgressUpdated); return mockedSubscriber; } /// Mock object factory private Mockery mockery; } } // namespace Nuclex.Support.Tracking #endif // UNITTEST