a1c9dd951dc3e656869f12c28eab7cbd86dec32b
[cps.git] / cps / cps-service / src / test / groovy / org / onap / cps / api / impl / CpServiceImplSpec.groovy
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.onap.cps.api.impl
21
22 import org.onap.cps.spi.DataPersistencyService
23 import spock.lang.Specification;
24
25
26 class CpServiceImplSpec extends Specification {
27
28     def dataPersistencyService = Mock(DataPersistencyService)
29     def objectUnderTest = new CpServiceImpl()
30
31     def setup() {
32         // Insert mocked dependencies
33         objectUnderTest.dataPersistencyService = dataPersistencyService;
34     }
35
36     def 'Cps Service provides to its client the id assigned by the system when storing a data structure'() {
37         given: 'that data persistency service is giving id 123 to a data structure it is asked to store'
38             dataPersistencyService.storeJsonStructure(_) >> 123
39
40         expect: 'Cps service returns the same id when storing data structure'
41             objectUnderTest.storeJsonStructure('') == 123
42     }
43 }