TestCluster.java

/**
 * 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.mapreduce;

import org.apache.hadoop.conf.Configuration;

import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;

import org.apache.hadoop.mapreduce.protocol.ClientProtocol;
import org.apache.hadoop.mapreduce.protocol.ClientProtocolProvider;
import org.junit.jupiter.api.Test;

import java.io.IOException;
import java.net.InetSocketAddress;
import java.util.Iterator;
import java.util.ServiceConfigurationError;

/**
 * Testing the Cluster initialization.
 */
public class TestCluster {
  @Test
  @SuppressWarnings("unchecked")
  public void testProtocolProviderCreation() throws Exception {
    Iterator iterator = mock(Iterator.class);
    when(iterator.hasNext()).thenReturn(true, true, true, true);
    when(iterator.next()).thenReturn(getClientProtocolProvider())
        .thenThrow(new ServiceConfigurationError("Test error"))
        .thenReturn(getClientProtocolProvider());

    Iterable frameworkLoader = mock(Iterable.class);
    when(frameworkLoader.iterator()).thenReturn(iterator);

    Cluster.frameworkLoader = frameworkLoader;
    Cluster testCluster = new Cluster(new Configuration());

    // Check that we get the acceptable client, even after
    // failure in instantiation.
    assertNotNull(testCluster.getClient(), "ClientProtocol is expected");
    // Check if we do not try to load the providers after a failure.
    verify(iterator, times(2)).next();
  }

  public ClientProtocolProvider getClientProtocolProvider() {
    return new ClientProtocolProvider() {
      @Override
      public ClientProtocol create(Configuration conf) throws IOException {
        return mock(ClientProtocol.class);
      }

      @Override
      public ClientProtocol create(InetSocketAddress addr, Configuration
          conf) throws IOException {
        return mock(ClientProtocol.class);
      }

      @Override
      public void close(ClientProtocol clientProtocol) throws IOException {
      }
    };
  }
}