[(servermethodbinding)] Extend tests.
This commit is contained in:
parent
8e9b7b590c
commit
04e280214f
|
@ -456,6 +456,19 @@ public class SearchDstu2Test {
|
|||
assertEquals("stringParam:true:false", ourLastMethod);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSearchByIdString() throws Exception {
|
||||
HttpGet httpGet = new HttpGet("http://localhost:" + ourPort + "/Patient?_id=aaa&stringParam=value");
|
||||
HttpResponse status = ourClient.execute(httpGet);
|
||||
String responseContent = IOUtils.toString(status.getEntity().getContent(), Charset.defaultCharset());
|
||||
IOUtils.closeQuietly(status.getEntity().getContent());
|
||||
ourLog.info(responseContent);
|
||||
assertEquals(200, status.getStatusLine().getStatusCode());
|
||||
|
||||
assertEquals("stringParam:false:false", ourLastMethod);
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public void testSearchWhitelist01Failing() throws Exception {
|
||||
HttpGet httpGet = new HttpGet("http://localhost:" + ourPort + "/Patient?_query=searchWhitelist01&ref=value");
|
||||
|
|
Loading…
Reference in New Issue