/* * Copyright (c) 2010-2017. Axon Framework * 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.axonframework.boot; import org.axonframework.commandhandling.CommandBus; import org.axonframework.commandhandling.SimpleCommandBus; import org.axonframework.commandhandling.distributed.CommandBusConnector; import org.axonframework.commandhandling.distributed.CommandRouter; import org.axonframework.commandhandling.distributed.DistributedCommandBus; import org.axonframework.commandhandling.gateway.AbstractCommandGateway; import org.axonframework.commandhandling.gateway.CommandGateway; import org.axonframework.commandhandling.gateway.DefaultCommandGateway; import org.axonframework.eventhandling.EventBus; import org.axonframework.jgroups.commandhandling.JGroupsConnector; import org.axonframework.serialization.Serializer; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; import org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration; import org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration; import org.springframework.boot.autoconfigure.web.WebClientAutoConfiguration; import org.springframework.context.ApplicationContext; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.TestPropertySource; import org.springframework.test.context.junit4.SpringRunner; import static org.junit.Assert.*; @ContextConfiguration @EnableAutoConfiguration(exclude = {JmxAutoConfiguration.class, WebClientAutoConfiguration.class, HibernateJpaAutoConfiguration.class, DataSourceAutoConfiguration.class}) @TestPropertySource("classpath:test.jgroups.application.properties") @RunWith(SpringRunner.class) public class AxonAutoConfigurationWithJGroupsTest { @Autowired private ApplicationContext applicationContext; @Autowired @Qualifier("localSegment") private CommandBus localSegment; @Autowired private CommandBus commandBus; @Autowired private CommandRouter commandRouter; @Autowired private CommandBusConnector commandBusConnector; @Test public void testContextInitialization() throws Exception { assertNotNull(applicationContext); assertNotNull(commandRouter); assertEquals(JGroupsConnector.class, commandRouter.getClass()); assertNotNull(commandBusConnector); assertEquals(JGroupsConnector.class, commandBusConnector.getClass()); assertSame(commandRouter, commandBusConnector); assertNotNull(localSegment); assertEquals(SimpleCommandBus.class, localSegment.getClass()); assertNotNull(commandBus); assertEquals(DistributedCommandBus.class, commandBus.getClass()); assertNotSame(commandBus, localSegment); assertNotNull(applicationContext.getBean(EventBus.class)); CommandGateway gateway = applicationContext.getBean(CommandGateway.class); assertTrue(gateway instanceof DefaultCommandGateway); assertSame(((AbstractCommandGateway) gateway).getCommandBus(), commandBus); assertNotNull(gateway); assertNotNull(applicationContext.getBean(Serializer.class)); } }