Merge "Remove actor and recipe checks from ControlLoopCompiler.java"
[policy/models.git] / models-pap / src / test / java / org / onap / policy / models / pap / concepts / PolicyStatusTest.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 org.junit.Test;
25 import org.onap.policy.common.utils.coder.CoderException;
26 import org.onap.policy.common.utils.coder.StandardCoder;
27 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicyIdentifier;
28 import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicyTypeIdentifier;
29
30 /**
31  * This only tests the methods that aren't already tested via TestModels.
32  */
33 public class PolicyStatusTest {
34
35     @Test
36     public void test() throws CoderException {
37         ToscaPolicyTypeIdentifier type = new ToscaPolicyTypeIdentifier("my-type", "3.2.1");
38         ToscaPolicyIdentifier policy = new ToscaPolicyIdentifier("my-name", "1.2.3");
39
40         // test constructor with arguments
41         PolicyStatus status = new PolicyStatus(type, policy);
42         assertSame(type, status.getPolicyType());
43         assertSame(policy, status.getPolicy());
44
45         assertEquals(0, status.getSuccessCount());
46         assertEquals(0, status.getFailureCount());
47         assertEquals(0, status.getIncompleteCount());
48
49         // change values
50         status.setFailureCount(10);
51         status.setIncompleteCount(20);
52         status.setSuccessCount(30);
53
54         // encode & decode
55         StandardCoder coder = new StandardCoder();
56         PolicyStatus status2 = coder.decode(coder.encode(status), PolicyStatus.class);
57
58         // test equals() method (and verify encode/decode worked)
59         assertEquals(status, status2);
60     }
61 }