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