Package org.jboss.errai.enterprise.client.cdi

Source Code of org.jboss.errai.enterprise.client.cdi.AbstractErraiCDITest

/*
* Copyright 2011 JBoss, by Red Hat, Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*    http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.jboss.errai.enterprise.client.cdi;

import com.google.gwt.junit.client.GWTTestCase;
import org.jboss.errai.common.client.api.extension.InitVotes;
import org.jboss.errai.enterprise.client.cdi.api.CDI;
import org.jboss.errai.ioc.client.Container;
import org.jboss.errai.ioc.client.QualifierUtil;
import org.jboss.errai.ioc.client.container.IOC;
import org.jboss.errai.ioc.client.container.IOCBeanDef;

import java.lang.annotation.Annotation;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashSet;
import java.util.Set;

/**
* Abstract base class of all Errai CDI integration tests,
* used to bootstrap our IOC container and CDI module.
*
* @author Christian Sadilek <csadilek@redhat.com>
*/
public abstract class AbstractErraiCDITest extends GWTTestCase {

  protected boolean disableBus = false;

  @Override
  protected void gwtSetUp() throws Exception {
    if (disableBus) {
      setRemoteCommunicationEnabled(false);
    }
    InitVotes.reset();
    InitVotes.setTimeoutMillis(60000);
    super.gwtSetUp();

    CDI.removePostInitTasks();

    // Unfortunately, GWTTestCase does not call our inherited module's onModuleLoad() methods
    // http://code.google.com/p/google-web-toolkit/issues/detail?id=3791
    new CDI().__resetSubsystem();
    new Container().onModuleLoad();
    new CDIClientBootstrap().onModuleLoad();
  }

  @Override
  protected void gwtTearDown() throws Exception {
    setRemoteCommunicationEnabled(true);
    super.gwtTearDown();
  }

  public static boolean annotationSetMatches(final Set<Annotation> annotations,
                                             final Class<? extends Annotation>... annos) {

    final Set<Class<? extends Annotation>> annoClassCompareFrom
        = new HashSet<Class<? extends Annotation>>(Arrays.asList(annos));

    final Set<Class<? extends Annotation>> annoClassCompareTo
        = new HashSet<Class<? extends Annotation>>();

    for (final Annotation a : annotations) {
      annoClassCompareTo.add(a.annotationType());
    }

    return annoClassCompareFrom.equals(annoClassCompareTo);
  }

  public native void setRemoteCommunicationEnabled(boolean enabled) /*-{
    $wnd.erraiBusRemoteCommunicationEnabled = enabled;
  }-*/;

  protected <T> Collection<IOCBeanDef<T>> getBeans(final Class<T> type,
                                                   final Annotation... annotations) {
    return IOC.getBeanManager().lookupBeans(type, annotations);
  }

  protected boolean assertContains(final Collection<Annotation> annotationCollection,
                                   final Annotation toCompare) {
    for (final Annotation a : annotationCollection) {
      if (QualifierUtil.isEqual(a, toCompare)) return true;
    }
    return false;
  }
}
TOP

Related Classes of org.jboss.errai.enterprise.client.cdi.AbstractErraiCDITest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.