summaryrefslogtreecommitdiffstats
path: root/sparkybe-onap-application/src/test/java/org
diff options
context:
space:
mode:
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>2024-06-12 11:52:34 +0200
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>2024-06-12 11:52:34 +0200
commit44ed2a90cb4eeb0b96b90ae132c52f51d858fced (patch)
tree8da065736df89003924e304e1fb0a5f660312736 /sparkybe-onap-application/src/test/java/org
parent1efee417abaaa07344f4dbb239d2456841faa091 (diff)
Sparky deployment not working after change to schema ingestion2.0.5
- hide the oxm-reader-bean.xml behind a profile [1] [1] it was added in the previous CR and has some unintended side-effects. It is only used for running the tests Issue-ID: AAI-3866 Change-Id: I2af8ef47526b2aaebe9355126f88f39a72e4ed3c Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'sparkybe-onap-application/src/test/java/org')
-rw-r--r--sparkybe-onap-application/src/test/java/org/onap/aai/sparky/aggregatevnf/AggregateSummaryProcessorTest.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/sparkybe-onap-application/src/test/java/org/onap/aai/sparky/aggregatevnf/AggregateSummaryProcessorTest.java b/sparkybe-onap-application/src/test/java/org/onap/aai/sparky/aggregatevnf/AggregateSummaryProcessorTest.java
index f6a88aa..7c325b3 100644
--- a/sparkybe-onap-application/src/test/java/org/onap/aai/sparky/aggregatevnf/AggregateSummaryProcessorTest.java
+++ b/sparkybe-onap-application/src/test/java/org/onap/aai/sparky/aggregatevnf/AggregateSummaryProcessorTest.java
@@ -56,7 +56,7 @@ import org.springframework.web.client.RestClientException;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
-@ActiveProfiles({"oxm-default","oxm-schema-dev", "camel","fe-dev"})
+@ActiveProfiles({"test","oxm-default","oxm-schema-dev", "camel","fe-dev"})
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
public class AggregateSummaryProcessorTest {
@@ -65,7 +65,7 @@ public class AggregateSummaryProcessorTest {
@MockBean SearchServiceAdapter searchServiceAdapter;
@Mock OperationResult operationResult;
-
+
@Autowired
private TestRestTemplate restTemplate;
@@ -83,13 +83,13 @@ public class AggregateSummaryProcessorTest {
Map<String,String> params = new HashMap<String,String>();
AggregationFilter filter = new AggregationFilter("1","someOrchestrationStatus");
FilterAggregationRequest request = new FilterAggregationRequest(Arrays.asList(filter));
-
+
ResponseEntity<AggregationsResponse> response = restTemplate.postForEntity("/rest/search/filterAggregation", objectMapper.writeValueAsString(request), AggregationsResponse.class);
AggregationsResponse aggregationsResponse = response.getBody();
assertEquals(1L, aggregationsResponse.getTotal());
BucketResponse bucket = aggregationsResponse.getAggregations().get("someAggregation").get(0);
assertEquals("someKey", bucket.getKey());
assertEquals(0, bucket.getDocCount());
-
+
}
}