Changes for checkstyle 8.32
[policy/apex-pdp.git] / core / core-protocols / src / test / java / org / onap / policy / apex / core / protocols / engdep / messages / UpdateModelTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Ericsson. 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  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.core.protocols.engdep.messages;
22
23 import static org.junit.Assert.assertFalse;
24 import static org.junit.Assert.assertNotNull;
25 import static org.junit.Assert.assertTrue;
26
27 import java.net.UnknownHostException;
28 import org.junit.Test;
29 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
30 import org.slf4j.ext.XLogger;
31 import org.slf4j.ext.XLoggerFactory;
32
33 /**
34  * The Class UpdateModelTest.
35  *
36  * @author Liam Fallon (liam.fallon@ericsson.com)
37  */
38 public class UpdateModelTest {
39     // Logger for this class
40     private static final XLogger logger = XLoggerFactory.getXLogger(UpdateModelTest.class);
41
42     UpdateModel message = null;
43
44     /**
45      * Test register entity.
46      *
47      * @throws UnknownHostException the unknown host exception
48      */
49     @SuppressWarnings("unlikely-arg-type")
50     @Test
51     public void testRegisterEntity() throws UnknownHostException {
52         assertNotNull(new UpdateModel(new AxArtifactKey()));
53         final AxArtifactKey targetKey = new AxArtifactKey("UpdateModelTest", "0.0.1");
54         message = new UpdateModel(targetKey, new String("Placeholder for Apex model XML"), false, false);
55         assertNotNull(message);
56         logger.debug(message.toString());
57         assertTrue((message.toString()).contains("Placeholder for Apex model XML"));
58         assertFalse(message.isIgnoreConflicts());
59         assertFalse(message.isForceInstall());
60         
61         message = new UpdateModel(null, null, false, false);
62         assertTrue(message.hashCode() != 0);
63         message = new UpdateModel(null, null, true, false);
64         assertTrue(message.hashCode() != 0);
65         message = new UpdateModel(null, null, true, true);
66         assertTrue(message.hashCode() != 0);
67         message = new UpdateModel(null, null, false, true);
68         assertTrue(message.hashCode() != 0);
69         
70         assertTrue(message.equals(message));
71         assertFalse(message.equals(null));
72         assertFalse(message.equals(new StartEngine(new AxArtifactKey())));
73         
74         message = new UpdateModel(null, null, false, false);
75         UpdateModel otherMessage = new UpdateModel(null, null, false, false);
76         assertTrue(message.equals(otherMessage));
77         message = new UpdateModel(null, null, true, false);
78         assertFalse(message.equals(otherMessage));
79         otherMessage = new UpdateModel(null, null, true, false);
80         assertTrue(message.equals(otherMessage));
81         message = new UpdateModel(null, null, false, true);
82         assertFalse(message.equals(otherMessage));
83         otherMessage = new UpdateModel(null, null, false, true);
84         assertTrue(message.equals(otherMessage));
85     }
86 }