Skip to content
Snippets Groups Projects
Commit 047d0bef authored by harshit aggarwal's avatar harshit aggarwal
Browse files

removing redundant test

parent f5baa04c
No related branches found
No related tags found
1 merge request!20Adding helm charts and Istio config
Pipeline #12807 failed
Showing
with 0 additions and 84 deletions
......@@ -44,10 +44,4 @@ public class TestCreateActionApi extends CreateActionApiTest {
ClientResponse response = descriptor.run(getId(), "");
assertEquals(error(response.getEntity(String.class)), 403, response.getStatus());
}
// @Test
// @Override
// public void should_return307_when_makingHttpRequest() throws Exception {
// // This test would fail for https endpoints
// }
}
......@@ -43,10 +43,4 @@ public class TestDeleteActionApi extends DeleteActionApiTest {
ClientResponse response = descriptor.run(getId(), "");
assertEquals(error(response.getEntity(String.class)), 403, response.getStatus());
}
@Test
@Override
public void should_return307_when_makingHttpRequest() throws Exception {
// This test would fail for https endpoints
}
}
......@@ -43,10 +43,4 @@ public class TestGetActionByIdApi extends GetActionByIdApiTest {
ClientResponse response = descriptor.run(getId(), "");
assertEquals(error(response.getEntity(String.class)), 403, response.getStatus());
}
@Test
@Override
public void should_return307_when_makingHttpRequest() throws Exception {
// This test would fail for https endpoints
}
}
......@@ -43,10 +43,4 @@ public class TestRetrieveActionApi extends RetrieveActionApiTest {
ClientResponse response = descriptor.run(getId(), "");
assertEquals(error(response.getEntity(String.class)), 403, response.getStatus());
}
@Test
@Override
public void should_return307_when_makingHttpRequest() throws Exception {
// This test would fail for https endpoints
}
}
......@@ -42,10 +42,4 @@ public class TestCreateRegistrationApi extends CreateRegistrationApiTest {
ClientResponse response = descriptor.run(getId(), "");
assertEquals(error(response.getEntity(String.class)), 403, response.getStatus());
}
@Test
@Override
public void should_return307_when_makingHttpRequest() throws Exception {
// This test would fail for https endpoints
}
}
......@@ -42,10 +42,4 @@ public class TestDeleteRegistrationApi extends DeleteRegistrationApiTest {
ClientResponse response = descriptor.run(getId(), "");
assertEquals(error(response.getEntity(String.class)), 403, response.getStatus());
}
@Test
@Override
public void should_return307_when_makingHttpRequest() throws Exception {
// This test would fail for https endpoints
}
}
......@@ -42,10 +42,4 @@ public class TestGetConsumptionByIdApi extends GetConsumptionByIdApiTest {
ClientResponse response = descriptor.run(getId(), "");
assertEquals(error(response.getEntity(String.class)), 403, response.getStatus());
}
@Test
@Override
public void should_return307_when_makingHttpRequest() throws Exception {
// This test would fail for https endpoints
}
}
......@@ -42,10 +42,4 @@ public class TestGetRegistrationByIdApi extends GetRegistrationByIdApiTest {
ClientResponse response = descriptor.run(getId(), "");
assertEquals(error(response.getEntity(String.class)), 403, response.getStatus());
}
@Test
@Override
public void should_return307_when_makingHttpRequest() throws Exception {
// This test would fail for https endpoints
}
}
......@@ -42,10 +42,4 @@ public class TestQueryDdmsByType extends QueryDdmsByTypeTest {
ClientResponse response = descriptor.run(getId(), "");
assertEquals(error(response.getEntity(String.class)), 403, response.getStatus());
}
@Test
@Override
public void should_return307_when_makingHttpRequest() throws Exception {
// This test would fail for https endpoints
}
}
......@@ -112,10 +112,4 @@ public class TestCreateSubscriberApi extends CreateSubscriberApiTest {
assertTrue(error("Expected 1 successful response. Actual " + sucessResponseCount), sucessResponseCount <= 1);
assertEquals(error("Unexpected error response returned"), 0, non409ErrorResponseCount);
}
@Test
@Override
public void should_return307_when_makingHttpRequest() throws Exception {
// This test would fail for https endpoints
}
}
......@@ -93,10 +93,4 @@ public class TestDeleteSubscriberApi extends DeleteSubscriberApiTest {
assertTrue(error("Expected 1 successful response. Actual " + sucessResponseCount), sucessResponseCount <= 1);
assertEquals(error("Unexpected error response returned " + errors.toString()), 0, non404or409ErrorResponseCount);
}
@Test
@Override
public void should_return307_when_makingHttpRequest() throws Exception {
// This test would fail for https endpoints
}
}
......@@ -103,10 +103,4 @@ public class TestGetSubscriberByIdApi extends GetSubscriberByIdApiTest {
assertEquals(error("Expected all successful responses. Actual " + sucessResponseCount), 10, sucessResponseCount);
assertEquals(error("Unexpected error response returned"), 0, errorResponseCount);
}
@Test
@Override
public void should_return307_when_makingHttpRequest() throws Exception {
// This test would fail for https endpoints
}
}
......@@ -64,10 +64,4 @@ public class TestListTopicsApi extends ListTopicsApiTest {
ClientResponse response = descriptor.run(getId(), "");
assertEquals(error(response.getEntity(String.class)), 403, response.getStatus());
}
@Test
@Override
public void should_return307_when_makingHttpRequest() throws Exception {
// This test would fail for https endpoints
}
}
......@@ -45,10 +45,4 @@ public class TestQuerySubscriber extends QuerySubscriberTest {
ClientResponse response = descriptor.run(getId(), "");
assertEquals(error(response.getEntity(String.class)), 403, response.getStatus());
}
@Test
@Override
public void should_return307_when_makingHttpRequest() throws Exception {
// This test would fail for https endpoints
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment