Changes for checkstyle 8.32
[policy/apex-pdp.git] / model / basic-model / src / test / java / org / onap / policy / apex / model / basicmodel / handling / ApexSchemaGeneratorTest.java
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.Test;
32
33 public class ApexSchemaGeneratorTest {
34
35     @Test
36     public void test() throws IOException {
37         final ByteArrayOutputStream baos0 = new ByteArrayOutputStream();
38         System.setOut(new PrintStream(baos0));
39
40         final String[] args0 = {};
41         ApexSchemaGenerator.main(args0);
42         assertTrue(baos0.toString().contains("usage: ApexSchemaGenerator apex-root-class [schema-file-name]"));
43         System.setOut(new PrintStream(new FileOutputStream(FileDescriptor.out)));
44
45         final ByteArrayOutputStream baos1 = new ByteArrayOutputStream();
46         System.setOut(new PrintStream(baos1));
47
48         final String[] args1 = { "hello", "goodbye", "here" };
49         ApexSchemaGenerator.main(args1);
50         assertTrue(baos1.toString().contains("usage: ApexSchemaGenerator apex-root-class [schema-file-name]"));
51         System.setOut(new PrintStream(new FileOutputStream(FileDescriptor.out)));
52
53         final ByteArrayOutputStream baos2 = new ByteArrayOutputStream();
54         System.setOut(new PrintStream(baos2));
55
56         final String[] args2 = { "hello", "goodbye" };
57         ApexSchemaGenerator.main(args2);
58         assertTrue(baos2.toString().contains("error on Apex schema output"));
59         System.setOut(new PrintStream(new FileOutputStream(FileDescriptor.out)));
60
61         final ByteArrayOutputStream baos3 = new ByteArrayOutputStream();
62         System.setOut(new PrintStream(baos3));
63
64         final String[] args3 = { "hello" };
65         ApexSchemaGenerator.main(args3);
66         assertTrue(baos3.toString().contains("could not create JAXB context, root class hello not found"));
67         System.setOut(new PrintStream(new FileOutputStream(FileDescriptor.out)));
68
69         final ByteArrayOutputStream baos4 = new ByteArrayOutputStream();
70         System.setOut(new PrintStream(baos4));
71
72         final String[] args4 = { "org.onap.policy.apex.model.basicmodel.concepts.AxModel" };
73         ApexSchemaGenerator.main(args4);
74         assertTrue(baos4.toString().contains("targetNamespace=\"http://www.onap.org/policy/apex-pdp\""));
75         System.setOut(new PrintStream(new FileOutputStream(FileDescriptor.out)));
76
77         final ByteArrayOutputStream baos5 = new ByteArrayOutputStream();
78         System.setOut(new PrintStream(baos5));
79
80         final File tempFile = File.createTempFile("ApexSchemaGeneratorTest", "xsd");
81         final String[] args5 =
82             { "org.onap.policy.apex.model.basicmodel.concepts.AxModel", tempFile.getCanonicalPath() };
83
84         ApexSchemaGenerator.main(args5);
85         assertTrue(tempFile.length() > 100);
86         System.setOut(new PrintStream(new FileOutputStream(FileDescriptor.out)));
87         tempFile.delete();
88     }
89 }