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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.apex.core.protocols.engdep.messages;
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertNotEquals;
26 import static org.junit.Assert.assertNotNull;
27 import static org.junit.Assert.assertTrue;
29 import java.net.UnknownHostException;
30 import org.junit.Test;
31 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
32 import org.slf4j.ext.XLogger;
33 import org.slf4j.ext.XLoggerFactory;
36 * The Class UpdateModelTest.
38 * @author Liam Fallon (liam.fallon@ericsson.com)
40 public class UpdateModelTest {
41 // Logger for this class
42 private static final XLogger logger = XLoggerFactory.getXLogger(UpdateModelTest.class);
44 UpdateModel message = null;
47 * Test register entity.
49 * @throws UnknownHostException the unknown host exception
51 @SuppressWarnings("unlikely-arg-type")
53 public void testRegisterEntity() throws UnknownHostException {
54 assertNotNull(new UpdateModel(new AxArtifactKey()));
55 final AxArtifactKey targetKey = new AxArtifactKey("UpdateModelTest", "0.0.1");
56 message = new UpdateModel(targetKey, new String("Placeholder for Apex model XML"), false, false);
57 assertNotNull(message);
58 logger.debug(message.toString());
59 assertTrue((message.toString()).contains("Placeholder for Apex model XML"));
60 assertFalse(message.isIgnoreConflicts());
61 assertFalse(message.isForceInstall());
63 message = new UpdateModel(null, null, false, false);
64 assertNotEquals(0, message.hashCode());
65 message = new UpdateModel(null, null, true, false);
66 assertNotEquals(0, message.hashCode());
67 message = new UpdateModel(null, null, true, true);
68 assertNotEquals(0, message.hashCode());
69 message = new UpdateModel(null, null, false, true);
70 assertNotEquals(0, message.hashCode());
72 assertEquals(message, message);
73 assertNotNull(message);
74 assertNotEquals(message, new StartEngine(new AxArtifactKey()));
76 message = new UpdateModel(null, null, false, false);
77 UpdateModel otherMessage = new UpdateModel(null, null, false, false);
78 assertEquals(message, otherMessage);
79 message = new UpdateModel(null, null, true, false);
80 assertNotEquals(message, otherMessage);
81 otherMessage = new UpdateModel(null, null, true, false);
82 assertEquals(message, otherMessage);
83 message = new UpdateModel(null, null, false, true);
84 assertNotEquals(message, otherMessage);
85 otherMessage = new UpdateModel(null, null, false, true);
86 assertEquals(message, otherMessage);