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

代码如下:

            //--------上传------------
            HttpClient client = new HttpClient();
            #region
            MultipartFormDataContent form = new MultipartFormDataContent();
            StreamContent fileContent = new StreamContent(File.OpenRead(@"D:uni-all-resourcesCloudShopSourceDevelopmentUni2uni.iShopUni2uni.iShop.WebApiUploadAudioios_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