#region CPL License /* Nuclex Framework Copyright (C) 2002-2008 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 progress tracker class [TestFixture] public class ProgressTrackerTest { #region interface IProgressTrackerSubscriber /// Interface used to test the progress tracker public interface IProgressTrackerSubscriber { /// Called when the tracked progress changes /// Progress tracker whose progress has changed /// Contains the new progress achieved void ProgressChanged(object sender, ProgressReportEventArgs e); /// Called when the progress tracker's idle state changes /// Progress tracker whose idle state has changed /// Contains the new idle state of the tracker void IdleStateChanged(object sender, IdleStateEventArgs e); } #endregion // interface IProgressTrackerSubscriber #region class ProgressUpdateEventArgsMatcher /// Compares two ProgressUpdateEventArgsInstances for NMock validation private class ProgressReportEventArgsMatcher : Matcher { /// Initializes a new ProgressUpdateEventArgsMatcher /// Expected progress update event arguments public ProgressReportEventArgsMatcher(ProgressReportEventArgs 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) { ProgressReportEventArgs actual = (actualAsObject as ProgressReportEventArgs); 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 ProgressReportEventArgs expected; } #endregion // class ProgressUpdateEventArgsMatcher #region class TestTransaction /// Transaction used for testing in this unit test private class TestTransaction : Transaction, IProgressReporter { /// will be triggered to report when progress has been achieved public event EventHandler AsyncProgressChanged; /// Changes the testing transaction's indicated progress /// New progress to be reported by the testing transaction public void ChangeProgress(float progress) { OnAsyncProgressChanged(progress); } /// Transitions the transaction into the ended state public void End() { OnAsyncEnded(); } /// Fires the progress update event /// Progress to report (ranging from 0.0 to 1.0) /// /// Informs the observers of this transaction about the achieved progress. /// protected virtual void OnAsyncProgressChanged(float progress) { OnAsyncProgressChanged(new ProgressReportEventArgs(progress)); } /// Fires the progress update event /// Progress to report (ranging from 0.0 to 1.0) /// /// Informs the observers of this transaction about the achieved progress. /// Allows for classes derived from the transaction class to easily provide /// a custom event arguments class that has been derived from the /// transaction's ProgressUpdateEventArgs class. /// protected virtual void OnAsyncProgressChanged(ProgressReportEventArgs eventArguments) { EventHandler copy = AsyncProgressChanged; if(copy != null) copy(this, eventArguments); } } #endregion // class TestTransaction #region class EvilTransaction /// /// Transaction that tries to emulate a thread given a progress report at /// a very inconvenient time ;) /// private class EvilTransaction : Transaction, IProgressReporter { /// will be triggered to report when progress has been achieved public event EventHandler AsyncProgressChanged { add {} remove { // Send a progress update right when the subscriber is trying to unsubscribe value(this, new ProgressReportEventArgs(0.5f)); } } } #endregion // class EvilTransaction /// Initialization routine executed before each test is run [SetUp] public void Setup() { this.mockery = new Mockery(); } /// Validates that the tracker properly sums the progress [Test] public void TestSummedProgress() { using(ProgressTracker tracker = new ProgressTracker()) { IProgressTrackerSubscriber mockedSubscriber = mockSubscriber(tracker); TestTransaction test1 = new TestTransaction(); TestTransaction test2 = new TestTransaction(); // Step 1 { Expect.Once.On(mockedSubscriber). Method("IdleStateChanged"). WithAnyArguments(); // Since the progress is already at 0, these redundant reports are optional Expect.Between(0, 2).On(mockedSubscriber). Method("ProgressChanged"). With( new Matcher[] { new NMock2.Matchers.TypeMatcher(typeof(ProgressTracker)), new ProgressReportEventArgsMatcher(new ProgressReportEventArgs(0.0f)) } ); tracker.Track(test1); tracker.Track(test2); } // Step 2 { Expect.Once.On(mockedSubscriber). Method("ProgressChanged"). With( new Matcher[] { new NMock2.Matchers.TypeMatcher(typeof(ProgressTracker)), new ProgressReportEventArgsMatcher(new ProgressReportEventArgs(0.25f)) } ); test1.ChangeProgress(0.5f); } } this.mockery.VerifyAllExpectationsHaveBeenMet(); } /// /// Validates that the tracker only removes transactions when the whole /// tracking list has reached the 'ended' state. /// /// /// If the tracker would remove ended transactions right when they finished, /// the total progress would jump back each time. This is unwanted, of course. /// [Test] public void TestDelayedRemoval() { using(ProgressTracker tracker = new ProgressTracker()) { IProgressTrackerSubscriber mockedSubscriber = mockSubscriber(tracker); TestTransaction test1 = new TestTransaction(); TestTransaction test2 = new TestTransaction(); // Step 1 { Expect.Once.On(mockedSubscriber). Method("IdleStateChanged"). WithAnyArguments(); // This is optional. The tracker's progress is currently 0, so there's no need // to send out superfluous progress reports. Expect.Between(0, 2).On(mockedSubscriber). Method("ProgressChanged"). With( new Matcher[] { new NMock2.Matchers.TypeMatcher(typeof(ProgressTracker)), new ProgressReportEventArgsMatcher(new ProgressReportEventArgs(0.0f)) } ); tracker.Track(test1); tracker.Track(test2); } // Step 2 { Expect.Once.On(mockedSubscriber). Method("ProgressChanged"). With( new Matcher[] { new NMock2.Matchers.TypeMatcher(typeof(ProgressTracker)), new ProgressReportEventArgsMatcher(new ProgressReportEventArgs(0.25f)) } ); // Total progress should be 0.25 after this call (two transactions, one with // 0% progress and one with 50% progress) test1.ChangeProgress(0.5f); } // Step 3 { Expect.Once.On(mockedSubscriber). Method("ProgressChanged"). With( new Matcher[] { new NMock2.Matchers.TypeMatcher(typeof(ProgressTracker)), new ProgressReportEventArgsMatcher(new ProgressReportEventArgs(0.75f)) } ); // Total progress should be 0.75 after this call (one transaction at 100%, // the other one at 50%). If the second transaction would be removed by the tracker, // (which would be inappropriate!) the progress would falsely jump to 0.5 instead. test2.End(); } // Step 4 { Expect.Once.On(mockedSubscriber). Method("ProgressChanged"). With( new Matcher[] { new NMock2.Matchers.TypeMatcher(typeof(ProgressTracker)), new ProgressReportEventArgsMatcher(new ProgressReportEventArgs(1.0f)) } ); Expect.Once.On(mockedSubscriber). Method("IdleStateChanged"). WithAnyArguments(); test1.End(); } } this.mockery.VerifyAllExpectationsHaveBeenMet(); } /// /// Validates that the tracker behaves correctly if it is fed with transactions /// that have already ended. /// [Test] public void TestSoleEndedTransaction() { using(ProgressTracker tracker = new ProgressTracker()) { IProgressTrackerSubscriber mockedSubscriber = mockSubscriber(tracker); Expect.Never.On(mockedSubscriber).Method("IdleStateChanged").WithAnyArguments(); Expect.Never.On(mockedSubscriber).Method("ProgressChanged").WithAnyArguments(); tracker.Track(Transaction.EndedDummy); } this.mockery.VerifyAllExpectationsHaveBeenMet(); } /// /// Validates that the tracker behaves correctly if it is fed with transactions /// that have already ended in addition to transactions that are actively executing. /// [Test] public void TestEndedTransaction() { using(ProgressTracker tracker = new ProgressTracker()) { IProgressTrackerSubscriber mockedSubscriber = mockSubscriber(tracker); TestTransaction test1 = new TestTransaction(); // Step 1 { Expect.Once.On(mockedSubscriber). Method("IdleStateChanged"). WithAnyArguments(); Expect.Between(0, 1).On(mockedSubscriber). Method("ProgressChanged"). With( new Matcher[] { new NMock2.Matchers.TypeMatcher(typeof(ProgressTracker)), new ProgressReportEventArgsMatcher(new ProgressReportEventArgs(0.0f)) } ); tracker.Track(test1); } // Step 2 { Expect.Once.On(mockedSubscriber). Method("ProgressChanged"). With( new Matcher[] { new NMock2.Matchers.TypeMatcher(typeof(ProgressTracker)), new ProgressReportEventArgsMatcher(new ProgressReportEventArgs(0.5f)) } ); tracker.Track(Transaction.EndedDummy); } // Step 3 { Expect.Once.On(mockedSubscriber). Method("ProgressChanged"). With( new Matcher[] { new NMock2.Matchers.TypeMatcher(typeof(ProgressTracker)), new ProgressReportEventArgsMatcher(new ProgressReportEventArgs(1.0f)) } ); Expect.Once.On(mockedSubscriber). Method("IdleStateChanged"). WithAnyArguments(); test1.End(); } } this.mockery.VerifyAllExpectationsHaveBeenMet(); } /// /// Tries to provoke a deadlock by re-entering the tracker from one of its own events /// [Test] public void TestProvokedDeadlock() { using(ProgressTracker tracker = new ProgressTracker()) { TestTransaction test1 = new TestTransaction(); tracker.Track(test1); tracker.AsyncIdleStateChanged += (EventHandler)delegate(object sender, IdleStateEventArgs arguments) { tracker.Track(Transaction.EndedDummy); }; test1.End(); } } /// /// Tests whether the progress tracker enters and leaves the idle state correctly /// when a transaction is removed via Untrack() /// [Test] public void TestIdleWithUntrack() { using(ProgressTracker tracker = new ProgressTracker()) { TestTransaction test1 = new TestTransaction(); Assert.IsTrue(tracker.Idle); tracker.Track(test1); Assert.IsFalse(tracker.Idle); tracker.Untrack(test1); Assert.IsTrue(tracker.Idle); } } /// /// Tests whether the progress tracker enters and leaves the idle state correctly /// when a transaction is removed the transaction finishing /// [Test] public void TestIdleWithAutoRemoval() { using(ProgressTracker tracker = new ProgressTracker()) { TestTransaction test1 = new TestTransaction(); Assert.IsTrue(tracker.Idle); tracker.Track(test1); Assert.IsFalse(tracker.Idle); test1.End(); Assert.IsTrue(tracker.Idle); } } /// /// Tests whether the progress tracker enters and leaves the idle state correctly /// when a transaction is removed via Untrack() /// [Test] public void TestProgressWithUntrack() { using(ProgressTracker tracker = new ProgressTracker()) { TestTransaction test1 = new TestTransaction(); TestTransaction test2 = new TestTransaction(); tracker.Track(test1); tracker.Track(test2); Assert.AreEqual(0.0f, tracker.Progress); test1.ChangeProgress(0.5f); Assert.AreEqual(0.25f, tracker.Progress); tracker.Untrack(test2); Assert.AreEqual(0.5f, tracker.Progress); } } /// /// Verifies that the progress tracker throws an exception if it is instructed /// to untrack a transaction it doesn't know about /// [Test, ExpectedException(typeof(ArgumentException))] public void TestThrowOnUntrackNonTrackedTransaction() { using(ProgressTracker tracker = new ProgressTracker()) { TestTransaction test1 = new TestTransaction(); tracker.Untrack(test1); } } /// /// Verifies that the progress tracker throws an exception if it is instructed /// to untrack a transaction it doesn't know about /// [Test] public void TestProgressReportDuringUnsubscribe() { using(ProgressTracker tracker = new ProgressTracker()) { EvilTransaction evil = new EvilTransaction(); tracker.Track(evil); tracker.Untrack(evil); } } /// /// Verifies that the progress tracker doesn't choke on a transaction being tracked /// multiple times. /// [Test] public void TestMultiTrackedTransaction() { using(ProgressTracker tracker = new ProgressTracker()) { TestTransaction test = new TestTransaction(); tracker.Track(test); tracker.Track(test); tracker.Track(test); tracker.Untrack(test); tracker.Untrack(test); tracker.Untrack(test); } } /// Mocks a subscriber for the events of a tracker /// Tracker to mock an event subscriber for /// The mocked event subscriber private IProgressTrackerSubscriber mockSubscriber(ProgressTracker tracker) { IProgressTrackerSubscriber mockedSubscriber = this.mockery.NewMock(); tracker.AsyncIdleStateChanged += new EventHandler(mockedSubscriber.IdleStateChanged); tracker.AsyncProgressChanged += new EventHandler(mockedSubscriber.ProgressChanged); return mockedSubscriber; } /// Mock object factory private Mockery mockery; } } // namespace Nuclex.Support.Tracking #endif // UNITTEST