I'm trying to figure out the best way to unit test this class:
public class FileGroupGarbageCollector
{
private Task _task;
private readonly AutoResetEvent _event = new AutoResetEvent(false);
public void Start()
{
_task = Task.Factory.StartNew(StartCollecting);
}
public void Stop()
{
_event.Set();
}
private void StartCollecting()
{
do
{
Process();
}
while (!_event.WaitOne(60000, false));
}
private void Process()
{
/* do some work to the database and file system */
}
}
It's not supposed to be the most well formed class, just trying to figure out something!
I then have a unit test where I want to start and then stop the service, asserting the the private 'Processs' method did something to the database or filesystem.
My unit test is as follows (nunit):
[Test]
public void TestStart()
{
var fg = new FileGroupGarbageCollector(30000);
fg.Start();
Thread.Sleep(5000); // i hate this!
fg.Stop();
// assert it did what i wanted it to do!
}
Is there any way or any nice pattern that can be used here so I can avoid Thread.Sleep()? I hate the idea of sleeping in a unit test (let alone in production code), but I refuse to just test private functionality! I want to test the public interface of this class.
Any answers are greatly appreciated :)
UPDATE AFTER ANSWER
I went with the IoC way of things and it works really nicely :)
public interface IEventFactory { IEvent Create(); }
public interface IEvent
{
bool WaitOne(int timeout);
void Set();
}
Then my mock objects (using Moq):
var mockEvent = new Mock<IEvent>();
var mockEventFactory = new Mock<IEventFactory>();
mockEvent.Setup(x => x.WaitOne(It.IsAny<int>())).Returns(true);
mockEvent.Setup(x => x.Set());
mockEventFactory.Setup(x => x.Create()).Returns(mockEvent.Object);
So instantly a call to IEvent.WaitOne() returns true and exits, so no need for the Thread.Sleep()!
:)