diff options
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/groovy/org/onap/cps/ncmp/dmi/rest/controller/DmiRestControllerSpec.groovy | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/groovy/org/onap/cps/ncmp/dmi/rest/controller/DmiRestControllerSpec.groovy b/src/test/groovy/org/onap/cps/ncmp/dmi/rest/controller/DmiRestControllerSpec.groovy index 2be0b59c..acc8b63b 100644 --- a/src/test/groovy/org/onap/cps/ncmp/dmi/rest/controller/DmiRestControllerSpec.groovy +++ b/src/test/groovy/org/onap/cps/ncmp/dmi/rest/controller/DmiRestControllerSpec.groovy @@ -311,4 +311,19 @@ class DmiRestControllerSpec extends Specification { '? needs to be encoded as %3F' | 'idWith%3F' } + + def 'Get resource data for a collection of cm handles (unimplemented).'() { + given: 'an endpoint for adding a batch of cm handle Ids' + def url = "$basePathV1/ch/batch/data/ds/test-datastore?topic=test" + and: 'a request body' + def body = '{"CmHandles": []}' + when: 'the endpoint is invoked' + def response = mvc.perform( + post(url) + .contentType(MediaType.APPLICATION_JSON) + .content(body) + ).andReturn().response + then: 'the response status code is 501' + assert response.status == 501 + } } |