blob: eee6f3022880824bab3c01b66930184c49bbaeae [file] [log] [blame]
/* Copyright 2008 Rickard Öberg.
*
* 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.zest.library.spring.importer;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.apache.zest.api.activation.ActivationException;
import org.apache.zest.api.injection.scope.Service;
import org.apache.zest.api.injection.scope.Structure;
import org.apache.zest.api.service.ServiceFinder;
import org.apache.zest.api.service.ServiceReference;
import org.apache.zest.api.service.qualifier.ServiceQualifier;
import org.apache.zest.bootstrap.AssemblyException;
import org.apache.zest.bootstrap.ModuleAssembly;
import org.apache.zest.bootstrap.SingletonAssembler;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.junit.Assert.assertThat;
import static org.apache.zest.api.service.qualifier.ServiceQualifier.firstService;
import static org.apache.zest.api.service.qualifier.ServiceQualifier.withId;
@RunWith( SpringJUnit4ClassRunner.class )
@ContextConfiguration
public final class Qi4jImportServiceTest
{
@Autowired ApplicationContext appContext;
@Service CommentService service;
@Test
public final void givenImportedSpringServicesWhenServiceIsInjectedThenUseSpringService()
throws ActivationException, AssemblyException
{
SingletonAssembler assembler = new SingletonAssembler()
{
public void assemble( ModuleAssembly module ) throws AssemblyException
{
module.objects( Qi4jImportServiceTest.class );
// START SNIPPET: import
new SpringImporterAssembler( appContext ).assemble( module );
// END SNIPPET: import
}
};
assembler.module().injectTo( this );
assertThat( "service can be called", service.comment( "beer" ), equalTo( "beer is good." ) );
}
@Service Iterable<ServiceReference<CommentService>> services;
@Test
public final void givenImportedSpringServicesWhenServicesAreInjectedThenCanIdentifyByName()
throws ActivationException, AssemblyException
{
SingletonAssembler assembler = new SingletonAssembler()
{
public void assemble( ModuleAssembly module ) throws AssemblyException
{
module.objects( Qi4jImportServiceTest.class );
new SpringImporterAssembler( appContext ).assemble( module );
}
};
assembler.module().injectTo(this);
CommentService service = firstService( withId( "commentService2" ), services );
assertThat( "service with correct id has been selected", service.comment( "pizza" ), equalTo( "pizza is good." ) );
}
@Structure ServiceFinder finder;
@Test
public final void givenImportedSpringServicesWhenServicesAreFoundThenCanIdentifyByName()
throws ActivationException, AssemblyException
{
SingletonAssembler assembler = new SingletonAssembler()
{
public void assemble( ModuleAssembly module ) throws AssemblyException
{
module.objects( Qi4jImportServiceTest.class );
new SpringImporterAssembler( appContext ).assemble( module );
}
};
assembler.module().injectTo( this );
CommentService foundService = ServiceQualifier.firstService( withId( "commentService2" ), finder.<CommentService>findServices( CommentService.class ));
assertThat( "service with correct id has been selected", foundService.comment( "pizza" ), equalTo( "pizza is good." ) );
}
}