2007-05-11 21:15:35 +00:00
|
|
|
#region CPL License
|
|
|
|
/*
|
|
|
|
Nuclex Framework
|
2008-01-07 18:04:02 +00:00
|
|
|
Copyright (C) 2002-2008 Nuclex Development Labs
|
2007-05-11 21:15:35 +00:00
|
|
|
|
|
|
|
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
|
2007-07-24 20:15:19 +00:00
|
|
|
|
2007-04-19 18:18:34 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
#if UNITTEST
|
|
|
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
using NMock2;
|
|
|
|
|
|
|
|
namespace Nuclex.Support.Tracking {
|
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
/// <summary>Unit Test for the waitable group class</summary>
|
2007-04-19 18:18:34 +00:00
|
|
|
[TestFixture]
|
2008-06-11 20:28:08 +00:00
|
|
|
public class WaitableGroupTest {
|
2007-04-19 18:18:34 +00:00
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
#region interface IWaitableGroupSubscriber
|
2007-04-19 18:18:34 +00:00
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
/// <summary>Interface used to test the set waitable.</summary>
|
|
|
|
public interface IWaitableGroupSubscriber {
|
2007-04-19 18:18:34 +00:00
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
/// <summary>Called when the set waitable's progress changes</summary>
|
|
|
|
/// <param name="sender">Waitable group whose progress has changed</param>
|
2007-04-19 18:18:34 +00:00
|
|
|
/// <param name="e">Contains the new progress achieved</param>
|
2008-03-26 21:03:49 +00:00
|
|
|
void ProgressChanged(object sender, ProgressReportEventArgs e);
|
2007-04-19 18:18:34 +00:00
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
/// <summary>Called when the set waitable has ended</summary>
|
|
|
|
/// <param name="sender">Waitable group that as ended</param>
|
2007-04-19 18:18:34 +00:00
|
|
|
/// <param name="e">Not used</param>
|
|
|
|
void Ended(object sender, EventArgs e);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
#endregion // interface IWaitableGroupSubscriber
|
2007-04-19 18:18:34 +00:00
|
|
|
|
|
|
|
#region class ProgressUpdateEventArgsMatcher
|
|
|
|
|
|
|
|
/// <summary>Compares two ProgressUpdateEventArgsInstances for NMock validation</summary>
|
|
|
|
private class ProgressUpdateEventArgsMatcher : Matcher {
|
|
|
|
|
|
|
|
/// <summary>Initializes a new ProgressUpdateEventArgsMatcher </summary>
|
|
|
|
/// <param name="expected">Expected progress update event arguments</param>
|
2008-03-26 21:03:49 +00:00
|
|
|
public ProgressUpdateEventArgsMatcher(ProgressReportEventArgs expected) {
|
2007-04-19 18:18:34 +00:00
|
|
|
this.expected = expected;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Called by NMock to verfiy the ProgressUpdateEventArgs match the expected value
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="actualAsObject">Actual value to compare to the expected value</param>
|
|
|
|
/// <returns>
|
|
|
|
/// True if the actual value matches the expected value; otherwise false
|
|
|
|
/// </returns>
|
|
|
|
public override bool Matches(object actualAsObject) {
|
2008-03-26 21:03:49 +00:00
|
|
|
ProgressReportEventArgs actual = (actualAsObject as ProgressReportEventArgs);
|
2007-04-19 18:18:34 +00:00
|
|
|
if(actual == null)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return (actual.Progress == this.expected.Progress);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>Creates a string representation of the expected value</summary>
|
|
|
|
/// <param name="writer">Writer to write the string representation into</param>
|
|
|
|
public override void DescribeTo(TextWriter writer) {
|
|
|
|
writer.Write(this.expected.Progress.ToString());
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>Expected progress update event args value</summary>
|
2008-03-26 21:03:49 +00:00
|
|
|
private ProgressReportEventArgs expected;
|
2007-04-19 18:18:34 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endregion // class ProgressUpdateEventArgsMatcher
|
|
|
|
|
2008-03-26 21:03:49 +00:00
|
|
|
#region class TestWaitable
|
2007-04-19 18:18:34 +00:00
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
/// <summary>Waitable used for testing in this unit test</summary>
|
2008-03-26 21:03:49 +00:00
|
|
|
private class TestWaitable : Waitable, IProgressReporter {
|
|
|
|
|
|
|
|
/// <summary>will be triggered to report when progress has been achieved</summary>
|
|
|
|
public event EventHandler<ProgressReportEventArgs> AsyncProgressChanged;
|
2007-04-19 18:18:34 +00:00
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
/// <summary>Changes the testing waitable's indicated progress</summary>
|
2007-04-19 18:18:34 +00:00
|
|
|
/// <param name="progress">
|
2008-06-11 20:28:08 +00:00
|
|
|
/// New progress to be reported by the testing waitable
|
2007-04-19 18:18:34 +00:00
|
|
|
/// </param>
|
|
|
|
public void ChangeProgress(float progress) {
|
2008-03-26 21:03:49 +00:00
|
|
|
OnAsyncProgressChanged(progress);
|
2007-04-19 18:18:34 +00:00
|
|
|
}
|
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
/// <summary>Transitions the waitable into the ended state</summary>
|
2007-04-19 18:18:34 +00:00
|
|
|
public void End() {
|
|
|
|
OnAsyncEnded();
|
|
|
|
}
|
|
|
|
|
2008-03-26 21:03:49 +00:00
|
|
|
/// <summary>Fires the progress update event</summary>
|
|
|
|
/// <param name="progress">Progress to report (ranging from 0.0 to 1.0)</param>
|
|
|
|
/// <remarks>
|
2008-06-11 20:28:08 +00:00
|
|
|
/// Informs the observers of this waitable about the achieved progress.
|
2008-03-26 21:03:49 +00:00
|
|
|
/// </remarks>
|
|
|
|
protected virtual void OnAsyncProgressChanged(float progress) {
|
|
|
|
OnAsyncProgressChanged(new ProgressReportEventArgs(progress));
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>Fires the progress update event</summary>
|
|
|
|
/// <param name="eventArguments">Progress to report (ranging from 0.0 to 1.0)</param>
|
|
|
|
/// <remarks>
|
2008-06-11 20:28:08 +00:00
|
|
|
/// Informs the observers of this waitable about the achieved progress.
|
|
|
|
/// Allows for classes derived from the Waitable class to easily provide
|
2008-03-26 21:03:49 +00:00
|
|
|
/// a custom event arguments class that has been derived from the
|
2008-06-11 20:28:08 +00:00
|
|
|
/// Waitable's ProgressUpdateEventArgs class.
|
2008-03-26 21:03:49 +00:00
|
|
|
/// </remarks>
|
|
|
|
protected virtual void OnAsyncProgressChanged(ProgressReportEventArgs eventArguments) {
|
|
|
|
EventHandler<ProgressReportEventArgs> copy = AsyncProgressChanged;
|
|
|
|
if(copy != null)
|
|
|
|
copy(this, eventArguments);
|
|
|
|
}
|
|
|
|
|
2007-04-19 18:18:34 +00:00
|
|
|
}
|
|
|
|
|
2008-03-26 21:03:49 +00:00
|
|
|
#endregion // class TestWaitable
|
2007-04-19 18:18:34 +00:00
|
|
|
|
|
|
|
/// <summary>Initialization routine executed before each test is run</summary>
|
|
|
|
[SetUp]
|
|
|
|
public void Setup() {
|
|
|
|
this.mockery = new Mockery();
|
|
|
|
}
|
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
/// <summary>Validates that the set waitable properly sums the progress</summary>
|
2007-04-19 18:18:34 +00:00
|
|
|
[Test]
|
|
|
|
public void TestSummedProgress() {
|
2008-06-11 20:28:08 +00:00
|
|
|
WaitableGroup<TestWaitable> testWaitableGroup =
|
|
|
|
new WaitableGroup<TestWaitable>(
|
2008-03-26 21:03:49 +00:00
|
|
|
new TestWaitable[] { new TestWaitable(), new TestWaitable() }
|
2007-04-19 18:18:34 +00:00
|
|
|
);
|
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
IWaitableGroupSubscriber mockedSubscriber = mockSubscriber(testWaitableGroup);
|
2007-04-19 18:18:34 +00:00
|
|
|
|
|
|
|
Expect.Once.On(mockedSubscriber).
|
2008-03-26 21:03:49 +00:00
|
|
|
Method("ProgressChanged").
|
2007-04-19 18:18:34 +00:00
|
|
|
With(
|
|
|
|
new Matcher[] {
|
2008-06-11 20:28:08 +00:00
|
|
|
new NMock2.Matchers.TypeMatcher(typeof(WaitableGroup<TestWaitable>)),
|
2008-03-26 21:03:49 +00:00
|
|
|
new ProgressUpdateEventArgsMatcher(new ProgressReportEventArgs(0.25f))
|
2007-04-19 18:18:34 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
testWaitableGroup.Children[0].Waitable.ChangeProgress(0.5f);
|
2007-04-19 18:18:34 +00:00
|
|
|
|
|
|
|
this.mockery.VerifyAllExpectationsHaveBeenMet();
|
|
|
|
}
|
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
/// <summary>Validates that the waitable group respects the weights</summary>
|
2007-04-19 18:18:34 +00:00
|
|
|
[Test]
|
|
|
|
public void TestWeightedSummedProgress() {
|
2008-06-11 20:28:08 +00:00
|
|
|
WaitableGroup<TestWaitable> testWaitableGroup =
|
|
|
|
new WaitableGroup<TestWaitable>(
|
2008-03-26 21:20:52 +00:00
|
|
|
new WeightedWaitable<TestWaitable>[] {
|
|
|
|
new WeightedWaitable<TestWaitable>(new TestWaitable(), 1.0f),
|
|
|
|
new WeightedWaitable<TestWaitable>(new TestWaitable(), 2.0f)
|
2007-04-19 18:18:34 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
IWaitableGroupSubscriber mockedSubscriber = mockSubscriber(testWaitableGroup);
|
2007-04-19 18:18:34 +00:00
|
|
|
|
|
|
|
Expect.Once.On(mockedSubscriber).
|
2008-03-26 21:03:49 +00:00
|
|
|
Method("ProgressChanged").
|
2007-04-19 18:18:34 +00:00
|
|
|
With(
|
|
|
|
new Matcher[] {
|
2008-06-11 20:28:08 +00:00
|
|
|
new NMock2.Matchers.TypeMatcher(typeof(WaitableGroup<TestWaitable>)),
|
2008-03-26 21:03:49 +00:00
|
|
|
new ProgressUpdateEventArgsMatcher(new ProgressReportEventArgs(0.5f / 3.0f))
|
2007-04-19 18:18:34 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
testWaitableGroup.Children[0].Waitable.ChangeProgress(0.5f);
|
2007-04-19 18:18:34 +00:00
|
|
|
|
|
|
|
Expect.Once.On(mockedSubscriber).
|
2008-03-26 21:03:49 +00:00
|
|
|
Method("ProgressChanged").
|
2007-04-19 18:18:34 +00:00
|
|
|
With(
|
|
|
|
new Matcher[] {
|
2008-06-11 20:28:08 +00:00
|
|
|
new NMock2.Matchers.TypeMatcher(typeof(WaitableGroup<TestWaitable>)),
|
2008-03-26 21:03:49 +00:00
|
|
|
new ProgressUpdateEventArgsMatcher(new ProgressReportEventArgs(0.5f))
|
2007-04-19 18:18:34 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
testWaitableGroup.Children[1].Waitable.ChangeProgress(0.5f);
|
2007-04-19 18:18:34 +00:00
|
|
|
|
|
|
|
this.mockery.VerifyAllExpectationsHaveBeenMet();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2008-06-11 20:28:08 +00:00
|
|
|
/// Validates that the ended event is triggered when the last waitable ends
|
2007-04-19 18:18:34 +00:00
|
|
|
/// </summary>
|
|
|
|
[Test]
|
|
|
|
public void TestEndedEvent() {
|
2008-06-11 20:28:08 +00:00
|
|
|
WaitableGroup<TestWaitable> testWaitableGroup =
|
|
|
|
new WaitableGroup<TestWaitable>(
|
2008-03-26 21:03:49 +00:00
|
|
|
new TestWaitable[] { new TestWaitable(), new TestWaitable() }
|
2007-04-19 18:18:34 +00:00
|
|
|
);
|
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
IWaitableGroupSubscriber mockedSubscriber = mockSubscriber(testWaitableGroup);
|
2007-04-19 18:18:34 +00:00
|
|
|
|
|
|
|
Expect.Exactly(2).On(mockedSubscriber).
|
2008-03-27 18:45:09 +00:00
|
|
|
Method("ProgressChanged").
|
2007-04-19 18:18:34 +00:00
|
|
|
WithAnyArguments();
|
|
|
|
|
|
|
|
Expect.Once.On(mockedSubscriber).
|
|
|
|
Method("Ended").
|
|
|
|
WithAnyArguments();
|
2008-05-14 19:06:06 +00:00
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
testWaitableGroup.Children[0].Waitable.End();
|
|
|
|
testWaitableGroup.Children[1].Waitable.End();
|
2007-04-19 18:18:34 +00:00
|
|
|
|
|
|
|
this.mockery.VerifyAllExpectationsHaveBeenMet();
|
|
|
|
}
|
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
/// <summary>Mocks a subscriber for the events of a waitable</summary>
|
|
|
|
/// <param name="waitable">Waitable to mock an event subscriber for</param>
|
2007-07-10 18:15:34 +00:00
|
|
|
/// <returns>The mocked event subscriber</returns>
|
2008-06-11 20:28:08 +00:00
|
|
|
private IWaitableGroupSubscriber mockSubscriber(Waitable waitable) {
|
|
|
|
IWaitableGroupSubscriber mockedSubscriber =
|
|
|
|
this.mockery.NewMock<IWaitableGroupSubscriber>();
|
2007-07-10 18:15:34 +00:00
|
|
|
|
2008-06-11 20:28:08 +00:00
|
|
|
waitable.AsyncEnded += new EventHandler(mockedSubscriber.Ended);
|
|
|
|
(waitable as IProgressReporter).AsyncProgressChanged +=
|
2008-03-26 21:03:49 +00:00
|
|
|
new EventHandler<ProgressReportEventArgs>(mockedSubscriber.ProgressChanged);
|
2007-07-10 18:15:34 +00:00
|
|
|
|
|
|
|
return mockedSubscriber;
|
|
|
|
}
|
|
|
|
|
2007-04-19 18:18:34 +00:00
|
|
|
/// <summary>Mock object factory</summary>
|
|
|
|
private Mockery mockery;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Nuclex.Support.Tracking
|
|
|
|
|
|
|
|
#endif // UNITTEST
|