extend vnf properties model for cds actors
[policy/models.git] / models-interactions / model-actors / actor.cds / src / test / java / org / onap / policy / controlloop / actor / cds / properties / GrpcOperationPropertiesTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2022 AT&T Intellectual Property. All rights reserved.
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  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * ============LICENSE_END=========================================================
17  */
18
19 package org.onap.policy.controlloop.actor.cds.properties;
20
21 import static org.junit.Assert.assertEquals;
22
23 import java.util.HashMap;
24 import java.util.Map;
25 import org.junit.Test;
26 import org.onap.policy.controlloop.actorserviceprovider.TargetType;
27 import org.onap.policy.controlloop.actorserviceprovider.parameters.ControlLoopOperationParams;
28
29 public class GrpcOperationPropertiesTest {
30
31     @Test
32     public void build() {
33         ControlLoopOperationParams params = ControlLoopOperationParams.builder().targetType(TargetType.VNF).build();
34         assertEquals(GrpcOperationTargetVnfProperties.VNF_PROPERTY_NAMES,
35                 GrpcOperationProperties.build(params).getPropertyNames());
36
37         Map<String, String> targetEntityIds = new HashMap<>();
38         targetEntityIds.put(ControlLoopOperationParams.PARAMS_ENTITY_RESOURCEID, "R");
39
40         params = ControlLoopOperationParams.builder()
41                          .targetType(TargetType.VNF)
42                          .targetEntityIds(targetEntityIds)
43                          .build();
44         assertEquals(GrcpOperationResourceVnfProperties.VNF_PROPERTY_NAMES,
45                 GrpcOperationProperties.build(params).getPropertyNames());
46
47         params = ControlLoopOperationParams.builder().targetType(TargetType.PNF).build();
48         assertEquals(GrpcOperationPnfProperties.PNF_PROPERTY_NAMES,
49                 GrpcOperationProperties.build(params).getPropertyNames());
50
51         params = ControlLoopOperationParams.builder()
52                          .targetType(TargetType.VFC)
53                          .targetEntityIds(targetEntityIds)
54                          .build();
55         assertEquals(GrcpOperationResourceVnfProperties.VNF_PROPERTY_NAMES,
56                 GrpcOperationProperties.build(params).getPropertyNames());
57     }
58 }