alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 *
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 *
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2001 Sun
 * Microsystems, Inc. All Rights Reserved.
 */
package org.netbeans.test.editor.app.tests;

import java.io.PrintStream;
import java.io.PrintWriter;
import java.security.PermissionCollection;
import java.security.Permissions;
import java.security.AllPermission;

import java.lang.reflect.Method;
import java.lang.reflect.Constructor;
import org.netbeans.test.editor.app.Main;

import org.netbeans.test.editor.app.util.WriterOutputStream;
//import org.openide.execution.NbClassLoader;
import org.openide.filesystems.Repository;


public class CallTestGeneric {
    
    private static final boolean debug = true;
    
    private PrintWriter log = null;
    
    protected void log(String what) {
        if (log != null) {
            log.println(what);
            log.flush();
        } else {
            System.err.println(what);
            System.err.flush();
        }
    }
    
    public void runTest(String[] args, final PrintWriter log, final PrintWriter ref) throws Exception {
        PrintStream oout = System.out;
        PrintStream oerr = System.err;
        
        try {
            if (debug)
                System.err.println("Testing internal execution!");
            if (Repository.getDefault() == null) {
                throw new IllegalStateException("Repository.getDefault() == null, probably not internal execution.");
            }
            
            if (debug)
                System.err.println("Redirecting System.err and System.out.");
            System.setErr(new PrintStream(new WriterOutputStream(log)));
            System.setOut(new PrintStream(new WriterOutputStream(ref)));
            
            System.err.println("Before trying to execute:");
            Main.main(args);
/*            NbClassLoader cl = new NbClassLoader();
            System.err.println("Class loader parent: "+cl.getParent());
            PermissionCollection pcoll = new Permissions();
            pcoll.add(new AllPermission());
            cl.setDefaultPermissions(pcoll);
 
            Class callTest = cl.loadClass("org.netbeans.test.editor.app.Main");
            Method method = callTest.getMethod("main", new Class[] {args.getClass()});
 
            System.err.println(method.getReturnType());
 
            Object obj = method.invoke(null, new Object[] {args});*/
        } catch (Exception e) {
            e.printStackTrace(log);
            throw e;
        } finally {
            System.err.flush();
            System.out.flush();
            System.setOut(oout);
            System.setErr(oerr);
        }
    }
    
    public static final void main(String[] args) throws Exception {
        String[] arguments = new String[] {
            "/org/netbeans/test/editor/app/tests/javadoc_test.xml",
            "Javadoc_writting.Common_Java_settings",
            "/org/netbeans/test/editor/app/tests/javadoc_test.xml",
            "Javadoc_writting.JavaDoc_inside",
        };
        PrintWriter log = new PrintWriter(System.err);
        PrintWriter ref = new PrintWriter(System.out);
        
        new CallTestGeneric().runTest(arguments, log, ref);
        
        log.close();
        ref.close();
    }
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.