use of javax.enterprise.inject.se.SeContainer in project hibernate-orm by hibernate.
the class ExtendedMixedAccessTest method testExtendedMixedAccess.
@Test
public void testExtendedMixedAccess() {
final Helper.TestingExtendedBeanManager extendedBeanManager = Helper.createExtendedBeanManager();
final StandardServiceRegistry ssr = new StandardServiceRegistryBuilder().applySetting(AvailableSettings.HBM2DDL_AUTO, Action.CREATE_DROP).applySetting(AvailableSettings.CDI_BEAN_MANAGER, extendedBeanManager).build();
final BeanContainer beanContainer = ssr.getService(ManagedBeanRegistry.class).getBeanContainer();
assertThat(beanContainer, instanceOf(CdiBeanContainerExtendedAccessImpl.class));
try (final SeContainer cdiContainer = Helper.createSeContainer()) {
final BeanManager beanManager = cdiContainer.getBeanManager();
extendedBeanManager.notifyListenerReady(beanManager);
assertThat(beanManager, sameInstance(((CdiBeanContainerExtendedAccessImpl) beanContainer).getUsableBeanManager()));
final ContainedBean<HostedBean> hostedBean = beanContainer.getBean(HostedBean.class, this, FallbackBeanInstanceProducer.INSTANCE);
assertThat(hostedBean, notNullValue());
assertThat(hostedBean.getBeanInstance(), notNullValue());
assertThat(hostedBean.getBeanInstance().getInjectedHostedBean(), notNullValue());
final ContainedBean<NonHostedBean> nonHostedBean = beanContainer.getBean(NonHostedBean.class, this, FallbackBeanInstanceProducer.INSTANCE);
assertThat(nonHostedBean, notNullValue());
assertThat(nonHostedBean.getBeanInstance(), notNullValue());
extendedBeanManager.notifyListenerShuttingDown(beanManager);
}
}
use of javax.enterprise.inject.se.SeContainer in project hibernate-orm by hibernate.
the class BasicCdiTest method testIt.
@Test
@SuppressWarnings("unchecked")
public void testIt() {
final SeContainerInitializer cdiInitializer = SeContainerInitializer.newInstance().disableDiscovery().addBeanClasses(Monitor.class, EventQueue.class, Event.class);
count = 0;
try (final SeContainer cdiContainer = cdiInitializer.initialize()) {
BootstrapServiceRegistry bsr = new BootstrapServiceRegistryBuilder().build();
final StandardServiceRegistry ssr = new StandardServiceRegistryBuilder(bsr).applySetting(AvailableSettings.CDI_BEAN_MANAGER, cdiContainer.getBeanManager()).applySetting(AvailableSettings.DELAY_CDI_ACCESS, "true").applySetting(AvailableSettings.HBM2DDL_AUTO, Action.CREATE_DROP).build();
final SessionFactoryImplementor sessionFactory;
try {
sessionFactory = (SessionFactoryImplementor) new MetadataSources(ssr).addAnnotatedClass(MyEntity.class).buildMetadata().getSessionFactoryBuilder().build();
} catch (Exception e) {
StandardServiceRegistryBuilder.destroy(ssr);
throw e;
}
try {
inTransaction(sessionFactory, session -> session.persist(new MyEntity(1)));
assertEquals(1, count);
inTransaction(sessionFactory, session -> {
MyEntity it = session.find(MyEntity.class, 1);
assertNotNull(it);
});
} finally {
inTransaction(sessionFactory, session -> {
session.createQuery("delete MyEntity").executeUpdate();
});
sessionFactory.close();
}
}
}
use of javax.enterprise.inject.se.SeContainer in project meecrowave by apache.
the class MeecrowaveSeContainerInitializerTest method run.
@Test
public void run() {
try (final SeContainer container = SeContainerInitializer.newInstance().addProperty("httpPort", new Meecrowave.Builder().randomHttpPort().getHttpPort()).disableDiscovery().addBeanClasses(Configured.class).initialize()) {
final Client client = ClientBuilder.newClient();
assertNotNull(container.select(Meecrowave.class).get());
assertEquals("configured", client.target(String.format("http://localhost:%d/configured", container.select(Meecrowave.Builder.class).get().getHttpPort())).request(TEXT_PLAIN_TYPE).get(String.class));
}
}
use of javax.enterprise.inject.se.SeContainer in project hibernate-orm by hibernate.
the class NonRegistryManagedExtendedCdiSupportTest method testIt.
@Test
public void testIt() {
Monitor.reset();
final ExtendedBeanManagerImpl standIn = new ExtendedBeanManagerImpl();
final TheFallbackBeanInstanceProducer fallbackBeanInstanceProducer = new TheFallbackBeanInstanceProducer();
final NonRegistryManagedBeanConsumingIntegrator beanConsumingIntegrator = new NonRegistryManagedBeanConsumingIntegrator(fallbackBeanInstanceProducer);
try (SessionFactoryImplementor sessionFactory = buildSessionFactory(standIn, beanConsumingIntegrator)) {
final SeContainerInitializer cdiInitializer = SeContainerInitializer.newInstance().disableDiscovery().addBeanClasses(TheApplicationScopedBean.class).addBeanClasses(TheNamedApplicationScopedBean.class, TheMainNamedApplicationScopedBeanImpl.class, TheAlternativeNamedApplicationScopedBeanImpl.class).addBeanClasses(TheSharedApplicationScopedBean.class).addBeanClasses(TheDependentBean.class).addBeanClasses(TheNamedDependentBean.class, TheMainNamedDependentBeanImpl.class, TheAlternativeNamedDependentBeanImpl.class).addBeanClasses(TheNestedDependentBean.class).addBeanClasses(TheNonHibernateBeanConsumer.class);
try (final SeContainer cdiContainer = cdiInitializer.initialize()) {
// Simulate CDI bean consumers outside of Hibernate ORM
Instance<TheNonHibernateBeanConsumer> nonHibernateBeanConsumerInstance = cdiContainer.getBeanManager().createInstance().select(TheNonHibernateBeanConsumer.class);
nonHibernateBeanConsumerInstance.get();
// Here, the NonRegistryManagedBeanConsumingIntegrator has just been integrated and has requested beans
// BUT it has not fetched instances of beans yet, so non-shared beans should not have been instantiated yet.
assertEquals(0, Monitor.theApplicationScopedBean().currentInstantiationCount());
assertEquals(0, Monitor.theMainNamedApplicationScopedBean().currentInstantiationCount());
assertEquals(0, Monitor.theAlternativeNamedApplicationScopedBean().currentInstantiationCount());
assertEquals(1, Monitor.theSharedApplicationScopedBean().currentInstantiationCount());
assertEquals(0, Monitor.theDependentBean().currentInstantiationCount());
assertEquals(0, Monitor.theMainNamedDependentBean().currentInstantiationCount());
assertEquals(0, Monitor.theAlternativeNamedDependentBean().currentInstantiationCount());
assertEquals(0, fallbackBeanInstanceProducer.currentInstantiationCount());
assertEquals(0, fallbackBeanInstanceProducer.currentNamedInstantiationCount());
// Nested dependent bean: 1 instance per bean that depends on it
assertEquals(1, Monitor.theNestedDependentBean().currentInstantiationCount());
standIn.beanManagerReady(cdiContainer.getBeanManager());
beanConsumingIntegrator.ensureInstancesInitialized();
// Here the NonRegistryManagedBeanConsumingIntegrator *did* fetch an instance of each bean,
// so all beans should have been instantiated.
// See NonRegistryManagedBeanConsumingIntegrator for a detailed list of requested beans
// Application scope: maximum 1 instance as soon as at least one was requested
assertEquals(1, Monitor.theApplicationScopedBean().currentInstantiationCount());
assertEquals(1, Monitor.theMainNamedApplicationScopedBean().currentInstantiationCount());
assertEquals(0, Monitor.theAlternativeNamedApplicationScopedBean().currentInstantiationCount());
assertEquals(1, Monitor.theSharedApplicationScopedBean().currentInstantiationCount());
// Dependent scope: 1 instance per bean we requested explicitly
assertEquals(2, Monitor.theDependentBean().currentInstantiationCount());
assertEquals(2, Monitor.theMainNamedDependentBean().currentInstantiationCount());
assertEquals(0, Monitor.theAlternativeNamedDependentBean().currentInstantiationCount());
// Reflection-instantiated: 1 instance per bean we requested explicitly
assertEquals(2, fallbackBeanInstanceProducer.currentInstantiationCount());
assertEquals(2, fallbackBeanInstanceProducer.currentNamedInstantiationCount());
// Nested dependent bean: 1 instance per bean that depends on it
assertEquals(7, Monitor.theNestedDependentBean().currentInstantiationCount());
// Expect one PostConstruct call per CDI bean instance
assertEquals(1, Monitor.theApplicationScopedBean().currentPostConstructCount());
assertEquals(1, Monitor.theMainNamedApplicationScopedBean().currentPostConstructCount());
assertEquals(0, Monitor.theAlternativeNamedApplicationScopedBean().currentPostConstructCount());
assertEquals(1, Monitor.theSharedApplicationScopedBean().currentPostConstructCount());
assertEquals(2, Monitor.theDependentBean().currentPostConstructCount());
assertEquals(2, Monitor.theMainNamedDependentBean().currentPostConstructCount());
assertEquals(0, Monitor.theAlternativeNamedDependentBean().currentPostConstructCount());
assertEquals(7, Monitor.theNestedDependentBean().currentPostConstructCount());
// Expect no PreDestroy call yet
assertEquals(0, Monitor.theApplicationScopedBean().currentPreDestroyCount());
assertEquals(0, Monitor.theMainNamedApplicationScopedBean().currentPreDestroyCount());
assertEquals(0, Monitor.theAlternativeNamedApplicationScopedBean().currentPreDestroyCount());
assertEquals(0, Monitor.theSharedApplicationScopedBean().currentPreDestroyCount());
assertEquals(0, Monitor.theDependentBean().currentPreDestroyCount());
assertEquals(0, Monitor.theMainNamedDependentBean().currentPreDestroyCount());
assertEquals(0, Monitor.theAlternativeNamedDependentBean().currentPreDestroyCount());
assertEquals(0, Monitor.theNestedDependentBean().currentPreDestroyCount());
}
// After the CDI context has ended, PreDestroy should have been called on every "normal-scoped" CDI bean
// (i.e. all CDI beans excepting the dependent ones we requested explicitly and haven't released yet)
assertEquals(1, Monitor.theApplicationScopedBean().currentPreDestroyCount());
assertEquals(1, Monitor.theMainNamedApplicationScopedBean().currentPreDestroyCount());
assertEquals(0, Monitor.theAlternativeNamedApplicationScopedBean().currentPreDestroyCount());
assertEquals(1, Monitor.theSharedApplicationScopedBean().currentPreDestroyCount());
assertEquals(0, Monitor.theDependentBean().currentPreDestroyCount());
assertEquals(0, Monitor.theMainNamedDependentBean().currentPreDestroyCount());
assertEquals(0, Monitor.theAlternativeNamedDependentBean().currentPreDestroyCount());
assertEquals(3, Monitor.theNestedDependentBean().currentPreDestroyCount());
}
// Here, the NonRegistryManagedBeanConsumingIntegrator has just been disintegrated and has released beans
// The dependent beans should now have been released as well.
assertEquals(1, Monitor.theApplicationScopedBean().currentPreDestroyCount());
assertEquals(1, Monitor.theMainNamedApplicationScopedBean().currentPreDestroyCount());
assertEquals(0, Monitor.theAlternativeNamedApplicationScopedBean().currentPreDestroyCount());
assertEquals(1, Monitor.theSharedApplicationScopedBean().currentPreDestroyCount());
assertEquals(2, Monitor.theDependentBean().currentPreDestroyCount());
assertEquals(2, Monitor.theMainNamedDependentBean().currentPreDestroyCount());
assertEquals(0, Monitor.theAlternativeNamedDependentBean().currentPreDestroyCount());
assertEquals(7, Monitor.theNestedDependentBean().currentPreDestroyCount());
}
use of javax.enterprise.inject.se.SeContainer in project hibernate-orm by hibernate.
the class CdiHostedConverterTest method testIt.
@Test
public void testIt() {
MonitorBean.reset();
final SeContainerInitializer cdiInitializer = SeContainerInitializer.newInstance().disableDiscovery().addBeanClasses(MonitorBean.class, ConverterBean.class);
try (final SeContainer cdiContainer = cdiInitializer.initialize()) {
BootstrapServiceRegistry bsr = new BootstrapServiceRegistryBuilder().build();
final StandardServiceRegistry ssr = new StandardServiceRegistryBuilder(bsr).applySetting(AvailableSettings.HBM2DDL_AUTO, Action.CREATE_DROP).applySetting(AvailableSettings.CDI_BEAN_MANAGER, cdiContainer.getBeanManager()).build();
final SessionFactoryImplementor sessionFactory;
try {
sessionFactory = (SessionFactoryImplementor) new MetadataSources(ssr).addAnnotatedClass(TheEntity.class).buildMetadata().getSessionFactoryBuilder().build();
} catch (Exception e) {
StandardServiceRegistryBuilder.destroy(ssr);
throw e;
}
// The CDI bean should have been built immediately...
assertTrue(MonitorBean.wasInstantiated());
assertEquals(0, MonitorBean.currentFromDbCount());
assertEquals(0, MonitorBean.currentToDbCount());
try {
inTransaction(sessionFactory, session -> session.persist(new TheEntity(1, "me", 5)));
assertEquals(0, MonitorBean.currentFromDbCount());
assertEquals(1, MonitorBean.currentToDbCount());
inTransaction(sessionFactory, session -> {
TheEntity it = session.find(TheEntity.class, 1);
assertNotNull(it);
});
assertEquals(1, MonitorBean.currentFromDbCount());
assertEquals(1, MonitorBean.currentToDbCount());
} finally {
inTransaction(sessionFactory, session -> {
session.createQuery("delete TheEntity").executeUpdate();
});
sessionFactory.close();
}
}
}
Aggregations