Return-Path: X-Original-To: apmail-zest-commits-archive@minotaur.apache.org Delivered-To: apmail-zest-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3FE7118031 for ; Thu, 25 Jun 2015 12:59:16 +0000 (UTC) Received: (qmail 24997 invoked by uid 500); 25 Jun 2015 12:59:16 -0000 Delivered-To: apmail-zest-commits-archive@zest.apache.org Received: (qmail 24977 invoked by uid 500); 25 Jun 2015 12:59:16 -0000 Mailing-List: contact commits-help@zest.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zest.apache.org Delivered-To: mailing list commits@zest.apache.org Received: (qmail 24968 invoked by uid 99); 25 Jun 2015 12:59:16 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Jun 2015 12:59:16 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 05218E3677; Thu, 25 Jun 2015 12:59:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: niclas@apache.org To: commits@zest.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: zest-qi4j git commit: Adding a test. Date: Thu, 25 Jun 2015 12:59:16 +0000 (UTC) Repository: zest-qi4j Updated Branches: refs/heads/develop c8c3286cb -> 95ef1ffd8 Adding a test. Project: http://git-wip-us.apache.org/repos/asf/zest-qi4j/repo Commit: http://git-wip-us.apache.org/repos/asf/zest-qi4j/commit/95ef1ffd Tree: http://git-wip-us.apache.org/repos/asf/zest-qi4j/tree/95ef1ffd Diff: http://git-wip-us.apache.org/repos/asf/zest-qi4j/diff/95ef1ffd Branch: refs/heads/develop Commit: 95ef1ffd8421fd15e8536c5694c9edd300364a08 Parents: c8c3286 Author: Niclas Hedhman Authored: Thu Jun 25 14:59:09 2015 +0200 Committer: Niclas Hedhman Committed: Thu Jun 25 14:59:09 2015 +0200 ---------------------------------------------------------------------- .../visibility/VisibilityInUnitOfWorkTest.java | 159 +++++++++++++++++++ 1 file changed, 159 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/95ef1ffd/core/runtime/src/test/java/org/qi4j/runtime/visibility/VisibilityInUnitOfWorkTest.java ---------------------------------------------------------------------- diff --git a/core/runtime/src/test/java/org/qi4j/runtime/visibility/VisibilityInUnitOfWorkTest.java b/core/runtime/src/test/java/org/qi4j/runtime/visibility/VisibilityInUnitOfWorkTest.java new file mode 100644 index 0000000..9a9ef6d --- /dev/null +++ b/core/runtime/src/test/java/org/qi4j/runtime/visibility/VisibilityInUnitOfWorkTest.java @@ -0,0 +1,159 @@ +/* +* 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.visibility; + +import org.junit.Test; +import org.qi4j.api.common.Visibility; +import org.qi4j.api.injection.scope.Service; +import org.qi4j.api.injection.scope.Structure; +import org.qi4j.api.mixin.Mixins; +import org.qi4j.api.service.ServiceReference; +import org.qi4j.api.structure.Application; +import org.qi4j.api.structure.Module; +import org.qi4j.api.unitofwork.UnitOfWork; +import org.qi4j.api.value.ValueSerialization; +import org.qi4j.bootstrap.ApplicationAssembler; +import org.qi4j.bootstrap.ApplicationAssembly; +import org.qi4j.bootstrap.ApplicationAssemblyFactory; +import org.qi4j.bootstrap.AssemblyException; +import org.qi4j.bootstrap.Energy4Java; +import org.qi4j.bootstrap.LayerAssembly; +import org.qi4j.bootstrap.ModuleAssembly; +import org.qi4j.entitystore.memory.MemoryEntityStoreService; +import org.qi4j.spi.uuid.UuidIdentityGeneratorService; +import org.qi4j.valueserialization.orgjson.OrgJsonValueSerializationService; + +public class VisibilityInUnitOfWorkTest +{ + @Test + public void givenTwoModulesWithServiceAndEntityInOneAndEntityInOtherWhenOtherEntityAccessServiceWhichUsesItsEntityExpectServiceToHaveVisibility() + throws Exception + { + Application underTest = createApplication(); + Module module = underTest.findModule( "layer1", "My Module" ); + ServiceReference service = module.findService( MyService.class ); + service.get().create(); + } + + @Mixins( YourService.Mixin.class ) + public interface YourService + { + void create(); + + YourEntity get(); + + class Mixin + implements YourService + { + @Structure + private Module module; + + @Override + public void create() + { + UnitOfWork uow = module.currentUnitOfWork(); + YourEntity entity = uow.newEntity( YourEntity.class, "345" ); + } + + @Override + public YourEntity get() + { + UnitOfWork uow = module.currentUnitOfWork(); + return uow.get( YourEntity.class, "345" ); + } + } + } + + public interface YourEntity + { + } + + @Mixins( MyEntity.Mixin.class ) + public interface MyEntity + { + void logic(); + + class Mixin + implements MyEntity + { + @Service + private YourService service; + + @Override + public void logic() + { + YourEntity result = service.get(); + } + } + } + + @Mixins( MyService.Mixin.class ) + public interface MyService + { + void create(); + + class Mixin + implements MyService + { + + @Service + private YourService service; + + @Structure + private Module module; + + @Override + public void create() + { + try (UnitOfWork uow = module.newUnitOfWork()) + { + uow.newEntity( MyEntity.class, "123" ); + MyEntity entity1 = uow.get( MyEntity.class, "123" ); + service.create(); + YourEntity entity2 = service.get(); + } + } + } + } + + private Application createApplication() + throws AssemblyException + { + Energy4Java qi4j = new Energy4Java(); + return qi4j.newApplication( new ApplicationAssembler() + { + @Override + public ApplicationAssembly assemble( ApplicationAssemblyFactory appFactory ) + throws AssemblyException + { + ApplicationAssembly appAssembly = appFactory.newApplicationAssembly(); + LayerAssembly layer1 = appAssembly.layer( "layer1" ); + ModuleAssembly myModule = layer1.module( "My Module" ); + ModuleAssembly yourModule = layer1.module( "Your Module" ); + ModuleAssembly infraModule = layer1.module( "Infra Module" ); + myModule.services( MyService.class ); + myModule.entities( MyEntity.class ); + yourModule.entities( YourEntity.class ); + yourModule.services( YourService.class ).visibleIn( Visibility.layer ); + infraModule.services( MemoryEntityStoreService.class ).visibleIn( Visibility.layer ); + infraModule.services( UuidIdentityGeneratorService.class ).visibleIn( Visibility.layer ); + infraModule.services( OrgJsonValueSerializationService.class ).visibleIn( Visibility.layer).taggedWith( ValueSerialization.Formats.JSON ); + return appAssembly; + } + } ); + } +}