/* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch 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.elasticsearch.node; import org.elasticsearch.common.settings.Settings; import org.elasticsearch.common.util.BigArrays; import org.elasticsearch.common.util.MockBigArrays; import org.elasticsearch.env.Environment; import org.elasticsearch.plugins.Plugin; import org.elasticsearch.search.MockSearchService; import org.elasticsearch.search.SearchService; import org.elasticsearch.test.ESTestCase; import org.elasticsearch.transport.MockTcpTransportPlugin; import java.io.IOException; import java.util.ArrayList; import java.util.List; public class MockNodeTests extends ESTestCase { /** * Test that we add the appropriate mock services when their plugins are added. This is a very heavy test for a testing component but * we've broken it in the past so it is important. */ public void testComponentsMockedByMarkerPlugins() throws IOException { Settings settings = Settings.builder() // All these are required or MockNode will fail to build. .put(Environment.PATH_HOME_SETTING.getKey(), createTempDir()) .put("transport.type", MockTcpTransportPlugin.MOCK_TCP_TRANSPORT_NAME) .put("http.enabled", false) .build(); List<Class<? extends Plugin>> plugins = new ArrayList<>(); plugins.add(MockTcpTransportPlugin.class); boolean useMockBigArrays = randomBoolean(); boolean useMockSearchService = randomBoolean(); if (useMockBigArrays) { plugins.add(NodeMocksPlugin.class); } if (useMockSearchService) { plugins.add(MockSearchService.TestPlugin.class); } try (MockNode node = new MockNode(settings, plugins)) { BigArrays bigArrays = node.injector().getInstance(BigArrays.class); SearchService searchService = node.injector().getInstance(SearchService.class); if (useMockBigArrays) { assertSame(bigArrays.getClass(), MockBigArrays.class); } else { assertSame(bigArrays.getClass(), BigArrays.class); } if (useMockSearchService) { assertSame(searchService.getClass(), MockSearchService.class); } else { assertSame(searchService.getClass(), SearchService.class); } } } }