Increase code coverage for aai-common repo to 30%
[aai/aai-common.git] / aai-core / src / test / java / org / openecomp / aai / util / GenerateXsdTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.openecomp.aai
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.aai.util;
22
23 import org.junit.Test;
24 import org.openecomp.aai.introspection.Version;
25
26 public class GenerateXsdTest {
27
28     @Test
29     public void testGenerationOfXsdAndYaml() throws Exception {
30
31         GenerateXsd generateXsd = new GenerateXsd();
32         System.setProperty("gen_version", Version.getLatest().toString());
33         System.setProperty("gen_type", "XSD");
34         System.setProperty("yamlresponses_url", "");
35         System.setProperty("yamlresponses_label", "");
36
37         generateXsd.main(new String[]{});
38
39         System.setProperty("gen_version", Version.getLatest().toString());
40         System.setProperty("gen_type", "YAML");
41
42         String wikiLink = System.getProperty("aai.wiki.link");
43
44         if(wikiLink == null){
45             wikiLink = "https://wiki.onap.org/";
46         }
47
48         System.setProperty("yamlresponses_url", wikiLink);
49         System.setProperty("yamlresponses_label", "Response codes found in [response codes]");
50
51         generateXsd.main(new String[]{});
52     }
53
54 }