/***************************************************************** * 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.cayenne.configuration.server; import org.apache.cayenne.configuration.Constants; import org.apache.cayenne.di.Key; import org.apache.cayenne.di.Module; import org.junit.After; import org.junit.Test; import java.util.Arrays; import java.util.Collection; import java.util.List; import static org.hamcrest.CoreMatchers.instanceOf; import static org.junit.Assert.*; import static org.mockito.Mockito.mock; @SuppressWarnings("deprecation") public class ServerRuntimeBuilderTest { private ServerRuntime runtime; @After public void stopRuntime() { // even though we don't supply real configs here, we sometimes access // DataDomain, and this starts EventManager threads that need to be // shutdown if (runtime != null) { runtime.shutdown(); } } @Test public void test_NoLocation() { // this is meaningless (no DataSource), but should work... runtime = new ServerRuntimeBuilder().build(); List<String> locations = runtime.getInjector().getInstance( Key.getListOf(String.class, Constants.SERVER_PROJECT_LOCATIONS_LIST)); assertEquals(Arrays.asList(), locations); Collection<Module> modules = runtime.getModules(); assertEquals(2, modules.size()); assertThat(modules.iterator().next(), instanceOf(ServerModule.class)); } @Test public void test_SingleLocation() { runtime = new ServerRuntimeBuilder().addConfig("xxxx").build(); List<String> locations = runtime.getInjector().getInstance( Key.getListOf(String.class, Constants.SERVER_PROJECT_LOCATIONS_LIST)); assertEquals(Arrays.asList("xxxx"), locations); Collection<Module> modules = runtime.getModules(); assertEquals(2, modules.size()); assertThat(modules.iterator().next(), instanceOf(ServerModule.class)); } @Test public void test_MultipleLocations() { runtime = new ServerRuntimeBuilder().addConfigs("xxxx", "yyyy").build(); List<String> locations = runtime.getInjector().getInstance( Key.getListOf(String.class, Constants.SERVER_PROJECT_LOCATIONS_LIST)); assertEquals(Arrays.asList("xxxx", "yyyy"), locations); Collection<Module> modules = runtime.getModules(); assertEquals(3, modules.size()); assertThat(modules.iterator().next(), instanceOf(ServerModule.class)); } @Test public void test_ExtraModules() { Module m = mock(Module.class); runtime = new ServerRuntimeBuilder().addModule(m).build(); Collection<Module> modules = runtime.getModules(); assertEquals(3, modules.size()); Module[] array = modules.toArray(new Module[3]); assertThat(array[0], instanceOf(ServerModule.class)); assertSame(m, array[1]); } @Test public void test_UnnamedDomain_NoLocation() { runtime = new ServerRuntimeBuilder().build(); assertEquals("cayenne", runtime.getDataDomain().getName()); } @Test public void test_NamedDomain_NoLocation() { runtime = new ServerRuntimeBuilder("myd").build(); assertEquals("myd", runtime.getDataDomain().getName()); } }