/** * 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.hbase.master; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import org.junit.Test; public class TestDeadServer { @Test public void testIsDead() { DeadServer ds = new DeadServer(2); final String hostname123 = "127.0.0.1,123,3"; assertFalse(ds.isDeadServer(hostname123, false)); assertFalse(ds.isDeadServer(hostname123, true)); ds.add(hostname123); assertTrue(ds.isDeadServer(hostname123, false)); assertFalse(ds.isDeadServer("127.0.0.1:1", true)); assertFalse(ds.isDeadServer("127.0.0.1:1234", true)); assertTrue(ds.isDeadServer("127.0.0.1:123", true)); assertTrue(ds.areDeadServersInProgress()); ds.finish(hostname123); assertFalse(ds.areDeadServersInProgress()); final String hostname1234 = "127.0.0.2,1234,4"; ds.add(hostname1234); assertTrue(ds.isDeadServer(hostname123, false)); assertTrue(ds.isDeadServer(hostname1234, false)); assertTrue(ds.areDeadServersInProgress()); ds.finish(hostname1234); assertFalse(ds.areDeadServersInProgress()); final String hostname12345 = "127.0.0.2,12345,4"; ds.add(hostname12345); // hostname123 should now be evicted assertFalse(ds.isDeadServer(hostname123, false)); // but others should still be dead assertTrue(ds.isDeadServer(hostname1234, false)); assertTrue(ds.isDeadServer(hostname12345, false)); assertTrue(ds.areDeadServersInProgress()); ds.finish(hostname12345); assertFalse(ds.areDeadServersInProgress()); } }