blob: 8a9be70e90a37e3efe93167d5fb6652e2d3903ec [file] [log] [blame]
/**
* 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.apache.aries.cdi.test.cases;
import static org.junit.Assert.*;
import javax.enterprise.inject.spi.BeanManager;
import javax.enterprise.inject.spi.Extension;
import javax.naming.InitialContext;
import org.apache.aries.cdi.test.interfaces.Pojo;
import org.junit.Ignore;
import org.junit.Test;
import org.osgi.framework.Bundle;
import org.osgi.framework.wiring.BundleWiring;
public class JndiExtensionTests extends AbstractTestCase {
@Ignore("I think there's an issue with Aries JNDI. It doesn't work well with service objects")
@Test
public void testGetBeanManagerThroughJNDI() throws Exception {
assertNotNull(getBeanManager(cdiBundle));
Thread currentThread = Thread.currentThread();
ClassLoader contextClassLoader = currentThread.getContextClassLoader();
try {
BundleWiring bundleWiring = cdiBundle.adapt(BundleWiring.class);
currentThread.setContextClassLoader(bundleWiring.getClassLoader());
BeanManager beanManager = (BeanManager)InitialContext.doLookup("java:comp/BeanManager");
assertNotNull(beanManager);
assertBeanExists(Pojo.class, beanManager);
}
finally {
currentThread.setContextClassLoader(contextClassLoader);
}
}
@Test
public void testDisableExtensionAndCDIContainerWaits() throws Exception {
try (CloseableTracker<Extension, Extension> extensionTracker = track(
"(&(objectClass=%s)(osgi.cdi.extension=aries.cdi.jndi))",
Extension.class.getName());) {
assertFalse(extensionTracker.isEmpty());
Bundle extensionBundle = extensionTracker.getServiceReference().getBundle();
try (CloseableTracker<BeanManager, BeanManager> bmTracker = trackBM(cdiBundle);) {
assertNotNull(bmTracker.waitForService(timeout));
int trackingCount = bmTracker.getTrackingCount();
extensionBundle.stop();
for (int i = 100; (i > 0) && (bmTracker.getTrackingCount() == trackingCount); i--) {
Thread.sleep(100);
}
assertTrue(bmTracker.isEmpty());
trackingCount = bmTracker.getTrackingCount();
extensionBundle.start();
for (int i = 20; (i > 0) && (bmTracker.getTrackingCount() == trackingCount); i--) {
Thread.sleep(100);
}
assertFalse(bmTracker.isEmpty());
}
}
}
}