TestStartupOptionUpgrade.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.hdfs.server.namenode;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;

import java.net.URI;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hdfs.HdfsConfiguration;
import org.apache.hadoop.hdfs.protocol.LayoutVersion.Feature;
import org.apache.hadoop.hdfs.server.common.HdfsServerConstants.StartupOption;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedClass;
import org.junit.jupiter.params.provider.MethodSource;

/**
 * This class tests various upgrade cases from earlier versions to current
 * version with and without clusterid.
 */
@MethodSource("startOption")
@ParameterizedClass
public class TestStartupOptionUpgrade {

  private Configuration conf;
  private StartupOption startOpt;
  private int layoutVersion;
  NNStorage storage;

  public static Collection<Object[]> startOption() {
    Object[][] params = new Object[][] { { StartupOption.UPGRADE },
        { StartupOption.UPGRADEONLY } };
    return Arrays.asList(params);
  }

  public TestStartupOptionUpgrade(StartupOption startOption) throws Exception {
    this.startOpt = startOption;
    setUp();
  }

  public void setUp() throws Exception {
    conf = new HdfsConfiguration();
    startOpt.setClusterId(null);
    storage = new NNStorage(conf,
      Collections.<URI>emptyList(),
      Collections.<URI>emptyList());
  }

  @AfterEach
  public void tearDown() throws Exception {
    conf = null;
    startOpt = null;
  }

  /**
   * Tests the upgrade from version 0.20.204 to Federation version Test without
   * clusterid the case: -upgrade 
   * Expected to generate clusterid
   * 
   * @throws Exception
   */
  @Test
  public void testStartupOptUpgradeFrom204() throws Exception {
    layoutVersion = Feature.RESERVED_REL20_204.getInfo().getLayoutVersion();
    storage.processStartupOptionsForUpgrade(startOpt, layoutVersion);
    assertTrue(storage.getClusterID().startsWith("CID"),
        "Clusterid should start with CID");
  }

  /**
   * Tests the upgrade from version 0.22 to Federation version Test with
   * clusterid case: -upgrade -clusterid <cid> 
   * Expected to reuse user given clusterid
   * 
   * @throws Exception
   */
  @Test
  public void testStartupOptUpgradeFrom22WithCID() throws Exception {
    startOpt.setClusterId("cid");
    layoutVersion = Feature.RESERVED_REL22.getInfo().getLayoutVersion();
    storage.processStartupOptionsForUpgrade(startOpt, layoutVersion);
    assertEquals("cid", storage.getClusterID(),
        "Clusterid should match with the given clusterid");
  }

  /**
   * Tests the upgrade from one version of Federation to another Federation
   * version Test without clusterid case: -upgrade
   * Expected to reuse existing clusterid
   * 
   * @throws Exception
   */
  @Test
  public void testStartupOptUpgradeFromFederation()
      throws Exception {
    // Test assumes clusterid already exists, set the clusterid
    storage.setClusterID("currentcid");
    layoutVersion = Feature.FEDERATION.getInfo().getLayoutVersion();
    storage.processStartupOptionsForUpgrade(startOpt, layoutVersion);
    assertEquals("currentcid", storage.getClusterID(),
        "Clusterid should match with the existing one");
  }

  /**
   * Tests the upgrade from one version of Federation to another Federation
   * version Test with wrong clusterid case: -upgrade -clusterid <cid> 
   * Expected to reuse existing clusterid and ignore user given clusterid
   * 
   * @throws Exception
   */
  @Test
  public void testStartupOptUpgradeFromFederationWithWrongCID()
      throws Exception {
    startOpt.setClusterId("wrong-cid");
    storage.setClusterID("currentcid");
    layoutVersion = Feature.FEDERATION.getInfo().getLayoutVersion();
    storage.processStartupOptionsForUpgrade(startOpt, layoutVersion);
    assertEquals("currentcid", storage.getClusterID(),
        "Clusterid should match with the existing one");
  }

  /**
   * Tests the upgrade from one version of Federation to another Federation
   * version Test with correct clusterid case: -upgrade -clusterid <cid>
   * Expected to reuse existing clusterid and ignore user given clusterid
   * 
   * @throws Exception
   */
  @Test
  public void testStartupOptUpgradeFromFederationWithCID()
      throws Exception {
    startOpt.setClusterId("currentcid");
    storage.setClusterID("currentcid");
    layoutVersion = Feature.FEDERATION.getInfo().getLayoutVersion();
    storage.processStartupOptionsForUpgrade(startOpt, layoutVersion);
    assertEquals("currentcid", storage.getClusterID(),
        "Clusterid should match with the existing one");
  }
}