blob: 140fd9d7c6e252c4b0f079a44d45f59fd251b511 [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.regression.qi382;
import org.apache.polygene.api.association.Association;
import org.apache.polygene.api.entity.EntityBuilder;
import org.apache.polygene.api.entity.EntityComposite;
import org.apache.polygene.api.entity.Lifecycle;
import org.apache.polygene.api.identity.Identity;
import org.apache.polygene.api.identity.StringIdentity;
import org.apache.polygene.api.injection.scope.Structure;
import org.apache.polygene.api.injection.scope.This;
import org.apache.polygene.api.mixin.Mixins;
import org.apache.polygene.api.unitofwork.UnitOfWork;
import org.apache.polygene.api.unitofwork.UnitOfWorkCompletionException;
import org.apache.polygene.api.unitofwork.UnitOfWorkFactory;
import org.apache.polygene.bootstrap.AssemblyException;
import org.apache.polygene.bootstrap.ModuleAssembly;
import org.apache.polygene.test.AbstractPolygeneTest;
import org.apache.polygene.test.EntityTestAssembler;
import org.junit.Test;
import static org.hamcrest.core.IsEqual.equalTo;
import static org.hamcrest.core.IsNull.notNullValue;
import static org.junit.Assert.assertThat;
public class Qi382Test extends AbstractPolygeneTest
{
public static final Identity FERRARI = StringIdentity.identity( "Ferrari" );
public static final Identity NICLAS = StringIdentity.identity( "Niclas" );
@Override
public void assemble( ModuleAssembly module )
throws AssemblyException
{
module.entities( Car.class, Person.class );
new EntityTestAssembler().assemble( module );
}
@Test
public void givenCreationOfTwoEntitiesWhenAssigningOneToOtherExpectCompletionToSucceed()
throws UnitOfWorkCompletionException
{
try( UnitOfWork unitOfWork = unitOfWorkFactory.newUnitOfWork() )
{
Car car = unitOfWork.newEntity( Car.class, FERRARI);
unitOfWork.complete();
}
try( UnitOfWork unitOfWork = unitOfWorkFactory.newUnitOfWork() )
{
Car car = unitOfWork.get( Car.class, FERRARI);
assertThat( car, notNullValue() );
Person p = unitOfWork.get( Person.class, NICLAS);
assertThat( p, notNullValue() );
assertThat( p.car().get(), equalTo( car ) );
}
}
@Mixins( Car.CarMixin.class )
public interface Car extends EntityComposite, Lifecycle
{
class CarMixin implements Lifecycle
{
@This
private Car me;
@Structure
private UnitOfWorkFactory uowf;
@Override
public void create()
{
UnitOfWork unitOfWork = uowf.currentUnitOfWork();
EntityBuilder<Person> builder = unitOfWork.newEntityBuilder( Person.class, NICLAS);
builder.instance().car().set( me );
builder.newInstance();
}
@Override
public void remove()
{
}
}
}
public interface Person extends EntityComposite
{
Association<Car> car();
}
}