Spring Boot Failing中的MultipartFile上传测试 - 不确定原因

时间:2017-10-09 22:11:47

标签: spring spring-boot multipartform-data spring-boot-test

我在控制器中测试POST方法,该控制器通过MultipartFile处理图像上传。允许为空,但如果存在文件,则应将其上传。我写了一个单元测试,以确保它有效,但测试失败,返回404,我不知道为什么 - 可能是因为我不擅长阅读正在发生的事情。这是测试:

@Test
  public void saveAnEntryWhenPOSTNewUserWithAPicture() throws Exception {
    MockMultipartFile multiPFImage = new MockMultipartFile("ABCPicture", "abcpic.png",
            "img/png", "Generate bytes to simulate a picture".getBytes());
    mockMvc.perform(MockMvcRequestBuilders.fileUpload("/newcontact")
            .file(multiPFImage)
            .param("userId", "12345")
            .param("name", "Picture Uploader User"))
            .andExpect(status().isOk())
            .andExpect(content().string(containsString("savedContact")));
  }

这是运行该测试产生的堆栈跟踪:

MockHttpServletRequest:
      HTTP Method = POST
      Request URI = /newContact
       Parameters = {userId=[12345], name=[John Smith]}
          Headers = {}

Handler:
             Type = app.controllers.AdditiveController
           Method = public java.lang.String app.controllers.AdditiveController.createNewContact(app.models.dto.ContactDTO)

Async:
    Async started = false
     Async result = null

Resolved Exception:
             Type = null

ModelAndView:
        View name = null
             View = null
            Model = null

FlashMap:
       Attributes = null

MockHttpServletResponse:
           Status = 200
    Error message = null
          Headers = {Content-Type=[text/plain;charset=UTF-8], Content-Length=[12]}
     Content type = text/plain;charset=UTF-8
             Body = savedContact
    Forwarded URL = null
   Redirected URL = null
          Cookies = []

MockHttpServletRequest:
      HTTP Method = GET
      Request URI = /newContact
       Parameters = {}
          Headers = {}

Handler:
             Type = app.controllers.AdditiveController
           Method = public app.models.dto.ContactDTO app.controllers.AdditiveController.sendNewContactForm(org.springframework.ui.Model)

Async:
    Async started = false
     Async result = null

Resolved Exception:
             Type = null

ModelAndView:
        View name = null
             View = null
            Model = null

FlashMap:
       Attributes = null

MockHttpServletResponse:
           Status = 200
    Error message = null
          Headers = {Content-Type=[application/json;charset=UTF-8]}
     Content type = application/json;charset=UTF-8
             Body = {"userId":null,"contactId":null,"name":null,"email":null,"bday":null,"address":null,"city":null,"state":null,"phones":null,"contactImg":null}
    Forwarded URL = null
   Redirected URL = null
          Cookies = []

MockHttpServletRequest:
      HTTP Method = POST
      Request URI = /newcontact
       Parameters = {userId=[12345], name=[Picture Uploader User]}
          Headers = {Content-Type=[multipart/form-data;charset=UTF-8]}

Handler:
             Type = org.springframework.web.servlet.resource.ResourceHttpRequestHandler

Async:
    Async started = false
     Async result = null

Resolved Exception:
             Type = null

ModelAndView:
        View name = null
             View = null
            Model = null

FlashMap:
       Attributes = null

MockHttpServletResponse:
           Status = 404
    Error message = null
          Headers = {}
     Content type = null
             Body = 
    Forwarded URL = null
   Redirected URL = null
          Cookies = []

java.lang.AssertionError: Status 
Expected :200
Actual   :404
 <Click to see difference>


    at org.springframework.test.util.AssertionErrors.fail(AssertionErrors.java:54)
    at org.springframework.test.util.AssertionErrors.assertEquals(AssertionErrors.java:81)
    at org.springframework.test.web.servlet.result.StatusResultMatchers$10.match(StatusResultMatchers.java:665)
    at org.springframework.test.web.servlet.MockMvc$1.andExpect(MockMvc.java:171)
    at app.controllers.AdditiveControllerShould.saveAnEntryWhenPOSTNewUserWithAPicture(AdditiveControllerShould.java:72)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:75)
    at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:86)
    at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:84)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:252)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:94)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
    at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
    at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:70)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:191)
    at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
    at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)

编辑:

以下是正在测试的控制器方法:

@PostMapping(path = "/newContact")
  public String createNewContact(@ModelAttribute ContactDTO newContact) {
    Contact contact = new Contact(newContact.getUserId(), newContact.getName());
    setOptionalContactFields(contact, newContact);
    contactDAO.save(contact); // contactId automatically generated here (via SQL autoIncrement)
    newContact.setContactId(contact.getContactId()); // update the newContact to include the contactId
    if (newContact.getContactImg() !=null ) { 
      uploadContactProfileImg(newContact); // handles actual saving of image to persistence layer
    }

    return "savedContact"; // assumes template that can display all fields of a Contact will be returned
  }

