I am new to Unit Testing, and I need to mock the File static class in System.IO namespace. I am using Rhinomock, what is the best way to accomplish this,
Lets say I need to mock the File.Exists,File.Delete ...
I am new to Unit Testing, and I need to mock the File static class in System.IO namespace. I am using Rhinomock, what is the best way to accomplish this,
Lets say I need to mock the File.Exists,File.Delete ...
You can't mock static methods with Rhino mock. See this question for more info. You could create a facade class to wrap the file system calls you will use and then create a mock version of that.
See also Vadim's SystemWrapper. You can mock a lot of system classes with it, but you will need to apply the dependency injection pattern to make your code testable.
[Test]
public void Check_that_FileInfo_methods_Create_and_Delete_are_called()
{
// Add mock repository.
IFileInfoWrap fileInfoRepository = MockRepository.GenerateMock<IFileInfoWrap>();
IFileStreamWrap fileStreamRepository = MockRepository.GenerateMock<IFileStreamWrap>();
// Create expectations
fileInfoRepository.Expect(x => x.Create()).Return(fileStreamRepository);
fileStreamRepository.Expect(x => x.Close());
fileInfoRepository.Expect(x => x.Delete());
// Test
new FileInfoSample().CreateAndDeleteFile(fileInfoRepository);
// Verify expectations.
fileInfoRepository.VerifyAllExpectations();
fileStreamRepository.VerifyAllExpectations();
}
You should create a wrapper service called IFileService, then you can create a concrete that uses the statics for use in your app, and a mock IFileService that will have fake functionality for testing. Make it so you have to pass IFileService into the constructor or a property for what ever class is using it, this way normal operation requires you pass in the IFileService. Remember in Unit Testing you are testing just that part of code not the things its calling to like IFileService.
interface IFileService
{
bool Exists(string fileName);
void Delete(string fileName);
}
class FileService : IFileService
{
public bool Exists(string fileName)
{
return File.Exists(fileName);
}
public void Delete(string fileName)
{
File.Delete(fileName);
}
}
class MyRealCode
{
private IFileService _fileService;
public MyRealCode(IFileService fileService)
{
_fileService = fileService;
}
void DoStuff()
{
_fileService.Exists("myfile.txt");
}
}
I also used wrapper classes. I use this tool to easily generate wrapper classes such as System.IO.File
https://www.nuget.org/packages/Digitrish.WrapperGenerator/
Once you installed the package just type the following on Package Manager Console
Scaffold Wrapper System.IO.File
This will generate IFile.cs interface and one concreate wrapper class File.cs. Then you can use the IFile to Mock and File.cs for the real implementation.
Why not using MS Fakes? Wouldn't that be simple, already supported compared to RhinoMocks, SystemWrapper.Wrapper and SystemWrapper.Interface?
In addition to the you can't mock Static easily answer.
I'd like to point out that you shouldn't be mocking File.IO type, because it is not a type that you own. You should only Mock types that you own.
You can use moq framework for this.It is open source google project which you can download from here. Download Moq framework
To get fully understanding about how to use moq with C# please refer the following article.
http://learningcsharpe.blogspot.com/2011/11/how-to-use-moq-library-for-your-unit.html
thanks, Erandika.