blob: 96efa365daeb3598a27db27a1a40e60bf6f04a89 [file] [log] [blame]
/*
* Copyright (c) 2008, Rickard Öberg. 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.apache.zest.runtime;
import org.hamcrest.CoreMatchers;
import org.junit.Test;
import org.apache.zest.api.association.AbstractAssociation;
import org.apache.zest.api.association.Association;
import org.apache.zest.api.association.AssociationDescriptor;
import org.apache.zest.api.association.AssociationStateDescriptor;
import org.apache.zest.api.association.AssociationStateHolder;
import org.apache.zest.api.association.ManyAssociation;
import org.apache.zest.api.common.Optional;
import org.apache.zest.api.entity.EntityBuilder;
import org.apache.zest.api.entity.EntityComposite;
import org.apache.zest.api.entity.EntityDescriptor;
import org.apache.zest.api.property.Property;
import org.apache.zest.api.property.PropertyDescriptor;
import org.apache.zest.api.unitofwork.UnitOfWork;
import org.apache.zest.bootstrap.AssemblyException;
import org.apache.zest.bootstrap.ModuleAssembly;
import org.apache.zest.test.AbstractQi4jTest;
import org.apache.zest.test.EntityTestAssembler;
import static org.junit.Assert.assertThat;
/**
* JAVADOC
*/
public class Qi4jSPITest
extends AbstractQi4jTest
{
public void assemble( ModuleAssembly module )
throws AssemblyException
{
new EntityTestAssembler().assemble( module );
module.entities( TestEntity.class, TestEntity2.class );
}
@Test
public void givenEntityWhenGettingStateThenGetCorrectState()
throws Exception
{
UnitOfWork unitOfWork = module.newUnitOfWork();
TestEntity testEntity;
try
{
EntityBuilder<TestEntity> builder = unitOfWork.newEntityBuilder( TestEntity.class );
testEntity = builder.newInstance();
AssociationStateHolder state = spi.stateOf( testEntity );
validateState( state, spi.entityDescriptorFor( testEntity ) );
unitOfWork.complete();
}
finally
{
unitOfWork.discard();
}
UnitOfWork uow = module.newUnitOfWork();
try
{
testEntity = uow.get( testEntity );
validateState( spi.stateOf( testEntity ), spi.entityDescriptorFor( testEntity ) );
uow.complete();
}
finally
{
uow.discard();
}
}
private void validateState( AssociationStateHolder state, EntityDescriptor entityDescriptor )
{
for( PropertyDescriptor propertyDescriptor : entityDescriptor.state().properties() )
{
Property<?> prop = state.propertyFor( propertyDescriptor.accessor() );
assertThat( "Properties could be listed", prop, CoreMatchers.notNullValue() );
}
AssociationStateDescriptor descriptor = entityDescriptor.state();
for( AssociationDescriptor associationDescriptor : descriptor.associations() )
{
AbstractAssociation assoc = state.associationFor( associationDescriptor.accessor() );
assertThat( "Assocs could be listed", assoc, CoreMatchers.notNullValue() );
}
}
public interface TestEntity
extends EntityComposite
{
@Optional
Property<String> property();
@Optional
Association<TestEntity> association();
ManyAssociation<TestEntity> manyAssociation();
}
public interface TestEntity2
extends EntityComposite
{
@Optional
Property<String> property();
@Optional
Association<TestEntity> association();
ManyAssociation<TestEntity> manyAssociation();
}
}