非常感谢任何见解。

1 个答案:

答案 0 :(得分:1)

我发现您有错误类型public class ContactDTO { private MultipartFile conactImg; }

应为CREATE PROCEDURE [dbo].[IndexManagement] -- Parameters AS BEGIN SET NOCOUNT ON DECLARE @command nvarchar(max), @Satetement nvarchar(max) DECLARE @action varchar(15) IF OBJECT_ID('tempdb..#TableList') IS NOT NULL DROP TABLE #TableList CREATE TABLE #TableList ( ID INT IDENTITY ,DbName varchar(100) ,TableList nvarchar(100) ,IndexName nvarchar(500) ,SchemaName nvarchar(500) ,fragmentation float ) SET @Satetement =' INSERT INTO #TableList(DbName,TableList,IndexName,SchemaName,fragmentation ) SELECT DB_NAME(DB_ID()), dbtables.[name], dbindexes.[name], dbschemas.[name], CAST(avg_fragmentation_in_percent AS DECIMAL(18,2))avg_fragmentation_in_percent FROM sys.dm_db_index_physical_stats (DB_ID(), NULL, NULL, NULL, NULL) AS indexstats INNER JOIN sys.tables dbtables on dbtables.[object_id] = indexstats.[object_id] INNER JOIN sys.schemas dbschemas on dbtables.[schema_id] = dbschemas.[schema_id] INNER JOIN sys.indexes AS dbindexes ON dbindexes.[object_id] = indexstats.[object_id] AND indexstats.index_id = dbindexes.index_id WHERE indexstats.database_id = DB_ID() AND indexstats.avg_fragmentation_in_percent BETWEEN 5 AND 100 AND indexstats.index_id > 0 AND page_count > 1000 ' SELECT @command = 'IF ''?'' NOT IN (''msdb'', ''master'',''model'',''tempdb'' ) BEGIN USE ? EXEC ('''+ @Satetement+''') END ' +CHAR(13)+CHAR(10) EXEC sp_MSforeachdb @command --Empty command SET @command='' -- ACLARACION -FILLFACTOR -- Deberia ser de acuerdo a los updates de las tablas -- EJ: Tablas que el indice es el identity column --> 100% -- Tablas estaticas --> 100% -- Tablas casi estaticas --> 95% -- Tablas con mucho movimiento (de un 70 a un 90) -- ojo-- en estas ultimas empezar por un 90 y observarlas como se fragmentan DECLARE @fillfactor INT = 90 ,@MinID INT ,@MaxID INT ,@Table VARCHAR(100) ,@Database VARCHAR(100) ,@GetIndex VARCHAR(500) ,@GetSchema VARCHAR(500) ,@fragmentation float ,@SQl nvarchar(max) SELECT @MinID=MIN(Id) ,@MaxID=MAX(Id) from #TableList where IndexName IS NOT NULL WHILE (@MinID<=@MaxID) BEGIN SELECT DISTINCT @Table=TableList, @Database=DbName, @GetIndex=IndexName, @GetSchema=SchemaName, @fragmentation = fragmentation FROM #TableList where id=@MinID AND IndexName IS NOT NULL --SEPARAMOS PARA REBUILD O PARA OEROGANIZE IF @fragmentation > 5 AND @fragmentation <30 BEGIN SET @command= 'ALTER INDEX '+ @GetIndex +' ON ['+ @Database+'].['+@GetSchema+ +'].['+@Table +'] REORGANIZE' SET @action='REORGANIZE' END ELSE BEGIN SET @command = ' ALTER INDEX '+@GetIndex+' ON [' + @Database+']'+'.['+@GetSchema+ ']'+'.['+@Table +']'+ 'REBUILD WITH (FILLFACTOR = ' + CONVERT(VARCHAR(3),@fillfactor) + ')' SET @action='REBUILD' END -- PRINT @command EXEC ( @command) --Insert values into IndexMaintenance table Insert Into IndexMaintenanceHistory (DatabaseName,TableName, IndexName, Fragmentation, Operation, OnDate) VALUES (@Database,@Table,@GetIndex, @fragmentation, @action, GETDATE()) SET @MinID=@MinID+1 END --SELECT * FROM #TableList DROP TABLE #TableList END /* PROCEDURE */

其他: 您的DTO中存在拼写错误

{{1}}

请求多部分名称应与DTO相同, ABCPicture 应为 conactImg