@Test
  public void testConvert() throws Exception {
    InputStream converted =
        service.convert(
            this.getClass().getResourceAsStream("/sample-docx2.docx"), "application/pdf");

    String content = pdfToText(converted);
    assertThat(
        content, is("This is the Document Title\n \nand this is the document body.\n \n \n"));
  }