Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/spring/14.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java MockRestServiceServer测试通过多部分formdata发送文件上载_Java_Spring_Unit Testing_Mocking - Fatal编程技术网

Java MockRestServiceServer测试通过多部分formdata发送文件上载

Java MockRestServiceServer测试通过多部分formdata发送文件上载,java,spring,unit-testing,mocking,Java,Spring,Unit Testing,Mocking,我有一个方法,将rest请求发送到包含多部分formdata的api,这将向外部api上传一个文件。但是,我无法完成这个问题的单元测试方法 我发现的第一个问题是,我期望的内容类型总是与方法创建的内容类型不同。由于某些原因,在发送请求时,mediatype是multipart formdata,但头被设置为charset和boundary之外的头。后者边界总是在改变它的值,因此我不能在单元测试上设置期望值,因为它总是不同的 除此之外,我如何期望请求的内容与我启动测试时使用的内容相同?如何断言有效负

我有一个方法,将rest请求发送到包含多部分formdata的api,这将向外部api上传一个文件。但是,我无法完成这个问题的单元测试方法

我发现的第一个问题是,我期望的内容类型总是与方法创建的内容类型不同。由于某些原因,在发送请求时,mediatype是multipart formdata,但头被设置为charset和boundary之外的头。后者边界总是在改变它的值,因此我不能在单元测试上设置期望值,因为它总是不同的

除此之外,我如何期望请求的内容与我启动测试时使用的内容相同?如何断言有效负载是相同的

请检查代码:

服务类别:

@Service
@Slf4j
public class JiraService {

    private HttpHeaders createRequestHeaders(JiraClient jiraClient, MediaType contenType) {
        HttpHeaders headers = new HttpHeaders();
        headers.setContentType(contenType);
        headers.setAccept(Collections.singletonList(MediaType.APPLICATION_JSON));
        headers.setBasicAuth(jiraClient.getUsername(), jiraClient.getPassword());

        return headers;
    }

    private <EC, RC> ResponseEntity<RC> createRequestAndSend(HttpMethod method, String url, HttpHeaders headers,
            EC payload, Class<RC> responseType) {
        HttpEntity<EC> requestEntity = new HttpEntity<>(payload, headers);
        ResponseEntity<RC> responseEntity = restTemplate.exchange(url, method, requestEntity, responseType);
        // TODO deal with response

        log.error("Loggin something");

        return responseEntity;
    }

    public void addAttachment(JiraClient jiraClient, JiraIssue jiraIssue, JiraAttachment jiraAttachment)
            throws MalformedURLException, IOException {
        String url = jiraClient.getHost() + "/rest/api/2/issue/" + jiraIssue.getKey() + "/attachments";

        HttpHeaders headers = createRequestHeaders(jiraClient, MediaType.MULTIPART_FORM_DATA); // What to do here?
        headers.set("X-Atlassian-Token", "no-check");

        FileSystemResource file = jiraAttachment.downloadFileFromWeb();
        MultiValueMap<String, Object> payload = new LinkedMultiValueMap<>();
        payload.add("file", file);

        createRequestAndSend(HttpMethod.POST, url, headers, payload, String.class);

        jiraAttachment.deleteFileFromSystem();
    }
}

使用

使用


@ActiveProfiles("test")
@RestClientTest(JiraService.class)
public class JiraServiceTest {

  @Value("classpath:jira/add_attachment/validJiraAttachmentAddition.json")
  private Resource validJiraAttachmentAddition;

  @Autowired
  private MockRestServiceServer server;
  @Autowired
  private JiraService jiraService;

  @Mock
  private JiraAttachment mockJiraAttachment;

  private FileSystemResource attachmentFileSystemResource;

  @BeforeEach
  public void setupTests() throws IOException {
      // initialize mocks
  }

  @Test
  public void addAttachment_WithValidData_ShouldAddAttachmentToJiraIssue() throws Exception {
    String url = host + "/rest/api/2/issue/" + issueKey + "/attachments";

    ResponseActions stub = createServiceStub(HttpMethod.POST, url, MediaType.MULTIPART_FORM_DATA_VALUE);
    stub = stub.andExpect(header("X-Atlassian-Token", "no-check"));
    stub.andRespond(withSuccess());
    // How to assert that the content of the request is the same as the resource?

    when(mockJiraAttachment.downloadFileFromWeb()).thenReturn(attachmentFileSystemResource);

    jiraService.addAttachment(mockJiraClient, mockJiraIssue, mockJiraAttachment);
  }

  private ResponseActions createServiceStub(HttpMethod method, String url, String contenType) {
    String encodedCredentials = Base64.getEncoder().encodeToString((username + ":" + password).getBytes());

    ResponseActions stub = server.expect(ExpectedCount.once(), requestTo(url));
    stub = stub.andExpect(method(method));
    stub = stub.andExpect(header("Content-Type", contenType)); // How to expect the content type here ?
    stub = stub.andExpect(header("Authorization", "Basic " + encodedCredentials));

    return stub;
  }
}

import static org.springframework.test.web.client.match.MockRestRequestMatchers.content;
...

stub.andExpect(content().contentTypeCompatibleWith(MediaType.MULTIPART_FORM_DATA))