Update policy committers in policy/models
[policy/models.git] / models-interactions / model-actors / actor.sdnr / src / test / java / org / onap / policy / controlloop / actor / sdnr / SdnrActorTest.java
1 /*-
2  * ONAP
3  * ================================================================================
4  * Copyright (C) 2018 Wipro Limited Intellectual Property. All rights reserved.
5  * Modifications Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2024 Nordix Foundation
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.controlloop.actor.sdnr;
23
24 import static org.junit.jupiter.api.Assertions.assertEquals;
25 import static org.junit.jupiter.api.Assertions.assertNotNull;
26 import static org.junit.jupiter.api.Assertions.assertSame;
27
28 import java.util.Arrays;
29 import java.util.stream.Collectors;
30 import org.junit.jupiter.api.Test;
31 import org.onap.policy.controlloop.actor.test.BasicActor;
32 import org.onap.policy.controlloop.actorserviceprovider.Operator;
33
34 class SdnrActorTest extends BasicActor {
35
36     @Test
37     void testConstructor() {
38         SdnrActor prov = new SdnrActor();
39         assertEquals(0, prov.getSequenceNumber());
40
41         // verify that it has the operators we expect
42         var expected = Arrays.asList(SdnrOperation.NAME).stream().sorted().collect(Collectors.toList());
43         var actual = prov.getOperationNames().stream().sorted().collect(Collectors.toList());
44
45         assertEquals(expected.toString(), actual.toString());
46     }
47
48     @Test
49     void testActorService() {
50         // verify that it all plugs into the ActorService
51         verifyActorService(SdnrActor.NAME, "service.yaml");
52     }
53
54     @Test
55     void testGetOperator() {
56         SdnrActor sp = new SdnrActor();
57
58         // should always return the same operator regardless of the name
59         Operator oper = sp.getOperator("unknown");
60         assertNotNull(oper);
61         assertSame(oper, sp.getOperator("another"));
62     }
63 }