blob: f464040afad08d04f61ba9446eac9e790ad6ed96 [file] [log] [blame]
/* Copyright 2008 Edward Yakop.
*
* 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.index.rdf.qi64.withPropagationMandatory;
import org.junit.Before;
import org.junit.Test;
import org.apache.zest.api.unitofwork.UnitOfWork;
import org.apache.zest.bootstrap.AssemblyException;
import org.apache.zest.bootstrap.ModuleAssembly;
import org.apache.zest.index.rdf.qi64.AbstractIssueTest;
import org.apache.zest.index.rdf.qi64.AccountComposite;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
public final class IssueTest
extends AbstractIssueTest
{
private AccountService accountService;
@Before
@Override
public void setUp()
throws Exception
{
super.setUp();
accountService = module.findService( AccountService.class ).get();
}
@Test( expected = IllegalStateException.class )
public final void testUnitOfWorkWithUnitOfWorkNotInitialized()
throws Throwable
{
// Bootstrap the account
String id = newQi4jAccount();
// Make sure there's no unit of work
assertNull( module.currentUnitOfWork() );
accountService.getAccountById( id );
}
@Test
public final void testUnitOfWorkWithUnitOfWorkInitialized()
throws Throwable
{
// Bootstrap the account
String id = newQi4jAccount();
// Make sure there's no unit of work
assertFalse( module.isUnitOfWorkActive() );
UnitOfWork parentUnitOfWork = module.newUnitOfWork();
AccountComposite account = accountService.getAccountById( id );
assertNotNull( account );
UnitOfWork currentUnitOfWork = module.currentUnitOfWork();
assertEquals( parentUnitOfWork, currentUnitOfWork );
assertTrue( currentUnitOfWork.isOpen() );
// Close the parent unit of work
parentUnitOfWork.complete();
}
protected final void onAssemble( ModuleAssembly aModuleAssembly )
throws AssemblyException
{
aModuleAssembly.services( AccountServiceComposite.class );
}
}