aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-sdc-validation-lib/openecomp-sdc-validation-impl/src/test/java/org/openecomp/sdc/validation/impl/validators/validators/EcompNamingConventionTest.java
blob: e4203945aae9e82697b73b48316e990d82f5cc26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
package org.openecomp.sdc.validation.impl.validators.validators;

import org.openecomp.sdc.validation.impl.validators.EcompGuideLineValidator;
import org.openecomp.sdc.validation.impl.validators.ValidatorBaseTest;
import org.openecomp.core.validation.types.MessageContainer;

import java.io.IOException;
import java.util.Map;

import org.testng.Assert;
import org.testng.annotations.Test;

public class EcompNamingConventionTest extends ValidatorBaseTest {

  @Test
  public void testNeutronFixedIpName() throws IOException {
    Map<String, MessageContainer> messages = runValidation(
        "/openecomp/org/validation/validators/ecomp_naming_convention/neutron_port_fixed_ip_name/input");

    Assert.assertNotNull(messages);
    Assert.assertEquals(messages.size(), 2);

    Assert.assertEquals(messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().size(), 3);
    Assert.assertEquals(
        messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(0).getMessage(),
        "Fixed_IPS not aligned with Guidelines, Resource ID [fixed_ip_illegal_name_1]");
    Assert.assertEquals(
        messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(1).getMessage(),
        "Fixed_IPS not aligned with Guidelines, Resource ID [fixed_ip_illegal_name_2]");
    Assert.assertEquals(
        messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(2).getMessage(),
        "Fixed_IPS not aligned with Guidelines, Resource ID [fixed_ip_illegal_name_3]");
  }


  @Test
  public void testNovaServerName() throws IOException {
    Map<String, MessageContainer> messages = runValidation(
        "/openecomp/org/validation/validators/ecomp_naming_convention/nova_server_name/input");

    Assert.assertNotNull(messages);
    Assert.assertEquals(messages.size(), 2);

    Assert.assertEquals(messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().size(), 6);
    Assert.assertEquals(
        messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(0).getMessage(),
        "Server Name not aligned with Guidelines, Resource ID [nova_server_ilegal_name_1]");
    Assert.assertEquals(
        messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(1).getMessage(),
        "Server Name not aligned with Guidelines, Resource ID [nova_server_ilegal_name_2]");
    Assert.assertEquals(
        messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(2).getMessage(),
        "Server Name not aligned with Guidelines, Resource ID [nova_server_ilegal_name_3]");
    Assert.assertEquals(
        messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(3).getMessage(),
        "Server Name not aligned with Guidelines, Resource ID [nova_server_ilegal_name_4]");
    Assert.assertEquals(
        messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(4).getMessage(),
        "Server Name not aligned with Guidelines, Resource ID [nova_server_ilegal_name_5]");
    Assert.assertEquals(
        messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(5).getMessage(),
        "Missing get_param in nova server name, Resource Id [nova_server_ilegal_name_6]");
  }


  @Test
  public void testAvailabilityZoneName() throws IOException {
    Map<String, MessageContainer> messages = runValidation(
        "/openecomp/org/validation/validators/ecomp_naming_convention/availability_zone_name/input");

    Assert.assertNotNull(messages);
    Assert.assertEquals(messages.size(), 2);

    Assert.assertEquals(messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().size(), 2);
    Assert.assertEquals(
        messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(0).getMessage(),
        "Server Availability Zone not aligned with Guidelines, Resource ID [availability_zone_illegal_name_1]");
    Assert.assertEquals(
        messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(1).getMessage(),
        "Server Availability Zone not aligned with Guidelines, Resource ID [availability_zone_illegal_name_2]");
  }


  @Test
  public void testFloatingIpResourceType() throws IOException {
    Map<String, MessageContainer> messages = runValidation(
        "/openecomp/org/validation/validators/ecomp_naming_convention/floating_ip_resource_type/input");

    Assert.assertNotNull(messages);
    Assert.assertEquals(messages.size(), 2);

    Assert.assertEquals(messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().size(), 1);
    Assert.assertEquals(
        messages.get("hot-nimbus-pps_v1.0.yaml").getErrorMessageList().get(0).getMessage(),
        "OS::Neutron::FloatingIP is in use, Resource ID [floating_ip_type]");
  }


  @Override
  public Map<String, MessageContainer> runValidation(String path) {
    EcompGuideLineValidator ecompGuideLineValidator = new EcompGuideLineValidator();
    return testValidator(ecompGuideLineValidator, path);
  }
}