/* * Licensed to Crate under one or more contributor license agreements. * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. Crate 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. * * However, if you have executed another commercial license agreement * with Crate these terms will supersede the license and you may use the * software solely pursuant to the terms of the relevant commercial * agreement. */ package io.crate.discovery; import org.elasticsearch.cluster.node.DiscoveryNode; import org.elasticsearch.common.settings.Settings; import org.elasticsearch.common.transport.LocalTransportAddress; import org.elasticsearch.common.transport.TransportAddress; import org.elasticsearch.transport.TransportService; import org.junit.Before; import org.junit.Test; import org.xbill.DNS.*; import java.util.List; import java.util.Locale; import static org.junit.Assert.*; import static org.mockito.Matchers.anyInt; import static org.mockito.Matchers.eq; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; public class SrvUnicastHostsProviderTest { private TransportService transportService; private abstract class DummySrvUnicastHostsProvider extends SrvUnicastHostsProvider { private DummySrvUnicastHostsProvider(Settings settings, TransportService transportService) { super(settings, transportService); } @Override protected Record[] lookupRecords() throws TextParseException { return null; } } @Before public void mockTransportService() throws Exception { transportService = mock(TransportService.class); for (int i = 0; i < 4; i++) { when(transportService.addressesFromString(eq(String.format(Locale.ENGLISH, "crate%d.internal:44300", i + 1)), anyInt())).thenReturn(new TransportAddress[]{ new LocalTransportAddress(String.format(Locale.ENGLISH, "crate%d.internal", i + 1)) }); } } @Test public void testInvalidResolver() throws Exception { Settings.Builder builder = Settings.builder() .put(SrvUnicastHostsProvider.DISCOVERY_SRV_RESOLVER.getKey(), "foobar.txt") .put(SrvUnicastHostsProvider.DISCOVERY_SRV_QUERY.getKey(), "_crate._srv.foo.txt"); SrvUnicastHostsProvider unicastHostsProvider = new SrvUnicastHostsProvider(builder.build(), transportService); assertNull(unicastHostsProvider.resolver); assertNull(unicastHostsProvider.lookupRecords()); } @Test public void testValidResolver() throws Exception { Settings.Builder builder = Settings.builder() .put(SrvUnicastHostsProvider.DISCOVERY_SRV_RESOLVER.getKey(), "8.8.4.4"); SrvUnicastHostsProvider unicastHostsProvider = new SrvUnicastHostsProvider(builder.build(), transportService); assertEquals("/8.8.4.4:53", ((SimpleResolver) unicastHostsProvider.resolver).getAddress().toString()); } @Test public void testValidResolverWithPort() throws Exception { Settings.Builder builder = Settings.builder() .put(SrvUnicastHostsProvider.DISCOVERY_SRV_RESOLVER.getKey(), "127.0.0.1:5353"); SrvUnicastHostsProvider unicastHostsProvider = new SrvUnicastHostsProvider(builder.build(), transportService); assertEquals("/127.0.0.1:5353", ((SimpleResolver) unicastHostsProvider.resolver).getAddress().toString()); } @Test public void testValidResolverWithInvalidPort() throws Exception { Settings.Builder builder = Settings.builder() .put(SrvUnicastHostsProvider.DISCOVERY_SRV_RESOLVER.getKey(), "127.0.0.1:42a"); SrvUnicastHostsProvider unicastHostsProvider = new SrvUnicastHostsProvider(builder.build(), transportService); assertEquals("/127.0.0.1:53", ((SimpleResolver) unicastHostsProvider.resolver).getAddress().toString()); } @Test public void testBuildDynamicNodesNoQuery() throws Exception { // no query -> empty list of discovery nodes SrvUnicastHostsProvider unicastHostsProvider = new SrvUnicastHostsProvider(Settings.EMPTY, transportService); List<DiscoveryNode> discoNodes = unicastHostsProvider.buildDynamicNodes(); assertTrue(discoNodes.isEmpty()); } @Test public void testBuildDynamicNoRecords() throws Exception { // no records -> empty list of discovery nodes Settings.Builder builder = Settings.builder() .put(SrvUnicastHostsProvider.DISCOVERY_SRV_QUERY.getKey(), "_crate._srv.crate.internal"); SrvUnicastHostsProvider unicastHostsProvider = new DummySrvUnicastHostsProvider(builder.build(), transportService) { @Override protected Record[] lookupRecords() throws TextParseException { return null; } }; List<DiscoveryNode> discoNodes = unicastHostsProvider.buildDynamicNodes(); assertTrue(discoNodes.isEmpty()); } @Test public void testBuildDynamicNodes() throws Exception { // records Settings.Builder builder = Settings.builder() .put(SrvUnicastHostsProvider.DISCOVERY_SRV_QUERY, "_crate._srv.crate.internal"); SrvUnicastHostsProvider unicastHostsProvider = new DummySrvUnicastHostsProvider(builder.build(), transportService) { @Override protected Record[] lookupRecords() throws TextParseException { Name srvName = Name.fromConstantString("_crate._srv.crate.internal."); return new Record[]{ new SRVRecord(srvName, DClass.IN, 3600, 1, 10, 44300, Name.fromConstantString("crate1.internal.")), new SRVRecord(srvName, DClass.IN, 3600, 1, 20, 44300, Name.fromConstantString("crate2.internal.")) }; } }; List<DiscoveryNode> discoNodes = unicastHostsProvider.buildDynamicNodes(); assertEquals(2, discoNodes.size()); } @Test public void testParseRecords() throws Exception { SrvUnicastHostsProvider unicastHostsProvider = new SrvUnicastHostsProvider(Settings.EMPTY, transportService); Name srvName = Name.fromConstantString("_crate._srv.crate.internal."); Record[] records = new Record[]{ new SRVRecord(srvName, DClass.IN, 3600, 1, 10, 44300, Name.fromConstantString("crate1.internal.")), new SRVRecord(srvName, DClass.IN, 3600, 1, 20, 44300, Name.fromConstantString("crate2.internal.")), new SRVRecord(srvName, DClass.IN, 3600, 2, 10, 44300, Name.fromConstantString("crate3.internal.")), new SRVRecord(srvName, DClass.IN, 3600, 2, 20, 44300, Name.fromConstantString("crate4.internal.")) }; List<DiscoveryNode> discoNodes = unicastHostsProvider.parseRecords(records); // nodes need to be sorted by priority (asc), weight (desc) and name (asc) of SRV record assertEquals("#srv-crate1.internal:44300", discoNodes.get(0).getId()); assertEquals("#srv-crate2.internal:44300", discoNodes.get(1).getId()); assertEquals("#srv-crate3.internal:44300", discoNodes.get(2).getId()); assertEquals("#srv-crate4.internal:44300", discoNodes.get(3).getId()); } }