/** * 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.hadoop.gateway.ha.provider.impl; import org.apache.hadoop.gateway.ha.provider.HaDescriptor; import org.apache.hadoop.gateway.ha.provider.HaProvider; import org.junit.Test; import java.util.ArrayList; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.isIn; import static org.junit.Assert.*; public class DefaultHaProviderTest { @Test public void testDescriptor() { try { new DefaultHaProvider(null); fail("provider construction should have failed with null descriptor"); } catch (IllegalArgumentException e) { } HaDescriptor descriptor = new DefaultHaDescriptor(); HaProvider provider = new DefaultHaProvider(descriptor); assertNotNull(provider.getHaDescriptor()); descriptor.addServiceConfig(new DefaultHaServiceConfig("foo")); assertTrue(provider.isHaEnabled("foo")); } @Test public void testAddingService() { HaDescriptor descriptor = new DefaultHaDescriptor(); HaProvider provider = new DefaultHaProvider(descriptor); ArrayList<String> urls = new ArrayList<String>(); urls.add("http://host1"); urls.add("http://host2"); provider.addHaService("foo", urls); assertNull(provider.getActiveURL("bar")); String url = provider.getActiveURL("foo"); assertNotNull(url); assertThat(url, isIn(urls)); } @Test public void testActiveUrl() { HaDescriptor descriptor = new DefaultHaDescriptor(); HaProvider provider = new DefaultHaProvider(descriptor); ArrayList<String> urls = new ArrayList<String>(); String url1 = "http://host1"; urls.add(url1); String url2 = "http://host2"; urls.add(url2); String url3 = "http://host3"; urls.add(url3); String serviceName = "foo"; provider.addHaService(serviceName, urls); assertEquals(url1, provider.getActiveURL(serviceName)); provider.markFailedURL(serviceName, url1); assertEquals(url2, provider.getActiveURL(serviceName)); provider.markFailedURL(serviceName, url2); assertEquals(url3, provider.getActiveURL(serviceName)); provider.markFailedURL(serviceName, url3); assertEquals(url1, provider.getActiveURL(serviceName)); provider.setActiveURL(serviceName, url3); assertEquals(url3, provider.getActiveURL(serviceName)); provider.setActiveURL(serviceName, url2); assertEquals(url2, provider.getActiveURL(serviceName)); } }