/core/src/test/java/org/jclouds/lifecycle/config/LifeCycleModuleTest.java
https://github.com/richardcloudsoft/legacy-jclouds · Java · 120 lines · 80 code · 16 blank · 24 comment · 3 complexity · cf910c364b620fd58574924a382e7a1a MD5 · raw file
- /**
- * Licensed to jclouds, Inc. (jclouds) under one or more
- * contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. jclouds 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.jclouds.lifecycle.config;
- import static com.google.inject.name.Names.named;
- import static org.jclouds.Constants.PROPERTY_IO_WORKER_THREADS;
- import static org.jclouds.Constants.PROPERTY_USER_THREADS;
- import java.io.IOException;
- import javax.annotation.PostConstruct;
- import org.jclouds.concurrent.config.ExecutorServiceModule;
- import org.jclouds.lifecycle.Closer;
- import org.testng.annotations.Test;
- import com.google.common.util.concurrent.ExecutionList;
- import com.google.common.util.concurrent.ListeningExecutorService;
- import com.google.inject.AbstractModule;
- import com.google.inject.Guice;
- import com.google.inject.Injector;
- import com.google.inject.Key;
- /**
- *
- * @author Adrian Cole
- */
- @Test
- public class LifeCycleModuleTest {
- @Test
- void testBindsExecutor() {
- Injector i = createInjector();
- assert i.getInstance(Key.get(ListeningExecutorService.class, named(PROPERTY_USER_THREADS))) != null;
- assert i.getInstance(Key.get(ListeningExecutorService.class, named(PROPERTY_IO_WORKER_THREADS))) != null;
- }
- private Injector createInjector() {
- Injector i = Guice.createInjector(new AbstractModule() {
- protected void configure() {
- bindConstant().annotatedWith(named(PROPERTY_IO_WORKER_THREADS)).to(1);
- bindConstant().annotatedWith(named(PROPERTY_USER_THREADS)).to(1);
- }
- }, new LifeCycleModule(), new ExecutorServiceModule());
- // TODO: currently have to manually invoke the execution list, as otherwise it may occur
- // before everything is wired up
- i.getInstance(ExecutionList.class).execute();
- return i;
- }
- @Test
- void testBindsCloser() {
- Injector i = createInjector();
- assert i.getInstance(Closer.class) != null;
- }
- @Test
- void testCloserClosesExecutor() throws IOException {
- Injector i = createInjector();
- ListeningExecutorService executor = i.getInstance(Key.get(ListeningExecutorService.class,
- named(PROPERTY_USER_THREADS)));
- assert !executor.isShutdown();
- Closer closer = i.getInstance(Closer.class);
- closer.close();
- assert executor.isShutdown();
- }
- @Test
- void testCloserPreDestroyOrder() throws IOException {
- Injector i = createInjector();
- ListeningExecutorService userExecutor = i.getInstance(Key.get(ListeningExecutorService.class,
- named(PROPERTY_USER_THREADS)));
- assert !userExecutor.isShutdown();
- ListeningExecutorService ioExecutor = i.getInstance(Key.get(ListeningExecutorService.class,
- named(PROPERTY_IO_WORKER_THREADS)));
- assert !ioExecutor.isShutdown();
- Closer closer = i.getInstance(Closer.class);
- closer.close();
- assert userExecutor.isShutdown();
- assert ioExecutor.isShutdown();
- }
- static class PostConstructable {
- boolean isStarted;
- @PostConstruct
- void start() {
- isStarted = true;
- }
- }
- @Test
- void testPostConstruct() {
- Injector i = createInjector().createChildInjector(new AbstractModule() {
- protected void configure() {
- bind(PostConstructable.class);
- }
- });
- PostConstructable postConstructable = i.getInstance(PostConstructable.class);
- assert postConstructable.isStarted;
- }
- }