210709-TIL

Jane·2021년 7월 9일
0

TIL

목록 보기
75/103
post-thumbnail

오늘 한 일

✔️ 이슈트레커 프로젝트

    @Test
    @Transactional
    @DisplayName("이미지 업로드 테스트")
    void upload() throws Exception {
        File folder = new ClassPathResource("image").getFile();
        String listOfFile = folder.listFiles()[0].getAbsolutePath();
        final MockMultipartFile multipartFile 
        = new MockMultipartFile("image", "test-image.png", "image/png", 
        new FileInputStream(listOfFile));
        String url = "http://localhost:" + port + "/api/images";
        mockMvc.perform(multipart(url)
                .file(multipartFile))
                .andDo(print())
                .andExpect(status().isOk());
    }

✔️ 알고리즘

✔️ 파이썬 문법

✔️ 데이터베이스 시스템


느낀 점

  • 이미지 업로드 테스트에 성공했다.
  • 클라우드 스터디 잼을 수료했다.
  • k와의 데이터베이스 스터디를 위해 데이터베이스 시스템 1장을 읽었다.

0개의 댓글