summaryrefslogtreecommitdiffstats
path: root/cps-service
diff options
context:
space:
mode:
authorRishi.Chail <rishi.chail@est.tech>2021-01-21 19:14:24 +0000
committerRishi Chail <rishi.chail@est.tech>2021-01-22 16:03:47 +0000
commita2f384de843c3c3f68d2d371d185c71a900e9810 (patch)
tree14039f68a57089a0be418bc6cb3a37c441ba6680 /cps-service
parent5fa9a9ebb6459755a4267066e23f9671b9fac5b9 (diff)
Retrieve an Anchor for a given dataspace by anchor name - Service layer
Part of story already done in CPS-135 Issue-ID: CPS-55 Signed-off-by: Rishi.Chail <rishi.chail@est.tech> Change-Id: I0c4ae551f5c85866ce543fbb27b18ffff7d80462
Diffstat (limited to 'cps-service')
-rwxr-xr-x[-rw-r--r--]cps-service/src/main/java/org/onap/cps/api/CpsAdminService.java10
-rwxr-xr-x[-rw-r--r--]cps-service/src/main/java/org/onap/cps/api/impl/CpsAdminServiceImpl.java7
-rwxr-xr-xcps-service/src/test/groovy/org/onap/cps/api/impl/CpsAdminServiceImplSpec.groovy16
3 files changed, 28 insertions, 5 deletions
diff --git a/cps-service/src/main/java/org/onap/cps/api/CpsAdminService.java b/cps-service/src/main/java/org/onap/cps/api/CpsAdminService.java
index 853bd958f..ed89c4309 100644..100755
--- a/cps-service/src/main/java/org/onap/cps/api/CpsAdminService.java
+++ b/cps-service/src/main/java/org/onap/cps/api/CpsAdminService.java
@@ -57,4 +57,14 @@ public interface CpsAdminService {
*/
@NonNull
Collection<Anchor> getAnchors(@NonNull String dataspaceName);
+
+ /**
+ * Get an anchor in the given dataspace using the anchor name.
+ *
+ * @param dataspaceName dataspace name
+ * @param anchorName anchor name
+ * @return an anchor
+ */
+ @NonNull
+ Anchor getAnchor(@NonNull String dataspaceName, @NonNull String anchorName);
}
diff --git a/cps-service/src/main/java/org/onap/cps/api/impl/CpsAdminServiceImpl.java b/cps-service/src/main/java/org/onap/cps/api/impl/CpsAdminServiceImpl.java
index 0cb85fdf9..09550f193 100644..100755
--- a/cps-service/src/main/java/org/onap/cps/api/impl/CpsAdminServiceImpl.java
+++ b/cps-service/src/main/java/org/onap/cps/api/impl/CpsAdminServiceImpl.java
@@ -47,4 +47,9 @@ public class CpsAdminServiceImpl implements CpsAdminService {
public Collection<Anchor> getAnchors(final String dataspaceName) {
return cpsAdminPersistenceService.getAnchors(dataspaceName);
}
-}
+
+ @Override
+ public Anchor getAnchor(final String dataspaceName, final String anchorName) {
+ return cpsAdminPersistenceService.getAnchor(dataspaceName, anchorName);
+ }
+} \ No newline at end of file
diff --git a/cps-service/src/test/groovy/org/onap/cps/api/impl/CpsAdminServiceImplSpec.groovy b/cps-service/src/test/groovy/org/onap/cps/api/impl/CpsAdminServiceImplSpec.groovy
index 5aaa34027..7c0c6267a 100755
--- a/cps-service/src/test/groovy/org/onap/cps/api/impl/CpsAdminServiceImplSpec.groovy
+++ b/cps-service/src/test/groovy/org/onap/cps/api/impl/CpsAdminServiceImplSpec.groovy
@@ -32,25 +32,33 @@ class CpsAdminServiceImplSpec extends Specification {
objectUnderTest.cpsAdminPersistenceService = mockCpsAdminPersistenceService
}
- def 'Create dataspace method invokes persistence service'() {
+ def 'Create dataspace method invokes persistence service.'() {
when: 'Create dataspace method is invoked'
objectUnderTest.createDataspace('someDataspace')
then: 'The persistence service method is invoked with same parameters'
1 * mockCpsAdminPersistenceService.createDataspace('someDataspace')
}
- def 'Create anchor method invokes persistence service'() {
+ def 'Create anchor method invokes persistence service.'() {
when: 'Create anchor method is invoked'
objectUnderTest.createAnchor('someDataspace', 'someSchemaSet', 'someAnchorName')
then: 'The persistence service method is invoked with same parameters'
1 * mockCpsAdminPersistenceService.createAnchor('someDataspace', 'someSchemaSet', 'someAnchorName')
}
- def 'Retrieve all anchors for dataspace'() {
+ def 'Retrieve all anchors for dataspace.'() {
given: 'that anchor is associated with the dataspace'
Collection<Anchor> anchorCollection = Arrays.asList(new Anchor())
mockCpsAdminPersistenceService.getAnchors('someDataspace') >> { anchorCollection }
expect: 'the collection provided by persistence service is returned as result'
objectUnderTest.getAnchors('someDataspace') == anchorCollection
}
-}
+
+ def 'Retrieve anchor for dataspace and provided anchor name.'() {
+ given: 'that anchor name is associated with the dataspace'
+ Anchor anchor = new Anchor()
+ mockCpsAdminPersistenceService.getAnchor('someDataspace','someAnchor') >> anchor
+ expect: 'the anchor provided by persistence service is returned as result'
+ objectUnderTest.getAnchor('someDataspace','someAnchor') == anchor
+ }
+} \ No newline at end of file