I am working on a project that will start up an ASP.NET application (including MVC apps) without the need for a web server. The point of the project is to enable better integration testing of web applications, and it uses Steve Sanderson's MvcIntegrationTestingFramework (http://blog.stevensanderson.com/2009/06/11/integration-testing-your-aspnet-mvc-application/).
One thing that framework doesn't appear to support is file uploads, and the project we are trying to test relies very heavily on HTTP file uploads. So, in an attempt to enable it, I have extended Steve's SimulatedWorkerRequest, which extends SimpleWorkerRequest. In my class, I override GetPreloadedEntityBody() to create the multi-part entity body, and read the file data off a stream I pass to the class in its constructor. Here is the constructor:
public SimulatedFileUploadWorkerRequest(string page,
string query,
TextWriter output,
HttpCookieCollection cookies,
string httpVerbName,
NameValueCollection formValues,
NameValueCollection headers,
Stream file)
: base(page, query, output,cookies,httpVerbName,formValues,headers)
{
_filedata = file;
_boundary = "-----------" + DateTime.Now.Ticks.ToString("x");
_content_length = "0";
}
The GetPreloadedEntityBody() method appears to run fine, and I can see the entity data (I write log statements and the entity body to a temp file for debugging purposes). Here is that code (it is long, sorry): public override byte[] GetPreloadedEntityBody() { string log_messages = "------------------------------------------------\r\n"; log_messages += "Executing GetPreloadedEntityBody in SimulatedFileUploadWorkerRequest\r\n"; if (formValues == null) return base.GetPreloadedEntityBody(); //memory stream to hold the response body MemoryStream memstream = new MemoryStream();
log_messages += "Establishing the boundary: \r\n--" + _boundary + "\r\n";
string begin_boundary = "\r\n--" + _boundary + "\r\n";
byte[] begin_boundary_bytes = System.Text.Encoding.ASCII.GetBytes(begin_boundary);
//first, write out all the form fields into boundaries
string formdatatemplate = "Content-Disposition: form-data; name=\"{0}\"\r\n\r\n{1}";
Regex regex = new Regex("filename=");
string fileparam = "";
foreach (string key in formValues.Keys)
{
if(!regex.IsMatch(formValues[key])){
memstream.Write(begin_boundary_bytes, 0, begin_boundary_bytes.Length);
string formitem = String.Format(formdatatemplate, key, formValues[key]);
log_messages += "Adding a form item----> " + formitem + "\r\n";
byte[] formitembytes = Encoding.UTF8.GetBytes(formitem);
memstream.Write(formitembytes, 0, formitembytes.Length);
}else{
//this is the file parameter
fileparam = key;
}
}
//write a boundary prior to the file data
memstream.Write(begin_boundary_bytes, 0, begin_boundary_bytes.Length);
string[] fileinfo = formValues[fileparam].Split(';');
string header = String.Format("Content-Disposition: form-data; name=\"{0}\"; {1}\r\n{2}\r\n\r\n",fileparam,fileinfo[0],fileinfo[1]);
log_messages += "File Part Header----> " + header + "\r\n";
byte[] headerbytes = Encoding.UTF8.GetBytes(header);
memstream.Write(headerbytes, 0, headerbytes.Length);
//write the file into the memory stream in 4kb chunks
byte[] fbuffer = new byte[4096];
int bytesread = 0;
//read the file data into a buffer in a chunk
log_messages += "Can the file be read? --> " + _filedata.CanRead + "\r\n";
while((bytesread = _filedata.Read(fbuffer, 0, fbuffer.Length)) != 0){
//write the chunk onto the memory stream
log_messages += "Read " + bytesread + " bytes onto the memory stream\r\n";
memstream.Write(fbuffer, 0, bytesread);
}
_filedata.Close();
//set up the ending boundary
byte[] ending_boundary_bytes = Encoding.ASCII.GetBytes("\r\n--" + _boundary + "--\r\n");
memstream.Write(ending_boundary_bytes, 0, ending_boundary_bytes.Length);
//read the request body from the memory stream to a byte array
log_messages += "Memstream length (content length) = " + memstream.Length + "\r\n";
byte[] request_body = new byte[memstream.Length];
//memstream.Read(request_body, 0, (int)memstream.Length);
request_body = memstream.ToArray();
memstream.Close();
log_messages += "Request Body (byte array) length: " + request_body.Length + "\r\n";
//save the content length
_content_length = Convert.ToString(request_body.Length);
log_messages += "\r\n--------------------------------------------------------------\r\n";
log_messages += "\r\n\tRequest Body:\r\n\r\n";
FileStream output = new FileStream("C:\\temp\\output.txt", FileMode.Create);
byte[] messages = Encoding.UTF8.GetBytes(log_messages);
output.Write(messages, 0, messages.Length);
output.Write(request_body, 0, request_body.Length);
log_messages = "\r\n\r\nRequest Body (byte array) length: " + request_body.Length + "\r\n";
byte[] messages2 = Encoding.UTF8.GetBytes(log_messages);
output.Write(messages2, 0, messages2.Length);
output.Close();
//set fully read flag
_isFullyRead = true;
_request_data = new byte[request_body.Length];
_request_data = request_body;
return request_body;
}
When I run a test that uploads a file, I get a 500 back from the ASP.NET appdomain and I get a stack trace telling me that a closed file can't be read:
[ObjectDisposedException: Cannot access a closed file.]
System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) +4729827
System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type) +1725
System.IO.FileStream.Read(Byte[] array, Int32 offset, Int32 count) +0
MvcIntegrationTestFramework.Browsing.SimulatedFileUploadWorkerRequest.GetPreloadedEntityBody() +2738
System.Web.HttpRequest.GetEntireRawContent() +287
System.Web.HttpRequest.GetMultipartContent() +233
System.Web.HttpRequest.FillInFormCollection() +330
System.Web.HttpRequest.get_Form() +89
I am confused as to what file this exception is referring to, since I read the entire file contents in to the byte array that is returned by GetPreloadedEntity(), and I also implement the IsEntireEntityBodyIsPreloaded() method to return true. Has anyone out there experienced this before or can anyone educate me on how those methods in SimpleWorkerRequest are supposed to work? The MSDN documentation for this particular class is pretty weak.
Thank you!