One more test about configuration instantiation. Signed-off-by: niclas <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/7e83d0ba Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/7e83d0ba Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/7e83d0ba Branch: refs/heads/develop Commit: 7e83d0bafe70703f3cbf05587133c0188ddbf1ce Parents: 14125f6 Author: niclas <[email protected]> Authored: Sun Jun 4 17:26:25 2017 +0800 Committer: niclas <[email protected]> Committed: Sun Jun 4 17:26:25 2017 +0800 ---------------------------------------------------------------------- .../ConfigurationInstantiationTest.java | 94 ++++++++++++++++++++ 1 file changed, 94 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/polygene-java/blob/7e83d0ba/core/runtime/src/test/java/org/apache/polygene/runtime/instantiation/ConfigurationInstantiationTest.java ---------------------------------------------------------------------- diff --git a/core/runtime/src/test/java/org/apache/polygene/runtime/instantiation/ConfigurationInstantiationTest.java b/core/runtime/src/test/java/org/apache/polygene/runtime/instantiation/ConfigurationInstantiationTest.java new file mode 100644 index 0000000..404f793 --- /dev/null +++ b/core/runtime/src/test/java/org/apache/polygene/runtime/instantiation/ConfigurationInstantiationTest.java @@ -0,0 +1,94 @@ +/* + * 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.apache.polygene.runtime.instantiation; + +import org.apache.polygene.api.configuration.Configuration; +import org.apache.polygene.api.entity.Lifecycle; +import org.apache.polygene.api.injection.scope.This; +import org.apache.polygene.api.mixin.Mixins; +import org.apache.polygene.api.property.Property; +import org.apache.polygene.bootstrap.AssemblyException; +import org.apache.polygene.bootstrap.ModuleAssembly; +import org.apache.polygene.entitystore.memory.MemoryEntityStoreService; +import org.apache.polygene.test.AbstractPolygeneTest; +import org.junit.Test; + +import static org.hamcrest.core.IsEqual.equalTo; +import static org.junit.Assert.assertThat; + +public class ConfigurationInstantiationTest extends AbstractPolygeneTest +{ + + @Override + public void assemble( ModuleAssembly module ) + throws AssemblyException + { + module.defaultServices(); + module.services( MemoryEntityStoreService.class ); + module.services( MyService.class ).instantiateOnStartup(); + module.configurations( MyConfig.class ); + } + + @Test + public void givenSpecialInitializableWhenStartingExpectOsNameToBeSet() + { + MyService myService = serviceFinder.findService( MyService.class ).get(); + assertThat( myService.osName(), equalTo(System.getProperty( "os.name" ))); + } + + + @Mixins( MyMixin.class) + public interface MyService + { + String osName(); + } + + public class MyMixin + implements MyService, Lifecycle + { + @This + private Configuration<MyConfig> config; + + @Override + public String osName() + { + return config.get().osName().get(); + } + + @Override + public void create() + throws Exception + { + config.get().osName().set( System.getProperty( "os.name" ) ); + } + + @Override + public void remove() + throws Exception + { + + } + } + + public interface MyConfig + { + Property<String> osName(); + } +}
