3385830e2e6c7bda28f7b259201f3201474bc9ef
[policy/apex-pdp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.model.basicmodel.handling;
22
23 import static org.junit.Assert.assertTrue;
24
25 import java.io.ByteArrayOutputStream;
26 import java.io.File;
27 import java.io.FileDescriptor;
28 import java.io.FileOutputStream;
29 import java.io.IOException;
30 import java.io.PrintStream;
31 import org.junit.After;
32 import org.junit.Test;
33
34 public class ApexSchemaGeneratorTest {
35     private final PrintStream stdout = System.out;
36
37     @After
38     public void tearDown() throws Exception {
39         System.setOut(stdout);
40     }
41
42     @Test
43     public void test() throws IOException {
44         final ByteArrayOutputStream baos0 = new ByteArrayOutputStream();
45         System.setOut(new PrintStream(baos0));
46
47         final String[] args0 = {};
48         ApexSchemaGenerator.main(args0);
49         assertTrue(baos0.toString().contains("usage: ApexSchemaGenerator apex-root-class [schema-file-name]"));
50         System.setOut(new PrintStream(new FileOutputStream(FileDescriptor.out)));
51
52         final ByteArrayOutputStream baos1 = new ByteArrayOutputStream();
53         System.setOut(new PrintStream(baos1));
54
55         final String[] args1 = { "hello", "goodbye", "here" };
56         ApexSchemaGenerator.main(args1);
57         assertTrue(baos1.toString().contains("usage: ApexSchemaGenerator apex-root-class [schema-file-name]"));
58         System.setOut(new PrintStream(new FileOutputStream(FileDescriptor.out)));
59
60         final ByteArrayOutputStream baos2 = new ByteArrayOutputStream();
61         System.setOut(new PrintStream(baos2));
62
63         final String[] args2 = { "hello", "goodbye" };
64         ApexSchemaGenerator.main(args2);
65         assertTrue(baos2.toString().contains("error on Apex schema output"));
66         System.setOut(new PrintStream(new FileOutputStream(FileDescriptor.out)));
67
68         final ByteArrayOutputStream baos3 = new ByteArrayOutputStream();
69         System.setOut(new PrintStream(baos3));
70
71         final String[] args3 = { "hello" };
72         ApexSchemaGenerator.main(args3);
73         assertTrue(baos3.toString().contains("could not create JAXB context, root class hello not found"));
74         System.setOut(new PrintStream(new FileOutputStream(FileDescriptor.out)));
75
76         final ByteArrayOutputStream baos4 = new ByteArrayOutputStream();
77         System.setOut(new PrintStream(baos4));
78
79         final String[] args4 = { "org.onap.policy.apex.model.basicmodel.concepts.AxModel" };
80         ApexSchemaGenerator.main(args4);
81         assertTrue(baos4.toString().contains("targetNamespace=\"http://www.onap.org/policy/apex-pdp\""));
82         System.setOut(new PrintStream(new FileOutputStream(FileDescriptor.out)));
83
84         final ByteArrayOutputStream baos5 = new ByteArrayOutputStream();
85         System.setOut(new PrintStream(baos5));
86
87         final File tempFile = File.createTempFile("ApexSchemaGeneratorTest", "xsd");
88         tempFile.deleteOnExit();
89         final String[] args5 =
90             { "org.onap.policy.apex.model.basicmodel.concepts.AxModel", tempFile.getCanonicalPath() };
91
92         ApexSchemaGenerator.main(args5);
93         assertTrue(tempFile.length() > 100);
94     }
95 }