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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.apex.model.basicmodel.handling;
23 import static org.junit.Assert.assertTrue;
25 import java.io.ByteArrayOutputStream;
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;
34 public class ApexSchemaGeneratorTest {
35 private final PrintStream stdout = System.out;
38 public void tearDown() throws Exception {
39 System.setOut(stdout);
43 public void test() throws IOException {
44 final ByteArrayOutputStream baos0 = new ByteArrayOutputStream();
45 System.setOut(new PrintStream(baos0));
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)));
52 final ByteArrayOutputStream baos1 = new ByteArrayOutputStream();
53 System.setOut(new PrintStream(baos1));
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)));
60 final ByteArrayOutputStream baos2 = new ByteArrayOutputStream();
61 System.setOut(new PrintStream(baos2));
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)));
68 final ByteArrayOutputStream baos3 = new ByteArrayOutputStream();
69 System.setOut(new PrintStream(baos3));
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)));
76 final ByteArrayOutputStream baos4 = new ByteArrayOutputStream();
77 System.setOut(new PrintStream(baos4));
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)));
84 final ByteArrayOutputStream baos5 = new ByteArrayOutputStream();
85 System.setOut(new PrintStream(baos5));
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() };
92 ApexSchemaGenerator.main(args5);
93 assertTrue(tempFile.length() > 100);