blob: bb89b7f9441bc36a3788d368f81cd7f1d61b56dc [file] [log] [blame]
/*
* Copyright (c) 2010, Niclas Hedhman. All Rights Reserved.
* Copyright (c) 2012, Paul Merlin.
*
* 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.runtime.service;
import org.junit.Test;
import org.apache.zest.api.activation.ActivatorAdapter;
import org.apache.zest.api.injection.scope.This;
import org.apache.zest.api.mixin.Initializable;
import org.apache.zest.api.mixin.InitializationException;
import org.apache.zest.api.mixin.Mixins;
import org.apache.zest.api.property.Property;
import org.apache.zest.api.service.ServiceComposite;
import org.apache.zest.api.service.ServiceReference;
import org.apache.zest.bootstrap.AssemblyException;
import org.apache.zest.bootstrap.ModuleAssembly;
import org.apache.zest.test.AbstractQi4jTest;
import static org.junit.Assert.assertEquals;
public class ComplexActivatableTest
extends AbstractQi4jTest
{
public void assemble( ModuleAssembly module )
throws AssemblyException
{
module.services( SuperType.class ).withActivators( TestActivator.class ).instantiateOnStartup();
}
@Test
public void validateThatApplicationGotAssembled()
{
ServiceReference<SuperType> reference = module.findService( SuperType.class );
assertEquals( "Hello, World", reference.get().sayHello() );
}
@Mixins( { DomainType.class, InitializationMixin.class } )
public interface SuperType
extends ServiceComposite, Initializable
{
String sayHello();
Property<String> greeting();
Property<String> recepient();
}
public abstract static class DomainType
implements SuperType
{
public String sayHello()
{
return greeting().get() + ", " + recepient().get();
}
}
public static class InitializationMixin
implements Initializable
{
@This
private SuperType me;
public void initialize()
throws InitializationException
{
me.greeting().set( "Hello" );
}
}
public static class TestActivator
extends ActivatorAdapter<ServiceReference<SuperType>>
{
@Override
public void afterActivation( ServiceReference<SuperType> activated )
throws Exception
{
activated.get().recepient().set( "World" );
}
}
}