added schema validation tools
[aai/aai-common.git] / aai-schema-ingest / src / main / java / org / onap / aai / validation / edges / DefaultEdgeFieldsValidationModule.java
1 /** 
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  *
20  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 /**
24  * 
25  */
26 package org.onap.aai.validation.edges;
27
28 import java.util.EnumSet;
29 import java.util.Map;
30 import java.util.Map.Entry;
31 import java.util.Set;
32
33 import org.onap.aai.edges.enums.EdgeField;
34
35 /**
36  * Default core A&AI edge field validation
37  * All fields in EdgeField enum are required EXCEPT description
38  *
39  */
40 public class DefaultEdgeFieldsValidationModule implements EdgeFieldsValidationModule {
41
42         /* (non-Javadoc)
43          * @see org.onap.aai.edges.EdgeFieldsValidator#verifyFields(java.util.Map)
44          */
45         @Override
46         public String verifyFields(Map<String, String> rule) {
47                 EnumSet<EdgeField> missingFields = EnumSet.complementOf(EnumSet.allOf(EdgeField.class));
48                 
49                 for (EdgeField f : EdgeField.values()) {
50                         if (!rule.containsKey(f.toString()) && (f != EdgeField.DESCRIPTION)) { //description is optional
51                                 missingFields.add(f);
52                         }
53                 }
54                 
55                 StringBuilder errorMsg = new StringBuilder();
56                 if (!missingFields.isEmpty()) {
57                         errorMsg.append("Rule ").append(ruleToString(rule)).append(" missing required fields: ");
58                         for (EdgeField mf : missingFields) {
59                                 errorMsg.append(mf.toString()).append(" ");
60                         }
61                 }
62                 
63                 return errorMsg.toString();
64         }
65         
66         private String ruleToString(Map<String, String> rule) {
67                 StringBuilder sb = new StringBuilder();
68                 for (Entry<String, String> fields : rule.entrySet()) {
69                         sb.append(fields.getKey()).append(":").append(fields.getValue()).append(" ");
70                 }
71                 
72                 return sb.toString();
73         }
74
75 }