blob: 5435aa9de5b229fd4d6638ad46a6b09bfb8f5be5 [file] [log] [blame]
/*
* Copyright (c) 2008, Rickard Öberg. All Rights Reserved.
* Copyright (c) 2008, Niclas Hedhman. All Rights Reserved.
*
* 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.qi4j.runtime.mixin;
import org.junit.Test;
import org.qi4j.api.composite.TransientComposite;
import org.qi4j.api.mixin.Initializable;
import org.qi4j.api.mixin.InitializationException;
import org.qi4j.api.mixin.Mixins;
import org.qi4j.bootstrap.AssemblyException;
import org.qi4j.bootstrap.ModuleAssembly;
import org.qi4j.test.AbstractQi4jTest;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.junit.Assert.assertThat;
/**
* Test of Initializable interface
*/
public class InitializableTest
extends AbstractQi4jTest
{
public void assemble( ModuleAssembly module )
throws AssemblyException
{
module.objects( TestObject.class );
module.transients( TestComposite.class );
}
@Test
public void givenCompositeWithInitializableMixinWhenInstantiatedThenInvokeInitialize()
{
TestComposite instance = module.newTransient( TestComposite.class );
assertThat( "mixin has been initialized", instance.ok(), equalTo( true ) );
}
@Test
public void givenObjectImplementingInitializableWhenInstantiatedThenInvokeInitialize()
{
TestObject instance = module.newObject( TestObject.class );
assertThat( "object has been initialized", instance.ok(), equalTo( true ) );
}
@Mixins( TestMixin.class )
public interface TestComposite
extends TransientComposite
{
boolean ok();
}
public abstract static class TestMixin
implements TestComposite, Initializable
{
boolean ok = false;
public void initialize()
throws InitializationException
{
ok = true;
}
public boolean ok()
{
return ok;
}
}
public static class TestObject
implements Initializable
{
boolean ok = false;
public void initialize()
throws InitializationException
{
ok = true;
}
public boolean ok()
{
return ok;
}
}
}