summaryrefslogtreecommitdiffstats
path: root/src/test/java/com/att/nsa/dmaap/service/MMRestServiceTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/att/nsa/dmaap/service/MMRestServiceTest.java')
-rw-r--r--src/test/java/com/att/nsa/dmaap/service/MMRestServiceTest.java28
1 files changed, 23 insertions, 5 deletions
diff --git a/src/test/java/com/att/nsa/dmaap/service/MMRestServiceTest.java b/src/test/java/com/att/nsa/dmaap/service/MMRestServiceTest.java
index fbd9376..6fa5592 100644
--- a/src/test/java/com/att/nsa/dmaap/service/MMRestServiceTest.java
+++ b/src/test/java/com/att/nsa/dmaap/service/MMRestServiceTest.java
@@ -24,6 +24,7 @@ import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import static org.mockito.Matchers.anyString;
+import java.io.ByteArrayInputStream;
import java.io.FileInputStream;
//import static org.mockito.Matchers.anyString;
@@ -162,6 +163,9 @@ public class MMRestServiceTest {
public void testCallCreateMirrorMaker() throws DMaaPAccessDeniedException, CambriaApiException, IOException,
TopicExistsException, JSONException, ConfigDbException {
prepareForTestCommon();
+
+ String sampleJson = "{\"test\":\"test\"}";
+ InputStream inputSteam = new ByteArrayInputStream(sampleJson.getBytes());
mmRestService.callCreateMirrorMaker(iStream);
assertTrue(true);
}
@@ -170,13 +174,18 @@ public class MMRestServiceTest {
public void testCallListAllMirrorMaker() throws DMaaPAccessDeniedException, CambriaApiException, IOException,
TopicExistsException, JSONException, ConfigDbException {
prepareForTestCommon();
- mmRestService.callListAllMirrorMaker(iStream);
+
+ String sampleJson = "{\"test\":\"test\"}";
+ InputStream inputSteam = new ByteArrayInputStream(sampleJson.getBytes());
+ mmRestService.callListAllMirrorMaker(inputSteam);
assertTrue(true);
}
@Test
public void testCallUpdateMirrorMaker() throws ConfigDbException, CambriaApiException {
prepareForTestCommon();
+
+
mmRestService.callUpdateMirrorMaker(iStream);
assertTrue(true);
}
@@ -191,24 +200,33 @@ public class MMRestServiceTest {
@Test
public void testListWhiteList() throws ConfigDbException {
prepareForTestCommon();
- mmRestService.listWhiteList(iStream);
+
+ String sampleJson = "{\"test\":\"test\"}";
+ InputStream inputSteam = new ByteArrayInputStream(sampleJson.getBytes());
+ mmRestService.listWhiteList(inputSteam);
assertTrue(true);
}
@Test
public void testCreateWhiteList() throws ConfigDbException {
prepareForTestCommon();
- mmRestService.createWhiteList(iStream);
+ String sampleJson = "{\"test\":\"test\"}";
+ InputStream inputSteam = new ByteArrayInputStream(sampleJson.getBytes());
+
+ mmRestService.createWhiteList(inputSteam);
assertTrue(true);
}
@Test
public void testDeleteWhiteList() throws ConfigDbException {
prepareForTestCommon();
- mmRestService.deleteWhiteList(iStream);
+
+ String sampleJson = "{\"test\":\"test\"}";
+ InputStream inputSteam = new ByteArrayInputStream(sampleJson.getBytes());
+ mmRestService.deleteWhiteList(inputSteam);
assertTrue(true);
}
-
+
private void prepareForTestCommon() throws ConfigDbException {
Assert.assertNotNull(mmRestService);
PowerMockito.when(dmaapContext.getRequest()).thenReturn(httpServReq);