Merge "Remove actor and recipe checks from ControlLoopCompiler.java"
[policy/models.git] / models-pap / src / test / java / org / onap / policy / models / pap / concepts / PolicyNotificationTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 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.models.pap.concepts;
20
21 import static org.junit.Assert.assertEquals;
22 import static org.junit.Assert.assertSame;
23
24 import java.util.Arrays;
25 import java.util.List;
26 import org.junit.Test;
27 import org.onap.policy.common.utils.coder.CoderException;
28 import org.onap.policy.common.utils.coder.StandardCoder;
29
30 /**
31  * This only tests the methods that aren't already tested via TestModels.
32  */
33 public class PolicyNotificationTest {
34
35     @Test
36     public void test() throws CoderException {
37         PolicyStatus statusAdd1 = new PolicyStatus();
38         statusAdd1.setSuccessCount(10);
39         PolicyStatus statusAdd2 = new PolicyStatus();
40         statusAdd2.setFailureCount(20);
41         List<PolicyStatus> add = Arrays.asList(statusAdd1, statusAdd2);
42
43         PolicyStatus statusDel1 = new PolicyStatus();
44         statusDel1.setIncompleteCount(30);
45         PolicyStatus statusDel2 = new PolicyStatus();
46         List<PolicyStatus> del = Arrays.asList(statusDel1, statusDel2);
47
48         // test constructor with arguments
49         PolicyNotification notify = new PolicyNotification(add, del);
50         assertSame(add, notify.getAdded());
51         assertSame(del, notify.getDeleted());
52
53         // encode & decode
54         StandardCoder coder = new StandardCoder();
55         PolicyNotification notify2 = coder.decode(coder.encode(notify), PolicyNotification.class);
56
57         // test equals() method (and verify encode/decode worked)
58         assertEquals(notify, notify2);
59     }
60 }