Upgrade Vulnerable Direct Dependencies [snakeyaml]
[sdc.git] / openecomp-be / lib / openecomp-sdc-validation-lib / openecomp-sdc-validation-impl / src / test / java / org / openecomp / sdc / validation / impl / validators / heatresource / ContrailNetworkPolicyResourceValidatorTest.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 ContrailNetworkPolicyResourceValidatorTest {
32
33   HeatResourceValidator baseValidator = new HeatResourceValidator();
34   ContrailNetworkPolicyResourceValidator resourceValidator = new
35       ContrailNetworkPolicyResourceValidator();
36
37   private static final String PATH = "/org/openecomp/validation/validators/heat_validator/network_policy_associated_with_attach_policy/";
38   @Test
39   public void testNetworkPolicyAssociatedWithAttachPolicy() throws IOException {
40     Map<String, MessageContainer> messages = new ValidationTestUtil().testValidator(baseValidator, resourceValidator
41             , HeatResourcesTypes.CONTRAIL_NETWORK_RULE_RESOURCE_TYPE.getHeatResource(),
42             PATH + "positive");
43
44     Assert.assertNotNull(messages);
45     Assert.assertEquals(messages.size(), 1);
46
47     Assert.assertEquals(messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().size(), 1);
48     Assert.assertEquals(
49             messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(0).getMessage(),
50             "WARNING: [HNP2]: NetworkPolicy not in use, Resource Id [not_used_server_pcrf_policy]");
51   }
52
53   @Test
54   public void testNonNetworkPolicyResource() throws IOException {
55     Map<String, MessageContainer> messages = new ValidationTestUtil().testValidator(baseValidator, resourceValidator
56             , HeatResourcesTypes.CONTRAIL_VIRTUAL_NETWORK_RESOURCE_TYPE.getHeatResource(),
57             PATH + "negative");
58
59     Assert.assertNotNull(messages);
60     Assert.assertEquals(messages.size(), 1);
61
62     Assert.assertEquals(messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().size(), 1);
63     Assert.assertEquals(
64             messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(0).getMessage(),
65             "WARNING: [HNP1]: NetworkPolicy not in use, Resource Id [server_pcrf_network]");
66   }
67 }