c045910b8087a4c40c9eea943f1b8c77019cd168
[aai/model-loader.git] / src / test / java / org / onap / aai / modelloader / notification / TestNotificationDataImpl.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 European Software Marketing Ltd.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.modelloader.notification;
22
23 import static org.hamcrest.CoreMatchers.equalTo;
24 import static org.hamcrest.CoreMatchers.is;
25 import static org.hamcrest.CoreMatchers.not;
26 import static org.junit.Assert.assertThat;
27
28 import org.junit.Test;
29
30 /**
31  * Tests for NotificationDataImpl class
32  *
33  */
34 public class TestNotificationDataImpl {
35
36     @Test
37     public void testGettersAndSetters() {
38         NotificationDataImpl data = new NotificationDataImpl();
39         String distributionId = "testid";
40
41         data.setDistributionID(distributionId);
42         assertThat(data.getDistributionID(), is(equalTo(distributionId)));
43
44         // Getters return empty data
45         assertThat(data.getArtifactMetadataByUUID(null), is(equalTo(null)));
46         assertThat(data.getServiceDescription(), is(equalTo(null)));
47         assertThat(data.getServiceInvariantUUID(), is(equalTo(null)));
48         assertThat(data.getServiceName(), is(equalTo(null)));
49         assertThat(data.getServiceUUID(), is(equalTo(null)));
50         assertThat(data.getServiceVersion(), is(equalTo(null)));
51         assertThat(data.getResources().size(), is(0));
52         assertThat(data.getServiceArtifacts().size(), is(0));
53
54         // Unsupported method!
55         String context = "testcontext";
56         data.setWorkloadContext(context);
57         assertThat(data.getWorkloadContext(), is(equalTo(null)));
58     }
59
60
61     @Test
62     public void testEquality() {
63         NotificationDataImpl data = new NotificationDataImpl();
64         assertThat(data, is(not(equalTo(null))));
65         assertThat(data, is(not(equalTo("")))); // NOSONAR
66         assertThat(data, is(equalTo(data)));
67
68         NotificationDataImpl other = new NotificationDataImpl();
69         assertThat(data, is(equalTo(other)));
70         assertThat(data.hashCode(), is(equalTo(other.hashCode())));
71
72         other.setDistributionID("");
73         assertThat(data, is(not(equalTo(other))));
74
75         data.setDistributionID("1234");
76         assertThat(data, is(not(equalTo(other))));
77
78         other.setDistributionID("1234");
79         assertThat(data, is(equalTo(other)));
80         assertThat(data.hashCode(), is(equalTo(other.hashCode())));
81     }
82
83 }