summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java
diff options
context:
space:
mode:
authorandre.schmid <andre.schmid@est.tech>2022-10-11 14:20:40 +0100
committerandre.schmid <andre.schmid@est.tech>2022-10-12 14:03:12 +0100
commitb24a4f2f4edf845c10ef42545496256b0bdbb8a8 (patch)
tree20cbb76bc910f80413755cb90cf9afd23ee70870 /catalog-be/src/test/java
parent437f3d965cf79d98678665f6695256f8294c0794 (diff)
Fix response of fetch data type endpoint
The catalog endpoint /v1/catalog/data-types/<id> is returning an Optional instead of the Data Type itself. Improves unit test to verify the response payload. Change-Id: I781917fb66225abf911a043370917e7b7a183bb1 Issue-ID: SDC-4211 Signed-off-by: André Schmid <andre.schmid@est.tech>
Diffstat (limited to 'catalog-be/src/test/java')
-rw-r--r--catalog-be/src/test/java/org/openecomp/sdc/be/servlets/DataTypeServletTest.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/servlets/DataTypeServletTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/servlets/DataTypeServletTest.java
index 39ba071a74..d916fffc12 100644
--- a/catalog-be/src/test/java/org/openecomp/sdc/be/servlets/DataTypeServletTest.java
+++ b/catalog-be/src/test/java/org/openecomp/sdc/be/servlets/DataTypeServletTest.java
@@ -98,8 +98,10 @@ class DataTypeServletTest extends JerseySpringBaseTest {
@Test
void fetchDataTypeTest_Success() {
+ final DataTypeDataDefinition expectedDataType = new DataTypeDataDefinition();
+ expectedDataType.setUniqueId(DATA_TYPE_UID);
when(componentsUtils.getResponseFormat(ActionStatus.OK)).thenReturn(new ResponseFormat(HttpStatus.SC_OK));
- when(dataTypeOperation.getDataTypeByUid(DATA_TYPE_UID)).thenReturn(Optional.of(new DataTypeDataDefinition()));
+ when(dataTypeOperation.getDataTypeByUid(DATA_TYPE_UID)).thenReturn(Optional.of(expectedDataType));
final Response response = target()
.path(PATH)
@@ -108,6 +110,8 @@ class DataTypeServletTest extends JerseySpringBaseTest {
.get(Response.class);
assertNotNull(response);
assertEquals(HttpStatus.SC_OK, response.getStatus());
+ final DataTypeDataDefinition actualDataType = response.readEntity(DataTypeDataDefinition.class);
+ assertEquals(expectedDataType.getUniqueId(), actualDataType.getUniqueId());
}
@Test