Sorted out unit-test libraries in onboarding
[sdc.git] / openecomp-be / lib / openecomp-sdc-validation-lib / openecomp-sdc-validation-impl / src / test / java / org / openecomp / sdc / validation / impl / validators / heatresource / NeutronSecurityGroupResourceValidatorTest.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.openecomp.sdc.validation.impl.validators.heatresource;
18
19 import java.io.IOException;
20 import java.util.Map;
21 import org.junit.Assert;
22 import org.junit.Test;
23 import org.openecomp.core.validation.types.MessageContainer;
24 import org.openecomp.sdc.heat.datatypes.model.HeatResourcesTypes;
25 import org.openecomp.sdc.validation.impl.validators.HeatResourceValidator;
26 import org.openecomp.sdc.validation.util.ValidationTestUtil;
27
28 /**
29  * Created by TALIO on 2/28/2017.
30  */
31 public class NeutronSecurityGroupResourceValidatorTest {
32
33   HeatResourceValidator baseValidator = new HeatResourceValidator();
34   NeutronSecurityGroupResourceValidator resourceValidator = new
35       NeutronSecurityGroupResourceValidator();
36   private static final String PATH = "/org/openecomp/validation/validators/heat_validator/";
37
38   @Test
39   public void testSecurityGroupBaseFileNoPorts() throws IOException {
40     Map<String, MessageContainer> messages = ValidationTestUtil.testValidator(baseValidator,
41             resourceValidator,
42             HeatResourcesTypes.NEUTRON_SECURITY_GROUP_RESOURCE_TYPE.getHeatResource(),
43             PATH + "security_group_base_file_no_ports/input");
44
45     Assert.assertNotNull(messages);
46     Assert.assertEquals(messages.size(), 1);
47
48     Assert.assertEquals(messages.get("baseFile.yaml").getErrorMessageList().size(), 1);
49     Assert.assertEquals(messages.get("baseFile.yaml").getErrorMessageList().get(0).getMessage(),
50             "WARNING: [HSG1]: SecurityGroup not in use, Resource Id [jsa_security_group3]");
51   }
52
53   @Test
54   public void testSecurityGroupsCalledByPort() throws IOException {
55     Map<String, MessageContainer> messages =ValidationTestUtil.testValidator(baseValidator,
56             resourceValidator,
57             HeatResourcesTypes.NEUTRON_SECURITY_GROUP_RESOURCE_TYPE.getHeatResource(),
58             PATH + "security_group_called_by_port/input");
59
60     Assert.assertNotNull(messages);
61     Assert.assertEquals(messages.size(), 1);
62
63     Assert.assertEquals(messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().size(), 1);
64     Assert.assertEquals(
65             messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(0).getMessage(),
66             "WARNING: [HSG1]: SecurityGroup not in use, Resource Id [not_used_security_group]");
67   }
68
69 }