001/*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements.  See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership.  The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License.  You may obtain a copy of the License at
009 *
010 *     http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing, software
013 * distributed under the License is distributed on an "AS IS" BASIS,
014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015 * See the License for the specific language governing permissions and
016 * limitations under the License.
017 */
018package org.apache.hadoop.hbase.backup;
019
020import static org.junit.jupiter.api.Assertions.assertFalse;
021import static org.junit.jupiter.api.Assertions.assertTrue;
022
023import java.util.List;
024import java.util.Set;
025import org.apache.hadoop.hbase.TableName;
026import org.apache.hadoop.hbase.backup.impl.BackupSystemTable;
027import org.apache.hadoop.hbase.backup.impl.TableBackupClient;
028import org.apache.hadoop.hbase.backup.impl.TableBackupClient.Stage;
029import org.apache.hadoop.hbase.testclassification.LargeTests;
030import org.apache.hadoop.util.ToolRunner;
031import org.junit.jupiter.api.Tag;
032import org.junit.jupiter.api.Test;
033import org.slf4j.Logger;
034import org.slf4j.LoggerFactory;
035
036@Tag(LargeTests.TAG)
037public class TestFullBackupWithFailures extends TestBackupBase {
038
039  private static final Logger LOG = LoggerFactory.getLogger(TestFullBackupWithFailures.class);
040
041  @Test
042  public void testFullBackupWithFailures() throws Exception {
043    conf1.set(TableBackupClient.BACKUP_CLIENT_IMPL_CLASS,
044      FullTableBackupClientForTest.class.getName());
045    int maxStage = Stage.values().length - 1;
046    // Fail stages between 0 and 4 inclusive
047    for (int stage = 0; stage <= maxStage; stage++) {
048      LOG.info("Running stage " + stage);
049      runBackupAndFailAtStage(stage);
050    }
051  }
052
053  public void runBackupAndFailAtStage(int stage) throws Exception {
054
055    conf1.setInt(FullTableBackupClientForTest.BACKUP_TEST_MODE_STAGE, stage);
056    try (BackupSystemTable table = new BackupSystemTable(TEST_UTIL.getConnection())) {
057      int before = table.getBackupHistory().size();
058      String[] args = new String[] { "create", "full", BACKUP_ROOT_DIR, "-t",
059        table1.getNameAsString() + "," + table2.getNameAsString() };
060      // Run backup
061      int ret = ToolRunner.run(conf1, new BackupDriver(), args);
062      assertFalse(ret == 0);
063      List<BackupInfo> backups = table.getBackupHistory();
064      int after = table.getBackupHistory().size();
065
066      assertTrue(after == before + 1);
067      for (BackupInfo data : backups) {
068        String backupId = data.getBackupId();
069        assertFalse(checkSucceeded(backupId));
070      }
071      Set<TableName> tables = table.getIncrementalBackupTableSet(BACKUP_ROOT_DIR);
072      assertTrue(tables.isEmpty());
073    }
074  }
075
076}