ko-osgi-test/src/test/java/org/netbeans/html/ko/osgi/test/KnockoutEquinoxIT.java
author Jaroslav Tulach <jtulach@netbeans.org>
Sat, 02 Aug 2014 12:59:31 +0200
changeset 790 30f20d9c0986
parent 743 e2aa389d4968
child 838 bdc3d696dd4a
permissions -rw-r--r--
Fixing Javadoc to succeed on JDK8
     1 /**
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2013-2014 Oracle and/or its affiliates. All rights reserved.
     5  *
     6  * Oracle and Java are registered trademarks of Oracle and/or its affiliates.
     7  * Other names may be trademarks of their respective owners.
     8  *
     9  * The contents of this file are subject to the terms of either the GNU
    10  * General Public License Version 2 only ("GPL") or the Common
    11  * Development and Distribution License("CDDL") (collectively, the
    12  * "License"). You may not use this file except in compliance with the
    13  * License. You can obtain a copy of the License at
    14  * http://www.netbeans.org/cddl-gplv2.html
    15  * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
    16  * specific language governing permissions and limitations under the
    17  * License.  When distributing the software, include this License Header
    18  * Notice in each file and include the License file at
    19  * nbbuild/licenses/CDDL-GPL-2-CP.  Oracle designates this
    20  * particular file as subject to the "Classpath" exception as provided
    21  * by Oracle in the GPL Version 2 section of the License file that
    22  * accompanied this code. If applicable, add the following below the
    23  * License Header, with the fields enclosed by brackets [] replaced by
    24  * your own identifying information:
    25  * "Portions Copyrighted [year] [name of copyright owner]"
    26  *
    27  * Contributor(s):
    28  *
    29  * The Original Software is NetBeans. The Initial Developer of the Original
    30  * Software is Oracle. Portions Copyright 2013-2014 Oracle. All Rights Reserved.
    31  *
    32  * If you wish your version of this file to be governed by only the CDDL
    33  * or only the GPL Version 2, indicate your decision by adding
    34  * "[Contributor] elects to include this software in this distribution
    35  * under the [CDDL or GPL Version 2] license." If you do not indicate a
    36  * single choice of license, a recipient has the option to distribute
    37  * your version of this file under either the CDDL, the GPL Version 2 or
    38  * to extend the choice of license to its licensees as provided above.
    39  * However, if you add GPL Version 2 code and therefore, elected the GPL
    40  * Version 2 license, then the option applies only if the new code is
    41  * made subject to such option by the copyright holder.
    42  */
    43 package org.netbeans.html.ko.osgi.test;
    44 
    45 import java.io.Closeable;
    46 import java.io.File;
    47 import java.io.IOException;
    48 import java.lang.annotation.Annotation;
    49 import java.lang.reflect.Method;
    50 import java.net.URI;
    51 import java.util.ArrayList;
    52 import java.util.HashMap;
    53 import java.util.List;
    54 import java.util.Map;
    55 import java.util.ServiceLoader;
    56 import java.util.concurrent.Callable;
    57 import java.util.jar.JarFile;
    58 import java.util.logging.Level;
    59 import java.util.logging.Logger;
    60 import org.apidesign.html.boot.spi.Fn;
    61 import org.apidesign.html.json.tck.KOTest;
    62 import org.apidesign.html.json.tck.KnockoutTCK;
    63 import org.osgi.framework.Bundle;
    64 import org.osgi.framework.BundleException;
    65 import org.osgi.framework.Constants;
    66 import org.osgi.framework.launch.Framework;
    67 import org.osgi.framework.launch.FrameworkFactory;
    68 import static org.testng.Assert.assertNotNull;
    69 import static org.testng.Assert.fail;
    70 import org.testng.annotations.AfterClass;
    71 import org.testng.annotations.Factory;
    72 
    73 /**
    74  *
    75  * @author Jaroslav Tulach
    76  */
    77 public class KnockoutEquinoxIT {
    78     private static final Logger LOG = Logger.getLogger(KnockoutEquinoxIT.class.getName());
    79     private static Framework framework;
    80     private static File dir;
    81     static Framework framework() throws Exception {
    82         if (framework != null) {
    83             return framework;
    84         }
    85         for (FrameworkFactory ff : ServiceLoader.load(FrameworkFactory.class)) {
    86             
    87             String basedir = System.getProperty("basedir");
    88             assertNotNull("basedir preperty provided", basedir);
    89             File target = new File(basedir, "target");
    90             dir = new File(target, "osgi");
    91             dir.mkdirs();
    92             
    93             Map<String,String> config = new HashMap<String, String>();
    94             config.put(Constants.FRAMEWORK_STORAGE, dir.getPath());
    95             config.put(Constants.FRAMEWORK_STORAGE_CLEAN, "true");
    96             config.put(Constants.FRAMEWORK_SYSTEMPACKAGES_EXTRA, "sun.misc,"
    97                 + "javafx.application,"
    98                 + "javafx.beans,"
    99                 + "javafx.beans.property,"
   100                 + "javafx.beans.value,"
   101                 + "javafx.collections,"
   102                 + "javafx.concurrent,"
   103                 + "javafx.event,"
   104                 + "javafx.geometry,"
   105                 + "javafx.scene,"
   106                 + "javafx.scene.control,"
   107                 + "javafx.scene.image,"
   108                 + "javafx.scene.layout,"
   109                 + "javafx.scene.text,"
   110                 + "javafx.scene.web,"
   111                 + "javafx.stage,"
   112                 + "javafx.util,"
   113                 + "netscape.javascript"
   114             );
   115             config.put("osgi.hook.configurators.include", "org.netbeans.html.equinox.agentclass.AgentHook");
   116             framework = ff.newFramework(config);
   117             framework.init();
   118             loadClassPathBundles(framework);
   119             framework.start();
   120             for (Bundle b : framework.getBundleContext().getBundles()) {
   121                 try {
   122                     if (b.getSymbolicName().contains("equinox-agentclass-hook")) {
   123                         continue;
   124                     }
   125                     if (b.getSymbolicName().contains("grizzly.websockets-server")) {
   126                         continue;
   127                     }
   128                     b.start();
   129                     LOG.log(Level.INFO, "Started {0}", b.getSymbolicName());
   130                 } catch (BundleException ex) {
   131                     LOG.log(Level.WARNING, "Cannot start bundle " + b.getSymbolicName(), ex);
   132                 }
   133             }
   134             return framework;
   135         }
   136         fail("No OSGi framework in the path");
   137         return null;
   138     }
   139     
   140     @AfterClass public static void cleanUp() throws Exception {
   141         if (framework != null) framework.stop();
   142         clearUpDir(dir);
   143     }
   144     private static void clearUpDir(File dir) {
   145         if (dir.isDirectory()) {
   146             for (File f : dir.listFiles()) {
   147                 clearUpDir(f);
   148             }
   149         }
   150         dir.delete();
   151     }
   152     
   153     
   154 
   155     private static void loadClassPathBundles(Framework f) throws IOException, BundleException {
   156         for (String jar : System.getProperty("java.class.path").split(File.pathSeparator)) {
   157             File file = new File(jar);
   158             if (!file.isFile()) {
   159                 LOG.info("Not loading " + file);
   160                 continue;
   161             }
   162             JarFile jf = new JarFile(file);
   163             final String name = jf.getManifest().getMainAttributes().getValue("Bundle-SymbolicName");
   164             jf.close();
   165             if (name != null) {
   166                 if (name.contains("org.eclipse.osgi")) {
   167                     continue;
   168                 }
   169                 if (name.contains("testng")) {
   170                     continue;
   171                 }
   172                 final String path = "reference:" + file.toURI().toString();
   173                 try {
   174                     Bundle b = f.getBundleContext().installBundle(path);
   175                 } catch (BundleException ex) {
   176                     LOG.log(Level.WARNING, "Cannot install " + file, ex);
   177                 }
   178             }
   179         }
   180     }
   181     
   182     private static Class<?> loadOSGiClass(Class<?> c) throws Exception {
   183         return KnockoutEquinoxTCKImpl.loadOSGiClass(c.getName(), KnockoutEquinoxIT.framework().getBundleContext());
   184     }
   185     
   186     private static Class<?> browserClass;
   187     private static Object browserContext;
   188     
   189     @Factory public static Object[] compatibilityTests() throws Exception {
   190         Class<?> tck = loadOSGiClass(KnockoutTCK.class);
   191         Class<?> peer = loadOSGiClass(KnockoutEquinoxTCKImpl.class);
   192         // initialize the TCK
   193         Callable<Class[]> inst = (Callable<Class[]>) peer.newInstance();
   194         
   195         Class[] arr = inst.call();
   196         for (int i = 0; i < arr.length; i++) {
   197             if (arr[i].getClassLoader() == ClassLoader.getSystemClassLoader()) {
   198                 fail("Should be an OSGi class: " + arr[i]);
   199             }
   200         }
   201         
   202         URI uri = DynamicHTTP.initServer();
   203 
   204         Method start = peer.getMethod("start", URI.class);
   205         start.invoke(null, uri);
   206         
   207         ClassLoader l = getClassLoader();
   208         List<Object> res = new ArrayList<Object>();
   209         for (int i = 0; i < arr.length; i++) {
   210             seekKOTests(arr[i], res);
   211         }
   212         return res.toArray();
   213     }
   214 
   215     private static void seekKOTests(Class<?> c, List<Object> res) throws SecurityException, ClassNotFoundException {
   216         Class<? extends Annotation> koTest =
   217             c.getClassLoader().loadClass(KOTest.class.getName()).
   218             asSubclass(Annotation.class);
   219         for (Method m : c.getMethods()) {
   220             if (m.getAnnotation(koTest) != null) {
   221                 res.add(new KOFx(browserContext, m));
   222             }
   223         }
   224     }
   225 
   226     static synchronized ClassLoader getClassLoader() throws InterruptedException {
   227         while (browserClass == null) {
   228             KnockoutEquinoxIT.class.wait();
   229         }
   230         return browserClass.getClassLoader();
   231     }
   232     
   233     public static synchronized void initialized(Class<?> browserCls, Object presenter) throws Exception {
   234         browserClass = browserCls;
   235         browserContext = presenter;
   236         KnockoutEquinoxIT.class.notifyAll();
   237     }
   238 
   239     static Closeable activateInOSGi(Object presenter) throws Exception {
   240         Class<?> presenterClass = loadOSGiClass(Fn.Presenter.class);
   241         Class<?> fnClass = loadOSGiClass(Fn.class);
   242         Method m = fnClass.getMethod("activate", presenterClass);
   243         return (Closeable) m.invoke(null, presenter);
   244     }
   245 }