Web Api 如何做上传文件的单元测试

代码如下:

            //--------上传------------
            HttpClient client = new HttpClient();
            #region
            MultipartFormDataContent form = new MultipartFormDataContent();
            StreamContent fileContent = new StreamContent(File.OpenRead(@"D:\uni-all-resources\CloudShop\Source\Development\Uni2uni.iShop\Uni2uni.iShop.WebApi\UploadAudio\ios_2.pcm"));
            fileContent.Headers.ContentType = new MediaTypeHeaderValue("application/octet-stream");
            fileContent.Headers.ContentDisposition = new ContentDispositionHeaderValue("form-data");
            fileContent.Headers.ContentDisposition.FileName = "ios_2.pcm";
            form.Add(fileContent);
            #endregion

            HttpResponseMessage res = client.PostAsync("http://app.uni2uni.com/api/Audio/UploadAudioResponseMessage", form).Result;
            var uploadModel = res.Content.ReadAsStringAsync().Result;

转载于:https://www.cnblogs.com/Kummy/p/3688147.html

猜你喜欢

转载自blog.csdn.net/weixin_34185364/article/details/93230607