blob: c7e0e991325dba6803b67463607d8f1f7836c874 [file] [log] [blame]
/*
* Copyright (c) 2013, Paul Merlin. 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.unitofwork;
import org.junit.After;
import org.junit.Test;
import org.apache.zest.api.constraint.ConstraintViolationException;
import org.apache.zest.api.entity.EntityBuilder;
import org.apache.zest.api.property.Property;
import org.apache.zest.api.unitofwork.UnitOfWork;
import org.apache.zest.api.unitofwork.UnitOfWorkCompletionException;
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.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;
/**
* Assert that Automatic Resource Management (ie. Java 7 try-with-resources) work on UoWs.
*/
public class AutoCloseableUoWTest
extends AbstractQi4jTest
{
public interface TestEntity
{
Property<String> mandatory();
}
@Override
public void assemble( ModuleAssembly module )
throws AssemblyException
{
new EntityTestAssembler().assemble( module );
module.entities( TestEntity.class );
}
@Test
public void givenGoodAutoCloseableUoWWhenTryWithResourceExpectSuccess()
throws UnitOfWorkCompletionException
{
try( UnitOfWork uow = module.newUnitOfWork() )
{
EntityBuilder<TestEntity> builder = uow.newEntityBuilder( TestEntity.class );
builder.instance().mandatory().set( "Mandatory property" );
builder.newInstance();
uow.complete();
}
}
@Test( expected = ConstraintViolationException.class )
public void givenWrongAutoCloseableUoWWhenTryWithResourceExpectSuccess()
throws UnitOfWorkCompletionException
{
try( UnitOfWork uow = module.newUnitOfWork() )
{
uow.newEntity( TestEntity.class );
uow.complete();
}
}
@After
public void afterEachTest()
{
assertThat( module.isUnitOfWorkActive(), is( false ) );
}
}