13d37a8f6d0ee3deeda61a35aef5a1d07a8521e5
[policy/apex-pdp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2020 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.apex.core.protocols.engdep.messages;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertFalse;
26 import static org.junit.Assert.assertNotEquals;
27 import static org.junit.Assert.assertNotNull;
28 import static org.junit.Assert.assertTrue;
29
30 import java.net.UnknownHostException;
31 import org.junit.Test;
32 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
33 import org.slf4j.ext.XLogger;
34 import org.slf4j.ext.XLoggerFactory;
35
36 /**
37  * The Class UpdateModelTest.
38  *
39  * @author Liam Fallon (liam.fallon@ericsson.com)
40  */
41 public class UpdateModelTest {
42     // Logger for this class
43     private static final XLogger logger = XLoggerFactory.getXLogger(UpdateModelTest.class);
44
45     UpdateModel message = null;
46
47     /**
48      * Test register entity.
49      *
50      * @throws UnknownHostException the unknown host exception
51      */
52     @SuppressWarnings("unlikely-arg-type")
53     @Test
54     public void testRegisterEntity() throws UnknownHostException {
55         assertNotNull(new UpdateModel(new AxArtifactKey()));
56         final AxArtifactKey targetKey = new AxArtifactKey("UpdateModelTest", "0.0.1");
57         message = new UpdateModel(targetKey, new String("Placeholder for Apex model XML"), false, false);
58         assertNotNull(message);
59         logger.debug(message.toString());
60         assertTrue((message.toString()).contains("Placeholder for Apex model XML"));
61         assertFalse(message.isIgnoreConflicts());
62         assertFalse(message.isForceInstall());
63
64         message = new UpdateModel(null, null, false, false);
65         assertNotEquals(0, message.hashCode());
66         message = new UpdateModel(null, null, true, false);
67         assertNotEquals(0, message.hashCode());
68         message = new UpdateModel(null, null, true, true);
69         assertNotEquals(0, message.hashCode());
70         message = new UpdateModel(null, null, false, true);
71         assertNotEquals(0, message.hashCode());
72         // disabling sonar because this code tests the equals() method
73         assertEquals(message, message); // NOSONAR
74         assertNotNull(message);
75         assertNotEquals(message, new StartEngine(new AxArtifactKey()));
76
77         message = new UpdateModel(null, null, false, false);
78         UpdateModel otherMessage = new UpdateModel(null, null, false, false);
79         assertEquals(message, otherMessage);
80         message = new UpdateModel(null, null, true, false);
81         assertNotEquals(message, otherMessage);
82         otherMessage = new UpdateModel(null, null, true, false);
83         assertEquals(message, otherMessage);
84         message = new UpdateModel(null, null, false, true);
85         assertNotEquals(message, otherMessage);
86         otherMessage = new UpdateModel(null, null, false, true);
87         assertEquals(message, otherMessage);
88     }
89 }