Remove legacy actor code from models
[policy/models.git] / models-interactions / model-actors / actor.cds / src / test / java / org / onap / policy / controlloop / actor / cds / CdsActorTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 Bell Canada. All rights reserved.
4  * Modifications Copyright (C) 2020 Nordix Foundation.
5  * Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.controlloop.actor.cds;
22
23 import static org.junit.Assert.assertNotNull;
24 import static org.junit.Assert.assertSame;
25
26 import org.junit.Test;
27 import org.onap.policy.controlloop.actor.cds.constants.CdsActorConstants;
28 import org.onap.policy.controlloop.actor.test.BasicActor;
29 import org.onap.policy.controlloop.actorserviceprovider.Operator;
30
31 public class CdsActorTest extends BasicActor {
32
33     @Test
34     public void testActorService() {
35         // verify that it all plugs into the ActorService
36         verifyActorService(CdsActorConstants.CDS_ACTOR, "service.yaml");
37     }
38
39     @Test
40     public void testGetOperator() {
41         CdsActor sp = new CdsActor();
42
43         // should always return the same operator regardless of the name
44         Operator oper = sp.getOperator("unknown");
45         assertNotNull(oper);
46         assertSame(oper, sp.getOperator("another"));
47     }
48 }