diff options
author | sunil unnava <su622b@att.com> | 2018-08-31 11:05:31 -0400 |
---|---|---|
committer | sunil unnava <su622b@att.com> | 2018-08-31 11:05:52 -0400 |
commit | f25de1912f09ed6d5e3172332913daee1851e704 (patch) | |
tree | b0620ed26e2321ee470d8793e4bdb138e75c4f58 /src/test/java/com | |
parent | 4cb1f9a13d30bdf0a2b4bd71b74ade305f5ff112 (diff) |
Remove the username/password check
Issue-ID: DMAAP-689
Change-Id: I1b6528bd3aaa2d9d117d0970444123a3c93ac597
Signed-off-by: sunil unnava <su622b@att.com>
Diffstat (limited to 'src/test/java/com')
-rw-r--r-- | src/test/java/com/att/nsa/mr/client/impl/MRBaseClientTest.java | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/test/java/com/att/nsa/mr/client/impl/MRBaseClientTest.java b/src/test/java/com/att/nsa/mr/client/impl/MRBaseClientTest.java index 56cf954..055c94f 100644 --- a/src/test/java/com/att/nsa/mr/client/impl/MRBaseClientTest.java +++ b/src/test/java/com/att/nsa/mr/client/impl/MRBaseClientTest.java @@ -448,21 +448,11 @@ public class MRBaseClientTest { PowerMockito.when(response.getHeaders()).thenReturn(map); PowerMockito.when(DmaapClientUtil.getResponsewtNoAuth(DmaapClientUtil.getTarget("/path"))).thenReturn(response); - mrBaseClient.getNoAuth("/path", "username", "password", "HTTPAUTH"); + mrBaseClient.getNoAuth("/path"); assertTrue(true); } - @Test(expected = HttpException.class) - public void testGetNoAuth_error() throws JSONException, HttpException { - - ResponseBuilder responseBuilder = Response.ok(); - PowerMockito.when(DmaapClientUtil.getResponsewtNoAuth(DmaapClientUtil.getTarget("/path"))).thenReturn( - responseBuilder.header("transactionid", "transactionid").entity("{\"test\":\"test\"}").build()); - mrBaseClient.getNoAuth("/path", null, null, "HTTPAUTH"); - assertTrue(true); - - } @Test public void testGetHTTPErrorResponseMessage() { |