/* 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.qi4j.index.rdf.qi64.withPropagationMandatory; import org.junit.Before; import org.junit.Test; import org.qi4j.api.unitofwork.UnitOfWork; import org.qi4j.bootstrap.AssemblyException; import org.qi4j.bootstrap.ModuleAssembly; import org.qi4j.index.rdf.qi64.AbstractIssueTest; import org.qi4j.index.rdf.qi64.AccountComposite; import static junit.framework.Assert.*; public final class IssueTest extends AbstractIssueTest { private AccountService accountService; @Before @Override public void setUp() throws Exception { super.setUp(); accountService = moduleInstance.serviceFinder().<AccountService>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( unitOfWorkFactory.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 assertNull( unitOfWorkFactory.currentUnitOfWork() ); UnitOfWork parentUnitOfWork = unitOfWorkFactory.newUnitOfWork(); AccountComposite account = accountService.getAccountById( id ); assertNotNull( account ); UnitOfWork currentUnitOfWork = unitOfWorkFactory.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 ); } }