blob: 354e5d084b980f61bdc1c57c4743f9ca59f8ddc3 [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.qi4j.runtime.entity;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.qi4j.api.common.Visibility;
import org.qi4j.api.entity.EntityBuilder;
import org.qi4j.api.entity.EntityComposite;
import org.qi4j.api.unitofwork.UnitOfWork;
import org.qi4j.api.unitofwork.UnitOfWorkCompletionException;
import org.qi4j.bootstrap.AssemblyException;
import org.qi4j.bootstrap.ModuleAssembly;
import org.qi4j.test.AbstractQi4jTest;
import org.qi4j.test.EntityTestAssembler;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.junit.Assert.assertThat;
/**
* Testing of equality of entity composites.
*/
public class EntityCompositeEqualityTest
extends AbstractQi4jTest
{
private UnitOfWork unitOfWork;
private EntityBuilder<MyComposite> myCompositeBuilder;
@Before
@Override
public void setUp()
throws Exception
{
super.setUp();
unitOfWork = this.module.newUnitOfWork();
myCompositeBuilder = unitOfWork.newEntityBuilder( MyComposite.class );
}
@After
public void completeUnitOfWork()
throws Exception
{
unitOfWork.complete();
super.tearDown();
}
@Test
public void shouldNotBeEqualToNull()
throws UnitOfWorkCompletionException
{
MyComposite simpleComposite = myCompositeBuilder.newInstance();
assertThat( "simpleComposite is not equal to null", simpleComposite.equals( null ), equalTo( false ) );
}
@Test
public void shouldBeEqualToItself()
{
MyComposite simpleComposite = myCompositeBuilder.newInstance();
assertThat( "simple composite is equal to itself", simpleComposite.equals( simpleComposite ), equalTo( true ) );
}
public void assemble( ModuleAssembly module )
throws AssemblyException
{
new EntityTestAssembler().visibleIn( Visibility.layer ).assemble( module );
module.objects( EntityCompositeEqualityTest.class );
module.entities( MyComposite.class );
}
private static interface MyComposite
extends EntityComposite
{
}
}