Package org.qi4j.runtime.value

Source Code of org.qi4j.runtime.value.ValueComposite2Test$SomeMixin2

/*
* Copyright 2009 Niclas Hedhman.
*
* 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.value;

import org.junit.Assert;
import org.junit.Test;
import org.qi4j.api.composite.InvalidValueCompositeException;
import org.qi4j.api.injection.scope.Service;
import org.qi4j.api.injection.scope.Structure;
import org.qi4j.api.injection.scope.Uses;
import org.qi4j.api.mixin.Mixins;
import org.qi4j.api.property.Property;
import org.qi4j.api.service.ServiceComposite;
import org.qi4j.api.structure.Module;
import org.qi4j.api.value.ValueBuilder;
import org.qi4j.api.value.ValueComposite;
import org.qi4j.bootstrap.AssemblyException;
import org.qi4j.bootstrap.ModuleAssembly;
import org.qi4j.bootstrap.SingletonAssembler;

import java.security.Guard;

public class ValueComposite2Test
{
    @Test
    public void testServiceAndStructureInjectionsAllowedInValueComposite()
    {
        SingletonAssembler app = new SingletonAssembler()
        {
            public void assemble( ModuleAssembly module )
                throws AssemblyException
            {
                module.values( SomeValue.class );
                module.services( DummyService.class );
            }
        };
        ValueBuilder<Some> builder = app.module().newValueBuilder( Some.class );
        Some prototype = builder.prototype();
        Property<String> otherProperty = prototype.other();
        otherProperty.set( "Abc" );
        Some value = builder.newInstance();
        Assert.assertEquals( value.other().get(), "Abc" );
    }

    @Test( expected = InvalidValueCompositeException.class )
    public void testNoUsesAllowedInValueComposite()
    {
        new SingletonAssembler()
        {
            public void assemble( ModuleAssembly module )
                throws AssemblyException
            {
                module.values( SomeValue2.class );
            }
        };
    }

    public interface Some
    {
        DummyService service();

        Module module();

        Property<String> other();
    }

    @Mixins( SomeMixin.class )
    public interface SomeValue
        extends Some, ValueComposite
    {
    }

    public static abstract class SomeMixin
        implements Some
    {
        @Service
        DummyService service;
        @Structure
        Module module;

        public DummyService service()
        {
            return service;
        }

        public Module module()
        {
            return module;
        }
    }

    @Mixins( SomeMixin2.class )
    public interface SomeValue2
        extends Some, ValueComposite
    {
    }

    public static abstract class SomeMixin2
        implements Some
    {
        @Uses
        Guard illegal;

        public DummyService service()
        {
            return null;
        }

        public Module module()
        {
            return null;
        }
    }

    public static interface DummyService
        extends ServiceComposite
    {
    }
}

TOP

Related Classes of org.qi4j.runtime.value.ValueComposite2Test$SomeMixin2

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.