我是 rhino Mocks 的新手,我需要为以下方法编写一个单元测试用例:
public string PutFileInArchive(string fileName, string userId, string mimeType, byte[] fileContents, IocContainer container)
{
string archiveId;
try
{
IArchiveService _archiveService = container.Resolve<IArchiveService>();
archiveId = _archiveService.Archive(fileName, mimeType, userId, fileContents);
}
catch (Exception ex)
{
throw;
}
return archiveId;
}
上述方法在内部调用了我需要模拟的 Web 客户端方法。我创建了一个存根,但我不知道如何使用它。我的方法总是调用实际的 webclient 方法。
[TestMethod()]
public void Archive_PutFileInArchive_ShouldPut()
{
StreamReader reader = new StreamReader("C:\\File.txt");
MemoryFile file = new MemoryFile(reader.BaseStream, "string", "File.txt");
HttpPostedFileBase postedFile = file;
var fileContents = new byte[file.ContentLength];
file.InputStream.Read(fileContents, 0, file.ContentLength);
IFileArchiveService fileArchiveService = MockRepository.GenerateMock<IFileArchiveService>();
fileArchiveService.Stub(x => x.Archive("File.txt", "text/plain", "webuser1", fileContents)).Repeat.Once().Return("12345");
Archive archive = new Archive();
string fileid = archive.PutFileInArchive("File.txt", "webuser1", "text/plain", fileContents, container);
Assert.AreEqual("12345", fileid);
}
请让我知道如何在这种情况下使用模拟。