Sync Integ to Master
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / ecomp / GenerateEcompErrorFileTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 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
21 package org.openecomp.sdc.be.ecomp;
22
23 import org.junit.Test;
24 import org.openecomp.sdc.common.config.EcompClassification;
25 import org.openecomp.sdc.common.config.EcompErrorCode;
26 import org.openecomp.sdc.common.config.EcompErrorEnum;
27 import org.openecomp.sdc.common.config.generation.GenerateEcompErrorsCsv;
28
29 import java.util.ArrayList;
30 import java.util.HashMap;
31 import java.util.List;
32 import java.util.Map;
33
34 import static org.junit.Assert.assertTrue;
35
36 public class GenerateEcompErrorFileTest {
37
38     @Test
39     public void verifyNoDuplicatesInEcompErrorCodes() {
40
41         EcompErrorEnum[] ecompErrorEnums = EcompErrorEnum.values();
42
43         Map<EcompErrorCode, List<EcompClassification>> map = new HashMap<EcompErrorCode, List<EcompClassification>>();
44         for (EcompErrorEnum ecompErrorEnum : ecompErrorEnums) {
45
46             List<EcompClassification> list = map.get(ecompErrorEnum.getEcompErrorCode());
47             if (list == null) {
48                 list = new ArrayList<>();
49
50                 list.add(ecompErrorEnum.getClassification());
51
52                 map.put(ecompErrorEnum.getEcompErrorCode(), list);
53             } else {
54                 if (list.contains(ecompErrorEnum.getClassification())) {
55                     assertTrue(ecompErrorEnum.getEcompErrorCode() + " already defined with ecomp classification " + ecompErrorEnum.getClassification(), false);
56                 } else {
57                     list.add(ecompErrorEnum.getClassification());
58                 }
59
60             }
61
62         }
63
64     }
65
66     @Test
67     public void generateEcompErrorFileInTarget() {
68
69         GenerateEcompErrorsCsv ecompErrorsCsv = new GenerateEcompErrorsCsv();
70         boolean result = ecompErrorsCsv.generateEcompErrorsCsvFile("target", false);
71         assertTrue("check result from file generation", result);
72
73     }
74
75 }