blob: 41791f78bfd78dc46a166fbc541af3e77cfb29dc [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.polygene.runtime.injection;
import org.apache.polygene.api.activation.ActivationException;
import org.apache.polygene.api.common.UseDefaults;
import org.apache.polygene.api.concern.ConcernOf;
import org.apache.polygene.api.injection.scope.This;
import org.apache.polygene.api.mixin.NoopMixin;
import org.apache.polygene.api.property.Property;
import org.apache.polygene.api.sideeffect.SideEffectOf;
import org.apache.polygene.api.structure.Module;
import org.apache.polygene.bootstrap.SingletonAssembler;
import org.junit.Test;
import static org.junit.Assert.assertFalse;
/**
* This test is created in response to QI-359
*/
public class ConstructorInjectionOfThisTest
{
@Test
public void givenMixinWithThisInConstructorWhenCreatingModelExpectNoException()
throws ActivationException
{
SingletonAssembler singletonAssembler = new SingletonAssembler(
module -> module.values( Does.class ).withMixins( DoesMixin.class )
);
Module module = singletonAssembler.application().findModule( "Layer 1", "Module 1" );
Does does = module.newValue( Does.class );
does.doSomething();
}
@Test
public void givenConcernWithThisInConstructorWhenCreatingModelExpectNoException()
throws ActivationException
{
SingletonAssembler singletonAssembler = new SingletonAssembler(
module -> module.values( Does.class ).withMixins( NoopMixin.class ).withConcerns( DoesConcern.class )
);
Module module = singletonAssembler.application().findModule( "Layer 1", "Module 1" );
Does does = module.newValue( Does.class );
does.doSomething();
}
@Test
public void givenSideEffectWithThisInConstructorWhenCreatingModelExpectNoException()
throws ActivationException
{
SingletonAssembler singletonAssembler = new SingletonAssembler(
module -> module.values( Does.class ).withMixins( NoopMixin.class ).withSideEffects( DoesSideEffect.class )
);
Module module = singletonAssembler.application().findModule( "Layer 1", "Module 1" );
Does does = module.newValue( Does.class );
does.doSomething();
}
public static class DoesMixin
implements Does
{
private DoesPrivateFragment doesPrivateFragment;
public DoesMixin( @This DoesPrivateFragment doesPrivateFragment )
{
if( doesPrivateFragment == null )
{
throw new NullPointerException();
}
this.doesPrivateFragment = doesPrivateFragment;
}
@Override
public void doSomething()
{
assertFalse( doesPrivateFragment.someState().get() );
}
}
public static class DoesConcern
extends ConcernOf<Does>
implements Does
{
public DoesConcern( @This Does work )
{
if( work == null )
{
throw new NullPointerException();
}
System.out.print( "Niclas " );
}
@Override
public void doSomething()
{
next.doSomething();
}
}
public static class DoesSideEffect
extends SideEffectOf<Does>
implements Does
{
public DoesSideEffect( @This Does work )
{
if( work == null )
{
throw new NullPointerException();
}
System.out.print( "Niclas " );
}
@Override
public void doSomething()
{
this.result.doSomething();
}
}
public interface DoesPrivateFragment
{
@UseDefaults
Property<Boolean> someState();
}
public interface Does
{
void doSomething();
}
}